Version Description
Download this release
Release Info
Developer | themeisle |
Plugin | Cloud Templates & Patterns collection |
Version | 1.0.11 |
Comparing to | |
See all releases |
Code changes from version 1.0.10 to 1.0.11
- .eslintrc +4 -0
- CHANGELOG.md +5 -0
- README.md +8 -0
- assets/build/app.asset.php +4 -0
- assets/build/app.js +2 -0
- assets/build/style-app-rtl.css +2 -0
- assets/build/style-app.css +2 -0
- assets/img/beaver.jpg +0 -0
- assets/img/brizy.jpg +0 -0
- assets/img/divi.jpg +0 -0
- assets/img/elementor.jpg +0 -0
- assets/img/gutenberg.jpg +0 -0
- assets/img/logo.svg +3 -0
- assets/img/search.svg +4 -0
- assets/img/thrive.jpg +0 -0
- assets/src/Components/App.js +32 -0
- assets/src/Components/EditorSelector.js +111 -0
- assets/src/Components/EditorTabs.js +76 -0
- assets/src/Components/ImportModal.js +579 -0
- assets/src/Components/ImportModalError.js +42 -0
- assets/src/Components/ImportModalNote.js +57 -0
- assets/src/Components/ImportStepper.js +83 -0
- assets/src/Components/InstallModal.js +184 -0
- assets/src/Components/Loading.js +53 -0
- assets/src/Components/Main.js +444 -0
- assets/src/Components/Migration.js +274 -0
- assets/src/Components/PreviewFrame.js +138 -0
- assets/src/Components/Search.js +123 -0
- assets/src/Components/StarterSiteCard.js +106 -0
- assets/src/app.js +15 -0
- assets/src/scss/_card.scss +65 -0
- assets/src/scss/_editor-selector.scss +63 -0
- assets/src/scss/_editor-tabs.scss +108 -0
- assets/src/scss/_general.scss +299 -0
- assets/src/scss/_header.scss +85 -0
- assets/src/scss/_import-modal.scss +257 -0
- assets/src/scss/_media-queries.scss +28 -0
- assets/src/scss/_mock.scss +28 -0
- assets/src/scss/_preview.scss +55 -0
- assets/src/scss/_search.scss +106 -0
- assets/src/scss/_starter-site-card.scss +133 -0
- assets/src/scss/_stepper.scss +50 -0
- assets/src/scss/_sticky-nav.scss +78 -0
- assets/src/scss/_vars.scss +17 -0
- assets/src/store/actions.js +71 -0
- assets/src/store/reducer.js +84 -0
- assets/src/store/selectors.js +12 -0
- assets/src/style.scss +14 -0
- assets/src/utils/common.js +4 -0
- assets/src/utils/rest.js +35 -0
- assets/src/utils/site-import.js +19 -0
- includes/Admin.php +161 -37
- includes/Main.php +1 -4
- includes/Sites_Listing.php +4 -4
- languages/templates-patterns-collection.pot +442 -0
- readme.txt +8 -0
- templates-patterns-collection.php +3 -5
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
- yarn.lock +14219 -0
.eslintrc
ADDED
@@ -0,0 +1,4 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
{
|
2 |
+
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ],
|
3 |
+
"ignorePatterns": ["**/vendor/**"]
|
4 |
+
}
|
CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
1 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
2 |
Â
|
3 |
Â
* Define plugin constants and remove no longer needed ones.
|
1 |
+
##### [Version 1.0.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.10...v1.0.11) (2020-10-13)
|
2 |
+
|
3 |
+
- Moved onboarding to TPC
|
4 |
+
- Fixed small layout compatibility issue with Gutenberg
|
5 |
+
|
6 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
7 |
Â
|
8 |
Â
* Define plugin constants and remove no longer needed ones.
|
README.md
CHANGED
@@ -27,6 +27,14 @@ No account is required to access the service template collection and the privacy
|
|
27 |
Â
|
28 |
Â
## Changelog ##
|
29 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
30 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
31 |
Â
|
32 |
Â
* Define plugin constants and remove no longer needed ones.
|
27 |
Â
|
28 |
Â
## Changelog ##
|
29 |
Â
|
30 |
+
##### [Version 1.0.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.10...v1.0.11) (2020-10-13)
|
31 |
+
|
32 |
+
- Moved onboarding to TPC
|
33 |
+
- Fixed small layout compatibility issue with Gutenberg
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
39 |
Â
|
40 |
Â
* Define plugin constants and remove no longer needed ones.
|
assets/build/app.asset.php
ADDED
@@ -0,0 +1,4 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<?php return array(
|
2 |
+
'dependencies' => array( 'react', 'react-dom', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill' ),
|
3 |
+
'version' => '2caa869fbf2f27ca8cbb485b08d2fafe',
|
4 |
+
);
|
assets/build/app.js
ADDED
@@ -0,0 +1,2 @@
|
|
Â
|
|
Â
|
1 |
+
(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{15:function(e,t,n){}}]),function(e){function t(t){for(var r,c,a=t[0],s=t[1],l=t[2],m=0,d=[];m<a.length;m++)c=a[m],Object.prototype.hasOwnProperty.call(o,c)&&o[c]&&d.push(o[c][0]),o[c]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);for(u&&u(t);d.length;)d.shift()();return i.push.apply(i,l||[]),n()}function n(){for(var e,t=0;t<i.length;t++){for(var n=i[t],r=!0,a=1;a<n.length;a++){var s=n[a];0!==o[s]&&(r=!1)}r&&(i.splice(t--,1),e=c(c.s=n[0]))}return e}var r={},o={0:0},i=[];function c(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,c),n.l=!0,n.exports}c.m=e,c.c=r,c.d=function(e,t,n){c.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},c.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.t=function(e,t){if(1&t&&(e=c(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(c.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)c.d(n,r,function(t){return e[t]}.bind(null,r));return n},c.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(t,"a",t),t},c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c.p="";var a=window.webpackJsonp=window.webpackJsonp||[],s=a.push.bind(a);a.push=t,a=a.slice();for(var l=0;l<a.length;l++)t(a[l]);var u=s;i.push([24,1]),n()}([function(e,t){!function(){e.exports=this.wp.element}()},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t){!function(){e.exports=this.wp.components}()},function(e,t,n){var r=n(19),o=n(20),i=n(11),c=n(21);e.exports=function(e,t){return r(e)||o(e,t)||i(e,t)||c()}},function(e,t){!function(){e.exports=this.wp.data}()},function(e,t){!function(){e.exports=this.wp.compose}()},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)&&r.length){var c=o.apply(null,r);c&&e.push(c)}else if("object"===i)for(var a in r)n.call(r,a)&&r[a]&&e.push(a)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t){!function(){e.exports=this.regeneratorRuntime}()},function(e,t,n){var r;r=function(e,t){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=4)}([function(e,t,n){e.exports=n(5)()},function(t,n){t.exports=e},function(e,n){e.exports=t},function(e,t){e.exports=function(e,t,n){var r=e.direction,o=e.value;switch(r){case"top":return n.top+o<t.top&&n.bottom>t.bottom&&n.left<t.left&&n.right>t.right;case"left":return n.left+o<t.left&&n.bottom>t.bottom&&n.top<t.top&&n.right>t.right;case"bottom":return n.bottom-o>t.bottom&&n.left<t.left&&n.right>t.right&&n.top<t.top;case"right":return n.right-o>t.right&&n.left<t.left&&n.top<t.top&&n.bottom>t.bottom}}},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return g}));var r=n(1),o=n.n(r),i=n(2),c=n.n(i),a=n(0),s=n.n(a),l=n(3),u=n.n(l);function m(e){return(m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function d(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function p(e){return(p=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function b(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var g=function(e){function t(e){var n,r,o;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),r=this,o=p(t).call(this,e),n=!o||"object"!==m(o)&&"function"!=typeof o?f(r):o,b(f(n),"getContainer",(function(){return n.props.containment||window})),b(f(n),"addEventListener",(function(e,t,r,o){var i;n.debounceCheck||(n.debounceCheck={});var c=function(){i=null,n.check()},a={target:e,fn:o>-1?function(){i||(i=setTimeout(c,o||0))}:function(){clearTimeout(i),i=setTimeout(c,r||0)},getLastTimeout:function(){return i}};e.addEventListener(t,a.fn),n.debounceCheck[t]=a})),b(f(n),"startWatching",(function(){n.debounceCheck||n.interval||(n.props.intervalCheck&&(n.interval=setInterval(n.check,n.props.intervalDelay)),n.props.scrollCheck&&n.addEventListener(n.getContainer(),"scroll",n.props.scrollDelay,n.props.scrollThrottle),n.props.resizeCheck&&n.addEventListener(window,"resize",n.props.resizeDelay,n.props.resizeThrottle),!n.props.delayedCall&&n.check())})),b(f(n),"stopWatching",(function(){if(n.debounceCheck)for(var e in n.debounceCheck)if(n.debounceCheck.hasOwnProperty(e)){var t=n.debounceCheck[e];clearTimeout(t.getLastTimeout()),t.target.removeEventListener(e,t.fn),n.debounceCheck[e]=null}n.debounceCheck=null,n.interval&&(n.interval=clearInterval(n.interval))})),b(f(n),"check",(function(){var e,t,r=n.node;if(!r)return n.state;if(e=function(e){return void 0===e.width&&(e.width=e.right-e.left),void 0===e.height&&(e.height=e.bottom-e.top),e}(n.roundRectDown(r.getBoundingClientRect())),n.props.containment){var o=n.props.containment.getBoundingClientRect();t={top:o.top,left:o.left,bottom:o.bottom,right:o.right}}else t={top:0,left:0,bottom:window.innerHeight||document.documentElement.clientHeight,right:window.innerWidth||document.documentElement.clientWidth};var i=n.props.offset||{};"object"===m(i)&&(t.top+=i.top||0,t.left+=i.left||0,t.bottom-=i.bottom||0,t.right-=i.right||0);var c={top:e.top>=t.top,left:e.left>=t.left,bottom:e.bottom<=t.bottom,right:e.right<=t.right},a=e.height>0&&e.width>0,s=a&&c.top&&c.left&&c.bottom&&c.right;if(a&&n.props.partialVisibility){var l=e.top<=t.bottom&&e.bottom>=t.top&&e.left<=t.right&&e.right>=t.left;"string"==typeof n.props.partialVisibility&&(l=c[n.props.partialVisibility]),s=n.props.minTopValue?l&&e.top<=t.bottom-n.props.minTopValue:l}"string"==typeof i.direction&&"number"==typeof i.value&&(console.warn("[notice] offset.direction and offset.value have been deprecated. They still work for now, but will be removed in next major version. Please upgrade to the new syntax: { %s: %d }",i.direction,i.value),s=u()(i,e,t));var d=n.state;return n.state.isVisible!==s&&(d={isVisible:s,visibilityRect:c},n.setState(d),n.props.onChange&&n.props.onChange(s)),d})),n.state={isVisible:null,visibilityRect:{}},n}var n,r,i;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&h(e,t)}(t,e),n=t,(r=[{key:"componentDidMount",value:function(){this.node=c.a.findDOMNode(this),this.props.active&&this.startWatching()}},{key:"componentWillUnmount",value:function(){this.stopWatching()}},{key:"componentDidUpdate",value:function(e){this.node=c.a.findDOMNode(this),this.props.active&&!e.active?(this.setState({isVisible:null,visibilityRect:{}}),this.startWatching()):this.props.active||this.stopWatching()}},{key:"roundRectDown",value:function(e){return{top:Math.floor(e.top),left:Math.floor(e.left),bottom:Math.floor(e.bottom),right:Math.floor(e.right)}}},{key:"render",value:function(){return this.props.children instanceof Function?this.props.children({isVisible:this.state.isVisible,visibilityRect:this.state.visibilityRect}):o.a.Children.only(this.props.children)}}])&&d(n.prototype,r),i&&d(n,i),t}(o.a.Component);b(g,"defaultProps",{active:!0,partialVisibility:!1,minTopValue:0,scrollCheck:!1,scrollDelay:250,scrollThrottle:-1,resizeCheck:!1,resizeDelay:250,resizeThrottle:-1,intervalCheck:!0,intervalDelay:100,delayedCall:!1,offset:{},containment:null,children:o.a.createElement("span",null)}),b(g,"propTypes",{onChange:s.a.func,active:s.a.bool,partialVisibility:s.a.oneOfType([s.a.bool,s.a.oneOf(["top","right","bottom","left"])]),delayedCall:s.a.bool,offset:s.a.oneOfType([s.a.shape({top:s.a.number,left:s.a.number,bottom:s.a.number,right:s.a.number}),s.a.shape({direction:s.a.oneOf(["top","right","bottom","left"]),value:s.a.number})]),scrollCheck:s.a.bool,scrollDelay:s.a.number,scrollThrottle:s.a.number,resizeCheck:s.a.bool,resizeDelay:s.a.number,resizeThrottle:s.a.number,intervalCheck:s.a.bool,intervalDelay:s.a.number,containment:"undefined"!=typeof window?s.a.instanceOf(window.Element):s.a.any,children:s.a.oneOfType([s.a.element,s.a.func]),minTopValue:s.a.number})},function(e,t,n){"use strict";var r=n(6);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,c){if(c!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"}])},e.exports=r(n(22),n(23))},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){var r=n(10);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t,n){var r=n(16),o=n(17),i=n(11),c=n(18);e.exports=function(e){return r(e)||o(e)||i(e)||c()}},function(e,t){function n(e,t,n,r,o,i,c){try{var a=e[i](c),s=a.value}catch(e){return void n(e)}a.done?t(s):Promise.resolve(s).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,i){var c=e.apply(t,r);function a(e){n(c,o,i,a,s,"next",e)}function s(e){n(c,o,i,a,s,"throw",e)}a(void 0)}))}}},function(e,t,n){var r;r=function(){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function r(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function c(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?i(Object(n),!0).forEach((function(t){o(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&function(e,t){(Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}(e,t)}function s(e){return(s=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function l(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function u(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=s(e);if(t){var o=s(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return l(this,n)}}function m(e){return function(e){if(Array.isArray(e))return d(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function p(e){return Array.isArray?Array.isArray(e):"[object Array]"===O(e)}function f(e){return"string"==typeof e}function h(e){return"number"==typeof e}function b(t){return"object"===e(t)}function g(e){return null!=e}function v(e){return!e.trim().length}function O(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}var y=function(e){return"Invalid value for key ".concat(e)},j=function(e){return"Pattern length exceeds max of ".concat(e,".")},E=Object.prototype.hasOwnProperty,_=function(){function e(n){var r=this;t(this,e),this._keys=[],this._keyMap={};var o=0;n.forEach((function(e){var t=w(e);o+=t.weight,r._keys.push(t),r._keyMap[t.id]=t,o+=t.weight})),this._keys.forEach((function(e){e.weight/=o}))}return r(e,[{key:"get",value:function(e){return this._keyMap[e]}},{key:"keys",value:function(){return this._keys}},{key:"toJSON",value:function(){return JSON.stringify(this._keys)}}]),e}();function w(e){var t=null,n=null,r=null,o=1;if(f(e)||p(e))r=e,t=S(e),n=k(e);else{if(!E.call(e,"name"))throw new Error("Missing ".concat("name"," property in key"));var i=e.name;if(r=i,E.call(e,"weight")&&(o=e.weight)<=0)throw new Error(function(e){return"Property 'weight' in key '".concat(e,"' must be a positive integer")}(i));t=S(i),n=k(i)}return{path:t,id:n,weight:o,src:r}}function S(e){return p(e)?e:e.split(".")}function k(e){return p(e)?e.join("."):e}var C=c({},{isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:function(e,t){return e.score===t.score?e.idx<t.idx?-1:1:e.score<t.score?-1:1}},{},{includeMatches:!1,findAllMatches:!1,minMatchCharLength:1},{},{location:0,threshold:.6,distance:100},{},{useExtendedSearch:!1,getFn:function(e,t){var n=[],r=!1;return function e(t,o,i){if(o[i]){var c=t[o[i]];if(!g(c))return;if(i===o.length-1&&(f(c)||h(c)||function(e){return!0===e||!1===e||function(e){return b(e)&&null!==e}(e)&&"[object Boolean]"==O(e)}(c)))n.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(c));else if(p(c)){r=!0;for(var a=0,s=c.length;a<s;a+=1)e(c[a],o,i+1)}else o.length&&e(c,o,i+1)}else n.push(t)}(e,f(t)?t.split("."):t,0),r?n:n[0]},ignoreLocation:!1,ignoreFieldNorm:!1}),M=/[^ ]+/g;function N(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:3,t=new Map;return{get:function(n){var r=n.match(M).length;if(t.has(r))return t.get(r);var o=parseFloat((1/Math.sqrt(r)).toFixed(e));return t.set(r,o),o},clear:function(){t.clear()}}}var x=function(){function e(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.getFn,o=void 0===r?C.getFn:r;t(this,e),this.norm=N(3),this.getFn=o,this.isCreated=!1,this.setIndexRecords()}return r(e,[{key:"setSources",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.docs=e}},{key:"setIndexRecords",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.records=e}},{key:"setKeys",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.keys=t,this._keysMap={},t.forEach((function(t,n){e._keysMap[t.id]=n}))}},{key:"create",value:function(){var e=this;!this.isCreated&&this.docs.length&&(this.isCreated=!0,f(this.docs[0])?this.docs.forEach((function(t,n){e._addString(t,n)})):this.docs.forEach((function(t,n){e._addObject(t,n)})),this.norm.clear())}},{key:"add",value:function(e){var t=this.size();f(e)?this._addString(e,t):this._addObject(e,t)}},{key:"removeAt",value:function(e){this.records.splice(e,1);for(var t=e,n=this.size();t<n;t+=1)this.records[t].i-=1}},{key:"getValueForItemAtKeyId",value:function(e,t){return e[this._keysMap[t]]}},{key:"size",value:function(){return this.records.length}},{key:"_addString",value:function(e,t){if(g(e)&&!v(e)){var n={v:e,i:t,n:this.norm.get(e)};this.records.push(n)}}},{key:"_addObject",value:function(e,t){var n=this,r={i:t,$:{}};this.keys.forEach((function(t,o){var i=n.getFn(e,t.path);if(g(i))if(p(i))!function(){for(var e=[],t=[{nestedArrIndex:-1,value:i}];t.length;){var c=t.pop(),a=c.nestedArrIndex,s=c.value;if(g(s))if(f(s)&&!v(s)){var l={v:s,i:a,n:n.norm.get(s)};e.push(l)}else p(s)&&s.forEach((function(e,n){t.push({nestedArrIndex:n,value:e})}))}r.$[o]=e}();else if(!v(i)){var c={v:i,n:n.norm.get(i)};r.$[o]=c}})),this.records.push(r)}},{key:"toJSON",value:function(){return{keys:this.keys,records:this.records}}}]),e}();function D(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.getFn,o=void 0===r?C.getFn:r,i=new x({getFn:o});return i.setKeys(e.map(w)),i.setSources(t),i.create(),i}function P(e,t){var n=e.matches;t.matches=[],g(n)&&n.forEach((function(e){if(g(e.indices)&&e.indices.length){var n={indices:e.indices,value:e.value};e.key&&(n.key=e.key.src),e.idx>-1&&(n.refIndex=e.idx),t.matches.push(n)}}))}function T(e,t){t.score=e.score}function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.errors,r=void 0===n?0:n,o=t.currentLocation,i=void 0===o?0:o,c=t.expectedLocation,a=void 0===c?0:c,s=t.distance,l=void 0===s?C.distance:s,u=t.ignoreLocation,m=void 0===u?C.ignoreLocation:u,d=r/e.length;if(m)return d;var p=Math.abs(a-i);return l?d+p/l:p?1:d}function A(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:C.minMatchCharLength,n=[],r=-1,o=-1,i=0,c=e.length;i<c;i+=1){var a=e[i];a&&-1===r?r=i:a||-1===r||((o=i-1)-r+1>=t&&n.push([r,o]),r=-1)}return e[i-1]&&i-r>=t&&n.push([r,i-1]),n}function L(e){for(var t={},n=0,r=e.length;n<r;n+=1){var o=e.charAt(n);t[o]=(t[o]||0)|1<<r-n-1}return t}var R=function(){function e(n){var r=this,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=o.location,c=void 0===i?C.location:i,a=o.threshold,s=void 0===a?C.threshold:a,l=o.distance,u=void 0===l?C.distance:l,m=o.includeMatches,d=void 0===m?C.includeMatches:m,p=o.findAllMatches,f=void 0===p?C.findAllMatches:p,h=o.minMatchCharLength,b=void 0===h?C.minMatchCharLength:h,g=o.isCaseSensitive,v=void 0===g?C.isCaseSensitive:g,O=o.ignoreLocation,y=void 0===O?C.ignoreLocation:O;if(t(this,e),this.options={location:c,threshold:s,distance:u,includeMatches:d,findAllMatches:f,minMatchCharLength:b,isCaseSensitive:v,ignoreLocation:y},this.pattern=v?n:n.toLowerCase(),this.chunks=[],this.pattern.length){var j=function(e,t){r.chunks.push({pattern:e,alphabet:L(e),startIndex:t})},E=this.pattern.length;if(E>32){for(var _=0,w=E%32,S=E-w;_<S;)j(this.pattern.substr(_,32),_),_+=32;if(w){var k=E-32;j(this.pattern.substr(k),k)}}else j(this.pattern,0)}}return r(e,[{key:"searchIn",value:function(e){var t=this.options,n=t.isCaseSensitive,r=t.includeMatches;if(n||(e=e.toLowerCase()),this.pattern===e){var o={isMatch:!0,score:0};return r&&(o.indices=[[0,e.length-1]]),o}var i=this.options,c=i.location,a=i.distance,s=i.threshold,l=i.findAllMatches,u=i.minMatchCharLength,d=i.ignoreLocation,p=[],f=0,h=!1;this.chunks.forEach((function(t){var n=t.pattern,o=t.alphabet,i=t.startIndex,b=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=r.location,i=void 0===o?C.location:o,c=r.distance,a=void 0===c?C.distance:c,s=r.threshold,l=void 0===s?C.threshold:s,u=r.findAllMatches,m=void 0===u?C.findAllMatches:u,d=r.minMatchCharLength,p=void 0===d?C.minMatchCharLength:d,f=r.includeMatches,h=void 0===f?C.includeMatches:f,b=r.ignoreLocation,g=void 0===b?C.ignoreLocation:b;if(t.length>32)throw new Error(j(32));for(var v,O=t.length,y=e.length,E=Math.max(0,Math.min(i,y)),_=l,w=E,S=p>1||h,k=S?Array(y):[];(v=e.indexOf(t,w))>-1;){var M=I(t,{currentLocation:v,expectedLocation:E,distance:a,ignoreLocation:g});if(_=Math.min(M,_),w=v+O,S)for(var N=0;N<O;)k[v+N]=1,N+=1}w=-1;for(var x=[],D=1,P=O+y,T=1<<O-1,L=0;L<O;L+=1){for(var R=0,F=P;R<F;){var B=I(t,{errors:L,currentLocation:E+F,expectedLocation:E,distance:a,ignoreLocation:g});B<=_?R=F:P=F,F=Math.floor((P-R)/2+R)}P=F;var z=Math.max(1,E-F+1),U=m?y:Math.min(E+F,y)+O,$=Array(U+2);$[U+1]=(1<<L)-1;for(var W=U;W>=z;W-=1){var V=W-1,q=n[e.charAt(V)];if(S&&(k[V]=+!!q),$[W]=($[W+1]<<1|1)&q,L&&($[W]|=(x[W+1]|x[W])<<1|1|x[W+1]),$[W]&T&&(D=I(t,{errors:L,currentLocation:V,expectedLocation:E,distance:a,ignoreLocation:g}))<=_){if(_=D,(w=V)<=E)break;z=Math.max(1,2*E-w)}}var H=I(t,{errors:L+1,currentLocation:E,expectedLocation:E,distance:a,ignoreLocation:g});if(H>_)break;x=$}var J={isMatch:w>=0,score:Math.max(.001,D)};if(S){var G=A(k,p);G.length?h&&(J.indices=G):J.isMatch=!1}return J}(e,n,o,{location:c+i,distance:a,threshold:s,findAllMatches:l,minMatchCharLength:u,includeMatches:r,ignoreLocation:d}),g=b.isMatch,v=b.score,O=b.indices;g&&(h=!0),f+=v,g&&O&&(p=[].concat(m(p),m(O)))}));var b={isMatch:h,score:h?f/this.chunks.length:1};return h&&r&&(b.indices=p),b}}]),e}(),F=function(){function e(n){t(this,e),this.pattern=n}return r(e,[{key:"search",value:function(){}}],[{key:"isMultiMatch",value:function(e){return B(e,this.multiRegex)}},{key:"isSingleMatch",value:function(e){return B(e,this.singleRegex)}}]),e}();function B(e,t){var n=e.match(t);return n?n[1]:null}var z=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"exact"}},{key:"multiRegex",get:function(){return/^="(.*)"$/}},{key:"singleRegex",get:function(){return/^=(.*)$/}}]),o}(F),U=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"$/}},{key:"singleRegex",get:function(){return/^!(.*)$/}}]),o}(F),$=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"prefix-exact"}},{key:"multiRegex",get:function(){return/^\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^\^(.*)$/}}]),o}(F),W=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-prefix-exact"}},{key:"multiRegex",get:function(){return/^!\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^!\^(.*)$/}}]),o}(F),V=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}}],[{key:"type",get:function(){return"suffix-exact"}},{key:"multiRegex",get:function(){return/^"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^(.*)\$$/}}]),o}(F),q=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){var t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-suffix-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^!(.*)\$$/}}]),o}(F),H=function(e){a(o,e);var n=u(o);function o(e){var r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},c=i.location,a=void 0===c?C.location:c,s=i.threshold,l=void 0===s?C.threshold:s,u=i.distance,m=void 0===u?C.distance:u,d=i.includeMatches,p=void 0===d?C.includeMatches:d,f=i.findAllMatches,h=void 0===f?C.findAllMatches:f,b=i.minMatchCharLength,g=void 0===b?C.minMatchCharLength:b,v=i.isCaseSensitive,O=void 0===v?C.isCaseSensitive:v;return t(this,o),(r=n.call(this,e))._bitapSearch=new R(e,{location:a,threshold:l,distance:m,includeMatches:p,findAllMatches:h,minMatchCharLength:g,isCaseSensitive:O}),r}return r(o,[{key:"search",value:function(e){return this._bitapSearch.searchIn(e)}}],[{key:"type",get:function(){return"fuzzy"}},{key:"multiRegex",get:function(){return/^"(.*)"$/}},{key:"singleRegex",get:function(){return/^(.*)$/}}]),o}(F),J=function(e){a(o,e);var n=u(o);function o(e){return t(this,o),n.call(this,e)}return r(o,[{key:"search",value:function(e){for(var t,n=0,r=[],o=this.pattern.length;(t=e.indexOf(this.pattern,n))>-1;)n=t+o,r.push([t,n-1]);var i=!!r.length;return{isMatch:i,score:i?1:0,indices:r}}}],[{key:"type",get:function(){return"include"}},{key:"multiRegex",get:function(){return/^'"(.*)"$/}},{key:"singleRegex",get:function(){return/^'(.*)$/}}]),o}(F),G=[z,J,$,W,q,V,U,H],K=G.length,Y=/ +(?=([^\"]*\"[^\"]*\")*[^\"]*$)/;function Q(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.split("|").map((function(e){for(var n=e.trim().split(Y).filter((function(e){return e&&!!e.trim()})),r=[],o=0,i=n.length;o<i;o+=1){for(var c=n[o],a=!1,s=-1;!a&&++s<K;){var l=G[s],u=l.isMultiMatch(c);u&&(r.push(new l(u,t)),a=!0)}if(!a)for(s=-1;++s<K;){var m=G[s],d=m.isSingleMatch(c);if(d){r.push(new m(d,t));break}}}return r}))}var X=new Set([H.type,J.type]),Z=function(){function e(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.isCaseSensitive,i=void 0===o?C.isCaseSensitive:o,c=r.includeMatches,a=void 0===c?C.includeMatches:c,s=r.minMatchCharLength,l=void 0===s?C.minMatchCharLength:s,u=r.findAllMatches,m=void 0===u?C.findAllMatches:u,d=r.location,p=void 0===d?C.location:d,f=r.threshold,h=void 0===f?C.threshold:f,b=r.distance,g=void 0===b?C.distance:b;t(this,e),this.query=null,this.options={isCaseSensitive:i,includeMatches:a,minMatchCharLength:l,findAllMatches:m,location:p,threshold:h,distance:g},this.pattern=i?n:n.toLowerCase(),this.query=Q(this.pattern,this.options)}return r(e,[{key:"searchIn",value:function(e){var t=this.query;if(!t)return{isMatch:!1,score:1};var n=this.options,r=n.includeMatches;e=n.isCaseSensitive?e:e.toLowerCase();for(var o=0,i=[],c=0,a=0,s=t.length;a<s;a+=1){var l=t[a];i.length=0,o=0;for(var u=0,d=l.length;u<d;u+=1){var p=l[u],f=p.search(e),h=f.isMatch,b=f.indices,g=f.score;if(!h){c=0,o=0,i.length=0;break}if(o+=1,c+=g,r){var v=p.constructor.type;X.has(v)?i=[].concat(m(i),m(b)):i.push(b)}}if(o){var O={isMatch:!0,score:c/o};return r&&(O.indices=i),O}}return{isMatch:!1,score:1}}}],[{key:"condition",value:function(e,t){return t.useExtendedSearch}}]),e}(),ee=[];function te(e,t){for(var n=0,r=ee.length;n<r;n+=1){var o=ee[n];if(o.condition(e,t))return new o(e,t)}return new R(e,t)}var ne="$and",re="$path",oe=function(e){return!(!e[ne]&&!e.$or)},ie=function(e){return!!e[re]},ce=function(e){return!p(e)&&b(e)&&!oe(e)},ae=function(e){return o({},ne,Object.keys(e).map((function(t){return o({},t,e[t])})))},se=function(){function e(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2?arguments[2]:void 0;t(this,e),this.options=c({},C,{},r),this.options.useExtendedSearch,this._keyStore=new _(this.options.keys),this.setCollection(n,o)}return r(e,[{key:"setCollection",value:function(e,t){if(this._docs=e,t&&!(t instanceof x))throw new Error("Incorrect 'index' type");this._myIndex=t||D(this.options.keys,this._docs,{getFn:this.options.getFn})}},{key:"add",value:function(e){g(e)&&(this._docs.push(e),this._myIndex.add(e))}},{key:"remove",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!1},t=[],n=0,r=this._docs.length;n<r;n+=1){var o=this._docs[n];e(o,n)&&(this.removeAt(n),n-=1,t.push(o))}return t}},{key:"removeAt",value:function(e){this._docs.splice(e,1),this._myIndex.removeAt(e)}},{key:"getIndex",value:function(){return this._myIndex}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.limit,r=void 0===n?-1:n,o=this.options,i=o.includeMatches,c=o.includeScore,a=o.shouldSort,s=o.sortFn,l=o.ignoreFieldNorm,u=f(e)?f(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return le(u,{ignoreFieldNorm:l}),a&&u.sort(s),h(r)&&r>-1&&(u=u.slice(0,r)),ue(u,this._docs,{includeMatches:i,includeScore:c})}},{key:"_searchStringList",value:function(e){var t=te(e,this.options),n=this._myIndex.records,r=[];return n.forEach((function(e){var n=e.v,o=e.i,i=e.n;if(g(n)){var c=t.searchIn(n),a=c.isMatch,s=c.score,l=c.indices;a&&r.push({item:n,idx:o,matches:[{score:s,value:n,norm:i,indices:l}]})}})),r}},{key:"_searchLogical",value:function(e){var t=this,n=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.auto,o=void 0===r||r,i=function e(n){var r=Object.keys(n),i=ie(n);if(!i&&r.length>1&&!oe(n))return e(ae(n));if(ce(n)){var c=i?n[re]:r[0],a=i?n.$val:n[c];if(!f(a))throw new Error(y(c));var s={keyId:k(c),pattern:a};return o&&(s.searcher=te(a,t)),s}var l={children:[],operator:r[0]};return r.forEach((function(t){var r=n[t];p(r)&&r.forEach((function(t){l.children.push(e(t))}))})),l};return oe(e)||(e=ae(e)),i(e)}(e,this.options),r=this._myIndex.records,o={},i=[];return r.forEach((function(e){var r=e.$,c=e.i;if(g(r)){var a=function e(n,r,o){if(!n.children){var i=n.keyId,c=n.searcher,a=t._findMatches({key:t._keyStore.get(i),value:t._myIndex.getValueForItemAtKeyId(r,i),searcher:c});return a&&a.length?[{idx:o,item:r,matches:a}]:[]}switch(n.operator){case ne:for(var s=[],l=0,u=n.children.length;l<u;l+=1){var d=e(n.children[l],r,o);if(!d.length)return[];s.push.apply(s,m(d))}return s;case"$or":for(var p=[],f=0,h=n.children.length;f<h;f+=1){var b=e(n.children[f],r,o);if(b.length){p.push.apply(p,m(b));break}}return p}}(n,r,c);a.length&&(o[c]||(o[c]={idx:c,item:r,matches:[]},i.push(o[c])),a.forEach((function(e){var t,n=e.matches;(t=o[c].matches).push.apply(t,m(n))})))}})),i}},{key:"_searchObjectList",value:function(e){var t=this,n=te(e,this.options),r=this._myIndex,o=r.keys,i=r.records,c=[];return i.forEach((function(e){var r=e.$,i=e.i;if(g(r)){var a=[];o.forEach((function(e,o){a.push.apply(a,m(t._findMatches({key:e,value:r[o],searcher:n})))})),a.length&&c.push({idx:i,item:r,matches:a})}})),c}},{key:"_findMatches",value:function(e){var t=e.key,n=e.value,r=e.searcher;if(!g(n))return[];var o=[];if(p(n))n.forEach((function(e){var n=e.v,i=e.i,c=e.n;if(g(n)){var a=r.searchIn(n),s=a.isMatch,l=a.score,u=a.indices;s&&o.push({score:l,key:t,value:n,idx:i,norm:c,indices:u})}}));else{var i=n.v,c=n.n,a=r.searchIn(i),s=a.isMatch,l=a.score,u=a.indices;s&&o.push({score:l,key:t,value:i,norm:c,indices:u})}return o}}]),e}();function le(e,t){var n=t.ignoreFieldNorm,r=void 0===n?C.ignoreFieldNorm:n;e.forEach((function(e){var t=1;e.matches.forEach((function(e){var n=e.key,o=e.norm,i=e.score,c=n?n.weight:null;t*=Math.pow(0===i&&c?Number.EPSILON:i,(c||1)*(r?1:o))})),e.score=t}))}function ue(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.includeMatches,o=void 0===r?C.includeMatches:r,i=n.includeScore,c=void 0===i?C.includeScore:i,a=[];return o&&a.push(P),c&&a.push(T),e.map((function(e){var n=e.idx,r={item:t[n],refIndex:n};return a.length&&a.forEach((function(t){t(e,r)})),r}))}return se.version="6.4.1",se.createIndex=D,se.parseIndex=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.getFn,r=void 0===n?C.getFn:n,o=e.keys,i=e.records,c=new x({getFn:r});return c.setKeys(o),c.setIndexRecords(i),c},se.config=C,function(){ee.push.apply(ee,arguments)}(Z),se},e.exports=r()},,function(e,t,n){var r=n(10);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var c,a=e[Symbol.iterator]();!(r=(c=a.next()).done)&&(n.push(c.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(o)throw i}}return n}}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},function(e,t){!function(){e.exports=this.React}()},function(e,t){!function(){e.exports=this.ReactDOM}()},function(e,t,n){"use strict";n.r(t);var r=n(0),o=(n(15),n(7)),i=n.n(o);function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function a(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?c(Object(n),!0).forEach((function(t){i()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var s=tiobDash,l=s.onboarding,u=s.themeAction,m=void 0!==l.sites&&void 0!==l.sites.sites?Object.keys(l.sites.sites)[0]:"gutenberg",d=localStorage.getItem("neve-onboarding-editor")||m,p={sites:l.sites||{},editor:d,category:"all",previewStatus:!1,importModalStatus:!1,installModalStatus:!1,currentSite:null,importing:!1,isOnboarding:l.onboarding||!1,migrationData:null,themeAction:u},f={refreshSites:function(e){return{type:"REFRESH_SITES",payload:{sites:e}}},setCurrentEditor:function(e){return{type:"SET_CURRENT_EDITOR",payload:{editor:e}}},setCurrentCategory:function(e){return{type:"SET_CURRENT_CATEGORY",payload:{category:e}}},setCurrentSite:function(e){return{type:"SET_FOCUSED_SITE",payload:{siteData:e}}},setPreviewStatus:function(e){return e?document.body.classList.add("ob-overflow-off"):document.body.classList.remove("ob-overflow-off"),{type:"SET_PREVIEW_STATUS",payload:{previewStatus:e}}},setImportModalStatus:function(e){return e?document.body.classList.add("ob-overflow-off"):document.body.classList.remove("ob-overflow-off"),{type:"SET_IMPORT_MODAL_STATUS",payload:{importModalStatus:e}}},setInstallModalStatus:function(e){return e?document.body.classList.add("ob-overflow-off"):document.body.classList.remove("ob-overflow-off"),{type:"SET_INSTALL_MODAL_STATUS",payload:{installModalStatus:e}}},setOnboardingState:function(e){return{type:"SET_ONBOARDING",payload:{state:e}}},setThemeAction:function(e){return{type:"SET_THEME_ACTIONS",payload:{themeActions:e}}}},h=n(4),b=n(6),g=n.n(b),v=n(12),O=n.n(v),y=n(3),j=n.n(y),E=n(1),_=n(2),w=n(5),S=Object(w.compose)(Object(h.withSelect)((function(e){return{category:(0,e("neve-onboarding").getCurrentCategory)()}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding").setCurrentCategory;return{setCurrentCategory:function(e){return t(e)}}})))((function(e){var t=e.count,n=e.categories,o=e.onSearch,i=e.category,c=e.setCurrentCategory,a=e.query,s=Object(r.useState)(!1),l=j()(s,2),u=l[0],m=l[1],d=function(){return m(!u)};return Object(r.createElement)("div",{className:"header-form"},Object(r.createElement)("div",{className:"search"},Object(r.createElement)("img",{src:tiobDash.assets+"/img/search.svg",alt:Object(E.__)("Search Icon")}),Object(r.createElement)("input",{onChange:function(e){o(e.target.value)},type:"search",value:a,placeholder:Object(E.__)("Search for a starter site","templates-patterns-collection")+"..."}),Object(r.createElement)("div",{className:"ob-dropdown categories-selector"},Object(r.createElement)(_.Button,{onClick:d,className:"select ob-dropdown"},n[i],Object(r.createElement)(_.Dashicon,{size:14,icon:u?"arrow-up-alt2":"arrow-down-alt2"}),u&&Object(r.createElement)(_.Popover,{position:"bottom center",onClose:d,noArrow:!0},u&&Object(r.createElement)("ul",{className:"options"},Object.keys(n).map((function(e,o){return e===i||"free"===e&&t.all===t[e]?null:Object(r.createElement)("li",{key:o},Object(r.createElement)("a",{href:"#",onClick:function(t){t.preventDefault(),c(e),m(!1)}},Object(r.createElement)("span",null,n[e]),Object(r.createElement)("span",{className:"count"},t[e])))}))))))))})),k=Object(w.compose)(Object(h.withSelect)((function(e){return{themeStatus:(0,e("neve-onboarding").getThemeAction)().action||!1}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding"),n=t.setCurrentSite,r=t.setPreviewStatus,o=t.setImportModalStatus,i=t.setInstallModalStatus;return{setSite:function(e){return n(e)},setPreview:function(e){return r(e)},setModal:function(e){return o(e)},setInstallModal:function(e){return i(e)}}})))((function(e){var t=e.data,n=e.setSite,o=e.setPreview,i=e.setModal,c=e.themeStatus,a=e.setInstallModal,s=t.upsell,l=Object(r.useState)(""),u=j()(l,2),m=u[0],d=u[1];return Object(r.createElement)("div",{onMouseEnter:function(){d("visible")},onMouseLeave:function(){d("")},className:"card starter-site-card"},Object(r.createElement)("div",{className:"top"},Object(r.createElement)("div",{className:"actions "+m},Object(r.createElement)(_.Button,{className:"preview",onClick:function(e){e.preventDefault(),n(t),o(!0)}},Object(E.__)("Preview","templates-patterns-collection")),!s&&Object(r.createElement)(_.Button,{className:"import",onClick:function(e){if(e.preventDefault(),n(t),c)return a(!0),!1;i(!0)}},Object(E.__)("Import","templates-patterns-collection"))),t.screenshot&&Object(r.createElement)("div",{className:"image",style:{backgroundImage:'url("'.concat(t.screenshot,'")')}})),Object(r.createElement)("div",{className:"bottom"},Object(r.createElement)("p",{className:"title"},t.title),s&&Object(r.createElement)("span",{className:"pro-badge"},Object(r.createElement)(_.Dashicon,{icon:"lock",size:15}),Object(r.createElement)("span",null,Object(E.__)("Premium","templates-patterns-collection")))))})),C=Object(w.compose)(Object(h.withSelect)((function(e){var t=e("neve-onboarding"),n=t.getCurrentSite,r=t.getThemeAction;return{siteData:n(),themeStatus:r().action||!1}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding"),n=t.setCurrentSite,r=t.setPreviewStatus,o=t.setImportModalStatus,i=t.setInstallModalStatus;return{setSite:function(e){return n(e)},setPreview:function(e){return r(e)},setModal:function(e){return o(e)},setInstallModal:function(e){return i(e)}}})))((function(e){var t=e.next,n=e.prev,o=e.siteData,i=e.setSite,c=e.setPreview,a=e.setModal,s=e.themeStatus,l=e.setInstallModal,u=tiobDash.isRTL;return Object(r.createElement)("div",{className:"ob-preview"},Object(r.createElement)("div",{className:"preview"},Object(r.createElement)("iframe",{src:o.url,frameBorder:"0"}),Object(r.createElement)("div",{className:"loading"},Object(r.createElement)(_.Dashicon,{icon:"update",size:50}))),Object(r.createElement)("div",{className:"bottom-bar"},Object(r.createElement)("div",{className:"navigator"},Object(r.createElement)(_.Button,{onClick:function(e){e.preventDefault(),c(!1),i(null)},className:"close",label:Object(E.__)("Close","templates-patterns-collection"),icon:"no"}),n&&Object(r.createElement)(_.Button,{onClick:function(e){e.preventDefault(),i(n)},className:"prev",label:Object(E.__)("Previous","templates-patterns-collection"),icon:u?"arrow-right-alt2":"arrow-left-alt2"}),t&&Object(r.createElement)(_.Button,{onClick:function(e){e.preventDefault(),i(t)},className:"next",label:Object(E.__)("Next","templates-patterns-collection"),icon:u?"arrow-left-alt2":"arrow-right-alt2"})),Object(r.createElement)("div",{className:"actions"},o.upsell?Object(r.createElement)(_.Button,{className:"upgrade",isPrimary:!0,href:o.utmOutboundLink||tiobDash.upgradeURL},Object(E.__)("Upgrade and Import","templates-patterns-collection")):Object(r.createElement)(_.Button,{className:"import",isPrimary:!0,onClick:function(e){if(e.preventDefault(),s)return l(!0),!1;a(!0)}},Object(E.__)("Import","templates-patterns-collection")))))})),M=n(8),N=n.n(M),x=n(13),D=n.n(x),P=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return I(e,n,t)},T=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return I(e,t,{},"GET",n)},I=function(){var e=D()(N.a.mark((function e(t){var n,r,o,i,c,a=arguments;return N.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=a.length>1&&void 0!==a[1]&&a[1],r=a.length>2&&void 0!==a[2]?a[2]:{},o=a.length>3&&void 0!==a[3]?a[3]:"POST",i=!(a.length>4&&void 0!==a[4])||a[4],c={method:o,headers:{Accept:"application/json","Content-Type":"application/json"}},i&&(c.headers["x-wp-nonce"]=tiobDash.nonce),"POST"===o&&(c.body=JSON.stringify(r)),e.next=9,fetch(t,c).then((function(e){return n?e:e.json()}));case 9:return e.abrupt("return",e.sent);case 10:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),A=tiobDash.onboarding,L=function(e){return P(A.root+"/install_plugins",e)},R=function(e){var t=e.currentStep,n=e.progress,o=e.willDo,i={plugins:{label:Object(E.__)("Installing Plugins","templates-patterns-collection"),status:n.plugins,willDo:!0},content:{label:Object(E.__)("Importing Content","templates-patterns-collection"),status:n.content,willDo:o.content},customizer:{label:Object(E.__)("Importing Customizer Settings","templates-patterns-collection"),status:n.customizer,willDo:o.customizer},widgets:{label:Object(E.__)("Importing Widgets","templates-patterns-collection"),status:n.widgets,willDo:o.widgets}};return Object(r.createElement)("ul",{className:"stepper"},Object.keys(i).map((function(e,n){var o=i[e],c=o.label,a=o.status;if(!o.willDo)return null;var s=g()(["icon",{loading:t===e,warning:t===e,success:"done"===a,error:"error"===a,skip:"skip"===a}]),l="clock";return t===e&&(l="update"),"done"===a&&(l="yes"),"error"===a&&(l="no-alt"),Object(r.createElement)("li",{key:n},Object(r.createElement)("span",{className:s},Object(r.createElement)(_.Dashicon,{icon:l,className:t===e?"loading":""})),Object(r.createElement)("span",null,c))})))},F=function(e){var t=e.data,n=e.externalInstalled,o=t.external_plugins||null,i=g()(["well",{warning:o&&!n}]);return Object(r.createElement)("div",{className:i},Object(r.createElement)("h3",null,Object(r.createElement)(_.Dashicon,{icon:"info"}),Object(r.createElement)("span",null,o&&!n?Object(E.__)("To import this demo you have to install the following plugins","neve"):Object(E.__)("Note","templates-patterns-collection"),":")),Object(r.createElement)("ol",null,o&&!n?o.map((function(e,t){return Object(r.createElement)("li",{key:t},Object(r.createElement)(_.Button,{isLink:!0,href:e.author_url},e.name))})):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("li",null,Object(E.__)("We recommend you backup your website content before attempting a full site import.","neve")),Object(r.createElement)("li",null,Object(E.__)("Some of the demo images will not be imported and will be replaced by placeholder images.","neve")))))},B=function(e){var t=e.message,n=e.code;return Object(r.createElement)("div",{className:"well error"},t&&Object(r.createElement)("h3",null,Object(r.createElement)(_.Dashicon,{icon:"warning"}),Object(r.createElement)("span",null,t)),Object(r.createElement)("ul",null,Object(r.createElement)("li",{dangerouslySetInnerHTML:{__html:tiobDash.onboarding.i18n.troubleshooting}}),Object(r.createElement)("li",{dangerouslySetInnerHTML:{__html:tiobDash.onboarding.i18n.support}}),n&&Object(r.createElement)("li",null,Object(E.__)("Error code","templates-patterns-collection"),":"," ",Object(r.createElement)("code",null,n)),Object(r.createElement)("li",null,Object(E.__)("Error log","templates-patterns-collection"),":"," ",Object(r.createElement)(_.Button,{isLink:!0,href:tiobDash.onboarding.logUrl},tiobDash.onboarding.logUrl,Object(r.createElement)(_.Dashicon,{icon:"external"})))))};function z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function U(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?z(Object(n),!0).forEach((function(t){i()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):z(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var $=Object(w.compose)(Object(h.withSelect)((function(e){var t=e("neve-onboarding"),n=t.getCurrentEditor,r=t.getCurrentSite;return{editor:n(),siteData:r()}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding").setImportModalStatus;return{setModal:function(e){return t(e)}}})))((function(e){var t=e.setModal,n=e.editor,o=e.siteData,c=Object(r.useState)({content:!0,customizer:!0,widgets:!0}),a=j()(c,2),s=a[0],l=a[1],u=Object(r.useState)(!1),m=j()(u,2),d=m[0],p=m[1],f=Object(r.useState)(!1),h=j()(f,2),b=h[0],v=h[1],O=Object(r.useState)(!1),y=j()(O,2),w=y[0],S=y[1],k=Object(r.useState)(!1),C=j()(k,2),M=C[0],N=C[1],x=Object(r.useState)(null),D=j()(x,2),I=D[0],z=D[1],$=Object(r.useState)(null),W=j()($,2),V=W[0],q=W[1],H=Object(r.useState)(!1),J=j()(H,2),G=J[0],K=J[1],Y=Object(r.useState)(null),Q=j()(Y,2),X=Q[0],Z=Q[1],ee=Object(r.useState)(null),te=j()(ee,2),ne=te[0],re=te[1],oe=Object(r.useState)(null),ie=j()(oe,2),ce=ie[0],ae=ie[1],se=Object(r.useState)(!0),le=j()(se,2),ue=le[0],me=le[1],de=tiobDash.license;Object(r.useEffect)((function(){var e=o.remote_url||o.url,t=new URL("".concat(function(e){return e.replace(/\/$/,"")}(e)+"/","wp-json/ti-demo-data/data"));t.searchParams.append("license",de?de.key:"free"),T(t,!0,!1).then((function(e){e.ok||(re({message:Object(E.__)("Something went wrong while loading the site data. Please refresh the page and try again.","templates-patterns-collection"),code:"ti__ob_failed_fetch_response"}),me(!1)),e.json().then((function(e){ae(U(U({},e),o));var t=U({},e.mandatory_plugins||{}),n=U({},e.recommended_plugins||{}),r=e.default_off_recommended_plugins||[];Object.keys(t).map((function(e){t[e]=!0})),Object.keys(n).map((function(e){n[e]=!r.includes(e)})),Z(U(U({},n),t)),me(!1)}))})).catch((function(e){re({message:Object(E.__)("Something went wrong while loading the site data. Please refresh the page and try again.","templates-patterns-collection"),code:"ti__ob_failed_fetch_catch"}),me(!1)}))}),[]);function pe(){if(!s.content)return console.log("[S] Content."),fe(),!1;var e;q("content"),console.log("[P] Content."),(e={contentFile:ce.content_file,source:"remote",frontPage:ce.front_page,shopPages:ce.shop_pages,demoSlug:ce.slug,editor:n},P(A.root+"/import_content",e)).then((function(e){if(!e.success)return ge(e,"content"),!1;console.log("[D] Content."),e.frontpage_id&&z(e.frontpage_id),v("done"),fe()})).catch((function(e){return ge(e,"content")}))}function fe(){if(!s.customizer)return console.log("[S] Customizer."),he(),!1;var e;q("customizer"),console.log("[P] Customizer."),(e={source_url:ce.url,theme_mods:ce.theme_mods,wp_options:ce.wp_options},P(A.root+"/import_theme_mods",e)).then((function(e){if(!e.success)return ge(e,"customizer"),!1;console.log("[D] Customizer."),S("done"),he()})).catch((function(e){return ge(e,"customizer")}))}function he(){var e;s.widgets||(console.log("[S] Widgets."),be()),q("widgets"),console.log("[P] Widgets."),(e=ce.widgets,P(A.root+"/import_widgets",e)).then((function(e){if(!e.success)return ge(e,"widgets"),!1;console.log("[D] Widgets."),N("done"),be()})).catch((function(e){return ge(e,"widgets")}))}function be(){q("done"),K(!1)}function ge(e,t){K(!1),q(null),"plugins"===t&&v("skip"),["content","plugins"].includes(t)&&S("skip"),["content","plugins","customizer"].includes(t)&&N("skip");var n={plugins:Object(E.__)("Something went wrong while installing the necessary plugins.","templates-patterns-collection"),content:Object(E.__)("Something went wrong while importing the website content.","templates-patterns-collection"),customizer:Object(E.__)("Something went wrong while updating the customizer settings.","templates-patterns-collection"),widgets:Object(E.__)("Something went wrong while importing the widgets.","templates-patterns-collection")};switch(t){case"plugins":p("error");break;case"content":v("error");break;case"customizer":S("error");break;case"widgets":N("error")}re(e.data?{message:n[t],code:e.data}:{message:n[t]})}var ve,Oe=function(){if(G)return!1;t(!1)},ye=!o.external_plugins||o.external_plugins.every((function(e){return!0===e.active})),je=Object.keys(s).every((function(e){return!1===s[e]})),Ee={elementor:"".concat(tiobDash.onboarding.homeUrl,"/wp-admin/post.php?post=").concat(I,"&action=elementor"),brizy:"".concat(tiobDash.onboarding.homeUrl,"/?brizy-edit"),"beaver builder":"".concat(tiobDash.onboarding.homeUrl,"/?fl_builder"),"thrive architect":"".concat(tiobDash.onboarding.homeUrl,"/wp-admin/post.php?post=").concat(I,"&action=architect&tve=true"),"divi builder":"".concat(tiobDash.onboarding.homeUrl,"/?et_fb=1&PageSpeed=off"),gutenberg:"".concat(tiobDash.onboarding.homeUrl,"/wp-admin/post.php?post=").concat(I,"&action=edit")}[n];return Object(r.createElement)(_.Modal,{className:g()(["ob-import-modal",{fetching:ue}]),title:ce&&!ue?ce.title:Object(r.createElement)("span",{className:"is-loading title"}),onRequestClose:Oe,shouldCloseOnClickOutside:!G&&!ue,isDismissible:!G&&!ue},ue?Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"modal-body"},Object(r.createElement)("div",{className:"well is-loading"},Object(r.createElement)("h3",null,Object(r.createElement)("div",{className:"mock-icon is-loading"}),Object(r.createElement)("span",{className:"is-loading"})),Object(r.createElement)("ol",null,[1,2,3].map((function(e){return Object(r.createElement)("li",{key:e})})))),Object(r.createElement)("hr",null),Object(r.createElement)("div",{className:"options general"},Object(r.createElement)("h3",{className:"is-loading"}),Object(r.createElement)("ul",null,[1,2,3].map((function(e){return Object(r.createElement)("li",{key:e},Object(r.createElement)("div",{className:"mock-icon is-loading"}),Object(r.createElement)("span",{className:"is-loading"}),Object(r.createElement)("div",{className:"toggle is-loading"}))})))),Object(r.createElement)("hr",null),Object(r.createElement)("div",{className:"options plugins"},Object(r.createElement)("h3",{className:"is-loading"}),Object(r.createElement)("ul",null,[1,2].map((function(e){return Object(r.createElement)("li",{key:e},Object(r.createElement)("div",{className:"mock-icon is-loading"}),Object(r.createElement)("span",{className:"is-loading"}),Object(r.createElement)("div",{className:"toggle is-loading"}))}))))),Object(r.createElement)("div",{className:"modal-footer"},Object(r.createElement)(_.Button,{isSecondary:!0,className:"is-loading"}),Object(r.createElement)(_.Button,{isPrimary:!0,className:"is-loading"}))):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"modal-body"},G||"done"===V||ne?Object(r.createElement)(r.Fragment,null,ne&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)(B,{message:ne.message||null,code:ne.code||null}),Object(r.createElement)("hr",null)),null!==V&&Object(r.createElement)(R,{progress:{plugins:d,content:b,customizer:w,widgets:M},currentStep:V,willDo:s}),"done"===V&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("hr",null),Object(r.createElement)("p",{className:"import-result"},Object(E.__)("Content was successfully imported. Enjoy your new site!","templates-patterns-collection")),Object(r.createElement)("hr",null))):Object(r.createElement)(r.Fragment,null,Object(r.createElement)(F,{data:ce,externalInstalled:ye}),Object(r.createElement)("hr",null),(ve={content:{title:Object(E.__)("Content","templates-patterns-collection"),icon:"admin-post"},customizer:{title:Object(E.__)("Customizer","templates-patterns-collection"),icon:"admin-customizer"},widgets:{title:Object(E.__)("Widgets","templates-patterns-collection"),icon:"admin-generic"}},Object(r.createElement)("div",{className:"options general"},Object(r.createElement)("h3",null,Object(E.__)("General","templates-patterns-collection"),":"),Object(r.createElement)("ul",null,Object.keys(ve).map((function(e,t){return Object(r.createElement)("li",{key:t},Object(r.createElement)(_.Dashicon,{className:g()({active:s[e]}),icon:ve[e].icon}),Object(r.createElement)("span",null,ve[e].title),Object(r.createElement)("div",{className:"toggle-wrapper"},Object(r.createElement)(_.ToggleControl,{checked:s[e],onChange:function(){l(U(U({},s),{},i()({},e,!s[e])))}})))}))))),Object(r.createElement)("hr",null),function(){if(ue)return null;var e=U(U({},ce.recommended_plugins||{}),ce.mandatory_plugins||{});return Object(r.createElement)("div",{className:"options plugins"},Object(r.createElement)("h3",null,Object(E.__)("Plugins","templates-patterns-collection"),":"),Object(r.createElement)("ul",null,Object.keys(e).map((function(t,n){return Object(r.createElement)("li",{key:n},Object(r.createElement)(_.Dashicon,{icon:"admin-plugins",className:g()({active:X[t]})}),Object(r.createElement)("span",{dangerouslySetInnerHTML:{__html:e[t]}}),t in ce.recommended_plugins&&Object(r.createElement)("div",{className:"toggle-wrapper"},Object(r.createElement)(_.ToggleControl,{checked:X[t],onChange:function(){Z(U(U({},X),{},i()({},t,!X[t])))}})))}))))}())),!G&&Object(r.createElement)("div",{className:"modal-footer"},"done"!==V?Object(r.createElement)(r.Fragment,null,Object(r.createElement)(_.Button,{isSecondary:!0,onClick:Oe},Object(E.__)("Close","templates-patterns-collection")),!ne&&Object(r.createElement)(_.Button,{isPrimary:!0,disabled:je||!ye,onClick:function(){K(!0),function(){if(console.clear(),!X)return console.log("[S] Plugins."),pe(),!1;q("plugins"),console.log("[P] Plugins."),L(X).then((function(e){if(!e.success)return ge(e,"plugins"),!1;console.log("[D] Plugins."),p("done"),pe()})).catch((function(e){return ge(e,"plugins")}))}()}},Object(E.__)("Import","templates-patterns-collection"))):Object(r.createElement)(r.Fragment,null,Object(r.createElement)(_.Button,{isLink:!0,className:"close",onClick:Oe},Object(E.__)("Back to Sites Library","templates-patterns-collection")),Object(r.createElement)(_.Button,{isSecondary:!0,href:tiobDash.onboarding.homeUrl},Object(E.__)("View Website","templates-patterns-collection")),Object(r.createElement)(_.Button,{isPrimary:!0,href:Ee},Object(E.__)("Add your own content","templates-patterns-collection"))))))}));function W(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function V(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?W(Object(n),!0).forEach((function(t){i()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):W(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var q=Object(w.compose)(Object(h.withSelect)((function(e){return{themeData:(0,e("neve-onboarding").getThemeAction)()||!1}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding"),n=t.setImportModalStatus,r=t.setInstallModalStatus,o=t.setThemeAction;return{setImportModal:function(e){return n(e)},setInstallModal:function(e){return r(e)},setThemeAction:function(e){return o(e)}}})))((function(e){var t=e.setImportModal,n=e.setInstallModal,o=e.themeData,i=e.setThemeAction,c=o.action,a=o.slug,s=o.nonce,l=tiobDash,u=l.themesURL,m=l.brandedTheme,d=Object(r.useState)(!1),p=j()(d,2),f=p[0],h=p[1],b=Object(r.useState)(null),g=j()(b,2),v=g[0],O=g[1],y=function(){n(!1)},w=function(e){h(!1),O(Object(E.sprintf)(// translators: %s: Error message.
|
2 |
+
Object(E.__)("An error has ocurred: %s","templates-patterns-collection"),e))},S=function(){h("activating");var e="".concat(u,"?action=activate&stylesheet=").concat(a,"&_wpnonce=").concat(s);T(e,!0).then((function(e){if(200!==e.status)return w(Object(E.__)("Could not activate theme.","templates-patterns-collection")),h(!1),!1;h(!1),n(!1),i(!1),t(!0)}))};return Object(r.createElement)(_.Modal,{className:"ob-import-modal install-modal",title:Object(E.__)("Install and Activate Neve","templates-patterns-collection"),onRequestClose:y,shouldCloseOnClickOutside:!f,isDismissible:!f},Object(r.createElement)("div",{className:"modal-body",style:{textAlign:"center"}},!m&&Object(r.createElement)("img",{style:{width:75},src:"".concat(tiobDash.assets,"/img/logo.svg"),alt:Object(E.__)("Logo","templates-patterns-collection")}),v&&Object(r.createElement)("div",{className:"well error",style:{margin:"20px 0"}},v),Object(r.createElement)("p",{style:{lineHeight:1.6,fontSize:"15px"}},Object(E.__)("In order to import the starter site, Neve theme has to be installed and activated. Click the button below to install and activate Neve","templates-patterns-collection"))),Object(r.createElement)("div",{className:"modal-footer",style:{justifyContent:"center"}},Object(r.createElement)("div",{className:"actions",style:{display:"flex"}},!v&&Object(r.createElement)(_.Button,{dismiss:v,isPrimary:!0,disabled:f,className:f&&"is-loading",icon:f&&"update",onClick:"install"===c?function(){h("installing"),wp.updates.installTheme({slug:"neve",success:function(){i(V(V({},o),{},{action:"activate"})),S()},error:function(e){i(V(V({},o),{},{action:"activate"})),w(e.errorMessage||Object(E.__)("Could not install theme.","templates-patterns-collection"))}})}:S},f&&("installing"===f?Object(E.__)("Installing"):Object(E.__)("Activating")),!f&&("install"===c?Object(E.__)("Install and Activate","templates-patterns-collection"):Object(E.__)("Activate","templates-patterns-collection"))),Object(r.createElement)(_.Button,{isSecondary:!0,disabled:f,onClick:y},Object(E.__)("Close","templates-patterns-collection")))))})),H=function(e){var t=e.data,n=function(e){return console.log(e)},o=Object(r.useState)(!1),i=j()(o,2),c=i[0],a=i[1],s=Object(r.useState)(!1),l=j()(s,2),u=l[0],m=l[1],d=Object(r.useState)(!1),p=j()(d,2),f=p[0],h=p[1],b=Object(r.useState)(null),g=j()(b,2),v=g[0],O=g[1],y=Object(r.useState)(null),w=j()(y,2),S=w[0],k=w[1];if(c)return null;var C=function(){"done"===f&&a(!0),m(!1),O(null),h(!1)};return Object(r.createElement)("div",{className:"ob-migration"},u&&Object(r.createElement)(_.Modal,{className:"ob-import-modal migration",title:Object(E.__)("Migrate","templates-patterns-collection")+" "+t.theme_name,onRequestClose:C,shouldCloseOnClickOutside:!f,isDismissible:!f},Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"modal-body"},v&&Object(r.createElement)(B,{message:v.message||null,code:v.code||null}),!1===f&&!v&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)(F,{data:t}),t.mandatory_plugins&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("hr",null),Object(r.createElement)("h3",null,Object(E.__)("The following plugins will be installed","neve"),":"),Object(r.createElement)("ul",null,Object.keys(t.mandatory_plugins).map((function(e,n){return Object(r.createElement)("li",{key:n},"-"," ",t.mandatory_plugins[e])}))))),"done"===f&&Object(r.createElement)("p",{className:"import-result"},Object(E.__)("Content was successfully imported. Enjoy your new site!","neve")),!0===f&&Object(r.createElement)("div",{className:"loading"},Object(r.createElement)(_.Dashicon,{icon:"update",size:50}),Object(r.createElement)("h3",null,Object(E.__)("Migrating","templates-patterns-collection"),"..."))),(!f||"done"===f)&&Object(r.createElement)("div",{className:"modal-footer"},Object(r.createElement)(_.Button,{isSecondary:"done"!==f,isLink:"done"===f,className:"done"===f?"close":null,onClick:C},"done"===f?Object(E.__)("Close","templates-patterns-collection"):Object(E.__)("Cancel","templates-patterns-collection")),v||"done"===f?Object(r.createElement)(r.Fragment,null,Object(r.createElement)(_.Button,{isSecondary:!0,href:"".concat(tiobDash.onboarding.homeUrl,"/wp-admin/post.php?post=").concat(S,"&action=elementor")},Object(E.__)("Edit Content","templates-patterns-collection")),Object(r.createElement)(_.Button,{isPrimary:!0,href:tiobDash.onboarding.homeUrl},Object(E.__)("View Website","templates-patterns-collection"))):Object(r.createElement)(_.Button,{isPrimary:!0,onClick:function(){var e;e=Object.keys(t.mandatory_plugins).reduce((function(e,t){return e[t]=!0,e}),{}),L(e).then((function(e){if(h(!0),!e.success)return O({code:e.data||null,message:Object(E.__)("Something went wrong while installing the necessary plugins.","neve")}),h(!1),!1;var n=t.template,r=t.template_name;P(tiobDash.onboarding.root+"/migrate_frontpage",{template:n,template_name:r}).then((function(e){if(!e.success)return O({code:e.data||null,message:Object(E.__)("Something went wrong while importing the website content.","neve")}),h(!1),!1;k(e.data),h("done")}))}))}},Object(E.__)("Start Migration","templates-patterns-collection"))))),Object(r.createElement)("h2",null,t.heading),Object(r.createElement)("p",null,t.description),Object(r.createElement)("div",{className:"card starter-site-card"},Object(r.createElement)("div",{className:"top"},t.screenshot&&Object(r.createElement)("div",{className:"image"},Object(r.createElement)("img",{src:t.screenshot,alt:t.theme_name}))),Object(r.createElement)("div",{className:"bottom"},Object(r.createElement)("p",{className:"title"},t.theme_name))),Object(r.createElement)("div",{className:"actions"},Object(r.createElement)(_.Button,{isPrimary:!0,onClick:function(){return m(!0),!1}},Object(E.__)("Migrate","templates-patterns-collection")+" "+t.theme_name),Object(r.createElement)(_.Button,{isSecondary:!0,onClick:function(){P(tiobDash.onboarding.root+"/dismiss_migration",{theme_mod:t.theme_mod}).then((function(e){if(!e.success)return n(Object(E.__)("Something went wrong. Please reload the page and try again.","neve")),!1;n(Object(E.__)("Dismissed","templates-patterns-collection")),a(!0)}))}},Object(E.__)("Dismiss","templates-patterns-collection"))))},J=n(9),G=n.n(J),K=n(14),Y=n.n(K),Q=Object(w.compose)(Object(h.withSelect)((function(e){var t=e("neve-onboarding"),n=t.getCurrentEditor,r=t.getSites;return{editor:n(),sites:r().sites}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding").setCurrentEditor;return{setCurrentEditor:function(e){return t(e)}}})))((function(e){var t=e.EDITOR_MAP,n=e.count,o=e.onlyProSites,i=e.editor,c=e.setCurrentEditor,a=e.sites,s=Object.keys(a);return Object(r.createElement)("div",{className:"editor-tabs"},s.map((function(e,a){var s=g()(["tab",e,{active:e===i}]);return Object(r.createElement)("a",{key:a,href:"#",className:s,onClick:function(t){t.preventDefault(),c(e)}},Object(r.createElement)("span",{className:"icon-wrap"},Object(r.createElement)("img",{className:"editor-icon",src:tiobDash.assets+"img/"+t[e].icon,alt:Object(E.__)("Builder Logo","templates-patterns-collection")})),Object(r.createElement)("span",{className:"editor"},t[e].niceName),Object(r.createElement)("span",{className:"count"},n[e]),o.includes(e)&&Object(r.createElement)("span",{className:"pro-badge"},"PRO"))})))})),X=Object(w.compose)(Object(h.withSelect)((function(e){var t=e("neve-onboarding"),n=t.getCurrentEditor,r=t.getSites;return{editor:n(),sites:r().sites}})),Object(h.withDispatch)((function(e){var t=e("neve-onboarding").setCurrentEditor;return{setCurrentEditor:function(e){return t(e)}}})))((function(e){var t=e.EDITOR_MAP,n=e.count,o=e.editor,i=e.setCurrentEditor,c=e.sites,a=e.isSmall,s=Object(r.useState)(!1),l=j()(s,2),u=l[0],m=l[1],d=Object.keys(c),p=function(){return m(!u)},f=g()(["ob-dropdown","editor-selector",{small:a}]);return Object(r.createElement)("div",{className:f},Object(r.createElement)(_.Button,{onClick:p,className:"select ob-dropdown"},Object(r.createElement)("img",{className:"editor-icon",src:tiobDash.assets+"img/"+t[o].icon,alt:Object(E.__)("Builder Logo","templates-patterns-collection")}),!a&&Object(r.createElement)("span",null,t[o].niceName),Object(r.createElement)("span",{className:"count"},n[o]),Object(r.createElement)(_.Dashicon,{size:14,icon:u?"arrow-up-alt2":"arrow-down-alt2"}),u&&Object(r.createElement)(_.Popover,{position:"bottom center",onClose:p,noArrow:!0},u&&Object(r.createElement)("ul",{className:"options"},d.map((function(e,c){return e===o?null:Object(r.createElement)("li",{key:c},Object(r.createElement)("a",{href:"#",onClick:function(t){t.preventDefault(),i(e),m(!1)}},Object(r.createElement)("img",{className:"editor-icon",src:tiobDash.assets+"img/"+t[e].icon,alt:Object(E.__)("Builder Logo","templates-patterns-collection")}),Object(r.createElement)("span",null,t[e].niceName),Object(r.createElement)("span",{className:"count"},n[e])))}))))))})),Z=Object(w.compose)(Object(h.withDispatch)((function(e){var t=e("neve-onboarding"),n=t.setOnboardingState,r=t.setCurrentCategory;return{cancelOnboarding:function(){n(!1)},resetCategory:function(){r("all")}}})),Object(h.withSelect)((function(e){var t=e("neve-onboarding"),n=t.getCurrentEditor,r=t.getCurrentCategory,o=t.getPreviewStatus,i=t.getCurrentSite,c=t.getImportModalStatus,a=t.getOnboardingStatus,s=t.getSites,l=t.getInstallModalStatus;return{editor:n(),category:r(),previewOpen:o(),currentSiteData:i(),importModal:c(),installModal:l(),isOnboarding:a(),getSites:s()}})))((function(e){var t=e.editor,n=e.category,o=e.resetCategory,i=e.previewOpen,c=e.currentSiteData,a=e.importModal,s=e.isOnboarding,l=e.cancelOnboarding,u=e.getSites,m=e.installModal,d=Object(r.useState)(""),p=j()(d,2),f=p[0],h=p[1],b=Object(r.useState)(9),g=j()(b,2),v=g[0],y=g[1],w=u.sites,M=void 0===w?{}:w,N=u.migration,x=Object(r.useState)(!1),D=j()(x,2),P=D[0],T=D[1];if(1>M.length)return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("p",null,Object(E.__)("Starter sites could not be loaded. Please refresh and try again.","neve"),s&&Object(r.createElement)(_.Button,{style:{display:"block",margin:"20px auto"},isPrimary:!0,onClick:l},Object(E.__)("Close","templates-patterns-collection"))));var I=[Object(E.__)("Business","templates-patterns-collection"),Object(E.__)("Ecommerce","templates-patterns-collection"),Object(E.__)("Fashion","templates-patterns-collection"),Object(E.__)("Blogging","templates-patterns-collection"),Object(E.__)("Photography","templates-patterns-collection")],A={all:Object(E.__)("All Categories"),free:Object(E.__)("Free"),business:Object(E.__)("Business"),portfolio:Object(E.__)("Portfolio"),woocommerce:Object(E.__)("WooCommerce"),blog:Object(E.__)("Blog"),personal:Object(E.__)("Personal"),other:Object(E.__)("Other")},L={gutenberg:{icon:"gutenberg.jpg",niceName:"Gutenberg"},elementor:{icon:"elementor.jpg",niceName:"Elementor"},"beaver builder":{icon:"beaver.jpg",niceName:Object(r.createElement)(r.Fragment,null,"Beaver ",Object(r.createElement)("span",{className:"long-name"},"Builder"))},brizy:{icon:"brizy.jpg",niceName:"Brizy"},"divi builder":{icon:"divi.jpg",niceName:"Divi"},"thrive architect":{icon:"thrive.jpg",niceName:Object(r.createElement)(r.Fragment,null,"Thrive ",Object(r.createElement)("span",{className:"long-name"},"Architect"))}},R=function(){var e={};return U().map((function(t){var n=M&&M[t]?M[t]:{};e[t]=O()(Object.values(n))})),e},F=function(e,t){return"free"===t?e.filter((function(e){return!e.upsell})):"all"!==t?e.filter((function(e){return e.keywords.includes(t)})):e},B=function(e){return f?new Y.a(e,{includeScore:!0,keys:["title","slug","keywords"]}).search(f).map((function(e){return e.item})):e},z=function(e){return R()[e]},U=function(){return Object.keys(M)},W=function(){var e=R()[t];return e=B(e),e=F(e,n)},V=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(null===c)return null;var n=R()[t],r=n.indexOf(c);return-1===r||1===n.length?null:e&&0===r?n[n.length-1]:e||r!==n.length-1?n[e?r-1:r+1]:n[0]};var J,K=U().filter((function(e){return Object.keys(M[e]).filter((function(t){return!0===M[e][t].upsell})).length===Object.keys(M[e]).length})),Z=(J={builders:{},categories:{}},U().map((function(e){var t=z(e);t=F(t,n),t=B(t),J.builders[e]=t?t.length:0})),Object.keys(A).map((function(e){var n=z(t);n=F(n,e),n=B(n),J.categories[e]=n?n.length:0})),J);return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"ob"},P&&!s&&Object(r.createElement)("div",{className:"sticky-nav"},Object(r.createElement)("div",{className:"container sticky-nav-content"},!tiobDash.brandedTheme&&Object(r.createElement)("img",{src:"".concat(tiobDash.assets,"img/logo.svg"),alt:"Logo"}),Object(r.createElement)(S,{count:Z.categories,categories:A,onSearch:function(e){h(e),y(9)},query:f}),Object(r.createElement)(X,{isSmall:!0,count:Z.builders,EDITOR_MAP:L}))),N?Object(r.createElement)(H,{data:N}):null,Object(r.createElement)("div",{className:"ob-head"},!s&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("h2",null,!tiobDash.brandedTheme&&Object(r.createElement)("img",{src:"".concat(tiobDash.assets,"img/logo.svg"),alt:"Logo"}),Object(r.createElement)("span",null,Object(E.__)("Ready to use pre-built websites with 1-click installation","neve"))),Object(r.createElement)("p",null,tiobDash.strings.starterSitesTabDescription)),s&&Object(r.createElement)(_.Button,{className:"close-onboarding",isLink:!0,icon:"no-alt",onClick:l})),Object(r.createElement)("div",{className:"ob-body"},Object(r.createElement)(G.a,{onChange:function(e){T(!e)}},Object(r.createElement)("div",null,Object(r.createElement)(X,{count:Z.builders,EDITOR_MAP:L}),Object(r.createElement)(S,{count:Z.categories,categories:A,onSearch:function(e){h(e),y(9)},query:f}),Object(r.createElement)(Q,{EDITOR_MAP:L,onlyProSites:K,count:Z.builders}))),0===W().length?Object(r.createElement)("div",{className:"no-results"},Object(r.createElement)("p",null,Object(E.__)("No results found","templates-patterns-collection"),"."," ",Object(E.__)("You can try a different search or use one of the categories below.","neve")),Object(r.createElement)("div",{className:"tags"},I.map((function(e,t){return Object(r.createElement)(_.Button,{key:t,isPrimary:!0,className:"tag",onClick:function(t){t.preventDefault(),h(e),o()}},e)})))):Object(r.createElement)("div",{className:"ob-sites"},W().slice(0,v).map((function(e,t){return Object(r.createElement)(k,{key:t,data:e})}))),Object(r.createElement)(G.a,{onChange:function(e){if(!e)return!1;y(v+9)}},Object(r.createElement)("span",{style:{height:10,width:10,display:"block"}})))),i&&c&&Object(r.createElement)(C,{next:V(),prev:V(!0)}),a&&c&&Object(r.createElement)($,null),m&&Object(r.createElement)(q,null))})),ee=Object(h.withSelect)((function(e){return{onboarding:(0,e("neve-onboarding").getOnboardingStatus)()}}))((function(e){var t=e.onboarding,n=g()(["content-wrap","starter-sites",{"is-onboarding":t}]);return Object(r.createElement)("div",{className:"tiob-wrap"},Object(r.createElement)("div",{className:n},Object(r.createElement)("div",{className:"container content"},Object(r.createElement)("div",{className:"main"},Object(r.createElement)("div",{className:"tab-content columns starter-sites"},Object(r.createElement)(Z,null))))))}));Object(h.registerStore)("neve-onboarding",{reducer:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:p,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"REFRESH_SITES":var n=t.payload.sites;return a(a({},e),{},{sites:n});case"SET_CURRENT_EDITOR":var r=t.payload.editor;return localStorage.setItem("neve-onboarding-editor",r),a(a({},e),{},{editor:r});case"SET_CURRENT_CATEGORY":var o=t.payload.category;return a(a({},e),{},{category:o});case"SET_FOCUSED_SITE":var i=t.payload.siteData;return a(a({},e),{},{currentSite:i});case"SET_PREVIEW_STATUS":var c=t.payload.previewStatus;return a(a({},e),{},{previewStatus:c});case"SET_IMPORT_MODAL_STATUS":var s=t.payload.importModalStatus;return a(a({},e),{},{importModalStatus:s});case"SET_INSTALL_MODAL_STATUS":var l=t.payload.installModalStatus;return a(a({},e),{},{installModalStatus:l});case"SET_ONBOARDING":var u=t.payload.status;return a(a({},e),{},{isOnboarding:u});case"SET_THEME_ACTIONS":var m=t.payload.themeActions;return a(a({},e),{},{themeAction:m})}return e},actions:f,selectors:{getSites:function(e){return e.sites},getMigrationData:function(e){return e.migrationData},getCurrentEditor:function(e){return e.editor},getCurrentCategory:function(e){return e.category},getCurrentSite:function(e){return e.currentSite},getPreviewStatus:function(e){return e.previewStatus},getImportModalStatus:function(e){return e.importModalStatus},getOnboardingStatus:function(e){return e.isOnboarding},getThemeAction:function(e){return e.themeAction},getInstallModalStatus:function(e){return e.installModalStatus}}}),Object(r.render)(Object(r.createElement)(ee,null),document.getElementById("tpc-app"))}]);
|
assets/build/style-app-rtl.css
ADDED
@@ -0,0 +1,2 @@
|
|
Â
|
|
Â
|
1 |
+
#wpcontent{padding-right:0 !important}#wpbody-content>.error,#wpbody-content>.info,#wpbody-content>.notice{display:none !important}.ob-overflow-off{overflow:hidden !important}@media screen and (min-width: 660px){.ob-import-modal{width:630px !important}}.container{padding:0 15px}.container.content{padding-top:20px;position:relative}svg.is-loading,button.is-loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear;margin-left:0}.col{width:100%}@-webkit-keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}.columns.starter-sites{position:relative;display:flex;flex-grow:1}.ss-background{opacity:.25;z-index:-1;position:absolute;top:0;bottom:0;width:100%;display:block;background-size:cover;background-position:center center;right:0;left:0;height:calc(100vh - 300px);flex-grow:1}.unavailable-starter-sites{background-color:#fff;border:1px solid #ccc;padding:50px 30px;text-align:center;align-items:center;justify-content:center}.unavailable-starter-sites h1{line-height:1.6}.content-wrap.is-onboarding{position:fixed;top:0;bottom:0;right:0;left:0;background-color:#f1f1f1;z-index:100000;overflow:auto}.content-wrap.is-onboarding h2{display:block}.content-wrap.is-onboarding h2 img{display:none}.content-wrap.is-onboarding .content{background-color:#fefefe;padding-top:30px}.content-wrap.is-onboarding .ob{display:flex;min-height:100vh;flex-direction:column}.content-wrap.is-onboarding .ob-migration{text-align:center}.content-wrap.is-onboarding .ob-migration h2{line-height:1}.content-wrap.is-onboarding .ob-head button{margin:0 !important}.content-wrap.is-onboarding .ob-head{margin:0 0 20px;display:flex;justify-content:flex-end;align-items:flex-end}.content-wrap.is-onboarding .ob-head button.close-onboarding{color:#676767}.content-wrap.is-onboarding .ob-head button.close-onboarding svg{width:30px;height:30px}.ob{width:100%}.ob-sites{display:flex;flex-direction:row;flex-wrap:wrap}.no-results{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:30px 0}.no-results p{font-size:16px}.no-results p span{color:#0073AA;font-weight:600}.no-results .tags{margin-top:10px;justify-content:center;display:flex;flex-wrap:wrap}.no-results .tags .tag{margin:10px 20px;line-height:normal;height:auto;font-weight:600;padding:10px 15px;color:#fff;transition:all .3s ease}.no-results .tags .tag:hover{background-color:#0071a7}.pro-badge{background-color:#6EB77A;height:auto;color:#fff;font-weight:600;text-transform:uppercase;padding:5px 10px;margin-right:auto;border-radius:999px;line-height:normal;display:flex;align-items:center}.pro-badge svg{margin-left:3px}.ob-migration{margin-bottom:20px}.ob-migration .card.starter-site-card{margin-left:auto !important;margin-right:auto !important}.ob-migration .card.starter-site-card .image{height:auto}.ob-migration .actions{margin:30px auto 0;display:flex;justify-content:center}.ob-migration button:last-child{margin-right:10px}.ob-head>h2,.ob-migration>h2{font-size:21px;color:#282828;margin:0;line-height:1.6;display:flex;align-items:center}.ob-head>h2>img,.ob-migration>h2>img{margin-left:20px}.ob-head>p,.ob-migration>p{margin:20px 0;font-size:15px;color:#282828}.ob-head>button,.ob-migration>button{margin-bottom:20px}.header-form{margin-top:20px;display:flex;align-items:center;flex-direction:column}.header-form input{margin:0;display:block;flex-grow:1;border:1px solid #e1e1e1;height:52px;padding:5px 50px 5px 30px;font-size:17px;font-weight:300}.search{position:relative;display:flex;width:100%;flex-wrap:wrap}.search input{width:auto;flex-shrink:1}.search img{opacity:.4;position:absolute;top:10px;right:10px}.search .ob-dropdown{width:100%;height:52px;margin:20px 0 0}.search .ob-dropdown button{position:relative;right:-1px;height:100%;display:flex;align-items:center;font-weight:600;padding:5px 10px 5px 20px;background:#fff;border:1px solid #e1e1e1;font-size:14px;margin:0}.search .ob-dropdown button>svg,.search .ob-dropdown button .dashicon{margin-right:auto;display:flex;align-items:center}.search .ob-dropdown .options{margin:0}.search .ob-dropdown .options li{margin:0}.search .ob-dropdown .options a{height:35px;font-size:14px;display:flex;align-items:center;font-weight:600;color:#282828;cursor:pointer;padding:5px 10px;text-decoration:none}.search .ob-dropdown .options a .count{color:#a3a3a3}.search .ob-dropdown .options a:hover{color:#fff;background-color:#0073AA}.search .ob-dropdown .options a:hover .count{color:#fff}.search .ob-dropdown .options a .count{margin-right:auto}.editor-tabs{display:none;margin:30px 0;position:relative}.editor-tabs:after{content:"";position:absolute;display:block;width:100%;right:0;border-bottom:1px solid #e0e0e0;height:1px;z-index:-1;left:0;bottom:0}.editor-tabs .long-name{display:none}.editor-tabs a{padding:15px 0px 12px 10px;display:flex;align-items:center;font-weight:700;text-decoration:none;font-size:15px;border-bottom:3px solid transparent;position:relative;width:auto}.editor-tabs a:last-child{padding-left:0}.editor-tabs a:not(:first-child){margin-right:auto}.editor-tabs a.active{border-bottom:3px solid #0073AA}.editor-tabs a .pro-badge{margin-right:auto;font-size:11px}.editor-tabs .editor{color:#616161}.editor-tabs .count{color:rgba(97,97,97,0.5);margin:0 10px}.editor-tabs .icon-wrap{display:none;margin-left:10px;width:34px;height:34px;border-radius:100%;overflow:hidden}.editor-tabs .icon-wrap img{max-width:100%;display:block}@media (min-width: 1600px){.editor-tabs .long-name{display:inline}}.ob-dropdown.editor-selector{overflow:visible;display:inline-block;position:relative;width:100%}.ob-dropdown.editor-selector button{display:flex;align-items:center;font-weight:600;padding:5px 10px 5px 20px;background:#fff;border:1px solid #e1e1e1;font-size:14px;height:52px;width:100%}.ob-dropdown.editor-selector button .count{color:#a3a3a3;margin:0 auto 0 20px}.ob-dropdown.editor-selector img{border-radius:100%;margin-left:5px;max-width:30px;max-height:30px}.ob-dropdown.editor-selector .options{margin:0}.ob-dropdown.editor-selector .options li{border-bottom:1px solid #e1e1e1;padding:0;margin:0}.ob-dropdown.editor-selector .options a{height:35px;font-size:14px;display:flex;align-items:center;font-weight:600;color:#282828;cursor:pointer;padding:5px 10px;text-decoration:none}.ob-dropdown.editor-selector .options a:hover{background-color:#0073AA;color:#fff}.card{width:100%;display:flex;max-width:unset;min-width:unset;border:1px solid #e1e1e1;flex-direction:column;padding:30px 40px;align-self:flex-start;flex-grow:0}.card .card-header{flex-direction:row;display:flex;align-items:center}.card .card-header .title{font-size:18px;line-height:1.5}.card .card-header .icon{margin-left:10px}.card .card-header .icon.dashicon{width:33px;height:33px;fill:#0073AA}.card .card-content{display:flex;flex-direction:column;flex-grow:1}.card .card-content a,.card .card-content button{align-self:flex-start;margin-top:auto}.card p{font-size:15px;color:#616161}.card .card-description{margin:15px 0 25px}.card.starter-site-card{padding:0;max-width:100%}.card.starter-site-card:hover .actions,.card.starter-site-card:hover .fav,.card.starter-site-card:focus-within .actions,.card.starter-site-card:focus-within .fav{opacity:1}.card.starter-site-card .actions.visible{opacity:1}.card.starter-site-card .top{position:relative;overflow:hidden}.card.starter-site-card .fav{position:absolute;z-index:2000;right:-15px;top:-30px;opacity:0;transition:.3s ease}.card.starter-site-card .fav button{padding:30px 30px 30px 5px;height:auto;transform:rotate(-45deg);background-color:#4268CF}.card.starter-site-card .fav svg{transform:rotate(45deg);fill:#fff;max-width:15px}.card.starter-site-card .actions{background-color:rgba(0,0,0,0.75);right:0;left:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;position:absolute;opacity:0;transition:.3s ease}.card.starter-site-card .actions button{background-color:#0073AA;color:#fff;font-weight:600;line-height:normal;height:auto;padding:8px 15px;transition:all .3s ease}.card.starter-site-card .actions button:hover{box-shadow:none;background-color:#005177}.card.starter-site-card .actions button.preview{background-color:#6BC2DD}.card.starter-site-card .actions button.preview:hover{background-color:#42b1d3}.card.starter-site-card .actions button:last-child{margin-right:10px}.card.starter-site-card .image{height:335px;background-size:cover;background-position:top center;background-color:rgba(100,109,130,0.25)}.card.starter-site-card img{width:100%;display:block}.card.starter-site-card .bottom{display:flex;align-items:center;padding:15px 30px 15px 10px;border-top:1px solid #e1e1e1}.card.starter-site-card .bottom p{font-size:16px;font-weight:700;color:#282828;margin:0}.ob-preview{background-color:#fff;position:fixed;top:0;bottom:0;right:0;left:0;z-index:100000;height:100vh;margin:0;display:flex;flex-direction:column}.ob-preview .loading{bottom:0;top:0;right:0;left:0;position:absolute;display:flex;align-items:center;justify-content:center;z-index:100000;color:#646D82}.ob-preview .loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-preview .preview{display:flex;flex-direction:column;position:relative;flex-grow:1}.ob-preview .preview iframe{flex-grow:1;position:relative;z-index:100001;height:100%;width:100%}.ob-preview .bottom-bar{border-top:1px solid #e1e1e1;display:flex;padding:15px 30px;align-items:center}.ob-preview .bottom-bar .actions{margin-right:auto}.ob-import-modal .stepper li{display:flex;align-items:center;margin-bottom:25px;font-size:15px}.ob-import-modal .stepper li .icon{margin-left:20px;background-color:#0073AA;color:#fff;padding:5px;border-radius:100%}.ob-import-modal .stepper li .icon.success{background-color:#6EB77A}.ob-import-modal .stepper li .icon.success svg{left:1px;position:relative}.ob-import-modal .stepper li .icon.warning{background-color:#ffb900}.ob-import-modal .stepper li .icon.error{background-color:#EC7C7C}.ob-import-modal .stepper li .icon.skip{background-color:#e1e1e1}.ob-import-modal .stepper li .icon.loading .dashicon,.ob-import-modal .stepper li .icon.loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal .stepper li svg{width:20px;height:20px;display:block}@-webkit-keyframes loading-placeholder{0%{opacity:.1}50%{opacity:.2}100%{opacity:.1}}@keyframes loading-placeholder{0%{opacity:.1}50%{opacity:.2}100%{opacity:.1}}@-webkit-keyframes loading-placeholder-high-opacity{0%{opacity:.7}50%{opacity:.9}100%{opacity:.7}}@keyframes loading-placeholder-high-opacity{0%{opacity:.7}50%{opacity:.9}100%{opacity:.7}}.ob-import-modal .stepper li{display:flex;align-items:center;margin-bottom:25px;font-size:15px}.ob-import-modal .stepper li .icon{margin-left:20px;background-color:#0073AA;color:#fff;padding:5px;border-radius:100%}.ob-import-modal .stepper li .icon.success{background-color:#6EB77A}.ob-import-modal .stepper li .icon.success svg{left:1px;position:relative}.ob-import-modal .stepper li .icon.warning{background-color:#ffb900}.ob-import-modal .stepper li .icon.error{background-color:#EC7C7C}.ob-import-modal .stepper li .icon.skip{background-color:#e1e1e1}.ob-import-modal .stepper li .icon.loading .dashicon,.ob-import-modal .stepper li .icon.loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal .stepper li svg{width:20px;height:20px;display:block}.migration .modal-body .loading{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:30px auto;width:auto;color:#fff}.migration .modal-body .loading h3{margin:20px 0 0}.migration .modal-body .loading svg{padding:10px;background-color:#ffb900;border-radius:100%;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal{background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,0.5)}.ob-import-modal .components-tooltip{display:none}.ob-import-modal .modal-body h3{margin:0;display:flex;align-items:center}.ob-import-modal .modal-body h3 svg{margin-left:5px}.ob-import-modal .well{margin:0;padding:10px;border:1px solid;border-radius:3px;color:#282828;border-color:#6BC2DD;background-color:#dbf0f7}.ob-import-modal .well ol{padding:0;margin:20px 20px 0 0}.ob-import-modal .well ol li{margin-bottom:10px}.ob-import-modal .well ol li:last-child{margin-bottom:0}.ob-import-modal .well ul{margin:20px 0 0;padding:0}.ob-import-modal .well ul li{margin-bottom:10px}.ob-import-modal .well.error{border-color:#EC7C7C;background-color:#fdf4f4}.ob-import-modal .well.warning{border-color:#ffb900;background-color:#ffdf8a}.ob-import-modal hr{margin:25px 0;border:none;border-top:1px solid #e1e1e1;height:0}.ob-import-modal .options ul{margin:10px 0 0 0}.ob-import-modal .options li{padding:15px 0 0;display:flex;align-items:center;margin-bottom:0;font-size:15px;color:#282828}.ob-import-modal .options li:not(:last-child){padding-bottom:15px;border-bottom:1px solid rgba(225,225,225,0.5)}.ob-import-modal .options li svg{margin-left:15px;opacity:.5}.ob-import-modal .options li svg.active{opacity:1;color:#0073AA}.ob-import-modal .options .toggle-wrapper{margin-right:auto}.ob-import-modal .options .toggle-wrapper span{margin-left:0}.ob-import-modal .options .toggle-wrapper div{margin-bottom:0}.ob-import-modal .import-result{font-size:15px}.ob-import-modal .modal-footer{margin-top:25px;display:flex;align-items:center}.ob-import-modal .modal-footer .close{padding:0}.ob-import-modal .modal-footer button:not(.close),.ob-import-modal .modal-footer a{margin-right:auto;padding:5px 25px}.ob-import-modal .modal-footer button:not(.close):last-child,.ob-import-modal .modal-footer a:last-child{margin-right:25px}.ob-import-modal .modal-footer button:not(.close):last-child:only-child,.ob-import-modal .modal-footer a:last-child:only-child{margin-right:auto}.ob-import-modal.fetching{pointer-events:none}.ob-import-modal.fetching .title{width:200px;display:block}.ob-import-modal.fetching .is-loading{border-radius:3px;-webkit-animation:1.5s loading-placeholder ease-in-out infinite;animation:1.5s loading-placeholder ease-in-out infinite;background-color:#282828;height:20px}.ob-import-modal.fetching .well{-webkit-animation:1.5s loading-placeholder-high-opacity ease-in-out infinite;animation:1.5s loading-placeholder-high-opacity ease-in-out infinite;opacity:1;height:inherit !important;background-color:inherit !important}.ob-import-modal.fetching .well h3 span{width:100px}.ob-import-modal.fetching .well ol{list-style:square}.ob-import-modal.fetching .well li{border-radius:3px;width:75%;height:18px;margin-top:0;background-color:#282828;-webkit-animation:1.5s loading-placeholder ease-in-out infinite;animation:1.5s loading-placeholder ease-in-out infinite}.ob-import-modal.fetching .well li:nth-child(2){width:85%}.ob-import-modal.fetching .well li:nth-child(3){width:95%}.ob-import-modal.fetching .mock-icon{width:20px;height:20px;margin-left:5px}.ob-import-modal.fetching .options h3{max-width:100px}.ob-import-modal.fetching .options li .mock-icon{background-color:#0073AA;margin-left:15px}.ob-import-modal.fetching .options li span{width:100px}.ob-import-modal.fetching .options li .toggle{width:40px;background-color:#0073AA;border-radius:50px;margin-right:auto}.ob-import-modal.fetching .modal-footer button{width:90px;height:35px;background-color:#646D82;border:none !important}.ob-import-modal.fetching .modal-footer button.is-primary{background-color:#0073AA}.sticky-nav{position:fixed;z-index:1000;right:0;left:0;top:0;background:#f1f1f1;padding:15px 0;box-shadow:0px 4px 20px rgba(0,0,0,0.15)}@media (min-width: 601px){.sticky-nav{margin-top:46px}}@media (min-width: 783px){.sticky-nav{margin-top:32px;right:160px}.auto-fold .sticky-nav{right:32px}}@media (min-width: 961px){.sticky-nav{right:160px !important}.folded .sticky-nav{right:32px !important}}.sticky-nav-content{display:flex}.sticky-nav-content>img{display:none;margin-left:20px}@media (min-width: 992px){.sticky-nav-content>img{display:block}}.sticky-nav-content .header-form{margin:0;flex-grow:1;max-width:60%}@media (min-width: 660px){.sticky-nav-content .header-form{max-width:100%}}.sticky-nav-content .ob-dropdown.editor-selector.small{width:auto;margin-right:15px;display:flex;align-items:center}.sticky-nav-content .ob-dropdown.editor-selector.small>button>.count{margin-right:12px}.sticky-nav-content button,.sticky-nav-content input{border-radius:6px}.sticky-nav-content input{max-width:100%;font-weight:500}.sticky-nav-content input::-moz-placeholder{color:#b7b7b7}.sticky-nav-content input:-ms-input-placeholder{color:#b7b7b7}.sticky-nav-content input::placeholder{color:#b7b7b7}@media (min-width: 660px){.card.starter-site-card{max-width:49%}.card.starter-site-card:not(:nth-child(2n)){margin-left:2%}.ob-head>h2,.ob-migration>h2{font-size:30px}.ob-head>p,.ob-migration>p{font-size:22px}.header-form{flex-direction:row}}@media (min-width: 992px){.container{padding:0 20px}.content{display:flex}.main{flex-grow:1}.col{display:flex;flex-direction:column}.card.starter-site-card{max-width:32%;margin:0 0 30px}.card.starter-site-card:not(:nth-child(2n)){margin-left:0}.card.starter-site-card:not(:nth-child(3n)){margin-left:2%}.content-wrap.is-onboarding .content{box-shadow:0 0 10px -5px rgba(0,0,0,0.5);padding:35px 40px 35px;border:1px solid #e1e1e1;margin:40px auto 30px}.content-wrap.is-onboarding .header-form{margin-top:0}.ob-sites{margin-top:30px}.ob-head{margin-top:50px}.editor-tabs{display:flex}.ob-body .ob-dropdown.editor-selector{display:none}.header-form{margin-top:50px}.search{display:flex}.search input{border-bottom-left-radius:0;border-top-left-radius:0}.search img{top:50%;transform:translateY(-50%)}.search .ob-dropdown{display:inline-block;width:200px;margin:0}.search .ob-dropdown button{margin:0;border-top-right-radius:0;border-bottom-right-radius:0}}@media (min-width: 1200px){.container{margin:0 auto}.col{width:50%}.col:not(:last-child){margin-left:20px}.main{flex-grow:1}.content{display:flex;padding-top:30px}.columns{display:flex;flex-direction:row}.editor-tabs .icon-wrap{display:block}}@media (min-width: 1400px){.container{padding:0 50px;max-width:1300px}.col:not(:last-child){margin-left:30px}.card{padding:30px 40px;margin:0 0 30px}.editor-tabs a{width:auto;padding:15px 5px 12px 20px}}
|
2 |
+
|
assets/build/style-app.css
ADDED
@@ -0,0 +1,2 @@
|
|
Â
|
|
Â
|
1 |
+
#wpcontent{padding-left:0 !important}#wpbody-content>.error,#wpbody-content>.info,#wpbody-content>.notice{display:none !important}.ob-overflow-off{overflow:hidden !important}@media screen and (min-width: 660px){.ob-import-modal{width:630px !important}}.container{padding:0 15px}.container.content{padding-top:20px;position:relative}svg.is-loading,button.is-loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear;margin-right:0}.col{width:100%}@-webkit-keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.columns.starter-sites{position:relative;display:flex;flex-grow:1}.ss-background{opacity:.25;z-index:-1;position:absolute;top:0;bottom:0;width:100%;display:block;background-size:cover;background-position:center center;left:0;right:0;height:calc(100vh - 300px);flex-grow:1}.unavailable-starter-sites{background-color:#fff;border:1px solid #ccc;padding:50px 30px;text-align:center;align-items:center;justify-content:center}.unavailable-starter-sites h1{line-height:1.6}.content-wrap.is-onboarding{position:fixed;top:0;bottom:0;left:0;right:0;background-color:#f1f1f1;z-index:100000;overflow:auto}.content-wrap.is-onboarding h2{display:block}.content-wrap.is-onboarding h2 img{display:none}.content-wrap.is-onboarding .content{background-color:#fefefe;padding-top:30px}.content-wrap.is-onboarding .ob{display:flex;min-height:100vh;flex-direction:column}.content-wrap.is-onboarding .ob-migration{text-align:center}.content-wrap.is-onboarding .ob-migration h2{line-height:1}.content-wrap.is-onboarding .ob-head button{margin:0 !important}.content-wrap.is-onboarding .ob-head{margin:0 0 20px;display:flex;justify-content:flex-end;align-items:flex-end}.content-wrap.is-onboarding .ob-head button.close-onboarding{color:#676767}.content-wrap.is-onboarding .ob-head button.close-onboarding svg{width:30px;height:30px}.ob{width:100%}.ob-sites{display:flex;flex-direction:row;flex-wrap:wrap}.no-results{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:30px 0}.no-results p{font-size:16px}.no-results p span{color:#0073AA;font-weight:600}.no-results .tags{margin-top:10px;justify-content:center;display:flex;flex-wrap:wrap}.no-results .tags .tag{margin:10px 20px;line-height:normal;height:auto;font-weight:600;padding:10px 15px;color:#fff;transition:all .3s ease}.no-results .tags .tag:hover{background-color:#0071a7}.pro-badge{background-color:#6EB77A;height:auto;color:#fff;font-weight:600;text-transform:uppercase;padding:5px 10px;margin-left:auto;border-radius:999px;line-height:normal;display:flex;align-items:center}.pro-badge svg{margin-right:3px}.ob-migration{margin-bottom:20px}.ob-migration .card.starter-site-card{margin-right:auto !important;margin-left:auto !important}.ob-migration .card.starter-site-card .image{height:auto}.ob-migration .actions{margin:30px auto 0;display:flex;justify-content:center}.ob-migration button:last-child{margin-left:10px}.ob-head>h2,.ob-migration>h2{font-size:21px;color:#282828;margin:0;line-height:1.6;display:flex;align-items:center}.ob-head>h2>img,.ob-migration>h2>img{margin-right:20px}.ob-head>p,.ob-migration>p{margin:20px 0;font-size:15px;color:#282828}.ob-head>button,.ob-migration>button{margin-bottom:20px}.header-form{margin-top:20px;display:flex;align-items:center;flex-direction:column}.header-form input{margin:0;display:block;flex-grow:1;border:1px solid #e1e1e1;height:52px;padding:5px 30px 5px 50px;font-size:17px;font-weight:300}.search{position:relative;display:flex;width:100%;flex-wrap:wrap}.search input{width:auto;flex-shrink:1}.search img{opacity:.4;position:absolute;top:10px;left:10px}.search .ob-dropdown{width:100%;height:52px;margin:20px 0 0}.search .ob-dropdown button{position:relative;left:-1px;height:100%;display:flex;align-items:center;font-weight:600;padding:5px 20px 5px 10px;background:#fff;border:1px solid #e1e1e1;font-size:14px;margin:0}.search .ob-dropdown button>svg,.search .ob-dropdown button .dashicon{margin-left:auto;display:flex;align-items:center}.search .ob-dropdown .options{margin:0}.search .ob-dropdown .options li{margin:0}.search .ob-dropdown .options a{height:35px;font-size:14px;display:flex;align-items:center;font-weight:600;color:#282828;cursor:pointer;padding:5px 10px;text-decoration:none}.search .ob-dropdown .options a .count{color:#a3a3a3}.search .ob-dropdown .options a:hover{color:#fff;background-color:#0073AA}.search .ob-dropdown .options a:hover .count{color:#fff}.search .ob-dropdown .options a .count{margin-left:auto}.editor-tabs{display:none;margin:30px 0;position:relative}.editor-tabs:after{content:"";position:absolute;display:block;width:100%;left:0;border-bottom:1px solid #e0e0e0;height:1px;z-index:-1;right:0;bottom:0}.editor-tabs .long-name{display:none}.editor-tabs a{padding:15px 10px 12px 0px;display:flex;align-items:center;font-weight:700;text-decoration:none;font-size:15px;border-bottom:3px solid transparent;position:relative;width:auto}.editor-tabs a:last-child{padding-right:0}.editor-tabs a:not(:first-child){margin-left:auto}.editor-tabs a.active{border-bottom:3px solid #0073AA}.editor-tabs a .pro-badge{margin-left:auto;font-size:11px}.editor-tabs .editor{color:#616161}.editor-tabs .count{color:rgba(97,97,97,0.5);margin:0 10px}.editor-tabs .icon-wrap{display:none;margin-right:10px;width:34px;height:34px;border-radius:100%;overflow:hidden}.editor-tabs .icon-wrap img{max-width:100%;display:block}@media (min-width: 1600px){.editor-tabs .long-name{display:inline}}.ob-dropdown.editor-selector{overflow:visible;display:inline-block;position:relative;width:100%}.ob-dropdown.editor-selector button{display:flex;align-items:center;font-weight:600;padding:5px 20px 5px 10px;background:#fff;border:1px solid #e1e1e1;font-size:14px;height:52px;width:100%}.ob-dropdown.editor-selector button .count{color:#a3a3a3;margin:0 20px 0 auto}.ob-dropdown.editor-selector img{border-radius:100%;margin-right:5px;max-width:30px;max-height:30px}.ob-dropdown.editor-selector .options{margin:0}.ob-dropdown.editor-selector .options li{border-bottom:1px solid #e1e1e1;padding:0;margin:0}.ob-dropdown.editor-selector .options a{height:35px;font-size:14px;display:flex;align-items:center;font-weight:600;color:#282828;cursor:pointer;padding:5px 10px;text-decoration:none}.ob-dropdown.editor-selector .options a:hover{background-color:#0073AA;color:#fff}.card{width:100%;display:flex;max-width:unset;min-width:unset;border:1px solid #e1e1e1;flex-direction:column;padding:30px 40px;align-self:flex-start;flex-grow:0}.card .card-header{flex-direction:row;display:flex;align-items:center}.card .card-header .title{font-size:18px;line-height:1.5}.card .card-header .icon{margin-right:10px}.card .card-header .icon.dashicon{width:33px;height:33px;fill:#0073AA}.card .card-content{display:flex;flex-direction:column;flex-grow:1}.card .card-content a,.card .card-content button{align-self:flex-start;margin-top:auto}.card p{font-size:15px;color:#616161}.card .card-description{margin:15px 0 25px}.card.starter-site-card{padding:0;max-width:100%}.card.starter-site-card:hover .actions,.card.starter-site-card:hover .fav,.card.starter-site-card:focus-within .actions,.card.starter-site-card:focus-within .fav{opacity:1}.card.starter-site-card .actions.visible{opacity:1}.card.starter-site-card .top{position:relative;overflow:hidden}.card.starter-site-card .fav{position:absolute;z-index:2000;left:-15px;top:-30px;opacity:0;transition:.3s ease}.card.starter-site-card .fav button{padding:30px 5px 30px 30px;height:auto;transform:rotate(45deg);background-color:#4268CF}.card.starter-site-card .fav svg{transform:rotate(-45deg);fill:#fff;max-width:15px}.card.starter-site-card .actions{background-color:rgba(0,0,0,0.75);left:0;right:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;position:absolute;opacity:0;transition:.3s ease}.card.starter-site-card .actions button{background-color:#0073AA;color:#fff;font-weight:600;line-height:normal;height:auto;padding:8px 15px;transition:all .3s ease}.card.starter-site-card .actions button:hover{box-shadow:none;background-color:#005177}.card.starter-site-card .actions button.preview{background-color:#6BC2DD}.card.starter-site-card .actions button.preview:hover{background-color:#42b1d3}.card.starter-site-card .actions button:last-child{margin-left:10px}.card.starter-site-card .image{height:335px;background-size:cover;background-position:top center;background-color:rgba(100,109,130,0.25)}.card.starter-site-card img{width:100%;display:block}.card.starter-site-card .bottom{display:flex;align-items:center;padding:15px 10px 15px 30px;border-top:1px solid #e1e1e1}.card.starter-site-card .bottom p{font-size:16px;font-weight:700;color:#282828;margin:0}.ob-preview{background-color:#fff;position:fixed;top:0;bottom:0;left:0;right:0;z-index:100000;height:100vh;margin:0;display:flex;flex-direction:column}.ob-preview .loading{bottom:0;top:0;left:0;right:0;position:absolute;display:flex;align-items:center;justify-content:center;z-index:100000;color:#646D82}.ob-preview .loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-preview .preview{display:flex;flex-direction:column;position:relative;flex-grow:1}.ob-preview .preview iframe{flex-grow:1;position:relative;z-index:100001;height:100%;width:100%}.ob-preview .bottom-bar{border-top:1px solid #e1e1e1;display:flex;padding:15px 30px;align-items:center}.ob-preview .bottom-bar .actions{margin-left:auto}.ob-import-modal .stepper li{display:flex;align-items:center;margin-bottom:25px;font-size:15px}.ob-import-modal .stepper li .icon{margin-right:20px;background-color:#0073AA;color:#fff;padding:5px;border-radius:100%}.ob-import-modal .stepper li .icon.success{background-color:#6EB77A}.ob-import-modal .stepper li .icon.success svg{right:1px;position:relative}.ob-import-modal .stepper li .icon.warning{background-color:#ffb900}.ob-import-modal .stepper li .icon.error{background-color:#EC7C7C}.ob-import-modal .stepper li .icon.skip{background-color:#e1e1e1}.ob-import-modal .stepper li .icon.loading .dashicon,.ob-import-modal .stepper li .icon.loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal .stepper li svg{width:20px;height:20px;display:block}@-webkit-keyframes loading-placeholder{0%{opacity:.1}50%{opacity:.2}100%{opacity:.1}}@keyframes loading-placeholder{0%{opacity:.1}50%{opacity:.2}100%{opacity:.1}}@-webkit-keyframes loading-placeholder-high-opacity{0%{opacity:.7}50%{opacity:.9}100%{opacity:.7}}@keyframes loading-placeholder-high-opacity{0%{opacity:.7}50%{opacity:.9}100%{opacity:.7}}.ob-import-modal .stepper li{display:flex;align-items:center;margin-bottom:25px;font-size:15px}.ob-import-modal .stepper li .icon{margin-right:20px;background-color:#0073AA;color:#fff;padding:5px;border-radius:100%}.ob-import-modal .stepper li .icon.success{background-color:#6EB77A}.ob-import-modal .stepper li .icon.success svg{right:1px;position:relative}.ob-import-modal .stepper li .icon.warning{background-color:#ffb900}.ob-import-modal .stepper li .icon.error{background-color:#EC7C7C}.ob-import-modal .stepper li .icon.skip{background-color:#e1e1e1}.ob-import-modal .stepper li .icon.loading .dashicon,.ob-import-modal .stepper li .icon.loading svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal .stepper li svg{width:20px;height:20px;display:block}.migration .modal-body .loading{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:30px auto;width:auto;color:#fff}.migration .modal-body .loading h3{margin:20px 0 0}.migration .modal-body .loading svg{padding:10px;background-color:#ffb900;border-radius:100%;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:2000ms;animation-duration:2000ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ob-import-modal{background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,0.5)}.ob-import-modal .components-tooltip{display:none}.ob-import-modal .modal-body h3{margin:0;display:flex;align-items:center}.ob-import-modal .modal-body h3 svg{margin-right:5px}.ob-import-modal .well{margin:0;padding:10px;border:1px solid;border-radius:3px;color:#282828;border-color:#6BC2DD;background-color:#dbf0f7}.ob-import-modal .well ol{padding:0;margin:20px 0 0 20px}.ob-import-modal .well ol li{margin-bottom:10px}.ob-import-modal .well ol li:last-child{margin-bottom:0}.ob-import-modal .well ul{margin:20px 0 0;padding:0}.ob-import-modal .well ul li{margin-bottom:10px}.ob-import-modal .well.error{border-color:#EC7C7C;background-color:#fdf4f4}.ob-import-modal .well.warning{border-color:#ffb900;background-color:#ffdf8a}.ob-import-modal hr{margin:25px 0;border:none;border-top:1px solid #e1e1e1;height:0}.ob-import-modal .options ul{margin:10px 0 0 0}.ob-import-modal .options li{padding:15px 0 0;display:flex;align-items:center;margin-bottom:0;font-size:15px;color:#282828}.ob-import-modal .options li:not(:last-child){padding-bottom:15px;border-bottom:1px solid rgba(225,225,225,0.5)}.ob-import-modal .options li svg{margin-right:15px;opacity:.5}.ob-import-modal .options li svg.active{opacity:1;color:#0073AA}.ob-import-modal .options .toggle-wrapper{margin-left:auto}.ob-import-modal .options .toggle-wrapper span{margin-right:0}.ob-import-modal .options .toggle-wrapper div{margin-bottom:0}.ob-import-modal .import-result{font-size:15px}.ob-import-modal .modal-footer{margin-top:25px;display:flex;align-items:center}.ob-import-modal .modal-footer .close{padding:0}.ob-import-modal .modal-footer button:not(.close),.ob-import-modal .modal-footer a{margin-left:auto;padding:5px 25px}.ob-import-modal .modal-footer button:not(.close):last-child,.ob-import-modal .modal-footer a:last-child{margin-left:25px}.ob-import-modal .modal-footer button:not(.close):last-child:only-child,.ob-import-modal .modal-footer a:last-child:only-child{margin-left:auto}.ob-import-modal.fetching{pointer-events:none}.ob-import-modal.fetching .title{width:200px;display:block}.ob-import-modal.fetching .is-loading{border-radius:3px;-webkit-animation:1.5s loading-placeholder ease-in-out infinite;animation:1.5s loading-placeholder ease-in-out infinite;background-color:#282828;height:20px}.ob-import-modal.fetching .well{-webkit-animation:1.5s loading-placeholder-high-opacity ease-in-out infinite;animation:1.5s loading-placeholder-high-opacity ease-in-out infinite;opacity:1;height:inherit !important;background-color:inherit !important}.ob-import-modal.fetching .well h3 span{width:100px}.ob-import-modal.fetching .well ol{list-style:square}.ob-import-modal.fetching .well li{border-radius:3px;width:75%;height:18px;margin-top:0;background-color:#282828;-webkit-animation:1.5s loading-placeholder ease-in-out infinite;animation:1.5s loading-placeholder ease-in-out infinite}.ob-import-modal.fetching .well li:nth-child(2){width:85%}.ob-import-modal.fetching .well li:nth-child(3){width:95%}.ob-import-modal.fetching .mock-icon{width:20px;height:20px;margin-right:5px}.ob-import-modal.fetching .options h3{max-width:100px}.ob-import-modal.fetching .options li .mock-icon{background-color:#0073AA;margin-right:15px}.ob-import-modal.fetching .options li span{width:100px}.ob-import-modal.fetching .options li .toggle{width:40px;background-color:#0073AA;border-radius:50px;margin-left:auto}.ob-import-modal.fetching .modal-footer button{width:90px;height:35px;background-color:#646D82;border:none !important}.ob-import-modal.fetching .modal-footer button.is-primary{background-color:#0073AA}.sticky-nav{position:fixed;z-index:1000;left:0;right:0;top:0;background:#f1f1f1;padding:15px 0;box-shadow:0px 4px 20px rgba(0,0,0,0.15)}@media (min-width: 601px){.sticky-nav{margin-top:46px}}@media (min-width: 783px){.sticky-nav{margin-top:32px;left:160px}.auto-fold .sticky-nav{left:32px}}@media (min-width: 961px){.sticky-nav{left:160px !important}.folded .sticky-nav{left:32px !important}}.sticky-nav-content{display:flex}.sticky-nav-content>img{display:none;margin-right:20px}@media (min-width: 992px){.sticky-nav-content>img{display:block}}.sticky-nav-content .header-form{margin:0;flex-grow:1;max-width:60%}@media (min-width: 660px){.sticky-nav-content .header-form{max-width:100%}}.sticky-nav-content .ob-dropdown.editor-selector.small{width:auto;margin-left:15px;display:flex;align-items:center}.sticky-nav-content .ob-dropdown.editor-selector.small>button>.count{margin-left:12px}.sticky-nav-content button,.sticky-nav-content input{border-radius:6px}.sticky-nav-content input{max-width:100%;font-weight:500}.sticky-nav-content input::-moz-placeholder{color:#b7b7b7}.sticky-nav-content input:-ms-input-placeholder{color:#b7b7b7}.sticky-nav-content input::placeholder{color:#b7b7b7}@media (min-width: 660px){.card.starter-site-card{max-width:49%}.card.starter-site-card:not(:nth-child(2n)){margin-right:2%}.ob-head>h2,.ob-migration>h2{font-size:30px}.ob-head>p,.ob-migration>p{font-size:22px}.header-form{flex-direction:row}}@media (min-width: 992px){.container{padding:0 20px}.content{display:flex}.main{flex-grow:1}.col{display:flex;flex-direction:column}.card.starter-site-card{max-width:32%;margin:0 0 30px}.card.starter-site-card:not(:nth-child(2n)){margin-right:0}.card.starter-site-card:not(:nth-child(3n)){margin-right:2%}.content-wrap.is-onboarding .content{box-shadow:0 0 10px -5px rgba(0,0,0,0.5);padding:35px 40px 35px;border:1px solid #e1e1e1;margin:40px auto 30px}.content-wrap.is-onboarding .header-form{margin-top:0}.ob-sites{margin-top:30px}.ob-head{margin-top:50px}.editor-tabs{display:flex}.ob-body .ob-dropdown.editor-selector{display:none}.header-form{margin-top:50px}.search{display:flex}.search input{border-bottom-right-radius:0;border-top-right-radius:0}.search img{top:50%;transform:translateY(-50%)}.search .ob-dropdown{display:inline-block;width:200px;margin:0}.search .ob-dropdown button{margin:0;border-top-left-radius:0;border-bottom-left-radius:0}}@media (min-width: 1200px){.container{margin:0 auto}.col{width:50%}.col:not(:last-child){margin-right:20px}.main{flex-grow:1}.content{display:flex;padding-top:30px}.columns{display:flex;flex-direction:row}.editor-tabs .icon-wrap{display:block}}@media (min-width: 1400px){.container{padding:0 50px;max-width:1300px}.col:not(:last-child){margin-right:30px}.card{padding:30px 40px;margin:0 0 30px}.editor-tabs a{width:auto;padding:15px 20px 12px 5px}}
|
2 |
+
|
assets/img/beaver.jpg
ADDED
Binary file
|
assets/img/brizy.jpg
ADDED
Binary file
|
assets/img/divi.jpg
ADDED
Binary file
|
assets/img/elementor.jpg
ADDED
Binary file
|
assets/img/gutenberg.jpg
ADDED
Binary file
|
assets/img/logo.svg
ADDED
@@ -0,0 +1,3 @@
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<svg width="51" height="50" viewBox="0 0 51 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 3.14288C0 1.48603 1.34315 0.142883 3 0.142883H47.5131C49.17 0.142883 50.5131 1.48603 50.5131 3.14288V47C50.5131 48.6569 49.17 50 47.5131 50H3C1.34314 50 0 48.6569 0 47V3.14288ZM20.4811 25.0833V36.9156H14.4323V12.867C14.4323 12.7506 14.4676 12.6692 14.5384 12.6226C14.6091 12.5761 14.7388 12.6343 14.9275 12.7972L30.0319 25.0833V13.1811H36.0807V37.2647C36.0807 37.4043 36.0454 37.4915 35.9746 37.5264C35.9039 37.5613 35.7742 37.4974 35.5855 37.3345L20.4811 25.0833ZM36.0807 40.8158H14.4323V42.7838H36.0807V40.8158Z" fill="#0073AA"/>
|
3 |
+
</svg>
|
assets/img/search.svg
ADDED
@@ -0,0 +1,4 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<path d="M0 0H34V34H0V0Z" fill="white"/>
|
3 |
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.70053 22.3379C12.9529 25.5903 18.0887 25.8115 21.5972 23.0014L24.6614 26.0656C25.1667 26.5709 26.008 26.574 26.525 26.057C27.0456 25.5364 27.0458 24.7056 26.5336 24.1934L23.3998 21.0596C25.7817 17.5803 25.4277 12.7905 22.3378 9.70059C18.8481 6.21089 13.1902 6.21089 9.70053 9.70059C6.21083 13.1903 6.21083 18.8482 9.70053 22.3379ZM20.6997 11.3388C23.2846 13.9237 23.2846 18.1148 20.6997 20.6997C18.1147 23.2847 13.9237 23.2847 11.3387 20.6997C8.75375 18.1148 8.75375 13.9237 11.3387 11.3388C13.9237 8.75379 18.1147 8.75379 20.6997 11.3388Z" fill="#616161"/>
|
4 |
+
</svg>
|
assets/img/thrive.jpg
ADDED
Binary file
|
assets/src/Components/App.js
ADDED
@@ -0,0 +1,32 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import { withSelect } from '@wordpress/data';
|
2 |
+
import classnames from 'classnames';
|
3 |
+
|
4 |
+
import Onboarding from './Main';
|
5 |
+
|
6 |
+
const App = ( { onboarding } ) => {
|
7 |
+
const wrapClasses = classnames( [
|
8 |
+
'content-wrap',
|
9 |
+
'starter-sites',
|
10 |
+
{ 'is-onboarding': onboarding },
|
11 |
+
] );
|
12 |
+
return (
|
13 |
+
<div className="tiob-wrap">
|
14 |
+
<div className={ wrapClasses }>
|
15 |
+
<div className="container content">
|
16 |
+
<div className="main">
|
17 |
+
<div className="tab-content columns starter-sites">
|
18 |
+
<Onboarding />
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
</div>
|
24 |
+
);
|
25 |
+
};
|
26 |
+
|
27 |
+
export default withSelect( ( select ) => {
|
28 |
+
const { getOnboardingStatus } = select( 'neve-onboarding' );
|
29 |
+
return {
|
30 |
+
onboarding: getOnboardingStatus(),
|
31 |
+
};
|
32 |
+
} )( App );
|
assets/src/Components/EditorSelector.js
ADDED
@@ -0,0 +1,111 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import classnames from 'classnames';
|
2 |
+
import { __ } from '@wordpress/i18n';
|
3 |
+
import { useState } from '@wordpress/element';
|
4 |
+
import { Button, Dashicon, Popover } from '@wordpress/components';
|
5 |
+
import { withDispatch, withSelect } from '@wordpress/data';
|
6 |
+
import { compose } from '@wordpress/compose';
|
7 |
+
|
8 |
+
const EditorSelector = ( {
|
9 |
+
EDITOR_MAP,
|
10 |
+
count,
|
11 |
+
editor,
|
12 |
+
setCurrentEditor,
|
13 |
+
sites,
|
14 |
+
isSmall,
|
15 |
+
} ) => {
|
16 |
+
const [ open, setOpen ] = useState( false );
|
17 |
+
const editorsOrderedFromAPI = Object.keys( sites );
|
18 |
+
const toggleDropdown = () => setOpen( ! open );
|
19 |
+
const wrapClasses = classnames( [
|
20 |
+
'ob-dropdown',
|
21 |
+
'editor-selector',
|
22 |
+
{ small: isSmall },
|
23 |
+
] );
|
24 |
+
return (
|
25 |
+
<div className={ wrapClasses }>
|
26 |
+
<Button onClick={ toggleDropdown } className="select ob-dropdown">
|
27 |
+
<img
|
28 |
+
className="editor-icon"
|
29 |
+
src={ tiobDash.assets + 'img/' + EDITOR_MAP[ editor ].icon }
|
30 |
+
alt={ __(
|
31 |
+
'Builder Logo',
|
32 |
+
'templates-patterns-collection'
|
33 |
+
) }
|
34 |
+
/>
|
35 |
+
{ ! isSmall && <span>{ EDITOR_MAP[ editor ].niceName }</span> }
|
36 |
+
<span className="count">{ count[ editor ] }</span>
|
37 |
+
<Dashicon
|
38 |
+
size={ 14 }
|
39 |
+
icon={ open ? 'arrow-up-alt2' : 'arrow-down-alt2' }
|
40 |
+
/>
|
41 |
+
{ open && (
|
42 |
+
<Popover
|
43 |
+
position="bottom center"
|
44 |
+
onClose={ toggleDropdown }
|
45 |
+
noArrow
|
46 |
+
>
|
47 |
+
{ open && (
|
48 |
+
<ul className="options">
|
49 |
+
{ editorsOrderedFromAPI.map( ( key, index ) => {
|
50 |
+
if ( key === editor ) {
|
51 |
+
return null;
|
52 |
+
}
|
53 |
+
return (
|
54 |
+
<li key={ index }>
|
55 |
+
<a
|
56 |
+
href="#"
|
57 |
+
onClick={ ( e ) => {
|
58 |
+
e.preventDefault();
|
59 |
+
setCurrentEditor( key );
|
60 |
+
setOpen( false );
|
61 |
+
} }
|
62 |
+
>
|
63 |
+
<img
|
64 |
+
className="editor-icon"
|
65 |
+
src={
|
66 |
+
tiobDash.assets +
|
67 |
+
'img/' +
|
68 |
+
EDITOR_MAP[ key ].icon
|
69 |
+
}
|
70 |
+
alt={ __(
|
71 |
+
'Builder Logo',
|
72 |
+
'templates-patterns-collection'
|
73 |
+
) }
|
74 |
+
/>
|
75 |
+
<span>
|
76 |
+
{
|
77 |
+
EDITOR_MAP[ key ]
|
78 |
+
.niceName
|
79 |
+
}
|
80 |
+
</span>
|
81 |
+
<span className="count">
|
82 |
+
{ count[ key ] }
|
83 |
+
</span>
|
84 |
+
</a>
|
85 |
+
</li>
|
86 |
+
);
|
87 |
+
} ) }
|
88 |
+
</ul>
|
89 |
+
) }
|
90 |
+
</Popover>
|
91 |
+
) }
|
92 |
+
</Button>
|
93 |
+
</div>
|
94 |
+
);
|
95 |
+
};
|
96 |
+
|
97 |
+
export default compose(
|
98 |
+
withSelect( ( select ) => {
|
99 |
+
const { getCurrentEditor, getSites } = select( 'neve-onboarding' );
|
100 |
+
return {
|
101 |
+
editor: getCurrentEditor(),
|
102 |
+
sites: getSites().sites,
|
103 |
+
};
|
104 |
+
} ),
|
105 |
+
withDispatch( ( dispatch ) => {
|
106 |
+
const { setCurrentEditor } = dispatch( 'neve-onboarding' );
|
107 |
+
return {
|
108 |
+
setCurrentEditor: ( editor ) => setCurrentEditor( editor ),
|
109 |
+
};
|
110 |
+
} )
|
111 |
+
)( EditorSelector );
|
assets/src/Components/EditorTabs.js
ADDED
@@ -0,0 +1,76 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import classnames from 'classnames';
|
2 |
+
|
3 |
+
import { __ } from '@wordpress/i18n';
|
4 |
+
import { withDispatch, withSelect } from '@wordpress/data';
|
5 |
+
import { compose } from '@wordpress/compose';
|
6 |
+
|
7 |
+
const EditorTabs = ( {
|
8 |
+
EDITOR_MAP,
|
9 |
+
count,
|
10 |
+
onlyProSites,
|
11 |
+
editor,
|
12 |
+
setCurrentEditor,
|
13 |
+
sites,
|
14 |
+
} ) => {
|
15 |
+
const editorsOrderedFromAPI = Object.keys( sites );
|
16 |
+
return (
|
17 |
+
<div className="editor-tabs">
|
18 |
+
{ editorsOrderedFromAPI.map( ( key, index ) => {
|
19 |
+
const classes = classnames( [
|
20 |
+
'tab',
|
21 |
+
key,
|
22 |
+
{ active: key === editor },
|
23 |
+
] );
|
24 |
+
return (
|
25 |
+
<a
|
26 |
+
key={ index }
|
27 |
+
href="#"
|
28 |
+
className={ classes }
|
29 |
+
onClick={ ( e ) => {
|
30 |
+
e.preventDefault();
|
31 |
+
setCurrentEditor( key );
|
32 |
+
} }
|
33 |
+
>
|
34 |
+
<span className="icon-wrap">
|
35 |
+
<img
|
36 |
+
className="editor-icon"
|
37 |
+
src={
|
38 |
+
tiobDash.assets +
|
39 |
+
'img/' +
|
40 |
+
EDITOR_MAP[ key ].icon
|
41 |
+
}
|
42 |
+
alt={ __(
|
43 |
+
'Builder Logo',
|
44 |
+
'templates-patterns-collection'
|
45 |
+
) }
|
46 |
+
/>
|
47 |
+
</span>
|
48 |
+
<span className="editor">
|
49 |
+
{ EDITOR_MAP[ key ].niceName }
|
50 |
+
</span>
|
51 |
+
<span className="count">{ count[ key ] }</span>
|
52 |
+
{ onlyProSites.includes( key ) && (
|
53 |
+
<span className="pro-badge">PRO</span>
|
54 |
+
) }
|
55 |
+
</a>
|
56 |
+
);
|
57 |
+
} ) }
|
58 |
+
</div>
|
59 |
+
);
|
60 |
+
};
|
61 |
+
|
62 |
+
export default compose(
|
63 |
+
withSelect( ( select ) => {
|
64 |
+
const { getCurrentEditor, getSites } = select( 'neve-onboarding' );
|
65 |
+
return {
|
66 |
+
editor: getCurrentEditor(),
|
67 |
+
sites: getSites().sites,
|
68 |
+
};
|
69 |
+
} ),
|
70 |
+
withDispatch( ( dispatch ) => {
|
71 |
+
const { setCurrentEditor } = dispatch( 'neve-onboarding' );
|
72 |
+
return {
|
73 |
+
setCurrentEditor: ( editor ) => setCurrentEditor( editor ),
|
74 |
+
};
|
75 |
+
} )
|
76 |
+
)( EditorTabs );
|
assets/src/Components/ImportModal.js
ADDED
@@ -0,0 +1,579 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/*global tiobDash*/
|
2 |
+
import {
|
3 |
+
importContent,
|
4 |
+
importMods,
|
5 |
+
importWidgets,
|
6 |
+
installPlugins,
|
7 |
+
} from '../utils/site-import';
|
8 |
+
import { get } from '../utils/rest';
|
9 |
+
import { trailingSlashIt } from '../utils/common';
|
10 |
+
import ImportStepper from './ImportStepper';
|
11 |
+
import ImportModalNote from './ImportModalNote';
|
12 |
+
import classnames from 'classnames';
|
13 |
+
import ImportModalError from './ImportModalError';
|
14 |
+
|
15 |
+
import { withSelect, withDispatch } from '@wordpress/data';
|
16 |
+
import { compose } from '@wordpress/compose';
|
17 |
+
import { Button, Dashicon, ToggleControl, Modal } from '@wordpress/components';
|
18 |
+
import { useState, useEffect, Fragment } from '@wordpress/element';
|
19 |
+
import { __ } from '@wordpress/i18n';
|
20 |
+
|
21 |
+
const ImportModal = ( { setModal, editor, siteData } ) => {
|
22 |
+
const [ general, setGeneral ] = useState( {
|
23 |
+
content: true,
|
24 |
+
customizer: true,
|
25 |
+
widgets: true,
|
26 |
+
} );
|
27 |
+
const [ pluginsProgress, setPluginsProgress ] = useState( false );
|
28 |
+
const [ contentProgress, setContentProgress ] = useState( false );
|
29 |
+
const [ customizerProgress, setCustomizerProgress ] = useState( false );
|
30 |
+
const [ widgetsProgress, setWidgetsProgress ] = useState( false );
|
31 |
+
const [ frontPageID, setFrontPageID ] = useState( null );
|
32 |
+
const [ currentStep, setCurrentStep ] = useState( null );
|
33 |
+
const [ importing, setImporting ] = useState( false );
|
34 |
+
const [ pluginOptions, setPluginOptions ] = useState( null );
|
35 |
+
const [ error, setError ] = useState( null );
|
36 |
+
const [ importData, setImportData ] = useState( null );
|
37 |
+
const [ fetching, setFetching ] = useState( true );
|
38 |
+
const { license } = tiobDash;
|
39 |
+
useEffect( function getImportData() {
|
40 |
+
const fetchAddress = siteData.remote_url || siteData.url;
|
41 |
+
const url = new URL(
|
42 |
+
`${ trailingSlashIt( fetchAddress ) }wp-json/ti-demo-data/data`
|
43 |
+
);
|
44 |
+
url.searchParams.append( 'license', license ? license.key : 'free' );
|
45 |
+
get( url, true, false )
|
46 |
+
.then( ( response ) => {
|
47 |
+
if ( ! response.ok ) {
|
48 |
+
setError( {
|
49 |
+
message: __(
|
50 |
+
'Something went wrong while loading the site data. Please refresh the page and try again.',
|
51 |
+
'templates-patterns-collection'
|
52 |
+
),
|
53 |
+
code: 'ti__ob_failed_fetch_response',
|
54 |
+
} );
|
55 |
+
setFetching( false );
|
56 |
+
}
|
57 |
+
response.json().then( ( result ) => {
|
58 |
+
setImportData( { ...result, ...siteData } );
|
59 |
+
const mandatory = {
|
60 |
+
...( result.mandatory_plugins || {} ),
|
61 |
+
};
|
62 |
+
const optional = {
|
63 |
+
...( result.recommended_plugins || {} ),
|
64 |
+
};
|
65 |
+
const defaultOff =
|
66 |
+
result.default_off_recommended_plugins || [];
|
67 |
+
|
68 |
+
Object.keys( mandatory ).map( ( key ) => {
|
69 |
+
mandatory[ key ] = true;
|
70 |
+
} );
|
71 |
+
Object.keys( optional ).map( ( key ) => {
|
72 |
+
optional[ key ] = ! defaultOff.includes( key );
|
73 |
+
} );
|
74 |
+
|
75 |
+
setPluginOptions( {
|
76 |
+
...optional,
|
77 |
+
...mandatory,
|
78 |
+
} );
|
79 |
+
|
80 |
+
setFetching( false );
|
81 |
+
} );
|
82 |
+
} )
|
83 |
+
.catch( ( error ) => {
|
84 |
+
setError( {
|
85 |
+
message: __(
|
86 |
+
'Something went wrong while loading the site data. Please refresh the page and try again.',
|
87 |
+
'templates-patterns-collection'
|
88 |
+
),
|
89 |
+
code: 'ti__ob_failed_fetch_catch',
|
90 |
+
} );
|
91 |
+
setFetching( false );
|
92 |
+
} );
|
93 |
+
}, [] );
|
94 |
+
|
95 |
+
const renderMock = () => {
|
96 |
+
return (
|
97 |
+
<Fragment>
|
98 |
+
<div className="modal-body">
|
99 |
+
<div className="well is-loading">
|
100 |
+
<h3>
|
101 |
+
<div className="mock-icon is-loading" />
|
102 |
+
<span className="is-loading" />
|
103 |
+
</h3>
|
104 |
+
<ol>
|
105 |
+
{ [ 1, 2, 3 ].map( ( i ) => (
|
106 |
+
<li key={ i } />
|
107 |
+
) ) }
|
108 |
+
</ol>
|
109 |
+
</div>
|
110 |
+
<hr />
|
111 |
+
<div className="options general">
|
112 |
+
<h3 className="is-loading" />
|
113 |
+
<ul>
|
114 |
+
{ [ 1, 2, 3 ].map( ( i ) => (
|
115 |
+
<li key={ i }>
|
116 |
+
<div className="mock-icon is-loading" />
|
117 |
+
<span className="is-loading" />
|
118 |
+
<div className="toggle is-loading" />
|
119 |
+
</li>
|
120 |
+
) ) }
|
121 |
+
</ul>
|
122 |
+
</div>
|
123 |
+
<hr />
|
124 |
+
<div className="options plugins">
|
125 |
+
<h3 className="is-loading" />
|
126 |
+
<ul>
|
127 |
+
{ [ 1, 2 ].map( ( i ) => (
|
128 |
+
<li key={ i }>
|
129 |
+
<div className="mock-icon is-loading" />
|
130 |
+
<span className="is-loading" />
|
131 |
+
<div className="toggle is-loading" />
|
132 |
+
</li>
|
133 |
+
) ) }
|
134 |
+
</ul>
|
135 |
+
</div>
|
136 |
+
</div>
|
137 |
+
<div className="modal-footer">
|
138 |
+
<Button isSecondary className="is-loading" />
|
139 |
+
<Button isPrimary className="is-loading" />
|
140 |
+
</div>
|
141 |
+
</Fragment>
|
142 |
+
);
|
143 |
+
};
|
144 |
+
const renderNote = () => {
|
145 |
+
return (
|
146 |
+
<ImportModalNote
|
147 |
+
data={ importData }
|
148 |
+
externalInstalled={ externalPluginsInstalled }
|
149 |
+
/>
|
150 |
+
);
|
151 |
+
};
|
152 |
+
|
153 |
+
const renderOptions = () => {
|
154 |
+
const map = {
|
155 |
+
content: {
|
156 |
+
title: __( 'Content', 'templates-patterns-collection' ),
|
157 |
+
icon: 'admin-post',
|
158 |
+
},
|
159 |
+
customizer: {
|
160 |
+
title: __( 'Customizer', 'templates-patterns-collection' ),
|
161 |
+
icon: 'admin-customizer',
|
162 |
+
},
|
163 |
+
widgets: {
|
164 |
+
title: __( 'Widgets', 'templates-patterns-collection' ),
|
165 |
+
icon: 'admin-generic',
|
166 |
+
},
|
167 |
+
};
|
168 |
+
return (
|
169 |
+
<div className="options general">
|
170 |
+
<h3>{ __( 'General', 'templates-patterns-collection' ) }:</h3>
|
171 |
+
<ul>
|
172 |
+
{ Object.keys( map ).map( ( id, index ) => {
|
173 |
+
return (
|
174 |
+
<li key={ index }>
|
175 |
+
<Dashicon
|
176 |
+
className={ classnames( {
|
177 |
+
active: general[ id ],
|
178 |
+
} ) }
|
179 |
+
icon={ map[ id ].icon }
|
180 |
+
/>
|
181 |
+
<span>{ map[ id ].title }</span>
|
182 |
+
<div className="toggle-wrapper">
|
183 |
+
<ToggleControl
|
184 |
+
checked={ general[ id ] }
|
185 |
+
onChange={ () => {
|
186 |
+
setGeneral( {
|
187 |
+
...general,
|
188 |
+
[ id ]: ! general[ id ],
|
189 |
+
} );
|
190 |
+
} }
|
191 |
+
/>
|
192 |
+
</div>
|
193 |
+
</li>
|
194 |
+
);
|
195 |
+
} ) }
|
196 |
+
</ul>
|
197 |
+
</div>
|
198 |
+
);
|
199 |
+
};
|
200 |
+
const renderPlugins = () => {
|
201 |
+
if ( fetching ) {
|
202 |
+
return null;
|
203 |
+
}
|
204 |
+
const allPlugins = {
|
205 |
+
...( importData.recommended_plugins || {} ),
|
206 |
+
...( importData.mandatory_plugins || {} ),
|
207 |
+
};
|
208 |
+
|
209 |
+
return (
|
210 |
+
<div className="options plugins">
|
211 |
+
<h3>{ __( 'Plugins', 'templates-patterns-collection' ) }:</h3>
|
212 |
+
<ul>
|
213 |
+
{ Object.keys( allPlugins ).map( ( slug, index ) => {
|
214 |
+
return (
|
215 |
+
<li key={ index }>
|
216 |
+
<Dashicon
|
217 |
+
icon="admin-plugins"
|
218 |
+
className={ classnames( {
|
219 |
+
active: pluginOptions[ slug ],
|
220 |
+
} ) }
|
221 |
+
/>
|
222 |
+
<span
|
223 |
+
dangerouslySetInnerHTML={ {
|
224 |
+
__html: allPlugins[ slug ],
|
225 |
+
} }
|
226 |
+
/>
|
227 |
+
{ slug in importData.recommended_plugins && (
|
228 |
+
<div className="toggle-wrapper">
|
229 |
+
<ToggleControl
|
230 |
+
checked={ pluginOptions[ slug ] }
|
231 |
+
onChange={ () => {
|
232 |
+
setPluginOptions( {
|
233 |
+
...pluginOptions,
|
234 |
+
[ slug ]: ! pluginOptions[
|
235 |
+
slug
|
236 |
+
],
|
237 |
+
} );
|
238 |
+
} }
|
239 |
+
/>
|
240 |
+
</div>
|
241 |
+
) }
|
242 |
+
</li>
|
243 |
+
);
|
244 |
+
} ) }
|
245 |
+
</ul>
|
246 |
+
</div>
|
247 |
+
);
|
248 |
+
};
|
249 |
+
|
250 |
+
function runImport() {
|
251 |
+
console.clear();
|
252 |
+
if ( ! pluginOptions ) {
|
253 |
+
console.log( '[S] Plugins.' );
|
254 |
+
runImportContent();
|
255 |
+
return false;
|
256 |
+
}
|
257 |
+
setCurrentStep( 'plugins' );
|
258 |
+
console.log( '[P] Plugins.' );
|
259 |
+
installPlugins( pluginOptions )
|
260 |
+
.then( ( response ) => {
|
261 |
+
if ( ! response.success ) {
|
262 |
+
handleError( response, 'plugins' );
|
263 |
+
return false;
|
264 |
+
}
|
265 |
+
console.log( '[D] Plugins.' );
|
266 |
+
setPluginsProgress( 'done' );
|
267 |
+
runImportContent();
|
268 |
+
} )
|
269 |
+
.catch( ( error ) => handleError( error, 'plugins' ) );
|
270 |
+
}
|
271 |
+
|
272 |
+
function runImportContent() {
|
273 |
+
if ( ! general.content ) {
|
274 |
+
console.log( '[S] Content.' );
|
275 |
+
runImportCustomizer();
|
276 |
+
return false;
|
277 |
+
}
|
278 |
+
setCurrentStep( 'content' );
|
279 |
+
console.log( '[P] Content.' );
|
280 |
+
importContent( {
|
281 |
+
contentFile: importData.content_file,
|
282 |
+
source: 'remote',
|
283 |
+
frontPage: importData.front_page,
|
284 |
+
shopPages: importData.shop_pages,
|
285 |
+
demoSlug: importData.slug,
|
286 |
+
editor,
|
287 |
+
} )
|
288 |
+
.then( ( response ) => {
|
289 |
+
if ( ! response.success ) {
|
290 |
+
handleError( response, 'content' );
|
291 |
+
return false;
|
292 |
+
}
|
293 |
+
console.log( '[D] Content.' );
|
294 |
+
if ( response.frontpage_id ) {
|
295 |
+
setFrontPageID( response.frontpage_id );
|
296 |
+
}
|
297 |
+
setContentProgress( 'done' );
|
298 |
+
runImportCustomizer();
|
299 |
+
} )
|
300 |
+
.catch( ( error ) => handleError( error, 'content' ) );
|
301 |
+
}
|
302 |
+
|
303 |
+
function runImportCustomizer() {
|
304 |
+
if ( ! general.customizer ) {
|
305 |
+
console.log( '[S] Customizer.' );
|
306 |
+
runImportWidgets();
|
307 |
+
return false;
|
308 |
+
}
|
309 |
+
setCurrentStep( 'customizer' );
|
310 |
+
console.log( '[P] Customizer.' );
|
311 |
+
importMods( {
|
312 |
+
source_url: importData.url,
|
313 |
+
theme_mods: importData.theme_mods,
|
314 |
+
wp_options: importData.wp_options,
|
315 |
+
} )
|
316 |
+
.then( ( response ) => {
|
317 |
+
if ( ! response.success ) {
|
318 |
+
handleError( response, 'customizer' );
|
319 |
+
return false;
|
320 |
+
}
|
321 |
+
console.log( '[D] Customizer.' );
|
322 |
+
setCustomizerProgress( 'done' );
|
323 |
+
runImportWidgets();
|
324 |
+
} )
|
325 |
+
.catch( ( error ) => handleError( error, 'customizer' ) );
|
326 |
+
}
|
327 |
+
|
328 |
+
function runImportWidgets() {
|
329 |
+
if ( ! general.widgets ) {
|
330 |
+
console.log( '[S] Widgets.' );
|
331 |
+
importDone();
|
332 |
+
}
|
333 |
+
setCurrentStep( 'widgets' );
|
334 |
+
console.log( '[P] Widgets.' );
|
335 |
+
importWidgets( importData.widgets )
|
336 |
+
.then( ( response ) => {
|
337 |
+
if ( ! response.success ) {
|
338 |
+
handleError( response, 'widgets' );
|
339 |
+
return false;
|
340 |
+
}
|
341 |
+
console.log( '[D] Widgets.' );
|
342 |
+
setWidgetsProgress( 'done' );
|
343 |
+
importDone();
|
344 |
+
} )
|
345 |
+
.catch( ( error ) => handleError( error, 'widgets' ) );
|
346 |
+
}
|
347 |
+
|
348 |
+
function importDone() {
|
349 |
+
setCurrentStep( 'done' );
|
350 |
+
setImporting( false );
|
351 |
+
}
|
352 |
+
|
353 |
+
function handleError( error, step ) {
|
354 |
+
setImporting( false );
|
355 |
+
setCurrentStep( null );
|
356 |
+
if ( 'plugins' === step ) {
|
357 |
+
setContentProgress( 'skip' );
|
358 |
+
}
|
359 |
+
if ( [ 'content', 'plugins' ].includes( step ) ) {
|
360 |
+
setCustomizerProgress( 'skip' );
|
361 |
+
}
|
362 |
+
if ( [ 'content', 'plugins', 'customizer' ].includes( step ) ) {
|
363 |
+
setWidgetsProgress( 'skip' );
|
364 |
+
}
|
365 |
+
|
366 |
+
const map = {
|
367 |
+
plugins: __(
|
368 |
+
'Something went wrong while installing the necessary plugins.',
|
369 |
+
'templates-patterns-collection'
|
370 |
+
),
|
371 |
+
content: __(
|
372 |
+
'Something went wrong while importing the website content.',
|
373 |
+
'templates-patterns-collection'
|
374 |
+
),
|
375 |
+
customizer: __(
|
376 |
+
'Something went wrong while updating the customizer settings.',
|
377 |
+
'templates-patterns-collection'
|
378 |
+
),
|
379 |
+
widgets: __(
|
380 |
+
'Something went wrong while importing the widgets.',
|
381 |
+
'templates-patterns-collection'
|
382 |
+
),
|
383 |
+
};
|
384 |
+
|
385 |
+
switch ( step ) {
|
386 |
+
case 'plugins':
|
387 |
+
setPluginsProgress( 'error' );
|
388 |
+
break;
|
389 |
+
case 'content':
|
390 |
+
setContentProgress( 'error' );
|
391 |
+
break;
|
392 |
+
case 'customizer':
|
393 |
+
setCustomizerProgress( 'error' );
|
394 |
+
break;
|
395 |
+
case 'widgets':
|
396 |
+
setWidgetsProgress( 'error' );
|
397 |
+
break;
|
398 |
+
}
|
399 |
+
setError(
|
400 |
+
error.data
|
401 |
+
? {
|
402 |
+
message: map[ step ],
|
403 |
+
code: error.data,
|
404 |
+
}
|
405 |
+
: { message: map[ step ] }
|
406 |
+
);
|
407 |
+
}
|
408 |
+
|
409 |
+
const closeModal = () => {
|
410 |
+
if ( importing ) {
|
411 |
+
return false;
|
412 |
+
}
|
413 |
+
setModal( false );
|
414 |
+
};
|
415 |
+
|
416 |
+
const externalPluginsInstalled = siteData.external_plugins
|
417 |
+
? siteData.external_plugins.every( ( value ) => true === value.active )
|
418 |
+
: true;
|
419 |
+
const allOptionsOff = Object.keys( general ).every(
|
420 |
+
( k ) => false === general[ k ]
|
421 |
+
);
|
422 |
+
const editLinkMap = {
|
423 |
+
elementor: `${ tiobDash.onboarding.homeUrl }/wp-admin/post.php?post=${ frontPageID }&action=elementor`,
|
424 |
+
brizy: `${ tiobDash.onboarding.homeUrl }/?brizy-edit`,
|
425 |
+
'beaver builder': `${ tiobDash.onboarding.homeUrl }/?fl_builder`,
|
426 |
+
'thrive architect': `${ tiobDash.onboarding.homeUrl }/wp-admin/post.php?post=${ frontPageID }&action=architect&tve=true`,
|
427 |
+
'divi builder': `${ tiobDash.onboarding.homeUrl }/?et_fb=1&PageSpeed=off`,
|
428 |
+
gutenberg: `${ tiobDash.onboarding.homeUrl }/wp-admin/post.php?post=${ frontPageID }&action=edit`,
|
429 |
+
};
|
430 |
+
const editLink = editLinkMap[ editor ];
|
431 |
+
|
432 |
+
return (
|
433 |
+
<Modal
|
434 |
+
className={ classnames( [ 'ob-import-modal', { fetching } ] ) }
|
435 |
+
title={
|
436 |
+
importData && ! fetching ? (
|
437 |
+
importData.title
|
438 |
+
) : (
|
439 |
+
<span className="is-loading title" />
|
440 |
+
)
|
441 |
+
}
|
442 |
+
onRequestClose={ closeModal }
|
443 |
+
shouldCloseOnClickOutside={ ! importing && ! fetching }
|
444 |
+
isDismissible={ ! importing && ! fetching }
|
445 |
+
>
|
446 |
+
{ fetching ? (
|
447 |
+
renderMock()
|
448 |
+
) : (
|
449 |
+
<Fragment>
|
450 |
+
<div className="modal-body">
|
451 |
+
{ ! importing && 'done' !== currentStep && ! error ? (
|
452 |
+
<Fragment>
|
453 |
+
{ renderNote() }
|
454 |
+
<hr />
|
455 |
+
{ renderOptions() }
|
456 |
+
<hr />
|
457 |
+
{ renderPlugins() }
|
458 |
+
</Fragment>
|
459 |
+
) : (
|
460 |
+
<Fragment>
|
461 |
+
{ error && (
|
462 |
+
<Fragment>
|
463 |
+
<ImportModalError
|
464 |
+
message={ error.message || null }
|
465 |
+
code={ error.code || null }
|
466 |
+
/>
|
467 |
+
<hr />
|
468 |
+
</Fragment>
|
469 |
+
) }
|
470 |
+
{ null !== currentStep && (
|
471 |
+
<ImportStepper
|
472 |
+
progress={ {
|
473 |
+
plugins: pluginsProgress,
|
474 |
+
content: contentProgress,
|
475 |
+
customizer: customizerProgress,
|
476 |
+
widgets: widgetsProgress,
|
477 |
+
} }
|
478 |
+
currentStep={ currentStep }
|
479 |
+
willDo={ general }
|
480 |
+
/>
|
481 |
+
) }
|
482 |
+
{ 'done' === currentStep && (
|
483 |
+
<Fragment>
|
484 |
+
<hr />
|
485 |
+
<p className="import-result">
|
486 |
+
{ __(
|
487 |
+
'Content was successfully imported. Enjoy your new site!',
|
488 |
+
'templates-patterns-collection'
|
489 |
+
) }
|
490 |
+
</p>
|
491 |
+
<hr />
|
492 |
+
</Fragment>
|
493 |
+
) }
|
494 |
+
</Fragment>
|
495 |
+
) }
|
496 |
+
</div>
|
497 |
+
{ ! importing && (
|
498 |
+
<div className="modal-footer">
|
499 |
+
{ 'done' !== currentStep ? (
|
500 |
+
<Fragment>
|
501 |
+
<Button isSecondary onClick={ closeModal }>
|
502 |
+
{ __(
|
503 |
+
'Close',
|
504 |
+
'templates-patterns-collection'
|
505 |
+
) }
|
506 |
+
</Button>
|
507 |
+
{ ! error && (
|
508 |
+
<Button
|
509 |
+
isPrimary
|
510 |
+
disabled={
|
511 |
+
allOptionsOff ||
|
512 |
+
! externalPluginsInstalled
|
513 |
+
}
|
514 |
+
onClick={ () => {
|
515 |
+
setImporting( true );
|
516 |
+
runImport();
|
517 |
+
} }
|
518 |
+
>
|
519 |
+
{ __(
|
520 |
+
'Import',
|
521 |
+
'templates-patterns-collection'
|
522 |
+
) }
|
523 |
+
</Button>
|
524 |
+
) }
|
525 |
+
</Fragment>
|
526 |
+
) : (
|
527 |
+
<Fragment>
|
528 |
+
<Button
|
529 |
+
isLink
|
530 |
+
className="close"
|
531 |
+
onClick={ closeModal }
|
532 |
+
>
|
533 |
+
{ __(
|
534 |
+
'Back to Sites Library',
|
535 |
+
'templates-patterns-collection'
|
536 |
+
) }
|
537 |
+
</Button>
|
538 |
+
<Button
|
539 |
+
isSecondary
|
540 |
+
href={ tiobDash.onboarding.homeUrl }
|
541 |
+
>
|
542 |
+
{ __(
|
543 |
+
'View Website',
|
544 |
+
'templates-patterns-collection'
|
545 |
+
) }
|
546 |
+
</Button>
|
547 |
+
<Button isPrimary href={ editLink }>
|
548 |
+
{ __(
|
549 |
+
'Add your own content',
|
550 |
+
'templates-patterns-collection'
|
551 |
+
) }
|
552 |
+
</Button>
|
553 |
+
</Fragment>
|
554 |
+
) }
|
555 |
+
</div>
|
556 |
+
) }
|
557 |
+
</Fragment>
|
558 |
+
) }
|
559 |
+
</Modal>
|
560 |
+
);
|
561 |
+
};
|
562 |
+
|
563 |
+
export default compose(
|
564 |
+
withSelect( ( select ) => {
|
565 |
+
const { getCurrentEditor, getCurrentSite } = select(
|
566 |
+
'neve-onboarding'
|
567 |
+
);
|
568 |
+
return {
|
569 |
+
editor: getCurrentEditor(),
|
570 |
+
siteData: getCurrentSite(),
|
571 |
+
};
|
572 |
+
} ),
|
573 |
+
withDispatch( ( dispatch ) => {
|
574 |
+
const { setImportModalStatus } = dispatch( 'neve-onboarding' );
|
575 |
+
return {
|
576 |
+
setModal: ( status ) => setImportModalStatus( status ),
|
577 |
+
};
|
578 |
+
} )
|
579 |
+
)( ImportModal );
|
assets/src/Components/ImportModalError.js
ADDED
@@ -0,0 +1,42 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import { Dashicon, Button } from '@wordpress/components';
|
2 |
+
import { __ } from '@wordpress/i18n';
|
3 |
+
|
4 |
+
const ImportModalError = ( { message, code } ) => {
|
5 |
+
return (
|
6 |
+
<div className="well error">
|
7 |
+
{ message && (
|
8 |
+
<h3>
|
9 |
+
<Dashicon icon="warning" />
|
10 |
+
<span>{ message }</span>
|
11 |
+
</h3>
|
12 |
+
) }
|
13 |
+
<ul>
|
14 |
+
<li
|
15 |
+
dangerouslySetInnerHTML={ {
|
16 |
+
__html: tiobDash.onboarding.i18n.troubleshooting,
|
17 |
+
} }
|
18 |
+
/>
|
19 |
+
<li
|
20 |
+
dangerouslySetInnerHTML={ {
|
21 |
+
__html: tiobDash.onboarding.i18n.support,
|
22 |
+
} }
|
23 |
+
/>
|
24 |
+
{ code && (
|
25 |
+
<li>
|
26 |
+
{ __( 'Error code', 'templates-patterns-collection' ) }:{ ' ' }
|
27 |
+
<code>{ code }</code>
|
28 |
+
</li>
|
29 |
+
) }
|
30 |
+
<li>
|
31 |
+
{ __( 'Error log', 'templates-patterns-collection' ) }:{ ' ' }
|
32 |
+
<Button isLink href={ tiobDash.onboarding.logUrl }>
|
33 |
+
{ tiobDash.onboarding.logUrl }
|
34 |
+
<Dashicon icon="external" />
|
35 |
+
</Button>
|
36 |
+
</li>
|
37 |
+
</ul>
|
38 |
+
</div>
|
39 |
+
);
|
40 |
+
};
|
41 |
+
|
42 |
+
export default ImportModalError;
|
assets/src/Components/ImportModalNote.js
ADDED
@@ -0,0 +1,57 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import classnames from 'classnames';
|
2 |
+
|
3 |
+
import { Fragment } from '@wordpress/element';
|
4 |
+
import { Dashicon, Button } from '@wordpress/components';
|
5 |
+
import { __ } from '@wordpress/i18n';
|
6 |
+
|
7 |
+
const ImportModalNote = ( { data, externalInstalled } ) => {
|
8 |
+
const external = data.external_plugins || null;
|
9 |
+
const classes = classnames( [
|
10 |
+
'well',
|
11 |
+
{ warning: external && ! externalInstalled },
|
12 |
+
] );
|
13 |
+
return (
|
14 |
+
<div className={ classes }>
|
15 |
+
<h3>
|
16 |
+
<Dashicon icon="info" />
|
17 |
+
<span>
|
18 |
+
{ external && ! externalInstalled
|
19 |
+
? __(
|
20 |
+
'To import this demo you have to install the following plugins',
|
21 |
+
'neve'
|
22 |
+
)
|
23 |
+
: __( 'Note', 'templates-patterns-collection' ) }
|
24 |
+
:
|
25 |
+
</span>
|
26 |
+
</h3>
|
27 |
+
<ol>
|
28 |
+
{ external && ! externalInstalled ? (
|
29 |
+
external.map( ( plugin, index ) => (
|
30 |
+
<li key={ index }>
|
31 |
+
<Button isLink href={ plugin.author_url }>
|
32 |
+
{ plugin.name }
|
33 |
+
</Button>
|
34 |
+
</li>
|
35 |
+
) )
|
36 |
+
) : (
|
37 |
+
<Fragment>
|
38 |
+
<li>
|
39 |
+
{ __(
|
40 |
+
'We recommend you backup your website content before attempting a full site import.',
|
41 |
+
'neve'
|
42 |
+
) }
|
43 |
+
</li>
|
44 |
+
<li>
|
45 |
+
{ __(
|
46 |
+
'Some of the demo images will not be imported and will be replaced by placeholder images.',
|
47 |
+
'neve'
|
48 |
+
) }
|
49 |
+
</li>
|
50 |
+
</Fragment>
|
51 |
+
) }
|
52 |
+
</ol>
|
53 |
+
</div>
|
54 |
+
);
|
55 |
+
};
|
56 |
+
|
57 |
+
export default ImportModalNote;
|
assets/src/Components/ImportStepper.js
ADDED
@@ -0,0 +1,83 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import classnames from 'classnames';
|
2 |
+
|
3 |
+
import { __ } from '@wordpress/i18n';
|
4 |
+
import { Dashicon } from '@wordpress/components';
|
5 |
+
const ImportStepper = ( { currentStep, progress, willDo } ) => {
|
6 |
+
const stepsMap = {
|
7 |
+
plugins: {
|
8 |
+
label: __( 'Installing Plugins', 'templates-patterns-collection' ),
|
9 |
+
status: progress.plugins,
|
10 |
+
willDo: true,
|
11 |
+
},
|
12 |
+
content: {
|
13 |
+
label: __( 'Importing Content', 'templates-patterns-collection' ),
|
14 |
+
status: progress.content,
|
15 |
+
willDo: willDo.content,
|
16 |
+
},
|
17 |
+
customizer: {
|
18 |
+
label: __(
|
19 |
+
'Importing Customizer Settings',
|
20 |
+
'templates-patterns-collection'
|
21 |
+
),
|
22 |
+
status: progress.customizer,
|
23 |
+
willDo: willDo.customizer,
|
24 |
+
},
|
25 |
+
widgets: {
|
26 |
+
label: __( 'Importing Widgets', 'templates-patterns-collection' ),
|
27 |
+
status: progress.widgets,
|
28 |
+
willDo: willDo.widgets,
|
29 |
+
},
|
30 |
+
};
|
31 |
+
|
32 |
+
return (
|
33 |
+
<ul className="stepper">
|
34 |
+
{ Object.keys( stepsMap ).map( ( key, index ) => {
|
35 |
+
const { label, status, willDo } = stepsMap[ key ];
|
36 |
+
|
37 |
+
if ( ! willDo ) {
|
38 |
+
return null;
|
39 |
+
}
|
40 |
+
|
41 |
+
const classes = classnames( [
|
42 |
+
'icon',
|
43 |
+
{
|
44 |
+
loading: currentStep === key,
|
45 |
+
warning: currentStep === key,
|
46 |
+
success: 'done' === status,
|
47 |
+
error: 'error' === status,
|
48 |
+
skip: 'skip' === status,
|
49 |
+
},
|
50 |
+
] );
|
51 |
+
|
52 |
+
let icon = 'clock';
|
53 |
+
if ( currentStep === key ) {
|
54 |
+
icon = 'update';
|
55 |
+
}
|
56 |
+
|
57 |
+
if ( 'done' === status ) {
|
58 |
+
icon = 'yes';
|
59 |
+
}
|
60 |
+
|
61 |
+
if ( 'error' === status ) {
|
62 |
+
icon = 'no-alt';
|
63 |
+
}
|
64 |
+
|
65 |
+
return (
|
66 |
+
<li key={ index }>
|
67 |
+
<span className={ classes }>
|
68 |
+
<Dashicon
|
69 |
+
icon={ icon }
|
70 |
+
className={
|
71 |
+
currentStep === key ? 'loading' : ''
|
72 |
+
}
|
73 |
+
/>
|
74 |
+
</span>
|
75 |
+
<span>{ label }</span>
|
76 |
+
</li>
|
77 |
+
);
|
78 |
+
} ) }
|
79 |
+
</ul>
|
80 |
+
);
|
81 |
+
};
|
82 |
+
|
83 |
+
export default ImportStepper;
|
assets/src/Components/InstallModal.js
ADDED
@@ -0,0 +1,184 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/* global tiobDash */
|
2 |
+
|
3 |
+
import { Button, Modal } from '@wordpress/components';
|
4 |
+
import { withDispatch, withSelect } from '@wordpress/data';
|
5 |
+
import { compose } from '@wordpress/compose';
|
6 |
+
import { useState } from '@wordpress/element';
|
7 |
+
import { __, sprintf } from '@wordpress/i18n';
|
8 |
+
import { get } from '../utils/rest';
|
9 |
+
|
10 |
+
const InstallModal = ( {
|
11 |
+
setImportModal,
|
12 |
+
setInstallModal,
|
13 |
+
themeData,
|
14 |
+
setThemeAction,
|
15 |
+
} ) => {
|
16 |
+
const { action, slug, nonce } = themeData;
|
17 |
+
const { themesURL, brandedTheme } = tiobDash;
|
18 |
+
const [ installing, setInstalling ] = useState( false );
|
19 |
+
const [ error, setError ] = useState( null );
|
20 |
+
const handleDismiss = () => {
|
21 |
+
setInstallModal( false );
|
22 |
+
};
|
23 |
+
|
24 |
+
const handleError = ( message ) => {
|
25 |
+
setInstalling( false );
|
26 |
+
setError(
|
27 |
+
sprintf(
|
28 |
+
// translators: %s: Error message.
|
29 |
+
__(
|
30 |
+
'An error has ocurred: %s',
|
31 |
+
'templates-patterns-collection'
|
32 |
+
),
|
33 |
+
message
|
34 |
+
)
|
35 |
+
);
|
36 |
+
};
|
37 |
+
|
38 |
+
const handleInstall = () => {
|
39 |
+
setInstalling( 'installing' );
|
40 |
+
wp.updates.installTheme( {
|
41 |
+
slug: 'neve',
|
42 |
+
success: () => {
|
43 |
+
setThemeAction( { ...themeData, action: 'activate' } );
|
44 |
+
handleActivate();
|
45 |
+
},
|
46 |
+
error: ( err ) => {
|
47 |
+
setThemeAction( { ...themeData, action: 'activate' } );
|
48 |
+
handleError(
|
49 |
+
err.errorMessage ||
|
50 |
+
__(
|
51 |
+
'Could not install theme.',
|
52 |
+
'templates-patterns-collection'
|
53 |
+
)
|
54 |
+
);
|
55 |
+
},
|
56 |
+
} );
|
57 |
+
};
|
58 |
+
|
59 |
+
const handleActivate = () => {
|
60 |
+
setInstalling( 'activating' );
|
61 |
+
const url = `${ themesURL }?action=activate&stylesheet=${ slug }&_wpnonce=${ nonce }`;
|
62 |
+
get( url, true ).then( ( response ) => {
|
63 |
+
if ( response.status !== 200 ) {
|
64 |
+
handleError(
|
65 |
+
__(
|
66 |
+
'Could not activate theme.',
|
67 |
+
'templates-patterns-collection'
|
68 |
+
)
|
69 |
+
);
|
70 |
+
setInstalling( false );
|
71 |
+
return false;
|
72 |
+
}
|
73 |
+
setInstalling( false );
|
74 |
+
setInstallModal( false );
|
75 |
+
setThemeAction( false );
|
76 |
+
setImportModal( true );
|
77 |
+
} );
|
78 |
+
};
|
79 |
+
|
80 |
+
return (
|
81 |
+
<Modal
|
82 |
+
className="ob-import-modal install-modal"
|
83 |
+
title={ __(
|
84 |
+
'Install and Activate Neve',
|
85 |
+
'templates-patterns-collection'
|
86 |
+
) }
|
87 |
+
onRequestClose={ handleDismiss }
|
88 |
+
shouldCloseOnClickOutside={ ! installing }
|
89 |
+
isDismissible={ ! installing }
|
90 |
+
>
|
91 |
+
<div className="modal-body" style={ { textAlign: 'center' } }>
|
92 |
+
{ ! brandedTheme && (
|
93 |
+
<img
|
94 |
+
style={ { width: 75 } }
|
95 |
+
src={ `${ tiobDash.assets }/img/logo.svg` }
|
96 |
+
alt={ __( 'Logo', 'templates-patterns-collection' ) }
|
97 |
+
/>
|
98 |
+
) }
|
99 |
+
{ error && (
|
100 |
+
<div className="well error" style={ { margin: '20px 0' } }>
|
101 |
+
{ error }
|
102 |
+
</div>
|
103 |
+
) }
|
104 |
+
<p
|
105 |
+
style={ {
|
106 |
+
lineHeight: 1.6,
|
107 |
+
fontSize: '15px',
|
108 |
+
} }
|
109 |
+
>
|
110 |
+
{ __(
|
111 |
+
'In order to import the starter site, Neve theme has to be installed and activated. Click the button below to install and activate Neve',
|
112 |
+
'templates-patterns-collection'
|
113 |
+
) }
|
114 |
+
</p>
|
115 |
+
</div>
|
116 |
+
<div
|
117 |
+
className="modal-footer"
|
118 |
+
style={ { justifyContent: 'center' } }
|
119 |
+
>
|
120 |
+
<div className="actions" style={ { display: 'flex' } }>
|
121 |
+
{ ! error && (
|
122 |
+
<Button
|
123 |
+
dismiss={ error }
|
124 |
+
isPrimary
|
125 |
+
disabled={ installing }
|
126 |
+
className={ installing && 'is-loading' }
|
127 |
+
icon={ installing && 'update' }
|
128 |
+
onClick={
|
129 |
+
action === 'install'
|
130 |
+
? handleInstall
|
131 |
+
: handleActivate
|
132 |
+
}
|
133 |
+
>
|
134 |
+
{ installing &&
|
135 |
+
( installing === 'installing'
|
136 |
+
? __( 'Installing' )
|
137 |
+
: __( 'Activating' ) ) }
|
138 |
+
|
139 |
+
{ ! installing &&
|
140 |
+
( action === 'install'
|
141 |
+
? __(
|
142 |
+
'Install and Activate',
|
143 |
+
'templates-patterns-collection'
|
144 |
+
)
|
145 |
+
: __(
|
146 |
+
'Activate',
|
147 |
+
'templates-patterns-collection'
|
148 |
+
) ) }
|
149 |
+
</Button>
|
150 |
+
) }
|
151 |
+
<Button
|
152 |
+
isSecondary
|
153 |
+
disabled={ installing }
|
154 |
+
onClick={ handleDismiss }
|
155 |
+
>
|
156 |
+
{ __( 'Close', 'templates-patterns-collection' ) }
|
157 |
+
</Button>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
</Modal>
|
161 |
+
);
|
162 |
+
};
|
163 |
+
|
164 |
+
export default compose(
|
165 |
+
withSelect( ( select ) => {
|
166 |
+
const { getThemeAction } = select( 'neve-onboarding' );
|
167 |
+
|
168 |
+
return {
|
169 |
+
themeData: getThemeAction() || false,
|
170 |
+
};
|
171 |
+
} ),
|
172 |
+
withDispatch( ( dispatch ) => {
|
173 |
+
const {
|
174 |
+
setImportModalStatus,
|
175 |
+
setInstallModalStatus,
|
176 |
+
setThemeAction,
|
177 |
+
} = dispatch( 'neve-onboarding' );
|
178 |
+
return {
|
179 |
+
setImportModal: ( status ) => setImportModalStatus( status ),
|
180 |
+
setInstallModal: ( status ) => setInstallModalStatus( status ),
|
181 |
+
setThemeAction: ( status ) => setThemeAction( status ),
|
182 |
+
};
|
183 |
+
} )
|
184 |
+
)( InstallModal );
|
assets/src/Components/Loading.js
ADDED
@@ -0,0 +1,53 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import { withSelect } from '@wordpress/data';
|
2 |
+
|
3 |
+
const Loading = ( { isOnboarding } ) => {
|
4 |
+
return (
|
5 |
+
<div className="ob mock-dash">
|
6 |
+
<div className="ob-head">
|
7 |
+
<h2 className="loading" />
|
8 |
+
<p className="loading" />
|
9 |
+
<p className="loading" />
|
10 |
+
{ isOnboarding && (
|
11 |
+
<button className="loading components-button is-primary" />
|
12 |
+
) }
|
13 |
+
<div className="header-form">
|
14 |
+
<div>
|
15 |
+
<div className="ob-dropdown">
|
16 |
+
<button>
|
17 |
+
<div className="editor-icon loading" />
|
18 |
+
<span className="loading" />
|
19 |
+
</button>
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
<div className="search">
|
23 |
+
<button>
|
24 |
+
<span className="loading" />
|
25 |
+
</button>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
</div>
|
29 |
+
<div className="ob-body">
|
30 |
+
<div className="ob-sites">
|
31 |
+
{ [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ].map( ( i ) => {
|
32 |
+
return (
|
33 |
+
<div key={ i } className="card starter-site-card">
|
34 |
+
<div className="top">
|
35 |
+
<div className="image loading" />
|
36 |
+
</div>
|
37 |
+
<div className="bottom">
|
38 |
+
<p className="title loading" />
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
);
|
42 |
+
} ) }
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
{ isOnboarding && <div className="ob-footer" /> }
|
46 |
+
</div>
|
47 |
+
);
|
48 |
+
};
|
49 |
+
|
50 |
+
export default withSelect( ( select ) => {
|
51 |
+
const { getOnboardingStatus } = select( 'neve-onboarding' );
|
52 |
+
return { isOnboarding: getOnboardingStatus() };
|
53 |
+
} )( Loading );
|
assets/src/Components/Main.js
ADDED
@@ -0,0 +1,444 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import Search from './Search';
|
2 |
+
import StarterSiteCard from './StarterSiteCard';
|
3 |
+
import PreviewFrame from './PreviewFrame';
|
4 |
+
import ImportModal from './ImportModal';
|
5 |
+
import InstallModal from './InstallModal';
|
6 |
+
import Migration from './Migration';
|
7 |
+
import VizSensor from 'react-visibility-sensor';
|
8 |
+
import Fuse from 'fuse.js/dist/fuse.min';
|
9 |
+
import EditorTabs from './EditorTabs';
|
10 |
+
import EditorSelector from './EditorSelector';
|
11 |
+
|
12 |
+
import { useState, Fragment } from '@wordpress/element';
|
13 |
+
import { Button } from '@wordpress/components';
|
14 |
+
import { __ } from '@wordpress/i18n';
|
15 |
+
import { withSelect, withDispatch } from '@wordpress/data';
|
16 |
+
import { compose } from '@wordpress/compose';
|
17 |
+
|
18 |
+
const Onboarding = ( {
|
19 |
+
editor,
|
20 |
+
category,
|
21 |
+
resetCategory,
|
22 |
+
previewOpen,
|
23 |
+
currentSiteData,
|
24 |
+
importModal,
|
25 |
+
isOnboarding,
|
26 |
+
cancelOnboarding,
|
27 |
+
getSites,
|
28 |
+
installModal,
|
29 |
+
} ) => {
|
30 |
+
const [ searchQuery, setSearchQuery ] = useState( '' );
|
31 |
+
const [ maxShown, setMaxShown ] = useState( 9 );
|
32 |
+
const { sites = {}, migration } = getSites;
|
33 |
+
const [ sticky, setSticky ] = useState( false );
|
34 |
+
|
35 |
+
if ( 1 > sites.length ) {
|
36 |
+
return (
|
37 |
+
<>
|
38 |
+
<p>
|
39 |
+
{ __(
|
40 |
+
'Starter sites could not be loaded. Please refresh and try again.',
|
41 |
+
'neve'
|
42 |
+
) }
|
43 |
+
{ isOnboarding && (
|
44 |
+
<Button
|
45 |
+
style={ {
|
46 |
+
display: 'block',
|
47 |
+
margin: '20px auto',
|
48 |
+
} }
|
49 |
+
isPrimary
|
50 |
+
onClick={ cancelOnboarding }
|
51 |
+
>
|
52 |
+
{ __( 'Close', 'templates-patterns-collection' ) }
|
53 |
+
</Button>
|
54 |
+
) }
|
55 |
+
</p>
|
56 |
+
</>
|
57 |
+
);
|
58 |
+
}
|
59 |
+
|
60 |
+
const tags = [
|
61 |
+
__( 'Business', 'templates-patterns-collection' ),
|
62 |
+
__( 'Ecommerce', 'templates-patterns-collection' ),
|
63 |
+
__( 'Fashion', 'templates-patterns-collection' ),
|
64 |
+
__( 'Blogging', 'templates-patterns-collection' ),
|
65 |
+
__( 'Photography', 'templates-patterns-collection' ),
|
66 |
+
];
|
67 |
+
|
68 |
+
const CATEGORIES = {
|
69 |
+
all: __( 'All Categories' ),
|
70 |
+
free: __( 'Free' ),
|
71 |
+
business: __( 'Business' ),
|
72 |
+
portfolio: __( 'Portfolio' ),
|
73 |
+
woocommerce: __( 'WooCommerce' ),
|
74 |
+
blog: __( 'Blog' ),
|
75 |
+
personal: __( 'Personal' ),
|
76 |
+
other: __( 'Other' ),
|
77 |
+
};
|
78 |
+
|
79 |
+
const EDITOR_MAP = {
|
80 |
+
gutenberg: {
|
81 |
+
icon: 'gutenberg.jpg',
|
82 |
+
niceName: 'Gutenberg',
|
83 |
+
},
|
84 |
+
elementor: {
|
85 |
+
icon: 'elementor.jpg',
|
86 |
+
niceName: 'Elementor',
|
87 |
+
},
|
88 |
+
'beaver builder': {
|
89 |
+
icon: 'beaver.jpg',
|
90 |
+
niceName: (
|
91 |
+
<>
|
92 |
+
Beaver <span className="long-name">Builder</span>
|
93 |
+
</>
|
94 |
+
),
|
95 |
+
},
|
96 |
+
brizy: {
|
97 |
+
icon: 'brizy.jpg',
|
98 |
+
niceName: 'Brizy',
|
99 |
+
},
|
100 |
+
'divi builder': {
|
101 |
+
icon: 'divi.jpg',
|
102 |
+
niceName: 'Divi',
|
103 |
+
},
|
104 |
+
'thrive architect': {
|
105 |
+
icon: 'thrive.jpg',
|
106 |
+
niceName: (
|
107 |
+
<>
|
108 |
+
Thrive <span className="long-name">Architect</span>
|
109 |
+
</>
|
110 |
+
),
|
111 |
+
},
|
112 |
+
};
|
113 |
+
|
114 |
+
const getAllSites = () => {
|
115 |
+
const finalData = {};
|
116 |
+
const builders = getBuilders();
|
117 |
+
|
118 |
+
builders.map( ( builder ) => {
|
119 |
+
const sitesData = sites && sites[ builder ] ? sites[ builder ] : {};
|
120 |
+
finalData[ builder ] = [ ...Object.values( sitesData ) ];
|
121 |
+
} );
|
122 |
+
|
123 |
+
return finalData;
|
124 |
+
};
|
125 |
+
|
126 |
+
const filterByCategory = ( sites, category ) => {
|
127 |
+
if ( 'free' === category ) {
|
128 |
+
return sites.filter( ( item ) => ! item.upsell );
|
129 |
+
}
|
130 |
+
|
131 |
+
if ( 'all' !== category ) {
|
132 |
+
return sites.filter( ( item ) =>
|
133 |
+
item.keywords.includes( category )
|
134 |
+
);
|
135 |
+
}
|
136 |
+
|
137 |
+
return sites;
|
138 |
+
};
|
139 |
+
|
140 |
+
const filterBySearch = ( sites ) => {
|
141 |
+
if ( ! searchQuery ) {
|
142 |
+
return sites;
|
143 |
+
}
|
144 |
+
|
145 |
+
const fuse = new Fuse( sites, {
|
146 |
+
includeScore: true,
|
147 |
+
keys: [ 'title', 'slug', 'keywords' ],
|
148 |
+
} );
|
149 |
+
return fuse.search( searchQuery ).map( ( item ) => item.item );
|
150 |
+
};
|
151 |
+
|
152 |
+
const getSitesForBuilder = ( builder ) => {
|
153 |
+
const allSites = getAllSites();
|
154 |
+
return allSites[ builder ];
|
155 |
+
};
|
156 |
+
|
157 |
+
const getBuilders = () => Object.keys( sites );
|
158 |
+
|
159 |
+
const getCounts = () => {
|
160 |
+
const counts = {
|
161 |
+
builders: {},
|
162 |
+
categories: {},
|
163 |
+
};
|
164 |
+
const builders = getBuilders();
|
165 |
+
|
166 |
+
builders.map( ( builder ) => {
|
167 |
+
let buildersFiltered = getSitesForBuilder( builder );
|
168 |
+
buildersFiltered = filterByCategory( buildersFiltered, category );
|
169 |
+
buildersFiltered = filterBySearch( buildersFiltered );
|
170 |
+
counts.builders[ builder ] = buildersFiltered
|
171 |
+
? buildersFiltered.length
|
172 |
+
: 0;
|
173 |
+
} );
|
174 |
+
|
175 |
+
Object.keys( CATEGORIES ).map( ( category ) => {
|
176 |
+
let categoriesFiltered = getSitesForBuilder( editor );
|
177 |
+
categoriesFiltered = filterByCategory(
|
178 |
+
categoriesFiltered,
|
179 |
+
category
|
180 |
+
);
|
181 |
+
categoriesFiltered = filterBySearch( categoriesFiltered );
|
182 |
+
counts.categories[ category ] = categoriesFiltered
|
183 |
+
? categoriesFiltered.length
|
184 |
+
: 0;
|
185 |
+
} );
|
186 |
+
|
187 |
+
return counts;
|
188 |
+
};
|
189 |
+
|
190 |
+
const getFilteredSites = () => {
|
191 |
+
const allSites = getAllSites();
|
192 |
+
let builderSites = allSites[ editor ];
|
193 |
+
builderSites = filterBySearch( builderSites );
|
194 |
+
builderSites = filterByCategory( builderSites, category );
|
195 |
+
|
196 |
+
return builderSites;
|
197 |
+
};
|
198 |
+
|
199 |
+
const renderSites = () => {
|
200 |
+
const allData = getFilteredSites();
|
201 |
+
return allData.slice( 0, maxShown ).map( ( site, index ) => {
|
202 |
+
return <StarterSiteCard key={ index } data={ site } />;
|
203 |
+
} );
|
204 |
+
};
|
205 |
+
|
206 |
+
const getSiteNav = ( prev = false ) => {
|
207 |
+
if ( null === currentSiteData ) {
|
208 |
+
return null;
|
209 |
+
}
|
210 |
+
const allSites = getAllSites()[ editor ];
|
211 |
+
const position = allSites.indexOf( currentSiteData );
|
212 |
+
|
213 |
+
if ( -1 === position ) {
|
214 |
+
return null;
|
215 |
+
}
|
216 |
+
|
217 |
+
if ( 1 === allSites.length ) {
|
218 |
+
return null;
|
219 |
+
}
|
220 |
+
|
221 |
+
if ( prev && 0 === position ) {
|
222 |
+
return allSites[ allSites.length - 1 ];
|
223 |
+
}
|
224 |
+
|
225 |
+
if ( ! prev && position === allSites.length - 1 ) {
|
226 |
+
return allSites[ 0 ];
|
227 |
+
}
|
228 |
+
|
229 |
+
return allSites[ prev ? position - 1 : position + 1 ];
|
230 |
+
};
|
231 |
+
|
232 |
+
function renderMigration() {
|
233 |
+
if ( ! migration ) {
|
234 |
+
return null;
|
235 |
+
}
|
236 |
+
return <Migration data={ migration } />;
|
237 |
+
}
|
238 |
+
|
239 |
+
const onlyProBuilders = getBuilders().filter( ( builder ) => {
|
240 |
+
const upsellSitesCount = Object.keys( sites[ builder ] ).filter(
|
241 |
+
( site ) => true === sites[ builder ][ site ].upsell
|
242 |
+
).length;
|
243 |
+
const sitesCount = Object.keys( sites[ builder ] ).length;
|
244 |
+
|
245 |
+
return upsellSitesCount === sitesCount;
|
246 |
+
} );
|
247 |
+
|
248 |
+
const counted = getCounts();
|
249 |
+
|
250 |
+
return (
|
251 |
+
<Fragment>
|
252 |
+
<div className="ob">
|
253 |
+
{ sticky && ! isOnboarding && (
|
254 |
+
<div className="sticky-nav">
|
255 |
+
<div className="container sticky-nav-content">
|
256 |
+
{ ! tiobDash.brandedTheme && (
|
257 |
+
<img
|
258 |
+
src={ `${ tiobDash.assets }img/logo.svg` }
|
259 |
+
alt="Logo"
|
260 |
+
/>
|
261 |
+
) }
|
262 |
+
<Search
|
263 |
+
count={ counted.categories }
|
264 |
+
categories={ CATEGORIES }
|
265 |
+
onSearch={ ( query ) => {
|
266 |
+
setSearchQuery( query );
|
267 |
+
setMaxShown( 9 );
|
268 |
+
} }
|
269 |
+
query={ searchQuery }
|
270 |
+
/>
|
271 |
+
<EditorSelector
|
272 |
+
isSmall
|
273 |
+
count={ counted.builders }
|
274 |
+
EDITOR_MAP={ EDITOR_MAP }
|
275 |
+
/>
|
276 |
+
</div>
|
277 |
+
</div>
|
278 |
+
) }
|
279 |
+
{ renderMigration() }
|
280 |
+
<div className="ob-head">
|
281 |
+
{ ! isOnboarding && (
|
282 |
+
<>
|
283 |
+
<h2>
|
284 |
+
{ ! tiobDash.brandedTheme && (
|
285 |
+
<img
|
286 |
+
src={ `${ tiobDash.assets }img/logo.svg` }
|
287 |
+
alt="Logo"
|
288 |
+
/>
|
289 |
+
) }
|
290 |
+
<span>
|
291 |
+
{ __(
|
292 |
+
'Ready to use pre-built websites with 1-click installation',
|
293 |
+
'neve'
|
294 |
+
) }
|
295 |
+
</span>
|
296 |
+
</h2>
|
297 |
+
<p>
|
298 |
+
{ tiobDash.strings.starterSitesTabDescription }
|
299 |
+
</p>
|
300 |
+
</>
|
301 |
+
) }
|
302 |
+
{ isOnboarding && (
|
303 |
+
<Button
|
304 |
+
className="close-onboarding"
|
305 |
+
isLink
|
306 |
+
icon="no-alt"
|
307 |
+
onClick={ cancelOnboarding }
|
308 |
+
/>
|
309 |
+
) }
|
310 |
+
</div>
|
311 |
+
|
312 |
+
<div className="ob-body">
|
313 |
+
<VizSensor
|
314 |
+
onChange={ ( isVisible ) => {
|
315 |
+
if ( ! isVisible ) {
|
316 |
+
setSticky( true );
|
317 |
+
} else {
|
318 |
+
setSticky( false );
|
319 |
+
}
|
320 |
+
} }
|
321 |
+
>
|
322 |
+
<div>
|
323 |
+
<EditorSelector
|
324 |
+
count={ counted.builders }
|
325 |
+
EDITOR_MAP={ EDITOR_MAP }
|
326 |
+
/>
|
327 |
+
<Search
|
328 |
+
count={ counted.categories }
|
329 |
+
categories={ CATEGORIES }
|
330 |
+
onSearch={ ( query ) => {
|
331 |
+
setSearchQuery( query );
|
332 |
+
setMaxShown( 9 );
|
333 |
+
} }
|
334 |
+
query={ searchQuery }
|
335 |
+
/>
|
336 |
+
<EditorTabs
|
337 |
+
EDITOR_MAP={ EDITOR_MAP }
|
338 |
+
onlyProSites={ onlyProBuilders }
|
339 |
+
count={ counted.builders }
|
340 |
+
/>
|
341 |
+
</div>
|
342 |
+
</VizSensor>
|
343 |
+
{ 0 === getFilteredSites().length ? (
|
344 |
+
<div className="no-results">
|
345 |
+
<p>
|
346 |
+
{ __(
|
347 |
+
'No results found',
|
348 |
+
'templates-patterns-collection'
|
349 |
+
) }
|
350 |
+
.{ ' ' }
|
351 |
+
{ __(
|
352 |
+
'You can try a different search or use one of the categories below.',
|
353 |
+
'neve'
|
354 |
+
) }
|
355 |
+
</p>
|
356 |
+
<div className="tags">
|
357 |
+
{ tags.map( ( tag, index ) => {
|
358 |
+
return (
|
359 |
+
<Button
|
360 |
+
key={ index }
|
361 |
+
isPrimary
|
362 |
+
className="tag"
|
363 |
+
onClick={ ( e ) => {
|
364 |
+
e.preventDefault();
|
365 |
+
setSearchQuery( tag );
|
366 |
+
resetCategory();
|
367 |
+
} }
|
368 |
+
>
|
369 |
+
{ tag }
|
370 |
+
</Button>
|
371 |
+
);
|
372 |
+
} ) }
|
373 |
+
</div>
|
374 |
+
</div>
|
375 |
+
) : (
|
376 |
+
<div className="ob-sites">{ renderSites() }</div>
|
377 |
+
) }
|
378 |
+
<VizSensor
|
379 |
+
onChange={ ( isVisible ) => {
|
380 |
+
if ( ! isVisible ) {
|
381 |
+
return false;
|
382 |
+
}
|
383 |
+
setMaxShown( maxShown + 9 );
|
384 |
+
} }
|
385 |
+
>
|
386 |
+
<span
|
387 |
+
style={ {
|
388 |
+
height: 10,
|
389 |
+
width: 10,
|
390 |
+
display: 'block',
|
391 |
+
} }
|
392 |
+
/>
|
393 |
+
</VizSensor>
|
394 |
+
</div>
|
395 |
+
</div>
|
396 |
+
{ previewOpen && currentSiteData && (
|
397 |
+
<PreviewFrame
|
398 |
+
next={ getSiteNav() }
|
399 |
+
prev={ getSiteNav( true ) }
|
400 |
+
/>
|
401 |
+
) }
|
402 |
+
{ importModal && currentSiteData && <ImportModal /> }
|
403 |
+
{ installModal && <InstallModal /> }
|
404 |
+
</Fragment>
|
405 |
+
);
|
406 |
+
};
|
407 |
+
|
408 |
+
export default compose(
|
409 |
+
withDispatch( ( dispatch ) => {
|
410 |
+
const { setOnboardingState, setCurrentCategory } = dispatch(
|
411 |
+
'neve-onboarding'
|
412 |
+
);
|
413 |
+
return {
|
414 |
+
cancelOnboarding: () => {
|
415 |
+
setOnboardingState( false );
|
416 |
+
},
|
417 |
+
resetCategory: () => {
|
418 |
+
setCurrentCategory( 'all' );
|
419 |
+
},
|
420 |
+
};
|
421 |
+
} ),
|
422 |
+
withSelect( ( select ) => {
|
423 |
+
const {
|
424 |
+
getCurrentEditor,
|
425 |
+
getCurrentCategory,
|
426 |
+
getPreviewStatus,
|
427 |
+
getCurrentSite,
|
428 |
+
getImportModalStatus,
|
429 |
+
getOnboardingStatus,
|
430 |
+
getSites,
|
431 |
+
getInstallModalStatus,
|
432 |
+
} = select( 'neve-onboarding' );
|
433 |
+
return {
|
434 |
+
editor: getCurrentEditor(),
|
435 |
+
category: getCurrentCategory(),
|
436 |
+
previewOpen: getPreviewStatus(),
|
437 |
+
currentSiteData: getCurrentSite(),
|
438 |
+
importModal: getImportModalStatus(),
|
439 |
+
installModal: getInstallModalStatus(),
|
440 |
+
isOnboarding: getOnboardingStatus(),
|
441 |
+
getSites: getSites(),
|
442 |
+
};
|
443 |
+
} )
|
444 |
+
)( Onboarding );
|
assets/src/Components/Migration.js
ADDED
@@ -0,0 +1,274 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/* global tiobDash */
|
2 |
+
import { send } from '../utils/rest';
|
3 |
+
import { installPlugins } from '../utils/site-import';
|
4 |
+
import ImportModalNote from './ImportModalNote';
|
5 |
+
import ImportModalError from './ImportModalError';
|
6 |
+
|
7 |
+
import { __ } from '@wordpress/i18n';
|
8 |
+
import { Dashicon, Button, Modal } from '@wordpress/components';
|
9 |
+
import { useState, Fragment } from '@wordpress/element';
|
10 |
+
|
11 |
+
const Migration = ( { data } ) => {
|
12 |
+
const setToast = ( string ) => console.log( string );
|
13 |
+
const [ dismissed, setDismissed ] = useState( false );
|
14 |
+
const [ modalOpen, setModalOpen ] = useState( false );
|
15 |
+
const [ migrating, setMigrating ] = useState( false );
|
16 |
+
const [ error, setError ] = useState( null );
|
17 |
+
const [ frontPageID, setFrontPageID ] = useState( null );
|
18 |
+
|
19 |
+
if ( dismissed ) {
|
20 |
+
return null;
|
21 |
+
}
|
22 |
+
|
23 |
+
const closeModal = () => {
|
24 |
+
if ( 'done' === migrating ) {
|
25 |
+
setDismissed( true );
|
26 |
+
}
|
27 |
+
setModalOpen( false );
|
28 |
+
setError( null );
|
29 |
+
setMigrating( false );
|
30 |
+
};
|
31 |
+
|
32 |
+
function startMigration() {
|
33 |
+
const plugins = Object.keys( data.mandatory_plugins ).reduce( function (
|
34 |
+
p,
|
35 |
+
key
|
36 |
+
) {
|
37 |
+
p[ key ] = true;
|
38 |
+
return p;
|
39 |
+
},
|
40 |
+
{} );
|
41 |
+
|
42 |
+
installPlugins( plugins ).then( ( r ) => {
|
43 |
+
setMigrating( true );
|
44 |
+
if ( ! r.success ) {
|
45 |
+
setError( {
|
46 |
+
code: r.data || null,
|
47 |
+
message: __(
|
48 |
+
'Something went wrong while installing the necessary plugins.',
|
49 |
+
'neve'
|
50 |
+
),
|
51 |
+
} );
|
52 |
+
setMigrating( false );
|
53 |
+
return false;
|
54 |
+
}
|
55 |
+
const { template, template_name } = data;
|
56 |
+
send( tiobDash.onboarding.root + '/migrate_frontpage', {
|
57 |
+
template,
|
58 |
+
template_name,
|
59 |
+
} ).then( ( r ) => {
|
60 |
+
if ( ! r.success ) {
|
61 |
+
setError( {
|
62 |
+
code: r.data || null,
|
63 |
+
message: __(
|
64 |
+
'Something went wrong while importing the website content.',
|
65 |
+
'neve'
|
66 |
+
),
|
67 |
+
} );
|
68 |
+
setMigrating( false );
|
69 |
+
return false;
|
70 |
+
}
|
71 |
+
setFrontPageID( r.data );
|
72 |
+
setMigrating( 'done' );
|
73 |
+
} );
|
74 |
+
} );
|
75 |
+
}
|
76 |
+
|
77 |
+
const renderModal = () => {
|
78 |
+
return (
|
79 |
+
<Modal
|
80 |
+
className="ob-import-modal migration"
|
81 |
+
title={
|
82 |
+
__( 'Migrate', 'templates-patterns-collection' ) +
|
83 |
+
' ' +
|
84 |
+
data.theme_name
|
85 |
+
}
|
86 |
+
onRequestClose={ closeModal }
|
87 |
+
shouldCloseOnClickOutside={ ! migrating }
|
88 |
+
isDismissible={ ! migrating }
|
89 |
+
>
|
90 |
+
<Fragment>
|
91 |
+
<div className="modal-body">
|
92 |
+
{ error && (
|
93 |
+
<ImportModalError
|
94 |
+
message={ error.message || null }
|
95 |
+
code={ error.code || null }
|
96 |
+
/>
|
97 |
+
) }
|
98 |
+
{ false === migrating && ! error && (
|
99 |
+
<Fragment>
|
100 |
+
<ImportModalNote data={ data } />
|
101 |
+
{ data.mandatory_plugins && (
|
102 |
+
<Fragment>
|
103 |
+
<hr />
|
104 |
+
<h3>
|
105 |
+
{ __(
|
106 |
+
'The following plugins will be installed',
|
107 |
+
'neve'
|
108 |
+
) }
|
109 |
+
:
|
110 |
+
</h3>
|
111 |
+
<ul>
|
112 |
+
{ Object.keys(
|
113 |
+
data.mandatory_plugins
|
114 |
+
).map( ( k, index ) => (
|
115 |
+
<li key={ index }>
|
116 |
+
-{ ' ' }
|
117 |
+
{
|
118 |
+
data.mandatory_plugins[
|
119 |
+
k
|
120 |
+
]
|
121 |
+
}
|
122 |
+
</li>
|
123 |
+
) ) }
|
124 |
+
</ul>
|
125 |
+
</Fragment>
|
126 |
+
) }
|
127 |
+
</Fragment>
|
128 |
+
) }
|
129 |
+
{ 'done' === migrating && (
|
130 |
+
<p className="import-result">
|
131 |
+
{ __(
|
132 |
+
'Content was successfully imported. Enjoy your new site!',
|
133 |
+
'neve'
|
134 |
+
) }
|
135 |
+
</p>
|
136 |
+
) }
|
137 |
+
{ true === migrating && (
|
138 |
+
<div className="loading">
|
139 |
+
<Dashicon icon="update" size={ 50 } />
|
140 |
+
<h3>
|
141 |
+
{ __(
|
142 |
+
'Migrating',
|
143 |
+
'templates-patterns-collection'
|
144 |
+
) }
|
145 |
+
...
|
146 |
+
</h3>
|
147 |
+
</div>
|
148 |
+
) }
|
149 |
+
</div>
|
150 |
+
{ ( ! migrating || 'done' === migrating ) && (
|
151 |
+
<div className="modal-footer">
|
152 |
+
<Button
|
153 |
+
isSecondary={ 'done' !== migrating }
|
154 |
+
isLink={ 'done' === migrating }
|
155 |
+
className={
|
156 |
+
'done' === migrating ? 'close' : null
|
157 |
+
}
|
158 |
+
onClick={ closeModal }
|
159 |
+
>
|
160 |
+
{ 'done' === migrating
|
161 |
+
? __(
|
162 |
+
'Close',
|
163 |
+
'templates-patterns-collection'
|
164 |
+
)
|
165 |
+
: __(
|
166 |
+
'Cancel',
|
167 |
+
'templates-patterns-collection'
|
168 |
+
) }
|
169 |
+
</Button>
|
170 |
+
{ ! error && 'done' !== migrating ? (
|
171 |
+
<Button
|
172 |
+
isPrimary
|
173 |
+
onClick={ () => {
|
174 |
+
startMigration();
|
175 |
+
} }
|
176 |
+
>
|
177 |
+
{ __(
|
178 |
+
'Start Migration',
|
179 |
+
'templates-patterns-collection'
|
180 |
+
) }
|
181 |
+
</Button>
|
182 |
+
) : (
|
183 |
+
<Fragment>
|
184 |
+
<Button
|
185 |
+
isSecondary
|
186 |
+
href={ `${ tiobDash.onboarding.homeUrl }/wp-admin/post.php?post=${ frontPageID }&action=elementor` }
|
187 |
+
>
|
188 |
+
{ __(
|
189 |
+
'Edit Content',
|
190 |
+
'templates-patterns-collection'
|
191 |
+
) }
|
192 |
+
</Button>
|
193 |
+
<Button
|
194 |
+
isPrimary
|
195 |
+
href={ tiobDash.onboarding.homeUrl }
|
196 |
+
>
|
197 |
+
{ __(
|
198 |
+
'View Website',
|
199 |
+
'templates-patterns-collection'
|
200 |
+
) }
|
201 |
+
</Button>
|
202 |
+
</Fragment>
|
203 |
+
) }
|
204 |
+
</div>
|
205 |
+
) }
|
206 |
+
</Fragment>
|
207 |
+
</Modal>
|
208 |
+
);
|
209 |
+
};
|
210 |
+
|
211 |
+
return (
|
212 |
+
<div className="ob-migration">
|
213 |
+
{ modalOpen && renderModal() }
|
214 |
+
<h2>{ data.heading }</h2>
|
215 |
+
<p>{ data.description }</p>
|
216 |
+
<div className="card starter-site-card">
|
217 |
+
<div className="top">
|
218 |
+
{ data.screenshot && (
|
219 |
+
<div className="image">
|
220 |
+
<img
|
221 |
+
src={ data.screenshot }
|
222 |
+
alt={ data.theme_name }
|
223 |
+
/>
|
224 |
+
</div>
|
225 |
+
) }
|
226 |
+
</div>
|
227 |
+
<div className="bottom">
|
228 |
+
<p className="title">{ data.theme_name }</p>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
<div className="actions">
|
232 |
+
<Button
|
233 |
+
isPrimary
|
234 |
+
onClick={ () => {
|
235 |
+
setModalOpen( true );
|
236 |
+
return false;
|
237 |
+
} }
|
238 |
+
>
|
239 |
+
{ __( 'Migrate', 'templates-patterns-collection' ) +
|
240 |
+
' ' +
|
241 |
+
data.theme_name }
|
242 |
+
</Button>
|
243 |
+
<Button
|
244 |
+
isSecondary
|
245 |
+
onClick={ () => {
|
246 |
+
send( tiobDash.onboarding.root + '/dismiss_migration', {
|
247 |
+
theme_mod: data.theme_mod,
|
248 |
+
} ).then( ( r ) => {
|
249 |
+
if ( ! r.success ) {
|
250 |
+
setToast(
|
251 |
+
__(
|
252 |
+
'Something went wrong. Please reload the page and try again.',
|
253 |
+
'neve'
|
254 |
+
)
|
255 |
+
);
|
256 |
+
return false;
|
257 |
+
}
|
258 |
+
setToast(
|
259 |
+
__(
|
260 |
+
'Dismissed',
|
261 |
+
'templates-patterns-collection'
|
262 |
+
)
|
263 |
+
);
|
264 |
+
setDismissed( true );
|
265 |
+
} );
|
266 |
+
} }
|
267 |
+
>
|
268 |
+
{ __( 'Dismiss', 'templates-patterns-collection' ) }
|
269 |
+
</Button>
|
270 |
+
</div>
|
271 |
+
</div>
|
272 |
+
);
|
273 |
+
};
|
274 |
+
export default Migration;
|
assets/src/Components/PreviewFrame.js
ADDED
@@ -0,0 +1,138 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/* global tiobDash */
|
2 |
+
import { withSelect, withDispatch } from '@wordpress/data';
|
3 |
+
import { compose } from '@wordpress/compose';
|
4 |
+
import { Button, Dashicon } from '@wordpress/components';
|
5 |
+
import { __ } from '@wordpress/i18n';
|
6 |
+
|
7 |
+
const PreviewFrame = ( {
|
8 |
+
next,
|
9 |
+
prev,
|
10 |
+
siteData,
|
11 |
+
setSite,
|
12 |
+
setPreview,
|
13 |
+
setModal,
|
14 |
+
themeStatus,
|
15 |
+
setInstallModal,
|
16 |
+
} ) => {
|
17 |
+
const { isRTL } = tiobDash;
|
18 |
+
|
19 |
+
const handleImport = ( e ) => {
|
20 |
+
e.preventDefault();
|
21 |
+
if ( themeStatus ) {
|
22 |
+
setInstallModal( true );
|
23 |
+
|
24 |
+
return false;
|
25 |
+
}
|
26 |
+
setModal( true );
|
27 |
+
};
|
28 |
+
const handleNext = ( e ) => {
|
29 |
+
e.preventDefault();
|
30 |
+
setSite( next );
|
31 |
+
};
|
32 |
+
const handlePrev = ( e ) => {
|
33 |
+
e.preventDefault();
|
34 |
+
setSite( prev );
|
35 |
+
};
|
36 |
+
const handleClose = ( e ) => {
|
37 |
+
e.preventDefault();
|
38 |
+
setPreview( false );
|
39 |
+
setSite( null );
|
40 |
+
};
|
41 |
+
|
42 |
+
return (
|
43 |
+
<div className="ob-preview">
|
44 |
+
<div className="preview">
|
45 |
+
<iframe src={ siteData.url } frameBorder="0" />
|
46 |
+
<div className="loading">
|
47 |
+
<Dashicon icon="update" size={ 50 } />
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
<div className="bottom-bar">
|
51 |
+
<div className="navigator">
|
52 |
+
<Button
|
53 |
+
onClick={ handleClose }
|
54 |
+
className="close"
|
55 |
+
label={ __( 'Close', 'templates-patterns-collection' ) }
|
56 |
+
icon="no"
|
57 |
+
/>
|
58 |
+
|
59 |
+
{ prev && (
|
60 |
+
<Button
|
61 |
+
onClick={ handlePrev }
|
62 |
+
className="prev"
|
63 |
+
label={ __(
|
64 |
+
'Previous',
|
65 |
+
'templates-patterns-collection'
|
66 |
+
) }
|
67 |
+
icon={
|
68 |
+
isRTL ? 'arrow-right-alt2' : 'arrow-left-alt2'
|
69 |
+
}
|
70 |
+
/>
|
71 |
+
) }
|
72 |
+
|
73 |
+
{ next && (
|
74 |
+
<Button
|
75 |
+
onClick={ handleNext }
|
76 |
+
className="next"
|
77 |
+
label={ __(
|
78 |
+
'Next',
|
79 |
+
'templates-patterns-collection'
|
80 |
+
) }
|
81 |
+
icon={
|
82 |
+
isRTL ? 'arrow-left-alt2' : 'arrow-right-alt2'
|
83 |
+
}
|
84 |
+
/>
|
85 |
+
) }
|
86 |
+
</div>
|
87 |
+
<div className="actions">
|
88 |
+
{ siteData.upsell ? (
|
89 |
+
<Button
|
90 |
+
className="upgrade"
|
91 |
+
isPrimary
|
92 |
+
href={
|
93 |
+
siteData.utmOutboundLink || tiobDash.upgradeURL
|
94 |
+
}
|
95 |
+
>
|
96 |
+
{ __(
|
97 |
+
'Upgrade and Import',
|
98 |
+
'templates-patterns-collection'
|
99 |
+
) }
|
100 |
+
</Button>
|
101 |
+
) : (
|
102 |
+
<Button
|
103 |
+
className="import"
|
104 |
+
isPrimary
|
105 |
+
onClick={ handleImport }
|
106 |
+
>
|
107 |
+
{ __( 'Import', 'templates-patterns-collection' ) }
|
108 |
+
</Button>
|
109 |
+
) }
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
);
|
114 |
+
};
|
115 |
+
|
116 |
+
export default compose(
|
117 |
+
withSelect( ( select ) => {
|
118 |
+
const { getCurrentSite, getThemeAction } = select( 'neve-onboarding' );
|
119 |
+
return {
|
120 |
+
siteData: getCurrentSite(),
|
121 |
+
themeStatus: getThemeAction().action || false,
|
122 |
+
};
|
123 |
+
} ),
|
124 |
+
withDispatch( ( dispatch ) => {
|
125 |
+
const {
|
126 |
+
setCurrentSite,
|
127 |
+
setPreviewStatus,
|
128 |
+
setImportModalStatus,
|
129 |
+
setInstallModalStatus,
|
130 |
+
} = dispatch( 'neve-onboarding' );
|
131 |
+
return {
|
132 |
+
setSite: ( data ) => setCurrentSite( data ),
|
133 |
+
setPreview: ( status ) => setPreviewStatus( status ),
|
134 |
+
setModal: ( status ) => setImportModalStatus( status ),
|
135 |
+
setInstallModal: ( status ) => setInstallModalStatus( status ),
|
136 |
+
};
|
137 |
+
} )
|
138 |
+
)( PreviewFrame );
|
assets/src/Components/Search.js
ADDED
@@ -0,0 +1,123 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import { __ } from '@wordpress/i18n';
|
2 |
+
import { useState } from '@wordpress/element';
|
3 |
+
import { Button, Dashicon, Popover } from '@wordpress/components';
|
4 |
+
import { withDispatch, withSelect } from '@wordpress/data';
|
5 |
+
import { compose } from '@wordpress/compose';
|
6 |
+
|
7 |
+
const Search = ( {
|
8 |
+
count,
|
9 |
+
categories,
|
10 |
+
onSearch,
|
11 |
+
category,
|
12 |
+
setCurrentCategory,
|
13 |
+
query,
|
14 |
+
} ) => {
|
15 |
+
const [ open, setOpen ] = useState( false );
|
16 |
+
const toggleDropdown = () => setOpen( ! open );
|
17 |
+
const renderCategoriesDropdown = () => {
|
18 |
+
return (
|
19 |
+
<div className="ob-dropdown categories-selector">
|
20 |
+
<Button
|
21 |
+
onClick={ toggleDropdown }
|
22 |
+
className="select ob-dropdown"
|
23 |
+
>
|
24 |
+
{ categories[ category ] }
|
25 |
+
<Dashicon
|
26 |
+
size={ 14 }
|
27 |
+
icon={ open ? 'arrow-up-alt2' : 'arrow-down-alt2' }
|
28 |
+
/>
|
29 |
+
{ open && (
|
30 |
+
<Popover
|
31 |
+
position="bottom center"
|
32 |
+
onClose={ toggleDropdown }
|
33 |
+
noArrow
|
34 |
+
>
|
35 |
+
{ open && (
|
36 |
+
<ul className="options">
|
37 |
+
{ Object.keys( categories ).map(
|
38 |
+
( key, index ) => {
|
39 |
+
if ( key === category ) {
|
40 |
+
return null;
|
41 |
+
}
|
42 |
+
if (
|
43 |
+
'free' === key &&
|
44 |
+
count.all === count[ key ]
|
45 |
+
) {
|
46 |
+
return null;
|
47 |
+
}
|
48 |
+
return (
|
49 |
+
<li key={ index }>
|
50 |
+
<a
|
51 |
+
href="#"
|
52 |
+
onClick={ ( e ) => {
|
53 |
+
e.preventDefault();
|
54 |
+
setCurrentCategory(
|
55 |
+
key
|
56 |
+
);
|
57 |
+
setOpen( false );
|
58 |
+
} }
|
59 |
+
>
|
60 |
+
<span>
|
61 |
+
{
|
62 |
+
categories[
|
63 |
+
key
|
64 |
+
]
|
65 |
+
}
|
66 |
+
</span>
|
67 |
+
<span className="count">
|
68 |
+
{ count[ key ] }
|
69 |
+
</span>
|
70 |
+
</a>
|
71 |
+
</li>
|
72 |
+
);
|
73 |
+
}
|
74 |
+
) }
|
75 |
+
</ul>
|
76 |
+
) }
|
77 |
+
</Popover>
|
78 |
+
) }
|
79 |
+
</Button>
|
80 |
+
</div>
|
81 |
+
);
|
82 |
+
};
|
83 |
+
|
84 |
+
return (
|
85 |
+
<div className="header-form">
|
86 |
+
<div className="search">
|
87 |
+
<img
|
88 |
+
src={ tiobDash.assets + '/img/search.svg' }
|
89 |
+
alt={ __( 'Search Icon' ) }
|
90 |
+
/>
|
91 |
+
<input
|
92 |
+
onChange={ ( e ) => {
|
93 |
+
onSearch( e.target.value );
|
94 |
+
} }
|
95 |
+
type="search"
|
96 |
+
value={ query }
|
97 |
+
placeholder={
|
98 |
+
__(
|
99 |
+
'Search for a starter site',
|
100 |
+
'templates-patterns-collection'
|
101 |
+
) + '...'
|
102 |
+
}
|
103 |
+
/>
|
104 |
+
{ renderCategoriesDropdown() }
|
105 |
+
</div>
|
106 |
+
</div>
|
107 |
+
);
|
108 |
+
};
|
109 |
+
|
110 |
+
export default compose(
|
111 |
+
withSelect( ( select ) => {
|
112 |
+
const { getCurrentCategory } = select( 'neve-onboarding' );
|
113 |
+
return {
|
114 |
+
category: getCurrentCategory(),
|
115 |
+
};
|
116 |
+
} ),
|
117 |
+
withDispatch( ( dispatch ) => {
|
118 |
+
const { setCurrentCategory } = dispatch( 'neve-onboarding' );
|
119 |
+
return {
|
120 |
+
setCurrentCategory: ( category ) => setCurrentCategory( category ),
|
121 |
+
};
|
122 |
+
} )
|
123 |
+
)( Search );
|
assets/src/Components/StarterSiteCard.js
ADDED
@@ -0,0 +1,106 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import { Button, Dashicon } from '@wordpress/components';
|
2 |
+
import { __ } from '@wordpress/i18n';
|
3 |
+
import { withDispatch, withSelect } from '@wordpress/data';
|
4 |
+
import { compose } from '@wordpress/compose';
|
5 |
+
import { useState } from '@wordpress/element';
|
6 |
+
|
7 |
+
const StarterSiteCard = ( {
|
8 |
+
data,
|
9 |
+
setSite,
|
10 |
+
setPreview,
|
11 |
+
setModal,
|
12 |
+
themeStatus,
|
13 |
+
setInstallModal,
|
14 |
+
} ) => {
|
15 |
+
const { upsell } = data;
|
16 |
+
const [ actionsClass, setActionClass ] = useState( '' );
|
17 |
+
|
18 |
+
const showActions = () => {
|
19 |
+
setActionClass( 'visible' );
|
20 |
+
};
|
21 |
+
const hideActions = () => {
|
22 |
+
setActionClass( '' );
|
23 |
+
};
|
24 |
+
|
25 |
+
const launchImport = ( e ) => {
|
26 |
+
e.preventDefault();
|
27 |
+
setSite( data );
|
28 |
+
|
29 |
+
if ( themeStatus ) {
|
30 |
+
setInstallModal( true );
|
31 |
+
|
32 |
+
return false;
|
33 |
+
}
|
34 |
+
setModal( true );
|
35 |
+
};
|
36 |
+
|
37 |
+
const launchPreview = ( e ) => {
|
38 |
+
e.preventDefault();
|
39 |
+
setSite( data );
|
40 |
+
setPreview( true );
|
41 |
+
};
|
42 |
+
|
43 |
+
return (
|
44 |
+
<div
|
45 |
+
onMouseEnter={ showActions }
|
46 |
+
onMouseLeave={ hideActions }
|
47 |
+
className="card starter-site-card"
|
48 |
+
>
|
49 |
+
<div className="top">
|
50 |
+
<div className={ 'actions ' + actionsClass }>
|
51 |
+
<Button className="preview" onClick={ launchPreview }>
|
52 |
+
{ __( 'Preview', 'templates-patterns-collection' ) }
|
53 |
+
</Button>
|
54 |
+
{ ! upsell && (
|
55 |
+
<Button className="import" onClick={ launchImport }>
|
56 |
+
{ __( 'Import', 'templates-patterns-collection' ) }
|
57 |
+
</Button>
|
58 |
+
) }
|
59 |
+
</div>
|
60 |
+
{ data.screenshot && (
|
61 |
+
<div
|
62 |
+
className="image"
|
63 |
+
style={ {
|
64 |
+
backgroundImage: `url("${ data.screenshot }")`,
|
65 |
+
} }
|
66 |
+
/>
|
67 |
+
) }
|
68 |
+
</div>
|
69 |
+
<div className="bottom">
|
70 |
+
<p className="title">{ data.title }</p>
|
71 |
+
{ upsell && (
|
72 |
+
<span className="pro-badge">
|
73 |
+
<Dashicon icon="lock" size={ 15 } />
|
74 |
+
<span>
|
75 |
+
{ __( 'Premium', 'templates-patterns-collection' ) }
|
76 |
+
</span>
|
77 |
+
</span>
|
78 |
+
) }
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
);
|
82 |
+
};
|
83 |
+
|
84 |
+
export default compose(
|
85 |
+
withSelect( ( select ) => {
|
86 |
+
const { getThemeAction } = select( 'neve-onboarding' );
|
87 |
+
|
88 |
+
return {
|
89 |
+
themeStatus: getThemeAction().action || false,
|
90 |
+
};
|
91 |
+
} ),
|
92 |
+
withDispatch( ( dispatch ) => {
|
93 |
+
const {
|
94 |
+
setCurrentSite,
|
95 |
+
setPreviewStatus,
|
96 |
+
setImportModalStatus,
|
97 |
+
setInstallModalStatus,
|
98 |
+
} = dispatch( 'neve-onboarding' );
|
99 |
+
return {
|
100 |
+
setSite: ( data ) => setCurrentSite( data ),
|
101 |
+
setPreview: ( status ) => setPreviewStatus( status ),
|
102 |
+
setModal: ( status ) => setImportModalStatus( status ),
|
103 |
+
setInstallModal: ( status ) => setInstallModalStatus( status ),
|
104 |
+
};
|
105 |
+
} )
|
106 |
+
)( StarterSiteCard );
|
assets/src/app.js
ADDED
@@ -0,0 +1,15 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
import './style.scss';
|
2 |
+
import reducer from './store/reducer';
|
3 |
+
import actions from './store/actions';
|
4 |
+
import selectors from './store/selectors';
|
5 |
+
import App from './Components/App';
|
6 |
+
import { registerStore } from '@wordpress/data';
|
7 |
+
import { render } from '@wordpress/element';
|
8 |
+
|
9 |
+
registerStore( 'neve-onboarding', {
|
10 |
+
reducer,
|
11 |
+
actions,
|
12 |
+
selectors,
|
13 |
+
} );
|
14 |
+
|
15 |
+
render( <App />, document.getElementById( 'tpc-app' ) );
|
assets/src/scss/_card.scss
ADDED
@@ -0,0 +1,65 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.card {
|
2 |
+
width: 100%;
|
3 |
+
display: flex;
|
4 |
+
max-width: unset;
|
5 |
+
min-width: unset;
|
6 |
+
border: 1px solid $grey;
|
7 |
+
flex-direction: column;
|
8 |
+
padding: 30px 40px;
|
9 |
+
align-self: flex-start;
|
10 |
+
flex-grow: 0;
|
11 |
+
|
12 |
+
.card-header {
|
13 |
+
flex-direction: row;
|
14 |
+
display: flex;
|
15 |
+
align-items: center;
|
16 |
+
.title {
|
17 |
+
font-size: 18px;
|
18 |
+
line-height: 1.5;
|
19 |
+
}
|
20 |
+
.icon {
|
21 |
+
margin-right: 10px;
|
22 |
+
&.dashicon {
|
23 |
+
width: 33px;
|
24 |
+
height: 33px;
|
25 |
+
fill: $blue;
|
26 |
+
}
|
27 |
+
}
|
28 |
+
}
|
29 |
+
.card-content {
|
30 |
+
display: flex;
|
31 |
+
flex-direction: column;
|
32 |
+
flex-grow: 1;
|
33 |
+
a, button {
|
34 |
+
align-self: flex-start;
|
35 |
+
margin-top: auto;
|
36 |
+
}
|
37 |
+
}
|
38 |
+
|
39 |
+
p {
|
40 |
+
font-size: 15px;
|
41 |
+
color: #616161;
|
42 |
+
}
|
43 |
+
|
44 |
+
.card-description {
|
45 |
+
margin: 15px 0 25px;
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
@mixin card--laptop() {
|
50 |
+
.card {
|
51 |
+
margin: 0 0 20px;
|
52 |
+
}
|
53 |
+
}
|
54 |
+
@mixin card--desktop() {
|
55 |
+
.card {
|
56 |
+
padding: 20px 30px;
|
57 |
+
margin: 0 0 20px;
|
58 |
+
}
|
59 |
+
}
|
60 |
+
@mixin card--desktop-large() {
|
61 |
+
.card {
|
62 |
+
padding: 30px 40px;
|
63 |
+
margin: 0 0 30px;
|
64 |
+
}
|
65 |
+
}
|
assets/src/scss/_editor-selector.scss
ADDED
@@ -0,0 +1,63 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.ob-dropdown.editor-selector {
|
2 |
+
overflow: visible;
|
3 |
+
display: inline-block;
|
4 |
+
position: relative;
|
5 |
+
width: 100%;
|
6 |
+
|
7 |
+
button {
|
8 |
+
display: flex;
|
9 |
+
align-items: center;
|
10 |
+
font-weight: 600;
|
11 |
+
padding: 5px 20px 5px 10px;
|
12 |
+
background: #fff;
|
13 |
+
border: 1px solid $grey;
|
14 |
+
font-size: 14px;
|
15 |
+
height: 52px;
|
16 |
+
width: 100%;
|
17 |
+
|
18 |
+
.count {
|
19 |
+
color: #a3a3a3;
|
20 |
+
margin: 0 20px 0 auto;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
img {
|
25 |
+
border-radius: 100%;
|
26 |
+
margin-right: 5px;
|
27 |
+
max-width: 30px;
|
28 |
+
max-height: 30px;
|
29 |
+
}
|
30 |
+
|
31 |
+
.options {
|
32 |
+
margin: 0;
|
33 |
+
|
34 |
+
li {
|
35 |
+
border-bottom: 1px solid $grey;
|
36 |
+
padding: 0;
|
37 |
+
margin: 0;
|
38 |
+
}
|
39 |
+
|
40 |
+
a {
|
41 |
+
height: 35px;
|
42 |
+
font-size: 14px;
|
43 |
+
display: flex;
|
44 |
+
align-items: center;
|
45 |
+
font-weight: 600;
|
46 |
+
color: $black;
|
47 |
+
cursor: pointer;
|
48 |
+
padding: 5px 10px;
|
49 |
+
text-decoration: none;
|
50 |
+
|
51 |
+
&:hover {
|
52 |
+
background-color: $blue;
|
53 |
+
color: #fff;
|
54 |
+
}
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
@mixin ob-editor-selector--laptop() {
|
60 |
+
.ob-body .ob-dropdown.editor-selector {
|
61 |
+
display: none;
|
62 |
+
}
|
63 |
+
}
|
assets/src/scss/_editor-tabs.scss
ADDED
@@ -0,0 +1,108 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.editor-tabs {
|
2 |
+
display: none;
|
3 |
+
margin: 30px 0;
|
4 |
+
position: relative;
|
5 |
+
|
6 |
+
&:after{
|
7 |
+
content: "";
|
8 |
+
position: absolute;
|
9 |
+
display: block;
|
10 |
+
width: 100%;
|
11 |
+
left: 0;
|
12 |
+
border-bottom: 1px solid #e0e0e0;
|
13 |
+
height: 1px;
|
14 |
+
z-index: -1;
|
15 |
+
right: 0;
|
16 |
+
bottom: 0;
|
17 |
+
}
|
18 |
+
|
19 |
+
.long-name {
|
20 |
+
display: none;
|
21 |
+
}
|
22 |
+
|
23 |
+
a {
|
24 |
+
padding: 15px 10px 12px 0px;
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
font-weight: 700;
|
28 |
+
text-decoration: none;
|
29 |
+
font-size: 15px;
|
30 |
+
border-bottom: 3px solid transparent;
|
31 |
+
position: relative;
|
32 |
+
width: auto;
|
33 |
+
|
34 |
+
&:last-child {
|
35 |
+
padding-right: 0;
|
36 |
+
}
|
37 |
+
|
38 |
+
&:not(:first-child) {
|
39 |
+
margin-left: auto;
|
40 |
+
}
|
41 |
+
|
42 |
+
&.active {
|
43 |
+
border-bottom: 3px solid $blue;
|
44 |
+
}
|
45 |
+
|
46 |
+
.pro-badge {
|
47 |
+
margin-left: auto;
|
48 |
+
font-size: 11px;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
.editor {
|
53 |
+
color: #616161;
|
54 |
+
}
|
55 |
+
|
56 |
+
.count {
|
57 |
+
color: rgba(97, 97, 97, 0.5);
|
58 |
+
margin: 0 10px;
|
59 |
+
}
|
60 |
+
|
61 |
+
.icon-wrap {
|
62 |
+
display: none;
|
63 |
+
margin-right: 10px;
|
64 |
+
width: 34px;
|
65 |
+
height: 34px;
|
66 |
+
border-radius: 100%;
|
67 |
+
overflow: hidden;
|
68 |
+
|
69 |
+
img {
|
70 |
+
max-width: 100%;
|
71 |
+
display: block;
|
72 |
+
}
|
73 |
+
}
|
74 |
+
}
|
75 |
+
|
76 |
+
@mixin ob-editor-tabs--tablet() {
|
77 |
+
}
|
78 |
+
|
79 |
+
@mixin ob-editor-tabs--laptop() {
|
80 |
+
.editor-tabs {
|
81 |
+
display: flex;
|
82 |
+
}
|
83 |
+
}
|
84 |
+
|
85 |
+
@mixin ob-editor-tabs--desktop() {
|
86 |
+
.editor-tabs {
|
87 |
+
.icon-wrap {
|
88 |
+
display: block;
|
89 |
+
}
|
90 |
+
}
|
91 |
+
}
|
92 |
+
|
93 |
+
@mixin ob-editor-tabs--desktop-large() {
|
94 |
+
.editor-tabs {
|
95 |
+
a {
|
96 |
+
width: auto;
|
97 |
+
padding: 15px 20px 12px 5px;
|
98 |
+
}
|
99 |
+
}
|
100 |
+
}
|
101 |
+
|
102 |
+
@media (min-width: 1600px) {
|
103 |
+
.editor-tabs {
|
104 |
+
.long-name {
|
105 |
+
display: inline;
|
106 |
+
}
|
107 |
+
}
|
108 |
+
}
|
assets/src/scss/_general.scss
ADDED
@@ -0,0 +1,299 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
#wpcontent {
|
2 |
+
padding-left: 0 !important;
|
3 |
+
}
|
4 |
+
|
5 |
+
#wpbody-content > {
|
6 |
+
.error, .info, .notice {
|
7 |
+
display: none !important;
|
8 |
+
}
|
9 |
+
}
|
10 |
+
|
11 |
+
.ob-overflow-off {
|
12 |
+
overflow: hidden !important;
|
13 |
+
}
|
14 |
+
|
15 |
+
@media screen and (min-width: #{$tablet}) {
|
16 |
+
.ob-import-modal {
|
17 |
+
width: 630px !important;
|
18 |
+
}
|
19 |
+
}
|
20 |
+
|
21 |
+
.container {
|
22 |
+
padding: 0 15px;
|
23 |
+
|
24 |
+
&.content {
|
25 |
+
padding-top: 20px;
|
26 |
+
position: relative;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
svg.is-loading, button.is-loading svg {
|
31 |
+
animation-name: spin;
|
32 |
+
animation-duration: 2000ms;
|
33 |
+
animation-iteration-count: infinite;
|
34 |
+
animation-timing-function: linear;
|
35 |
+
margin-right: 0;
|
36 |
+
}
|
37 |
+
|
38 |
+
.col {
|
39 |
+
width: 100%;
|
40 |
+
}
|
41 |
+
|
42 |
+
@-webkit-keyframes spin {
|
43 |
+
from {
|
44 |
+
transform: rotate(0deg);
|
45 |
+
}
|
46 |
+
to {
|
47 |
+
transform: rotate(360deg);
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
@keyframes spin {
|
52 |
+
from {
|
53 |
+
transform: rotate(0deg);
|
54 |
+
}
|
55 |
+
to {
|
56 |
+
transform: rotate(360deg);
|
57 |
+
}
|
58 |
+
}
|
59 |
+
|
60 |
+
@mixin general--laptop() {
|
61 |
+
.container {
|
62 |
+
padding: 0 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.content {
|
66 |
+
display: flex;
|
67 |
+
}
|
68 |
+
|
69 |
+
.main {
|
70 |
+
flex-grow: 1;
|
71 |
+
}
|
72 |
+
|
73 |
+
.col {
|
74 |
+
display: flex;
|
75 |
+
flex-direction: column;
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
@mixin general--desktop() {
|
80 |
+
.container {
|
81 |
+
margin: 0 auto;
|
82 |
+
}
|
83 |
+
.col {
|
84 |
+
width: 50%;
|
85 |
+
|
86 |
+
&:not(:last-child) {
|
87 |
+
margin-right: 20px;
|
88 |
+
}
|
89 |
+
}
|
90 |
+
.main {
|
91 |
+
flex-grow: 1;
|
92 |
+
}
|
93 |
+
.content {
|
94 |
+
display: flex;
|
95 |
+
padding-top: 30px;
|
96 |
+
}
|
97 |
+
.columns {
|
98 |
+
display: flex;
|
99 |
+
flex-direction: row;
|
100 |
+
}
|
101 |
+
}
|
102 |
+
|
103 |
+
@mixin general--desktop-large() {
|
104 |
+
.container {
|
105 |
+
padding: 0 50px;
|
106 |
+
max-width: 1300px;
|
107 |
+
}
|
108 |
+
.col {
|
109 |
+
&:not(:last-child) {
|
110 |
+
margin-right: 30px;
|
111 |
+
}
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
.columns.starter-sites {
|
116 |
+
position: relative;
|
117 |
+
display: flex;
|
118 |
+
flex-grow: 1;
|
119 |
+
}
|
120 |
+
|
121 |
+
.ss-background {
|
122 |
+
opacity: .25;
|
123 |
+
z-index: -1;
|
124 |
+
position: absolute;
|
125 |
+
top: 0;
|
126 |
+
bottom: 0;
|
127 |
+
width: 100%;
|
128 |
+
display: block;
|
129 |
+
background-size: cover;
|
130 |
+
background-position: center center;
|
131 |
+
left: 0;
|
132 |
+
right: 0;
|
133 |
+
height: calc(100vh - 300px);
|
134 |
+
flex-grow: 1;
|
135 |
+
}
|
136 |
+
|
137 |
+
.unavailable-starter-sites {
|
138 |
+
background-color: #fff;
|
139 |
+
border: 1px solid #ccc;
|
140 |
+
padding: 50px 30px;
|
141 |
+
text-align: center;
|
142 |
+
align-items: center;
|
143 |
+
justify-content: center;
|
144 |
+
|
145 |
+
h1 {
|
146 |
+
line-height: 1.6;
|
147 |
+
}
|
148 |
+
}
|
149 |
+
|
150 |
+
/*==============*/
|
151 |
+
.content-wrap.is-onboarding {
|
152 |
+
position: fixed;
|
153 |
+
top: 0;
|
154 |
+
bottom: 0;
|
155 |
+
left: 0;
|
156 |
+
right: 0;
|
157 |
+
background-color: #f1f1f1;
|
158 |
+
z-index: 100000;
|
159 |
+
overflow: auto;
|
160 |
+
|
161 |
+
h2 {
|
162 |
+
display: block;
|
163 |
+
|
164 |
+
img {
|
165 |
+
display: none;
|
166 |
+
}
|
167 |
+
}
|
168 |
+
|
169 |
+
.content {
|
170 |
+
background-color: #fefefe;
|
171 |
+
padding-top: 30px;
|
172 |
+
}
|
173 |
+
|
174 |
+
.ob {
|
175 |
+
display: flex;
|
176 |
+
min-height: 100vh;
|
177 |
+
flex-direction: column;
|
178 |
+
}
|
179 |
+
|
180 |
+
.ob-migration {
|
181 |
+
text-align: center;
|
182 |
+
|
183 |
+
h2 {
|
184 |
+
line-height: 1;
|
185 |
+
}
|
186 |
+
}
|
187 |
+
|
188 |
+
.ob-head button {
|
189 |
+
margin: 0 !important;
|
190 |
+
}
|
191 |
+
|
192 |
+
.ob-head {
|
193 |
+
margin: 0 0 20px;
|
194 |
+
display: flex;
|
195 |
+
justify-content: flex-end;
|
196 |
+
align-items: flex-end;
|
197 |
+
|
198 |
+
button.close-onboarding {
|
199 |
+
color: #676767;
|
200 |
+
|
201 |
+
svg {
|
202 |
+
width: 30px;
|
203 |
+
height: 30px;
|
204 |
+
}
|
205 |
+
}
|
206 |
+
}
|
207 |
+
}
|
208 |
+
|
209 |
+
.ob {
|
210 |
+
width: 100%;
|
211 |
+
}
|
212 |
+
|
213 |
+
.ob-sites {
|
214 |
+
display: flex;
|
215 |
+
flex-direction: row;
|
216 |
+
flex-wrap: wrap;
|
217 |
+
}
|
218 |
+
|
219 |
+
@mixin ob-general--laptop() {
|
220 |
+
.content-wrap.is-onboarding {
|
221 |
+
.content {
|
222 |
+
box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
|
223 |
+
padding: 35px 40px 35px;
|
224 |
+
border: 1px solid $grey;
|
225 |
+
margin: 40px auto 30px;
|
226 |
+
}
|
227 |
+
.header-form {
|
228 |
+
margin-top: 0;
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
.ob-sites {
|
233 |
+
margin-top: 30px;
|
234 |
+
}
|
235 |
+
|
236 |
+
.ob-head {
|
237 |
+
margin-top: 50px;
|
238 |
+
}
|
239 |
+
}
|
240 |
+
|
241 |
+
|
242 |
+
.no-results {
|
243 |
+
display: flex;
|
244 |
+
flex-direction: column;
|
245 |
+
align-items: center;
|
246 |
+
justify-content: center;
|
247 |
+
margin: 30px 0;
|
248 |
+
|
249 |
+
p {
|
250 |
+
font-size: 16px;
|
251 |
+
|
252 |
+
span {
|
253 |
+
color: $blue;
|
254 |
+
font-weight: 600;
|
255 |
+
}
|
256 |
+
}
|
257 |
+
|
258 |
+
.tags {
|
259 |
+
margin-top: 10px;
|
260 |
+
justify-content: center;
|
261 |
+
display: flex;
|
262 |
+
flex-wrap: wrap;
|
263 |
+
|
264 |
+
.tag {
|
265 |
+
margin: 10px 20px;
|
266 |
+
line-height: normal;
|
267 |
+
height: auto;
|
268 |
+
font-weight: 600;
|
269 |
+
padding: 10px 15px;
|
270 |
+
color: #fff;
|
271 |
+
transition: all .3s ease;
|
272 |
+
|
273 |
+
&:hover {
|
274 |
+
background-color: darken($blue, 0.5);
|
275 |
+
}
|
276 |
+
}
|
277 |
+
}
|
278 |
+
}
|
279 |
+
|
280 |
+
.pro-badge {
|
281 |
+
background-color: $success;
|
282 |
+
height: auto;
|
283 |
+
color: #fff;
|
284 |
+
font-weight: 600;
|
285 |
+
text-transform: uppercase;
|
286 |
+
padding: 5px 10px;
|
287 |
+
margin-left: auto;
|
288 |
+
border-radius: 999px;
|
289 |
+
line-height: normal;
|
290 |
+
display: flex;
|
291 |
+
align-items: center;
|
292 |
+
|
293 |
+
svg {
|
294 |
+
margin-right: 3px;
|
295 |
+
}
|
296 |
+
}
|
297 |
+
|
298 |
+
|
299 |
+
|
assets/src/scss/_header.scss
ADDED
@@ -0,0 +1,85 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.ob-migration {
|
2 |
+
margin-bottom: 20px;
|
3 |
+
|
4 |
+
.card.starter-site-card {
|
5 |
+
margin-right: auto !important;
|
6 |
+
margin-left: auto !important;
|
7 |
+
|
8 |
+
.image {
|
9 |
+
height: auto;
|
10 |
+
}
|
11 |
+
}
|
12 |
+
|
13 |
+
.actions {
|
14 |
+
margin: 30px auto 0;
|
15 |
+
display: flex;
|
16 |
+
justify-content: center;
|
17 |
+
}
|
18 |
+
|
19 |
+
button:last-child {
|
20 |
+
margin-left: 10px;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
.ob-head >, .ob-migration > {
|
25 |
+
h2 {
|
26 |
+
font-size: 21px;
|
27 |
+
color: $black;
|
28 |
+
margin: 0;
|
29 |
+
line-height: 1.6;
|
30 |
+
display: flex;
|
31 |
+
align-items: center;
|
32 |
+
> img {
|
33 |
+
margin-right: 20px;
|
34 |
+
}
|
35 |
+
}
|
36 |
+
|
37 |
+
p {
|
38 |
+
margin: 20px 0;
|
39 |
+
font-size: 15px;
|
40 |
+
color: $black;
|
41 |
+
}
|
42 |
+
|
43 |
+
button {
|
44 |
+
margin-bottom: 20px;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
.header-form {
|
49 |
+
margin-top: 20px;
|
50 |
+
display: flex;
|
51 |
+
align-items: center;
|
52 |
+
flex-direction: column;
|
53 |
+
|
54 |
+
input {
|
55 |
+
margin: 0;
|
56 |
+
display: block;
|
57 |
+
flex-grow: 1;
|
58 |
+
border: 1px solid $grey;
|
59 |
+
height: 52px;
|
60 |
+
padding: 5px 30px 5px 50px;
|
61 |
+
font-size: 17px;
|
62 |
+
font-weight: 300;
|
63 |
+
}
|
64 |
+
}
|
65 |
+
|
66 |
+
@mixin ob-header--tablet {
|
67 |
+
.ob-head >, .ob-migration > {
|
68 |
+
h2 {
|
69 |
+
font-size: 30px;
|
70 |
+
}
|
71 |
+
|
72 |
+
p {
|
73 |
+
font-size: 22px;
|
74 |
+
}
|
75 |
+
}
|
76 |
+
.header-form {
|
77 |
+
flex-direction: row;
|
78 |
+
}
|
79 |
+
}
|
80 |
+
|
81 |
+
@mixin ob-header--laptop {
|
82 |
+
.header-form {
|
83 |
+
margin-top: 50px;
|
84 |
+
}
|
85 |
+
}
|
assets/src/scss/_import-modal.scss
ADDED
@@ -0,0 +1,257 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
@import "stepper";
|
2 |
+
|
3 |
+
$base-index: 100000;
|
4 |
+
|
5 |
+
.migration .modal-body .loading {
|
6 |
+
display: flex;
|
7 |
+
flex-direction: column;
|
8 |
+
align-items: center;
|
9 |
+
justify-content: center;
|
10 |
+
margin: 30px auto;
|
11 |
+
width: auto;
|
12 |
+
color: #fff;
|
13 |
+
|
14 |
+
h3 {
|
15 |
+
margin: 20px 0 0;
|
16 |
+
}
|
17 |
+
|
18 |
+
svg {
|
19 |
+
padding: 10px;
|
20 |
+
background-color: $warning;
|
21 |
+
border-radius: 100%;
|
22 |
+
animation-name: spin;
|
23 |
+
animation-duration: 2000ms;
|
24 |
+
animation-iteration-count: infinite;
|
25 |
+
animation-timing-function: linear;
|
26 |
+
}
|
27 |
+
}
|
28 |
+
|
29 |
+
.ob-import-modal {
|
30 |
+
background-color: #fff;
|
31 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
32 |
+
|
33 |
+
.components-tooltip {
|
34 |
+
display: none;
|
35 |
+
}
|
36 |
+
|
37 |
+
.modal-body {
|
38 |
+
h3 {
|
39 |
+
margin: 0;
|
40 |
+
display: flex;
|
41 |
+
align-items: center;
|
42 |
+
|
43 |
+
svg {
|
44 |
+
margin-right: 5px;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
.well {
|
50 |
+
margin: 0;
|
51 |
+
padding: 10px;
|
52 |
+
border: 1px solid;
|
53 |
+
border-radius: 3px;
|
54 |
+
color: $black;
|
55 |
+
border-color: $info;
|
56 |
+
background-color: lighten($info, 27);
|
57 |
+
|
58 |
+
ol {
|
59 |
+
padding: 0;
|
60 |
+
margin: 20px 0 0 20px;
|
61 |
+
|
62 |
+
li {
|
63 |
+
margin-bottom: 10px;
|
64 |
+
|
65 |
+
&:last-child {
|
66 |
+
margin-bottom: 0;
|
67 |
+
}
|
68 |
+
}
|
69 |
+
}
|
70 |
+
|
71 |
+
ul {
|
72 |
+
margin: 20px 0 0;
|
73 |
+
padding: 0;
|
74 |
+
|
75 |
+
li {
|
76 |
+
margin-bottom: 10px;
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
&.error {
|
81 |
+
border-color: $error;
|
82 |
+
background-color: lighten($error, 27);
|
83 |
+
}
|
84 |
+
|
85 |
+
&.warning {
|
86 |
+
border-color: $warning;
|
87 |
+
background-color: lighten($warning, 27);
|
88 |
+
}
|
89 |
+
}
|
90 |
+
|
91 |
+
hr {
|
92 |
+
margin: 25px 0;
|
93 |
+
border: none;
|
94 |
+
border-top: 1px solid $grey;
|
95 |
+
height: 0;
|
96 |
+
}
|
97 |
+
|
98 |
+
.options {
|
99 |
+
ul {
|
100 |
+
margin: 10px 0 0 0;
|
101 |
+
}
|
102 |
+
|
103 |
+
li {
|
104 |
+
padding: 15px 0 0;
|
105 |
+
display: flex;
|
106 |
+
align-items: center;
|
107 |
+
margin-bottom: 0;
|
108 |
+
font-size: 15px;
|
109 |
+
color: $black;
|
110 |
+
|
111 |
+
&:not(:last-child) {
|
112 |
+
padding-bottom: 15px;
|
113 |
+
border-bottom: 1px solid transparentize($grey, .5);
|
114 |
+
}
|
115 |
+
|
116 |
+
svg {
|
117 |
+
margin-right: 15px;
|
118 |
+
opacity: .5;
|
119 |
+
|
120 |
+
&.active {
|
121 |
+
opacity: 1;
|
122 |
+
color: $blue;
|
123 |
+
}
|
124 |
+
}
|
125 |
+
}
|
126 |
+
|
127 |
+
.toggle-wrapper {
|
128 |
+
margin-left: auto;
|
129 |
+
|
130 |
+
span {
|
131 |
+
margin-right: 0;
|
132 |
+
}
|
133 |
+
|
134 |
+
div {
|
135 |
+
margin-bottom: 0;
|
136 |
+
}
|
137 |
+
}
|
138 |
+
}
|
139 |
+
|
140 |
+
.import-result {
|
141 |
+
font-size: 15px;
|
142 |
+
}
|
143 |
+
|
144 |
+
.modal-footer {
|
145 |
+
margin-top: 25px;
|
146 |
+
display: flex;
|
147 |
+
align-items: center;
|
148 |
+
|
149 |
+
.close {
|
150 |
+
padding: 0;
|
151 |
+
}
|
152 |
+
|
153 |
+
button:not(.close), a {
|
154 |
+
margin-left: auto;
|
155 |
+
padding: 5px 25px;
|
156 |
+
|
157 |
+
&:last-child {
|
158 |
+
margin-left: 25px;
|
159 |
+
|
160 |
+
&:only-child {
|
161 |
+
margin-left: auto;
|
162 |
+
}
|
163 |
+
}
|
164 |
+
}
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
+
.ob-import-modal.fetching {
|
169 |
+
pointer-events: none;
|
170 |
+
|
171 |
+
.title {
|
172 |
+
width: 200px;
|
173 |
+
display: block;
|
174 |
+
}
|
175 |
+
|
176 |
+
.is-loading {
|
177 |
+
border-radius: 3px;
|
178 |
+
animation: 1.5s loading-placeholder ease-in-out infinite;
|
179 |
+
background-color: $black;
|
180 |
+
height: 20px;
|
181 |
+
}
|
182 |
+
|
183 |
+
.well {
|
184 |
+
animation: 1.5s loading-placeholder-high-opacity ease-in-out infinite;
|
185 |
+
opacity: 1;
|
186 |
+
height: inherit !important;
|
187 |
+
background-color: inherit !important;
|
188 |
+
|
189 |
+
h3 {
|
190 |
+
span {
|
191 |
+
width: 100px;
|
192 |
+
}
|
193 |
+
}
|
194 |
+
|
195 |
+
ol {
|
196 |
+
list-style: square;
|
197 |
+
}
|
198 |
+
|
199 |
+
li {
|
200 |
+
border-radius: 3px;
|
201 |
+
width: 75%;
|
202 |
+
height: 18px;
|
203 |
+
margin-top: 0;
|
204 |
+
background-color: $black;
|
205 |
+
animation: 1.5s loading-placeholder ease-in-out infinite;
|
206 |
+
|
207 |
+
&:nth-child(2) {
|
208 |
+
width: 85%;
|
209 |
+
}
|
210 |
+
|
211 |
+
&:nth-child(3) {
|
212 |
+
width: 95%;
|
213 |
+
}
|
214 |
+
}
|
215 |
+
}
|
216 |
+
|
217 |
+
.mock-icon {
|
218 |
+
width: 20px;
|
219 |
+
height: 20px;
|
220 |
+
margin-right: 5px;
|
221 |
+
}
|
222 |
+
|
223 |
+
.options {
|
224 |
+
h3 {
|
225 |
+
max-width: 100px;
|
226 |
+
}
|
227 |
+
|
228 |
+
li {
|
229 |
+
.mock-icon {
|
230 |
+
background-color: $blue;
|
231 |
+
margin-right: 15px;
|
232 |
+
}
|
233 |
+
|
234 |
+
span {
|
235 |
+
width: 100px;
|
236 |
+
}
|
237 |
+
|
238 |
+
.toggle {
|
239 |
+
width: 40px;
|
240 |
+
background-color: $blue;
|
241 |
+
border-radius: 50px;
|
242 |
+
margin-left: auto;
|
243 |
+
}
|
244 |
+
}
|
245 |
+
}
|
246 |
+
|
247 |
+
.modal-footer button {
|
248 |
+
width: 90px;
|
249 |
+
height: 35px;
|
250 |
+
background-color: $dark-grey;
|
251 |
+
border: none !important;
|
252 |
+
|
253 |
+
&.is-primary {
|
254 |
+
background-color: $blue;
|
255 |
+
}
|
256 |
+
}
|
257 |
+
}
|
assets/src/scss/_media-queries.scss
ADDED
@@ -0,0 +1,28 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
@media (min-width: #{$tablet}) {
|
2 |
+
@include ob-starter-site-card--tablet();
|
3 |
+
@include ob-editor-tabs--tablet();
|
4 |
+
@include ob-header--tablet();
|
5 |
+
}
|
6 |
+
|
7 |
+
@media (min-width: #{$laptop}) {
|
8 |
+
@include general--laptop();
|
9 |
+
@include ob-starter-site-card--laptop();
|
10 |
+
@include ob-general--laptop();
|
11 |
+
@include ob-editor-tabs--laptop();
|
12 |
+
@include ob-editor-selector--laptop();
|
13 |
+
@include ob-header--laptop();
|
14 |
+
@include ob-search--laptop();
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
@media (min-width: #{$desktop}) {
|
19 |
+
@include general--desktop();
|
20 |
+
@include ob-editor-tabs--desktop();
|
21 |
+
}
|
22 |
+
|
23 |
+
|
24 |
+
@media (min-width: #{$desktop-large}) {
|
25 |
+
@include general--desktop-large();
|
26 |
+
@include card--desktop-large();
|
27 |
+
@include ob-editor-tabs--desktop-large();
|
28 |
+
}
|
assets/src/scss/_mock.scss
ADDED
@@ -0,0 +1,28 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
|
2 |
+
@keyframes loading-placeholder {
|
3 |
+
0% {
|
4 |
+
opacity: .1;
|
5 |
+
}
|
6 |
+
|
7 |
+
50% {
|
8 |
+
opacity: .2;
|
9 |
+
}
|
10 |
+
|
11 |
+
100% {
|
12 |
+
opacity: .1;
|
13 |
+
}
|
14 |
+
}
|
15 |
+
|
16 |
+
@keyframes loading-placeholder-high-opacity {
|
17 |
+
0% {
|
18 |
+
opacity: .7;
|
19 |
+
}
|
20 |
+
|
21 |
+
50% {
|
22 |
+
opacity: .9;
|
23 |
+
}
|
24 |
+
|
25 |
+
100% {
|
26 |
+
opacity: .7;
|
27 |
+
}
|
28 |
+
}
|
assets/src/scss/_preview.scss
ADDED
@@ -0,0 +1,55 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
$base-index: 100000;
|
2 |
+
|
3 |
+
.ob-preview {
|
4 |
+
background-color: #fff;
|
5 |
+
position: fixed;
|
6 |
+
top: 0;
|
7 |
+
bottom: 0;
|
8 |
+
left: 0;
|
9 |
+
right: 0;
|
10 |
+
z-index: $base-index;
|
11 |
+
height: 100vh;
|
12 |
+
margin: 0;
|
13 |
+
display: flex;
|
14 |
+
flex-direction: column;
|
15 |
+
.loading {
|
16 |
+
bottom: 0;
|
17 |
+
top: 0;
|
18 |
+
left: 0;
|
19 |
+
right: 0;
|
20 |
+
position: absolute;
|
21 |
+
display: flex;
|
22 |
+
align-items: center;
|
23 |
+
justify-content: center;
|
24 |
+
z-index: $base-index;
|
25 |
+
color: $dark-grey;
|
26 |
+
svg {
|
27 |
+
animation-name: spin;
|
28 |
+
animation-duration: 2000ms;
|
29 |
+
animation-iteration-count: infinite;
|
30 |
+
animation-timing-function: linear;
|
31 |
+
}
|
32 |
+
}
|
33 |
+
.preview {
|
34 |
+
display: flex;
|
35 |
+
flex-direction: column;
|
36 |
+
position: relative;
|
37 |
+
flex-grow: 1;
|
38 |
+
iframe {
|
39 |
+
flex-grow: 1;
|
40 |
+
position: relative;
|
41 |
+
z-index: $base-index+1;
|
42 |
+
height: 100%;
|
43 |
+
width: 100%;
|
44 |
+
}
|
45 |
+
}
|
46 |
+
.bottom-bar {
|
47 |
+
border-top: 1px solid $grey;
|
48 |
+
display: flex;
|
49 |
+
padding: 15px 30px;
|
50 |
+
align-items: center;
|
51 |
+
.actions {
|
52 |
+
margin-left: auto;
|
53 |
+
}
|
54 |
+
}
|
55 |
+
}
|
assets/src/scss/_search.scss
ADDED
@@ -0,0 +1,106 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.search {
|
2 |
+
position: relative;
|
3 |
+
display: flex;
|
4 |
+
width: 100%;
|
5 |
+
flex-wrap: wrap;
|
6 |
+
|
7 |
+
input {
|
8 |
+
width: auto;
|
9 |
+
flex-shrink: 1;
|
10 |
+
}
|
11 |
+
|
12 |
+
img {
|
13 |
+
opacity: .4;
|
14 |
+
position: absolute;
|
15 |
+
top: 10px;
|
16 |
+
left: 10px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.ob-dropdown {
|
20 |
+
width: 100%;
|
21 |
+
height: 52px;
|
22 |
+
margin: 20px 0 0;
|
23 |
+
|
24 |
+
button {
|
25 |
+
position: relative;
|
26 |
+
left: -1px;
|
27 |
+
height: 100%;
|
28 |
+
display: flex;
|
29 |
+
align-items: center;
|
30 |
+
font-weight: 600;
|
31 |
+
padding: 5px 20px 5px 10px;
|
32 |
+
background: #fff;
|
33 |
+
border: 1px solid $grey;
|
34 |
+
font-size: 14px;
|
35 |
+
margin: 0;
|
36 |
+
|
37 |
+
> svg, .dashicon {
|
38 |
+
margin-left: auto;
|
39 |
+
display: flex;
|
40 |
+
align-items: center;
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
.options {
|
45 |
+
margin: 0;
|
46 |
+
|
47 |
+
li {
|
48 |
+
margin: 0;
|
49 |
+
}
|
50 |
+
|
51 |
+
a {
|
52 |
+
height: 35px;
|
53 |
+
font-size: 14px;
|
54 |
+
display: flex;
|
55 |
+
align-items: center;
|
56 |
+
font-weight: 600;
|
57 |
+
color: $black;
|
58 |
+
cursor: pointer;
|
59 |
+
padding: 5px 10px;
|
60 |
+
text-decoration: none;
|
61 |
+
.count {
|
62 |
+
color: #a3a3a3;
|
63 |
+
}
|
64 |
+
&:hover {
|
65 |
+
color: #fff;
|
66 |
+
background-color: $blue;
|
67 |
+
.count {
|
68 |
+
color: #fff;
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
.count {
|
73 |
+
margin-left: auto;
|
74 |
+
}
|
75 |
+
}
|
76 |
+
}
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
@mixin ob-search--laptop() {
|
81 |
+
.search {
|
82 |
+
display: flex;
|
83 |
+
|
84 |
+
input {
|
85 |
+
border-bottom-right-radius: 0;
|
86 |
+
border-top-right-radius: 0;
|
87 |
+
}
|
88 |
+
|
89 |
+
img {
|
90 |
+
top: 50%;
|
91 |
+
transform: translateY(-50%);
|
92 |
+
}
|
93 |
+
|
94 |
+
.ob-dropdown {
|
95 |
+
display: inline-block;
|
96 |
+
width: 200px;
|
97 |
+
margin: 0;
|
98 |
+
|
99 |
+
button {
|
100 |
+
margin: 0;
|
101 |
+
border-top-left-radius: 0;
|
102 |
+
border-bottom-left-radius: 0;
|
103 |
+
}
|
104 |
+
}
|
105 |
+
}
|
106 |
+
}
|
assets/src/scss/_starter-site-card.scss
ADDED
@@ -0,0 +1,133 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.card.starter-site-card {
|
2 |
+
padding: 0;
|
3 |
+
max-width: 100%;
|
4 |
+
|
5 |
+
&:hover, &:focus-within {
|
6 |
+
.actions, .fav {
|
7 |
+
opacity: 1;
|
8 |
+
}
|
9 |
+
}
|
10 |
+
|
11 |
+
.actions.visible {
|
12 |
+
opacity: 1;
|
13 |
+
}
|
14 |
+
|
15 |
+
.top {
|
16 |
+
position: relative;
|
17 |
+
overflow: hidden;
|
18 |
+
}
|
19 |
+
|
20 |
+
.fav {
|
21 |
+
position: absolute;
|
22 |
+
z-index: 2000;
|
23 |
+
left: -15px;
|
24 |
+
top: -30px;
|
25 |
+
opacity: 0;
|
26 |
+
transition: .3s ease;
|
27 |
+
|
28 |
+
button {
|
29 |
+
padding: 30px 5px 30px 30px;
|
30 |
+
height: auto;
|
31 |
+
transform: rotate(45deg);
|
32 |
+
background-color: $purple;
|
33 |
+
}
|
34 |
+
|
35 |
+
svg {
|
36 |
+
transform: rotate(-45deg);
|
37 |
+
fill: #fff;
|
38 |
+
max-width: 15px;
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
.actions {
|
43 |
+
background-color: rgba(0, 0, 0, 0.75);
|
44 |
+
left: 0;
|
45 |
+
right: 0;
|
46 |
+
bottom: 0;
|
47 |
+
top: 0;
|
48 |
+
display: flex;
|
49 |
+
align-items: center;
|
50 |
+
justify-content: center;
|
51 |
+
position: absolute;
|
52 |
+
opacity: 0;
|
53 |
+
transition: .3s ease;
|
54 |
+
|
55 |
+
button {
|
56 |
+
background-color: $blue;
|
57 |
+
color: #fff;
|
58 |
+
font-weight: 600;
|
59 |
+
line-height: normal;
|
60 |
+
height: auto;
|
61 |
+
padding: 8px 15px;
|
62 |
+
transition: all .3s ease;
|
63 |
+
|
64 |
+
&:hover {
|
65 |
+
box-shadow: none;
|
66 |
+
background-color: darken($blue, 10);
|
67 |
+
}
|
68 |
+
|
69 |
+
&.preview {
|
70 |
+
background-color: $light-blue;
|
71 |
+
|
72 |
+
&:hover {
|
73 |
+
background-color: darken($light-blue, 10);
|
74 |
+
}
|
75 |
+
}
|
76 |
+
|
77 |
+
&:last-child {
|
78 |
+
margin-left: 10px;
|
79 |
+
}
|
80 |
+
}
|
81 |
+
}
|
82 |
+
|
83 |
+
.image {
|
84 |
+
height: 335px;
|
85 |
+
background-size: cover;
|
86 |
+
background-position: top center;
|
87 |
+
background-color: transparentize($dark-grey, .75);
|
88 |
+
}
|
89 |
+
|
90 |
+
img {
|
91 |
+
width: 100%;
|
92 |
+
display: block;
|
93 |
+
}
|
94 |
+
|
95 |
+
.bottom {
|
96 |
+
display: flex;
|
97 |
+
align-items: center;
|
98 |
+
padding: 15px 10px 15px 30px;
|
99 |
+
border-top: 1px solid $grey;
|
100 |
+
|
101 |
+
p {
|
102 |
+
font-size: 16px;
|
103 |
+
font-weight: 700;
|
104 |
+
color: $black;
|
105 |
+
margin: 0;
|
106 |
+
}
|
107 |
+
}
|
108 |
+
}
|
109 |
+
|
110 |
+
@mixin ob-starter-site-card--tablet {
|
111 |
+
.card.starter-site-card {
|
112 |
+
max-width: 49%;
|
113 |
+
|
114 |
+
&:not(:nth-child(2n)) {
|
115 |
+
margin-right: 2%;
|
116 |
+
}
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
+
@mixin ob-starter-site-card--laptop {
|
121 |
+
.card.starter-site-card {
|
122 |
+
max-width: 32%;
|
123 |
+
margin: 0 0 30px ;
|
124 |
+
|
125 |
+
&:not(:nth-child(2n)) {
|
126 |
+
margin-right: 0;
|
127 |
+
}
|
128 |
+
|
129 |
+
&:not(:nth-child(3n)) {
|
130 |
+
margin-right: 2%;
|
131 |
+
}
|
132 |
+
}
|
133 |
+
}
|
assets/src/scss/_stepper.scss
ADDED
@@ -0,0 +1,50 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.ob-import-modal .stepper {
|
2 |
+
li {
|
3 |
+
display: flex;
|
4 |
+
align-items: center;
|
5 |
+
margin-bottom: 25px;
|
6 |
+
font-size: 15px;
|
7 |
+
|
8 |
+
.icon {
|
9 |
+
margin-right: 20px;
|
10 |
+
background-color: $blue;
|
11 |
+
color: #fff;
|
12 |
+
padding: 5px;
|
13 |
+
border-radius: 100%;
|
14 |
+
|
15 |
+
&.success {
|
16 |
+
background-color: $success;
|
17 |
+
|
18 |
+
svg {
|
19 |
+
right: 1px;
|
20 |
+
position: relative;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
&.warning {
|
25 |
+
background-color: $warning;
|
26 |
+
}
|
27 |
+
|
28 |
+
&.error {
|
29 |
+
background-color: $error;
|
30 |
+
}
|
31 |
+
|
32 |
+
&.skip {
|
33 |
+
background-color: $grey;
|
34 |
+
}
|
35 |
+
|
36 |
+
&.loading .dashicon, &.loading svg {
|
37 |
+
animation-name: spin;
|
38 |
+
animation-duration: 2000ms;
|
39 |
+
animation-iteration-count: infinite;
|
40 |
+
animation-timing-function: linear;
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
svg {
|
45 |
+
width: 20px;
|
46 |
+
height: 20px;
|
47 |
+
display: block;
|
48 |
+
}
|
49 |
+
}
|
50 |
+
}
|
assets/src/scss/_sticky-nav.scss
ADDED
@@ -0,0 +1,78 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
.sticky-nav {
|
2 |
+
position: fixed;
|
3 |
+
z-index: 1000;
|
4 |
+
left: 0;
|
5 |
+
right: 0;
|
6 |
+
top: 0;
|
7 |
+
background: #f1f1f1;
|
8 |
+
padding: 15px 0;
|
9 |
+
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
|
10 |
+
|
11 |
+
@media (min-width: 601px) {
|
12 |
+
margin-top: 46px;
|
13 |
+
}
|
14 |
+
|
15 |
+
@media (min-width: 783px) {
|
16 |
+
margin-top: 32px;
|
17 |
+
left: 160px;
|
18 |
+
.auto-fold & {
|
19 |
+
left: 32px;
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
@media (min-width: 961px) {
|
24 |
+
left: 160px !important;
|
25 |
+
.folded & {
|
26 |
+
left: 32px !important;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
.sticky-nav-content {
|
32 |
+
display: flex;
|
33 |
+
|
34 |
+
> img {
|
35 |
+
display: none;
|
36 |
+
margin-right: 20px;
|
37 |
+
|
38 |
+
@media (min-width: #{$laptop}) {
|
39 |
+
display: block;
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
.header-form {
|
44 |
+
margin: 0;
|
45 |
+
flex-grow: 1;
|
46 |
+
max-width: 60%;
|
47 |
+
|
48 |
+
@media (min-width: #{$tablet}) {
|
49 |
+
max-width: 100%;
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
.ob-dropdown.editor-selector.small {
|
54 |
+
width: auto;
|
55 |
+
margin-left: 15px;
|
56 |
+
display: flex;
|
57 |
+
align-items: center;
|
58 |
+
|
59 |
+
> button > .count {
|
60 |
+
margin-left: 12px;
|
61 |
+
}
|
62 |
+
}
|
63 |
+
|
64 |
+
button, input {
|
65 |
+
border-radius: 6px;
|
66 |
+
}
|
67 |
+
|
68 |
+
input {
|
69 |
+
max-width: 100%;
|
70 |
+
font-weight: 500;
|
71 |
+
|
72 |
+
&::placeholder {
|
73 |
+
color: #b7b7b7;
|
74 |
+
}
|
75 |
+
}
|
76 |
+
}
|
77 |
+
|
78 |
+
|
assets/src/scss/_vars.scss
ADDED
@@ -0,0 +1,17 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
$blue: #0073AA !default;
|
2 |
+
$light-blue: #6BC2DD!default;
|
3 |
+
$dark-blue: #31446C!default;
|
4 |
+
$black: #282828 !default;
|
5 |
+
$grey: #e1e1e1 !default;
|
6 |
+
$dark-grey: #646D82!default;
|
7 |
+
$purple: #4268CF!default;
|
8 |
+
|
9 |
+
$info: #6BC2DD !default;
|
10 |
+
$error: #EC7C7C !default;
|
11 |
+
$warning: #ffb900 !default;
|
12 |
+
$success: #6EB77A !default;
|
13 |
+
|
14 |
+
$tablet: '660px';
|
15 |
+
$laptop: '992px';
|
16 |
+
$desktop: '1200px';
|
17 |
+
$desktop-large: '1400px';
|
assets/src/store/actions.js
ADDED
@@ -0,0 +1,71 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
export default {
|
2 |
+
refreshSites( sites ) {
|
3 |
+
return {
|
4 |
+
type: 'REFRESH_SITES',
|
5 |
+
payload: { sites },
|
6 |
+
};
|
7 |
+
},
|
8 |
+
setCurrentEditor( editor ) {
|
9 |
+
return {
|
10 |
+
type: 'SET_CURRENT_EDITOR',
|
11 |
+
payload: { editor },
|
12 |
+
};
|
13 |
+
},
|
14 |
+
setCurrentCategory( category ) {
|
15 |
+
return {
|
16 |
+
type: 'SET_CURRENT_CATEGORY',
|
17 |
+
payload: { category },
|
18 |
+
};
|
19 |
+
},
|
20 |
+
setCurrentSite( siteData ) {
|
21 |
+
return {
|
22 |
+
type: 'SET_FOCUSED_SITE',
|
23 |
+
payload: { siteData },
|
24 |
+
};
|
25 |
+
},
|
26 |
+
setPreviewStatus( previewStatus ) {
|
27 |
+
if ( previewStatus ) {
|
28 |
+
document.body.classList.add( 'ob-overflow-off' );
|
29 |
+
} else {
|
30 |
+
document.body.classList.remove( 'ob-overflow-off' );
|
31 |
+
}
|
32 |
+
return {
|
33 |
+
type: 'SET_PREVIEW_STATUS',
|
34 |
+
payload: { previewStatus },
|
35 |
+
};
|
36 |
+
},
|
37 |
+
setImportModalStatus( importModalStatus ) {
|
38 |
+
if ( importModalStatus ) {
|
39 |
+
document.body.classList.add( 'ob-overflow-off' );
|
40 |
+
} else {
|
41 |
+
document.body.classList.remove( 'ob-overflow-off' );
|
42 |
+
}
|
43 |
+
return {
|
44 |
+
type: 'SET_IMPORT_MODAL_STATUS',
|
45 |
+
payload: { importModalStatus },
|
46 |
+
};
|
47 |
+
},
|
48 |
+
setInstallModalStatus( installModalStatus ) {
|
49 |
+
if ( installModalStatus ) {
|
50 |
+
document.body.classList.add( 'ob-overflow-off' );
|
51 |
+
} else {
|
52 |
+
document.body.classList.remove( 'ob-overflow-off' );
|
53 |
+
}
|
54 |
+
return {
|
55 |
+
type: 'SET_INSTALL_MODAL_STATUS',
|
56 |
+
payload: { installModalStatus },
|
57 |
+
};
|
58 |
+
},
|
59 |
+
setOnboardingState( state ) {
|
60 |
+
return {
|
61 |
+
type: 'SET_ONBOARDING',
|
62 |
+
payload: { state },
|
63 |
+
};
|
64 |
+
},
|
65 |
+
setThemeAction( themeActions ) {
|
66 |
+
return {
|
67 |
+
type: 'SET_THEME_ACTIONS',
|
68 |
+
payload: { themeActions },
|
69 |
+
};
|
70 |
+
},
|
71 |
+
};
|
assets/src/store/reducer.js
ADDED
@@ -0,0 +1,84 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/* global tiobDash */
|
2 |
+
const { onboarding, themeAction } = tiobDash;
|
3 |
+
|
4 |
+
const firstEditor =
|
5 |
+
'undefined' !== typeof onboarding.sites &&
|
6 |
+
'undefined' !== typeof onboarding.sites.sites
|
7 |
+
? Object.keys( onboarding.sites.sites )[ 0 ]
|
8 |
+
: 'gutenberg';
|
9 |
+
const selectedEditor =
|
10 |
+
localStorage.getItem( 'neve-onboarding-editor' ) || firstEditor;
|
11 |
+
|
12 |
+
const initialState = {
|
13 |
+
sites: onboarding.sites || {},
|
14 |
+
editor: selectedEditor,
|
15 |
+
category: 'all',
|
16 |
+
previewStatus: false,
|
17 |
+
importModalStatus: false,
|
18 |
+
installModalStatus: false,
|
19 |
+
currentSite: null,
|
20 |
+
importing: false,
|
21 |
+
isOnboarding: onboarding.onboarding || false,
|
22 |
+
migrationData: null,
|
23 |
+
themeAction,
|
24 |
+
};
|
25 |
+
export default ( state = initialState, action ) => {
|
26 |
+
switch ( action.type ) {
|
27 |
+
case 'REFRESH_SITES':
|
28 |
+
const { sites } = action.payload;
|
29 |
+
return {
|
30 |
+
...state,
|
31 |
+
sites,
|
32 |
+
};
|
33 |
+
case 'SET_CURRENT_EDITOR':
|
34 |
+
const { editor } = action.payload;
|
35 |
+
localStorage.setItem( 'neve-onboarding-editor', editor );
|
36 |
+
return {
|
37 |
+
...state,
|
38 |
+
editor,
|
39 |
+
};
|
40 |
+
case 'SET_CURRENT_CATEGORY':
|
41 |
+
const { category } = action.payload;
|
42 |
+
return {
|
43 |
+
...state,
|
44 |
+
category,
|
45 |
+
};
|
46 |
+
case 'SET_FOCUSED_SITE':
|
47 |
+
const { siteData } = action.payload;
|
48 |
+
return {
|
49 |
+
...state,
|
50 |
+
currentSite: siteData,
|
51 |
+
};
|
52 |
+
case 'SET_PREVIEW_STATUS':
|
53 |
+
const { previewStatus } = action.payload;
|
54 |
+
return {
|
55 |
+
...state,
|
56 |
+
previewStatus,
|
57 |
+
};
|
58 |
+
case 'SET_IMPORT_MODAL_STATUS':
|
59 |
+
const { importModalStatus } = action.payload;
|
60 |
+
return {
|
61 |
+
...state,
|
62 |
+
importModalStatus,
|
63 |
+
};
|
64 |
+
case 'SET_INSTALL_MODAL_STATUS':
|
65 |
+
const { installModalStatus } = action.payload;
|
66 |
+
return {
|
67 |
+
...state,
|
68 |
+
installModalStatus,
|
69 |
+
};
|
70 |
+
case 'SET_ONBOARDING':
|
71 |
+
const { status } = action.payload;
|
72 |
+
return {
|
73 |
+
...state,
|
74 |
+
isOnboarding: status,
|
75 |
+
};
|
76 |
+
case 'SET_THEME_ACTIONS':
|
77 |
+
const { themeActions } = action.payload;
|
78 |
+
return {
|
79 |
+
...state,
|
80 |
+
themeAction: themeActions,
|
81 |
+
};
|
82 |
+
}
|
83 |
+
return state;
|
84 |
+
};
|
assets/src/store/selectors.js
ADDED
@@ -0,0 +1,12 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
export default {
|
2 |
+
getSites: ( state ) => state.sites,
|
3 |
+
getMigrationData: ( state ) => state.migrationData,
|
4 |
+
getCurrentEditor: ( state ) => state.editor,
|
5 |
+
getCurrentCategory: ( state ) => state.category,
|
6 |
+
getCurrentSite: ( state ) => state.currentSite,
|
7 |
+
getPreviewStatus: ( state ) => state.previewStatus,
|
8 |
+
getImportModalStatus: ( state ) => state.importModalStatus,
|
9 |
+
getOnboardingStatus: ( state ) => state.isOnboarding,
|
10 |
+
getThemeAction: ( state ) => state.themeAction,
|
11 |
+
getInstallModalStatus: ( state ) => state.installModalStatus,
|
12 |
+
};
|
assets/src/style.scss
ADDED
@@ -0,0 +1,14 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
@import "scss/vars";
|
2 |
+
@import "scss/general";
|
3 |
+
@import "scss/header";
|
4 |
+
@import "scss/search";
|
5 |
+
@import "scss/editor-tabs";
|
6 |
+
@import "scss/editor-selector";
|
7 |
+
@import "scss/card";
|
8 |
+
@import "scss/starter-site-card";
|
9 |
+
@import "scss/preview";
|
10 |
+
@import "scss/stepper";
|
11 |
+
@import "scss/mock";
|
12 |
+
@import "scss/import-modal";
|
13 |
+
@import "scss/sticky-nav";
|
14 |
+
@import "scss/media-queries";
|
assets/src/utils/common.js
ADDED
@@ -0,0 +1,4 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
const untrailingSlashIt = ( str ) => str.replace( /\/$/, '' );
|
2 |
+
const trailingSlashIt = ( str ) => untrailingSlashIt( str ) + '/';
|
3 |
+
|
4 |
+
export { trailingSlashIt, untrailingSlashIt };
|
assets/src/utils/rest.js
ADDED
@@ -0,0 +1,35 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
export const send = ( route, data, simple = false ) => {
|
2 |
+
return requestData( route, simple, data );
|
3 |
+
};
|
4 |
+
|
5 |
+
export const get = ( route, simple = false, useNonce = true ) => {
|
6 |
+
return requestData( route, simple, {}, 'GET', useNonce );
|
7 |
+
};
|
8 |
+
|
9 |
+
const requestData = async (
|
10 |
+
route,
|
11 |
+
simple = false,
|
12 |
+
data = {},
|
13 |
+
method = 'POST',
|
14 |
+
useNonce = true
|
15 |
+
) => {
|
16 |
+
const options = {
|
17 |
+
method,
|
18 |
+
headers: {
|
19 |
+
Accept: 'application/json',
|
20 |
+
'Content-Type': 'application/json',
|
21 |
+
},
|
22 |
+
};
|
23 |
+
|
24 |
+
if ( useNonce ) {
|
25 |
+
options.headers[ 'x-wp-nonce' ] = tiobDash.nonce;
|
26 |
+
}
|
27 |
+
|
28 |
+
if ( 'POST' === method ) {
|
29 |
+
options.body = JSON.stringify( data );
|
30 |
+
}
|
31 |
+
|
32 |
+
return await fetch( route, options ).then( ( response ) => {
|
33 |
+
return simple ? response : response.json();
|
34 |
+
} );
|
35 |
+
};
|
assets/src/utils/site-import.js
ADDED
@@ -0,0 +1,19 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
/* global tiobDash */
|
2 |
+
const { onboarding } = tiobDash;
|
3 |
+
import { send } from './rest';
|
4 |
+
|
5 |
+
export const importWidgets = ( data ) => {
|
6 |
+
return send( onboarding.root + '/import_widgets', data );
|
7 |
+
};
|
8 |
+
|
9 |
+
export const importMods = ( data ) => {
|
10 |
+
return send( onboarding.root + '/import_theme_mods', data );
|
11 |
+
};
|
12 |
+
|
13 |
+
export const installPlugins = ( pluginArray ) => {
|
14 |
+
return send( onboarding.root + '/install_plugins', pluginArray );
|
15 |
+
};
|
16 |
+
|
17 |
+
export const importContent = ( data ) => {
|
18 |
+
return send( onboarding.root + '/import_content', data );
|
19 |
+
};
|
includes/Admin.php
CHANGED
@@ -14,6 +14,20 @@ namespace TIOB;
|
|
14 |
Â
*/
|
15 |
Â
class Admin {
|
16 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
17 |
Â
/**
|
18 |
Â
* Initialize the Admin.
|
19 |
Â
*/
|
@@ -21,6 +35,67 @@ class Admin {
|
|
21 |
Â
add_filter( 'query_vars', array( $this, 'add_onboarding_query_var' ) );
|
22 |
Â
add_action( 'after_switch_theme', array( $this, 'get_previous_theme' ) );
|
23 |
Â
add_filter( 'neve_dashboard_page_data', array( $this, 'localize_sites_library' ) );
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
24 |
Â
}
|
25 |
Â
|
26 |
Â
/**
|
@@ -161,7 +236,7 @@ class Admin {
|
|
161 |
Â
);
|
162 |
Â
|
163 |
Â
if ( ! empty( $previous_theme_slug ) ) {
|
164 |
-
$options['description'] = __( 'Hi! We\'ve noticed you were using a child theme of Zelle before. To make your transition easier, we can help you keep the same homepage settings you had before but in original Zelle\'s style, by converting it into an Elementor template.', '
|
165 |
Â
}
|
166 |
Â
|
167 |
Â
return $options;
|
@@ -192,57 +267,106 @@ class Admin {
|
|
192 |
Â
*/
|
193 |
Â
private function get_strings() {
|
194 |
Â
return array(
|
195 |
-
'preview_btn' => __( 'Preview', '
|
196 |
-
'import_btn' => __( 'Import', '
|
197 |
-
'pro_btn' => __( 'Get the PRO version!', '
|
198 |
-
'importing' => __( 'Importing', '
|
199 |
-
'cancel_btn' => __( 'Cancel', '
|
200 |
-
'loading' => __( 'Loading', '
|
201 |
-
'go_to_site' => __( 'View Website', '
|
202 |
-
'edit_template' => __( 'Add your own content', '
|
203 |
-
'back' => __( 'Back to Sites Library', '
|
204 |
-
'note' => __( 'Note', '
|
205 |
-
'advanced_options' => __( 'Advanced Options', '
|
206 |
-
'plugins' => __( 'Plugins', '
|
207 |
-
'general' => __( 'General', '
|
208 |
-
'later' => __( 'Keep current layout', '
|
209 |
-
'search' => __( 'Search', '
|
210 |
-
'content' => __( 'Content', '
|
211 |
-
'customizer' => __( 'Customizer', '
|
212 |
-
'widgets' => __( 'Widgets', '
|
213 |
-
'backup_disclaimer' => __( 'We recommend you backup your website content before attempting a full site import.', '
|
214 |
-
'placeholders_disclaimer' => __( 'Due to copyright issues, some of the demo images will not be imported and will be replaced by placeholder images.', '
|
215 |
-
'placeholders_disclaimer_new' => __( 'Some of the demo images will not be imported and will be replaced by placeholder images.', '
|
216 |
-
'unsplash_gallery_link' => __( 'Here is our own collection of related images you can use for your site.', '
|
217 |
-
'import_done' => __( 'Content was successfully imported. Enjoy your new site!', '
|
218 |
-
'pro_demo' => __( 'Available in the PRO version', '
|
219 |
-
'copy_error_code' => __( 'Copy error code', '
|
220 |
-
'download_error_log' => __( 'Download error log', '
|
221 |
-
'external_plugins_notice' => __( 'To import this demo you have to install the following plugins:', '
|
222 |
Â
/* translators: 1 - 'here'. */
|
223 |
Â
'rest_not_working' => sprintf(
|
224 |
-
__( 'It seems that Rest API is not working properly on your website. Read about how you can fix it %1$s.', '
|
225 |
-
sprintf( '<a href="https://docs.themeisle.com/article/1157-starter-sites-library-import-is-not-working#rest-api">%1$s<i class="dashicons dashicons-external"></i></a>', __( 'here', '
|
226 |
Â
),
|
227 |
Â
/* translators: 1 - 'get in touch'. */
|
228 |
Â
'error_report' => sprintf(
|
229 |
-
__( 'Hi! It seems there is a configuration issue with your server that\'s causing the import to fail. Please %1$s with us with the error code below, so we can help you fix this.', '
|
230 |
-
sprintf( '<a href="https://themeisle.com/contact">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'get in touch', '
|
231 |
Â
),
|
232 |
Â
/* translators: 1 - 'troubleshooting guide'. */
|
233 |
Â
'troubleshooting' => sprintf(
|
234 |
-
__( 'Hi! It seems there is a configuration issue with your server that\'s causing the import to fail. Take a look at our %1$s to see if any of the proposed solutions work.', '
|
235 |
-
sprintf( '<a href="https://docs.themeisle.com/article/1157-starter-sites-library-import-is-not-working">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'troubleshooting guide', '
|
236 |
Â
),
|
237 |
Â
/* translators: 1 - 'get in touch'. */
|
238 |
Â
'support' => sprintf(
|
239 |
-
__( 'If none of the solutions in the guide work, please %1$s with us with the error code below, so we can help you fix this.', '
|
240 |
-
sprintf( '<a href="https://themeisle.com/contact">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'get in touch', '
|
241 |
Â
),
|
242 |
Â
'fsDown' => sprintf(
|
243 |
-
__( 'It seems that %s is not available. You can contact your site administrator or hosting provider to help you enable it.', '
|
244 |
Â
sprintf( '<code>WP_Filesystem</code>' )
|
245 |
Â
),
|
246 |
Â
);
|
247 |
Â
}
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
248 |
Â
}
|
14 |
Â
*/
|
15 |
Â
class Admin {
|
16 |
Â
|
17 |
+
/**
|
18 |
+
* Admin page slug
|
19 |
+
*
|
20 |
+
* @var string
|
21 |
+
*/
|
22 |
+
private $page_slug = 'tiob-starter-sites';
|
23 |
+
|
24 |
+
/**
|
25 |
+
* White label config
|
26 |
+
*
|
27 |
+
* @var array
|
28 |
+
*/
|
29 |
+
private $wl_config = null;
|
30 |
+
|
31 |
Â
/**
|
32 |
Â
* Initialize the Admin.
|
33 |
Â
*/
|
35 |
Â
add_filter( 'query_vars', array( $this, 'add_onboarding_query_var' ) );
|
36 |
Â
add_action( 'after_switch_theme', array( $this, 'get_previous_theme' ) );
|
37 |
Â
add_filter( 'neve_dashboard_page_data', array( $this, 'localize_sites_library' ) );
|
38 |
+
add_action( 'admin_menu', array( $this, 'register' ) );
|
39 |
+
add_action( 'admin_menu', array( $this, 'register' ) );
|
40 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ) );
|
41 |
+
|
42 |
+
$white_label_module = get_option( 'nv_pro_white_label_status' );
|
43 |
+
if ( ! empty( $white_label_module ) && (bool) $white_label_module === true ) {
|
44 |
+
$branding = get_option( 'ti_white_label_inputs' );
|
45 |
+
if ( ! empty( $branding ) ) {
|
46 |
+
$this->wl_config = json_decode( $branding, true );
|
47 |
+
}
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Register theme options page.
|
53 |
+
*
|
54 |
+
* @return bool|void
|
55 |
+
*/
|
56 |
+
public function register() {
|
57 |
+
if ( isset( $this->wl_config['starter_sites'] ) && (bool) $this->wl_config['starter_sites'] === true ) {
|
58 |
+
return false;
|
59 |
+
}
|
60 |
+
|
61 |
+
$style = 'display:inline-block;';
|
62 |
+
|
63 |
+
if ( ! is_rtl() ) {
|
64 |
+
$style .= 'transform:scaleX(-1);margin-right:5px;';
|
65 |
+
} else {
|
66 |
+
$style .= 'margin-left:5px;';
|
67 |
+
}
|
68 |
+
|
69 |
+
$prefix = defined( 'NEVE_VERSION' ) ? '<span style="' . esc_attr( $style ) . '">↵</span>' : '';
|
70 |
+
add_theme_page( __( 'Starter Sites', 'templates-patterns-collection' ), $prefix . __( 'Starter Sites', 'templates-patterns-collection' ), 'activate_plugins', $this->page_slug, array( $this, 'render_starter_sites' ) );
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Render method for the starter sites page.
|
75 |
+
*/
|
76 |
+
public function render_starter_sites() {
|
77 |
+
echo '<div id="tpc-app"/>';
|
78 |
+
}
|
79 |
+
|
80 |
+
public function enqueue() {
|
81 |
+
$screen = get_current_screen();
|
82 |
+
if ( ! isset( $screen->id ) ) {
|
83 |
+
return;
|
84 |
+
}
|
85 |
+
|
86 |
+
if ( $screen->id !== 'appearance_page_' . $this->page_slug ) {
|
87 |
+
return;
|
88 |
+
}
|
89 |
+
|
90 |
+
$dependencies = ( include TIOB_PATH . 'assets/build/app.asset.php' );
|
91 |
+
|
92 |
+
wp_register_style( 'tiob', TIOB_URL . '/assets/build/style-app.css', array( 'wp-components' ), $dependencies['version'] );
|
93 |
+
wp_style_add_data( 'tiob', 'rtl', 'replace' );
|
94 |
+
wp_enqueue_style( 'tiob' );
|
95 |
+
|
96 |
+
wp_register_script( 'tiob', TIOB_URL . '/assets/build/app.js', array_merge( $dependencies['dependencies'], array( 'updates' ) ), $dependencies['version'], true );
|
97 |
+
wp_localize_script( 'tiob', 'tiobDash', apply_filters( 'neve_dashboard_page_data', $this->get_localization() ) );
|
98 |
+
wp_enqueue_script( 'tiob' );
|
99 |
Â
}
|
100 |
Â
|
101 |
Â
/**
|
236 |
Â
);
|
237 |
Â
|
238 |
Â
if ( ! empty( $previous_theme_slug ) ) {
|
239 |
+
$options['description'] = __( 'Hi! We\'ve noticed you were using a child theme of Zelle before. To make your transition easier, we can help you keep the same homepage settings you had before but in original Zelle\'s style, by converting it into an Elementor template.', 'templates-patterns-collection' );
|
240 |
Â
}
|
241 |
Â
|
242 |
Â
return $options;
|
267 |
Â
*/
|
268 |
Â
private function get_strings() {
|
269 |
Â
return array(
|
270 |
+
'preview_btn' => __( 'Preview', 'templates-patterns-collection' ),
|
271 |
+
'import_btn' => __( 'Import', 'templates-patterns-collection' ),
|
272 |
+
'pro_btn' => __( 'Get the PRO version!', 'templates-patterns-collection' ),
|
273 |
+
'importing' => __( 'Importing', 'templates-patterns-collection' ),
|
274 |
+
'cancel_btn' => __( 'Cancel', 'templates-patterns-collection' ),
|
275 |
+
'loading' => __( 'Loading', 'templates-patterns-collection' ),
|
276 |
+
'go_to_site' => __( 'View Website', 'templates-patterns-collection' ),
|
277 |
+
'edit_template' => __( 'Add your own content', 'templates-patterns-collection' ),
|
278 |
+
'back' => __( 'Back to Sites Library', 'templates-patterns-collection' ),
|
279 |
+
'note' => __( 'Note', 'templates-patterns-collection' ),
|
280 |
+
'advanced_options' => __( 'Advanced Options', 'templates-patterns-collection' ),
|
281 |
+
'plugins' => __( 'Plugins', 'templates-patterns-collection' ),
|
282 |
+
'general' => __( 'General', 'templates-patterns-collection' ),
|
283 |
+
'later' => __( 'Keep current layout', 'templates-patterns-collection' ),
|
284 |
+
'search' => __( 'Search', 'templates-patterns-collection' ),
|
285 |
+
'content' => __( 'Content', 'templates-patterns-collection' ),
|
286 |
+
'customizer' => __( 'Customizer', 'templates-patterns-collection' ),
|
287 |
+
'widgets' => __( 'Widgets', 'templates-patterns-collection' ),
|
288 |
+
'backup_disclaimer' => __( 'We recommend you backup your website content before attempting a full site import.', 'templates-patterns-collection' ),
|
289 |
+
'placeholders_disclaimer' => __( 'Due to copyright issues, some of the demo images will not be imported and will be replaced by placeholder images.', 'templates-patterns-collection' ),
|
290 |
+
'placeholders_disclaimer_new' => __( 'Some of the demo images will not be imported and will be replaced by placeholder images.', 'templates-patterns-collection' ),
|
291 |
+
'unsplash_gallery_link' => __( 'Here is our own collection of related images you can use for your site.', 'templates-patterns-collection' ),
|
292 |
+
'import_done' => __( 'Content was successfully imported. Enjoy your new site!', 'templates-patterns-collection' ),
|
293 |
+
'pro_demo' => __( 'Available in the PRO version', 'templates-patterns-collection' ),
|
294 |
+
'copy_error_code' => __( 'Copy error code', 'templates-patterns-collection' ),
|
295 |
+
'download_error_log' => __( 'Download error log', 'templates-patterns-collection' ),
|
296 |
+
'external_plugins_notice' => __( 'To import this demo you have to install the following plugins:', 'templates-patterns-collection' ),
|
297 |
Â
/* translators: 1 - 'here'. */
|
298 |
Â
'rest_not_working' => sprintf(
|
299 |
+
__( 'It seems that Rest API is not working properly on your website. Read about how you can fix it %1$s.', 'templates-patterns-collection' ),
|
300 |
+
sprintf( '<a href="https://docs.themeisle.com/article/1157-starter-sites-library-import-is-not-working#rest-api">%1$s<i class="dashicons dashicons-external"></i></a>', __( 'here', 'templates-patterns-collection' ) )
|
301 |
Â
),
|
302 |
Â
/* translators: 1 - 'get in touch'. */
|
303 |
Â
'error_report' => sprintf(
|
304 |
+
__( 'Hi! It seems there is a configuration issue with your server that\'s causing the import to fail. Please %1$s with us with the error code below, so we can help you fix this.', 'templates-patterns-collection' ),
|
305 |
+
sprintf( '<a href="https://themeisle.com/contact">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'get in touch', 'templates-patterns-collection' ) )
|
306 |
Â
),
|
307 |
Â
/* translators: 1 - 'troubleshooting guide'. */
|
308 |
Â
'troubleshooting' => sprintf(
|
309 |
+
__( 'Hi! It seems there is a configuration issue with your server that\'s causing the import to fail. Take a look at our %1$s to see if any of the proposed solutions work.', 'templates-patterns-collection' ),
|
310 |
+
sprintf( '<a href="https://docs.themeisle.com/article/1157-starter-sites-library-import-is-not-working">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'troubleshooting guide', 'templates-patterns-collection' ) )
|
311 |
Â
),
|
312 |
Â
/* translators: 1 - 'get in touch'. */
|
313 |
Â
'support' => sprintf(
|
314 |
+
__( 'If none of the solutions in the guide work, please %1$s with us with the error code below, so we can help you fix this.', 'templates-patterns-collection' ),
|
315 |
+
sprintf( '<a href="https://themeisle.com/contact">%1$s <i class="dashicons dashicons-external"></i></a>', __( 'get in touch', 'templates-patterns-collection' ) )
|
316 |
Â
),
|
317 |
Â
'fsDown' => sprintf(
|
318 |
+
__( 'It seems that %s is not available. You can contact your site administrator or hosting provider to help you enable it.', 'templates-patterns-collection' ),
|
319 |
Â
sprintf( '<code>WP_Filesystem</code>' )
|
320 |
Â
),
|
321 |
Â
);
|
322 |
Â
}
|
323 |
+
|
324 |
+
/**
|
325 |
+
* Get localization data for the dashboard script.
|
326 |
+
*
|
327 |
+
* @return array
|
328 |
+
*/
|
329 |
+
private function get_localization() {
|
330 |
+
$theme_name = apply_filters( 'ti_wl_theme_name', 'Neve' );
|
331 |
+
return array(
|
332 |
+
'nonce' => wp_create_nonce( 'wp_rest' ),
|
333 |
+
'assets' => TIOB_URL . '/assets/',
|
334 |
+
'upgradeURL' => esc_url( apply_filters( 'neve_upgrade_link_from_child_theme_filter', 'https://themeisle.com/themes/neve/upgrade/?utm_medium=aboutneve&utm_source=freevspro&utm_campaign=neve' ) ),
|
335 |
+
'strings' => array(
|
336 |
+
/* translators: %s - Theme name */
|
337 |
+
'starterSitesTabDescription' => sprintf( __( 'With %s, you can choose from multiple unique demos, specially designed for you, that can be installed with a single click. You just need to choose your favorite, and we will take care of everything else.', 'templates-patterns-collection' ), wp_kses_post( $theme_name ) ),
|
338 |
+
),
|
339 |
+
'onboarding' => array(),
|
340 |
+
'hasFileSystem' => WP_Filesystem(),
|
341 |
+
'themesURL' => admin_url( 'themes.php' ),
|
342 |
+
'themeAction' => $this->get_theme_action(),
|
343 |
+
'brandedTheme' => isset( $this->wl_config['theme_name'] ) ? $this->wl_config['theme_name'] : false,
|
344 |
+
);
|
345 |
+
}
|
346 |
+
|
347 |
+
/**
|
348 |
+
* Gets theme action.
|
349 |
+
*/
|
350 |
+
private function get_theme_action() {
|
351 |
+
if ( defined( 'NEVE_VERSION' ) ) {
|
352 |
+
return false;
|
353 |
+
}
|
354 |
+
|
355 |
+
$themes = wp_get_themes();
|
356 |
+
foreach ( $themes as $theme_slug => $args ) {
|
357 |
+
$theme = wp_get_theme( $theme_slug );
|
358 |
+
if ( $theme->get( 'TextDomain' ) === 'neve' ) {
|
359 |
+
return array(
|
360 |
+
'action' => 'activate',
|
361 |
+
'slug' => $theme_slug,
|
362 |
+
'nonce' => wp_create_nonce( 'switch-theme_' . $theme_slug ),
|
363 |
+
);
|
364 |
+
}
|
365 |
+
}
|
366 |
+
return array(
|
367 |
+
'action' => 'install',
|
368 |
+
'slug' => 'neve',
|
369 |
+
'nonce' => wp_create_nonce( 'switch-theme_neve' ),
|
370 |
+
);
|
371 |
+
}
|
372 |
Â
}
|
includes/Main.php
CHANGED
@@ -16,7 +16,7 @@ class Main {
|
|
16 |
Â
*
|
17 |
Â
* @var string Version string.
|
18 |
Â
*/
|
19 |
-
const VERSION = '1.0.
|
20 |
Â
/**
|
21 |
Â
* Sites Library API URL.
|
22 |
Â
*
|
@@ -100,9 +100,6 @@ class Main {
|
|
100 |
Â
* @return void
|
101 |
Â
*/
|
102 |
Â
private function setup_sites_listing() {
|
103 |
-
if ( ! defined( 'NEVE_VERSION' ) ) {
|
104 |
-
return;
|
105 |
-
}
|
106 |
Â
$this->sites_listing = new Sites_Listing();
|
107 |
Â
$this->sites_listing->init();
|
108 |
Â
}
|
16 |
Â
*
|
17 |
Â
* @var string Version string.
|
18 |
Â
*/
|
19 |
+
const VERSION = '1.0.11';
|
20 |
Â
/**
|
21 |
Â
* Sites Library API URL.
|
22 |
Â
*
|
100 |
Â
* @return void
|
101 |
Â
*/
|
102 |
Â
private function setup_sites_listing() {
|
Â
|
|
Â
|
|
Â
|
|
103 |
Â
$this->sites_listing = new Sites_Listing();
|
104 |
Â
$this->sites_listing->init();
|
105 |
Â
}
|
includes/Sites_Listing.php
CHANGED
@@ -43,8 +43,8 @@ class Sites_Listing {
|
|
43 |
Â
'theme_name' => 'Zelle Pro',
|
44 |
Â
'theme_mod_check' => 'zelle_frontpage_was_imported',
|
45 |
Â
'template' => 'zelle',
|
46 |
-
'heading' => __( 'Want to keep using Zelle\'s homepage?', '
|
47 |
-
'description' => __( 'Hi! We\'ve noticed you were using Zelle before. To make your transition easier, we can help you keep the same beautiful homepage you had before, by converting it into an Elementor template. This option will also import your homepage content.', '
|
48 |
Â
'mandatory_plugins' => array(
|
49 |
Â
'elementor' => 'Elementor Page Builder',
|
50 |
Â
),
|
@@ -53,8 +53,8 @@ class Sites_Listing {
|
|
53 |
Â
'theme_name' => 'Zelle Lite',
|
54 |
Â
'theme_mod_check' => 'zelle_frontpage_was_imported',
|
55 |
Â
'template' => 'zelle',
|
56 |
-
'heading' => __( 'Want to keep using Zelle\'s homepage?', '
|
57 |
-
'description' => __( 'Hi! We\'ve noticed you were using Zelle before. To make your transition easier, we can help you keep the same beautiful homepage you had before, by converting it into an Elementor template. This option will also import your homepage content.', '
|
58 |
Â
'mandatory_plugins' => array(
|
59 |
Â
'elementor' => 'Elementor Page Builder',
|
60 |
Â
),
|
43 |
Â
'theme_name' => 'Zelle Pro',
|
44 |
Â
'theme_mod_check' => 'zelle_frontpage_was_imported',
|
45 |
Â
'template' => 'zelle',
|
46 |
+
'heading' => __( 'Want to keep using Zelle\'s homepage?', 'templates-patterns-collection' ),
|
47 |
+
'description' => __( 'Hi! We\'ve noticed you were using Zelle before. To make your transition easier, we can help you keep the same beautiful homepage you had before, by converting it into an Elementor template. This option will also import your homepage content.', 'templates-patterns-collection' ),
|
48 |
Â
'mandatory_plugins' => array(
|
49 |
Â
'elementor' => 'Elementor Page Builder',
|
50 |
Â
),
|
53 |
Â
'theme_name' => 'Zelle Lite',
|
54 |
Â
'theme_mod_check' => 'zelle_frontpage_was_imported',
|
55 |
Â
'template' => 'zelle',
|
56 |
+
'heading' => __( 'Want to keep using Zelle\'s homepage?', 'templates-patterns-collection' ),
|
57 |
+
'description' => __( 'Hi! We\'ve noticed you were using Zelle before. To make your transition easier, we can help you keep the same beautiful homepage you had before, by converting it into an Elementor template. This option will also import your homepage content.', 'templates-patterns-collection' ),
|
58 |
Â
'mandatory_plugins' => array(
|
59 |
Â
'elementor' => 'Elementor Page Builder',
|
60 |
Â
),
|
languages/templates-patterns-collection.pot
ADDED
@@ -0,0 +1,442 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
# Copyright (C) 2020 ThemeIsle
|
2 |
+
# This file is distributed under the same license as the Templates Patterns Collection plugin.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Templates Patterns Collection 1.0.10\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/templates-patterns-collection\n"
|
7 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-10-12T13:19:34+00:00\n"
|
13 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
+
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
+
"X-Domain: templates-patterns-collection\n"
|
16 |
+
|
17 |
+
#. Plugin Name of the plugin
|
18 |
+
msgid "Templates Patterns Collection"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#. Description of the plugin
|
22 |
+
msgid "This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#. Author of the plugin
|
26 |
+
msgid "ThemeIsle"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#. Author URI of the plugin
|
30 |
+
msgid "https://themeisle.com"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/Admin.php:70
|
34 |
+
msgid "Starter Sites"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/Admin.php:239
|
38 |
+
msgid "Hi! We've noticed you were using a child theme of Zelle before. To make your transition easier, we can help you keep the same homepage settings you had before but in original Zelle's style, by converting it into an Elementor template."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/Admin.php:270
|
42 |
+
#: assets/build/app.js:2312
|
43 |
+
#: assets/src/Components/StarterSiteCard.js:52
|
44 |
+
msgid "Preview"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: includes/Admin.php:271
|
48 |
+
#: assets/build/app.js:942
|
49 |
+
#: assets/build/app.js:2073
|
50 |
+
#: assets/build/app.js:2315
|
51 |
+
#: assets/src/Components/ImportModal.js:519
|
52 |
+
#: assets/src/Components/PreviewFrame.js:107
|
53 |
+
#: assets/src/Components/StarterSiteCard.js:56
|
54 |
+
msgid "Import"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/Admin.php:272
|
58 |
+
msgid "Get the PRO version!"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/Admin.php:273
|
62 |
+
msgid "Importing"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/Admin.php:274
|
66 |
+
#: assets/build/app.js:1907
|
67 |
+
#: assets/src/Components/Migration.js:165
|
68 |
+
msgid "Cancel"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: includes/Admin.php:275
|
72 |
+
msgid "Loading"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/Admin.php:276
|
76 |
+
#: assets/build/app.js:949
|
77 |
+
#: assets/build/app.js:1918
|
78 |
+
#: assets/src/Components/ImportModal.js:542
|
79 |
+
#: assets/src/Components/Migration.js:197
|
80 |
+
msgid "View Website"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: includes/Admin.php:277
|
84 |
+
#: assets/build/app.js:952
|
85 |
+
#: assets/src/Components/ImportModal.js:548
|
86 |
+
msgid "Add your own content"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/Admin.php:278
|
90 |
+
#: assets/build/app.js:946
|
91 |
+
#: assets/src/Components/ImportModal.js:533
|
92 |
+
msgid "Back to Sites Library"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/Admin.php:279
|
96 |
+
#: assets/build/app.js:1057
|
97 |
+
#: assets/src/Components/ImportModalNote.js:23
|
98 |
+
msgid "Note"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/Admin.php:280
|
102 |
+
msgid "Advanced Options"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/Admin.php:281
|
106 |
+
#: assets/build/app.js:695
|
107 |
+
#: assets/src/Components/ImportModal.js:211
|
108 |
+
msgid "Plugins"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/Admin.php:282
|
112 |
+
#: assets/build/app.js:667
|
113 |
+
#: assets/src/Components/ImportModal.js:170
|
114 |
+
msgid "General"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/Admin.php:283
|
118 |
+
msgid "Keep current layout"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/Admin.php:284
|
122 |
+
msgid "Search"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/Admin.php:285
|
126 |
+
#: assets/build/app.js:653
|
127 |
+
#: assets/src/Components/ImportModal.js:156
|
128 |
+
msgid "Content"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/Admin.php:286
|
132 |
+
#: assets/build/app.js:657
|
133 |
+
#: assets/src/Components/ImportModal.js:160
|
134 |
+
msgid "Customizer"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/Admin.php:287
|
138 |
+
#: assets/build/app.js:661
|
139 |
+
#: assets/src/Components/ImportModal.js:164
|
140 |
+
msgid "Widgets"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/Admin.php:288
|
144 |
+
msgid "We recommend you backup your website content before attempting a full site import."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/Admin.php:289
|
148 |
+
msgid "Due to copyright issues, some of the demo images will not be imported and will be replaced by placeholder images."
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/Admin.php:290
|
152 |
+
msgid "Some of the demo images will not be imported and will be replaced by placeholder images."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/Admin.php:291
|
156 |
+
msgid "Here is our own collection of related images you can use for your site."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/Admin.php:292
|
160 |
+
#: assets/build/app.js:930
|
161 |
+
#: assets/src/Components/ImportModal.js:486
|
162 |
+
msgid "Content was successfully imported. Enjoy your new site!"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/Admin.php:293
|
166 |
+
msgid "Available in the PRO version"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/Admin.php:294
|
170 |
+
msgid "Copy error code"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: includes/Admin.php:295
|
174 |
+
msgid "Download error log"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: includes/Admin.php:296
|
178 |
+
msgid "To import this demo you have to install the following plugins:"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: includes/Admin.php:299
|
182 |
+
msgid "It seems that Rest API is not working properly on your website. Read about how you can fix it %1$s."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: includes/Admin.php:300
|
186 |
+
msgid "here"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/Admin.php:304
|
190 |
+
msgid "Hi! It seems there is a configuration issue with your server that's causing the import to fail. Please %1$s with us with the error code below, so we can help you fix this."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/Admin.php:305
|
194 |
+
#: includes/Admin.php:315
|
195 |
+
msgid "get in touch"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/Admin.php:309
|
199 |
+
msgid "Hi! It seems there is a configuration issue with your server that's causing the import to fail. Take a look at our %1$s to see if any of the proposed solutions work."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/Admin.php:310
|
203 |
+
msgid "troubleshooting guide"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/Admin.php:314
|
207 |
+
msgid "If none of the solutions in the guide work, please %1$s with us with the error code below, so we can help you fix this."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/Admin.php:318
|
211 |
+
msgid "It seems that %s is not available. You can contact your site administrator or hosting provider to help you enable it."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#. translators: %s - Theme name
|
215 |
+
#: includes/Admin.php:337
|
216 |
+
msgid "With %s, you can choose from multiple unique demos, specially designed for you, that can be installed with a single click. You just need to choose your favorite, and we will take care of everything else."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/Sites_Listing.php:46
|
220 |
+
#: includes/Sites_Listing.php:56
|
221 |
+
msgid "Want to keep using Zelle's homepage?"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/Sites_Listing.php:47
|
225 |
+
#: includes/Sites_Listing.php:57
|
226 |
+
msgid "Hi! We've noticed you were using Zelle before. To make your transition easier, we can help you keep the same beautiful homepage you had before, by converting it into an Elementor template. This option will also import your homepage content."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: tests/rest-test.php:59
|
230 |
+
msgid "Ready to use pre-built websites with 1-click installation"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: tests/rest-test.php:60
|
234 |
+
msgid "With Neve, you can choose from multiple unique demos, specially designed for you, that can be installed with a single click. You just need to choose your favorite, and we will take care of everything else."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: assets/build/app.js:285
|
238 |
+
#: assets/build/app.js:314
|
239 |
+
#: assets/build/app.js:395
|
240 |
+
#: assets/src/Components/EditorSelector.js:30
|
241 |
+
#: assets/src/Components/EditorSelector.js:70
|
242 |
+
#: assets/src/Components/EditorTabs.js:42
|
243 |
+
msgid "Builder Logo"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: assets/build/app.js:559
|
247 |
+
#: assets/build/app.js:584
|
248 |
+
#: assets/src/Components/ImportModal.js:49
|
249 |
+
#: assets/src/Components/ImportModal.js:85
|
250 |
+
msgid "Something went wrong while loading the site data. Please refresh the page and try again."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: assets/build/app.js:849
|
254 |
+
#: assets/src/Components/ImportModal.js:367
|
255 |
+
msgid "Something went wrong while installing the necessary plugins."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: assets/build/app.js:850
|
259 |
+
#: assets/src/Components/ImportModal.js:371
|
260 |
+
msgid "Something went wrong while importing the website content."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: assets/build/app.js:851
|
264 |
+
#: assets/src/Components/ImportModal.js:375
|
265 |
+
msgid "Something went wrong while updating the customizer settings."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: assets/build/app.js:852
|
269 |
+
#: assets/src/Components/ImportModal.js:379
|
270 |
+
msgid "Something went wrong while importing the widgets."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: assets/build/app.js:935
|
274 |
+
#: assets/build/app.js:1323
|
275 |
+
#: assets/build/app.js:1447
|
276 |
+
#: assets/build/app.js:1907
|
277 |
+
#: assets/build/app.js:2051
|
278 |
+
#: assets/src/Components/ImportModal.js:502
|
279 |
+
#: assets/src/Components/InstallModal.js:156
|
280 |
+
#: assets/src/Components/Main.js:52
|
281 |
+
#: assets/src/Components/Migration.js:161
|
282 |
+
#: assets/src/Components/PreviewFrame.js:55
|
283 |
+
msgid "Close"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: assets/build/app.js:1011
|
287 |
+
#: assets/src/Components/ImportModalError.js:26
|
288 |
+
msgid "Error code"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: assets/build/app.js:1011
|
292 |
+
#: assets/src/Components/ImportModalError.js:31
|
293 |
+
msgid "Error log"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: assets/build/app.js:1099
|
297 |
+
#: assets/src/Components/ImportStepper.js:8
|
298 |
+
msgid "Installing Plugins"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: assets/build/app.js:1104
|
302 |
+
#: assets/src/Components/ImportStepper.js:13
|
303 |
+
msgid "Importing Content"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: assets/build/app.js:1109
|
307 |
+
#: assets/src/Components/ImportStepper.js:18
|
308 |
+
msgid "Importing Customizer Settings"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: assets/build/app.js:1114
|
312 |
+
#: assets/src/Components/ImportStepper.js:26
|
313 |
+
msgid "Importing Widgets"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#. translators: %s: Error message.
|
317 |
+
#: assets/build/app.js:1236
|
318 |
+
#: assets/src/Components/InstallModal.js:29
|
319 |
+
msgid "An error has ocurred: %s"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: assets/build/app.js:1253
|
323 |
+
#: assets/src/Components/InstallModal.js:50
|
324 |
+
msgid "Could not install theme."
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: assets/build/app.js:1263
|
328 |
+
#: assets/src/Components/InstallModal.js:65
|
329 |
+
msgid "Could not activate theme."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: assets/build/app.js:1277
|
333 |
+
#: assets/src/Components/InstallModal.js:83
|
334 |
+
msgid "Install and Activate Neve"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: assets/build/app.js:1291
|
338 |
+
#: assets/src/Components/InstallModal.js:96
|
339 |
+
msgid "Logo"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: assets/build/app.js:1302
|
343 |
+
#: assets/src/Components/InstallModal.js:110
|
344 |
+
msgid "In order to import the starter site, Neve theme has to be installed and activated. Click the button below to install and activate Neve"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: assets/build/app.js:1319
|
348 |
+
#: assets/src/Components/InstallModal.js:141
|
349 |
+
msgid "Install and Activate"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: assets/build/app.js:1319
|
353 |
+
#: assets/src/Components/InstallModal.js:145
|
354 |
+
msgid "Activate"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: assets/build/app.js:1450
|
358 |
+
#: assets/src/Components/Main.js:61
|
359 |
+
msgid "Business"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: assets/build/app.js:1450
|
363 |
+
#: assets/src/Components/Main.js:62
|
364 |
+
msgid "Ecommerce"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: assets/build/app.js:1450
|
368 |
+
#: assets/src/Components/Main.js:63
|
369 |
+
msgid "Fashion"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: assets/build/app.js:1450
|
373 |
+
#: assets/src/Components/Main.js:64
|
374 |
+
msgid "Blogging"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: assets/build/app.js:1450
|
378 |
+
#: assets/src/Components/Main.js:65
|
379 |
+
msgid "Photography"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: assets/build/app.js:1685
|
383 |
+
#: assets/src/Components/Main.js:346
|
384 |
+
msgid "No results found"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: assets/build/app.js:1878
|
388 |
+
#: assets/build/app.js:1944
|
389 |
+
#: assets/src/Components/Migration.js:82
|
390 |
+
#: assets/src/Components/Migration.js:239
|
391 |
+
msgid "Migrate"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: assets/build/app.js:1900
|
395 |
+
#: assets/src/Components/Migration.js:141
|
396 |
+
msgid "Migrating"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: assets/build/app.js:1912
|
400 |
+
#: assets/src/Components/Migration.js:177
|
401 |
+
msgid "Start Migration"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: assets/build/app.js:1915
|
405 |
+
#: assets/src/Components/Migration.js:188
|
406 |
+
msgid "Edit Content"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: assets/build/app.js:1955
|
410 |
+
#: assets/src/Components/Migration.js:259
|
411 |
+
msgid "Dismissed"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: assets/build/app.js:1959
|
415 |
+
#: assets/src/Components/Migration.js:268
|
416 |
+
msgid "Dismiss"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: assets/build/app.js:2056
|
420 |
+
#: assets/src/Components/PreviewFrame.js:63
|
421 |
+
msgid "Previous"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: assets/build/app.js:2061
|
425 |
+
#: assets/src/Components/PreviewFrame.js:77
|
426 |
+
msgid "Next"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: assets/build/app.js:2069
|
430 |
+
#: assets/src/Components/PreviewFrame.js:96
|
431 |
+
msgid "Upgrade and Import"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: assets/build/app.js:2208
|
435 |
+
#: assets/src/Components/Search.js:98
|
436 |
+
msgid "Search for a starter site"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: assets/build/app.js:2329
|
440 |
+
#: assets/src/Components/StarterSiteCard.js:75
|
441 |
+
msgid "Premium"
|
442 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -27,6 +27,14 @@ No account is required to access the service template collection and the privacy
|
|
27 |
Â
|
28 |
Â
== Changelog ==
|
29 |
Â
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
30 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
31 |
Â
|
32 |
Â
* Define plugin constants and remove no longer needed ones.
|
27 |
Â
|
28 |
Â
== Changelog ==
|
29 |
Â
|
30 |
+
##### [Version 1.0.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.10...v1.0.11) (2020-10-13)
|
31 |
+
|
32 |
+
- Moved onboarding to TPC
|
33 |
+
- Fixed small layout compatibility issue with Gutenberg
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
Â
##### [Version 1.0.10](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.9...v1.0.10) (2020-09-21)
|
39 |
Â
|
40 |
Â
* Define plugin constants and remove no longer needed ones.
|
templates-patterns-collection.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Â
/**
|
3 |
Â
* Plugin Name: Templates Patterns Collection
|
4 |
Â
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
5 |
-
* Version: 1.0.
|
6 |
Â
* Author: ThemeIsle
|
7 |
Â
* Author URI: https://themeisle.com
|
8 |
Â
* License: GPLv3
|
@@ -63,10 +63,6 @@ function ti_tpc_load_textdomain() {
|
|
63 |
Â
add_action( 'init', 'ti_tpc_run' );
|
64 |
Â
|
65 |
Â
function ti_tpc_run() {
|
66 |
-
if ( ! defined( 'NEVE_VERSION' ) ) {
|
67 |
-
return;
|
68 |
-
}
|
69 |
-
|
70 |
Â
if ( ! defined( 'TI_ONBOARDING_DISABLED' ) ) {
|
71 |
Â
define( 'TI_ONBOARDING_DISABLED', false );
|
72 |
Â
}
|
@@ -82,6 +78,8 @@ function ti_tpc_run() {
|
|
82 |
Â
if ( class_exists( 'WP_CLI' ) ) {
|
83 |
Â
require_once 'includes/WP_Cli.php';
|
84 |
Â
}
|
Â
|
|
Â
|
|
85 |
Â
}
|
86 |
Â
|
87 |
Â
|
2 |
Â
/**
|
3 |
Â
* Plugin Name: Templates Patterns Collection
|
4 |
Â
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
5 |
+
* Version: 1.0.11
|
6 |
Â
* Author: ThemeIsle
|
7 |
Â
* Author URI: https://themeisle.com
|
8 |
Â
* License: GPLv3
|
63 |
Â
add_action( 'init', 'ti_tpc_run' );
|
64 |
Â
|
65 |
Â
function ti_tpc_run() {
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
66 |
Â
if ( ! defined( 'TI_ONBOARDING_DISABLED' ) ) {
|
67 |
Â
define( 'TI_ONBOARDING_DISABLED', false );
|
68 |
Â
}
|
78 |
Â
if ( class_exists( 'WP_CLI' ) ) {
|
79 |
Â
require_once 'includes/WP_Cli.php';
|
80 |
Â
}
|
81 |
+
|
82 |
+
\TIOB\Main::instance();
|
83 |
Â
}
|
84 |
Â
|
85 |
Â
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
Â
|
5 |
Â
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
Â
|
7 |
-
return
|
4 |
Â
|
5 |
Â
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
Â
|
7 |
+
return ComposerAutoloaderInit860532b18175cf75d2b942ebcd6f4b57::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Â
|
3 |
Â
// autoload_real.php @generated by Composer
|
4 |
Â
|
5 |
-
class
|
6 |
Â
{
|
7 |
Â
private static $loader;
|
8 |
Â
|
@@ -22,15 +22,15 @@ class ComposerAutoloaderInitdc93ff53573968600276385dbe58b2b7
|
|
22 |
Â
return self::$loader;
|
23 |
Â
}
|
24 |
Â
|
25 |
-
spl_autoload_register(array('
|
26 |
Â
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
-
spl_autoload_unregister(array('
|
28 |
Â
|
29 |
Â
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
Â
if ($useStaticLoader) {
|
31 |
Â
require_once __DIR__ . '/autoload_static.php';
|
32 |
Â
|
33 |
-
call_user_func(\Composer\Autoload\
|
34 |
Â
} else {
|
35 |
Â
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
Â
foreach ($map as $namespace => $path) {
|
2 |
Â
|
3 |
Â
// autoload_real.php @generated by Composer
|
4 |
Â
|
5 |
+
class ComposerAutoloaderInit860532b18175cf75d2b942ebcd6f4b57
|
6 |
Â
{
|
7 |
Â
private static $loader;
|
8 |
Â
|
22 |
Â
return self::$loader;
|
23 |
Â
}
|
24 |
Â
|
25 |
+
spl_autoload_register(array('ComposerAutoloaderInit860532b18175cf75d2b942ebcd6f4b57', 'loadClassLoader'), true, true);
|
26 |
Â
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit860532b18175cf75d2b942ebcd6f4b57', 'loadClassLoader'));
|
28 |
Â
|
29 |
Â
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
Â
if ($useStaticLoader) {
|
31 |
Â
require_once __DIR__ . '/autoload_static.php';
|
32 |
Â
|
33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit860532b18175cf75d2b942ebcd6f4b57::getInitializer($loader));
|
34 |
Â
} else {
|
35 |
Â
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
Â
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Â
|
5 |
Â
namespace Composer\Autoload;
|
6 |
Â
|
7 |
-
class
|
8 |
Â
{
|
9 |
Â
public static $prefixLengthsPsr4 = array (
|
10 |
Â
'T' =>
|
@@ -48,9 +48,9 @@ class ComposerStaticInitdc93ff53573968600276385dbe58b2b7
|
|
48 |
Â
public static function getInitializer(ClassLoader $loader)
|
49 |
Â
{
|
50 |
Â
return \Closure::bind(function () use ($loader) {
|
51 |
-
$loader->prefixLengthsPsr4 =
|
52 |
-
$loader->prefixDirsPsr4 =
|
53 |
-
$loader->classMap =
|
54 |
Â
|
55 |
Â
}, null, ClassLoader::class);
|
56 |
Â
}
|
4 |
Â
|
5 |
Â
namespace Composer\Autoload;
|
6 |
Â
|
7 |
+
class ComposerStaticInit860532b18175cf75d2b942ebcd6f4b57
|
8 |
Â
{
|
9 |
Â
public static $prefixLengthsPsr4 = array (
|
10 |
Â
'T' =>
|
48 |
Â
public static function getInitializer(ClassLoader $loader)
|
49 |
Â
{
|
50 |
Â
return \Closure::bind(function () use ($loader) {
|
51 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit860532b18175cf75d2b942ebcd6f4b57::$prefixLengthsPsr4;
|
52 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit860532b18175cf75d2b942ebcd6f4b57::$prefixDirsPsr4;
|
53 |
+
$loader->classMap = ComposerStaticInit860532b18175cf75d2b942ebcd6f4b57::$classMap;
|
54 |
Â
|
55 |
Â
}, null, ClassLoader::class);
|
56 |
Â
}
|
yarn.lock
ADDED
@@ -0,0 +1,14219 @@
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
|
Â
|
1 |
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
2 |
+
# yarn lockfile v1
|
3 |
+
|
4 |
+
|
5 |
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
|
6 |
+
version "7.10.4"
|
7 |
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
|
8 |
+
integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
|
9 |
+
dependencies:
|
10 |
+
"@babel/highlight" "^7.10.4"
|
11 |
+
|
12 |
+
"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0":
|
13 |
+
version "7.11.0"
|
14 |
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c"
|
15 |
+
integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==
|
16 |
+
dependencies:
|
17 |
+
browserslist "^4.12.0"
|
18 |
+
invariant "^2.2.4"
|
19 |
+
semver "^5.5.0"
|
20 |
+
|
21 |
+
"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.7.5", "@babel/core@^7.9.0":
|
22 |
+
version "7.11.6"
|
23 |
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651"
|
24 |
+
integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==
|
25 |
+
dependencies:
|
26 |
+
"@babel/code-frame" "^7.10.4"
|
27 |
+
"@babel/generator" "^7.11.6"
|
28 |
+
"@babel/helper-module-transforms" "^7.11.0"
|
29 |
+
"@babel/helpers" "^7.10.4"
|
30 |
+
"@babel/parser" "^7.11.5"
|
31 |
+
"@babel/template" "^7.10.4"
|
32 |
+
"@babel/traverse" "^7.11.5"
|
33 |
+
"@babel/types" "^7.11.5"
|
34 |
+
convert-source-map "^1.7.0"
|
35 |
+
debug "^4.1.0"
|
36 |
+
gensync "^1.0.0-beta.1"
|
37 |
+
json5 "^2.1.2"
|
38 |
+
lodash "^4.17.19"
|
39 |
+
resolve "^1.3.2"
|
40 |
+
semver "^5.4.1"
|
41 |
+
source-map "^0.5.0"
|
42 |
+
|
43 |
+
"@babel/generator@^7.11.5", "@babel/generator@^7.11.6":
|
44 |
+
version "7.11.6"
|
45 |
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620"
|
46 |
+
integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==
|
47 |
+
dependencies:
|
48 |
+
"@babel/types" "^7.11.5"
|
49 |
+
jsesc "^2.5.1"
|
50 |
+
source-map "^0.5.0"
|
51 |
+
|
52 |
+
"@babel/helper-annotate-as-pure@^7.10.4":
|
53 |
+
version "7.10.4"
|
54 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
|
55 |
+
integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
|
56 |
+
dependencies:
|
57 |
+
"@babel/types" "^7.10.4"
|
58 |
+
|
59 |
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
|
60 |
+
version "7.10.4"
|
61 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
|
62 |
+
integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
|
63 |
+
dependencies:
|
64 |
+
"@babel/helper-explode-assignable-expression" "^7.10.4"
|
65 |
+
"@babel/types" "^7.10.4"
|
66 |
+
|
67 |
+
"@babel/helper-builder-react-jsx-experimental@^7.10.4", "@babel/helper-builder-react-jsx-experimental@^7.11.5":
|
68 |
+
version "7.11.5"
|
69 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.11.5.tgz#4ea43dd63857b0a35cd1f1b161dc29b43414e79f"
|
70 |
+
integrity sha512-Vc4aPJnRZKWfzeCBsqTBnzulVNjABVdahSPhtdMD3Vs80ykx4a87jTHtF/VR+alSrDmNvat7l13yrRHauGcHVw==
|
71 |
+
dependencies:
|
72 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
73 |
+
"@babel/helper-module-imports" "^7.10.4"
|
74 |
+
"@babel/types" "^7.11.5"
|
75 |
+
|
76 |
+
"@babel/helper-builder-react-jsx@^7.10.4":
|
77 |
+
version "7.10.4"
|
78 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
|
79 |
+
integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
|
80 |
+
dependencies:
|
81 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
82 |
+
"@babel/types" "^7.10.4"
|
83 |
+
|
84 |
+
"@babel/helper-compilation-targets@^7.10.4":
|
85 |
+
version "7.10.4"
|
86 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2"
|
87 |
+
integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==
|
88 |
+
dependencies:
|
89 |
+
"@babel/compat-data" "^7.10.4"
|
90 |
+
browserslist "^4.12.0"
|
91 |
+
invariant "^2.2.4"
|
92 |
+
levenary "^1.1.1"
|
93 |
+
semver "^5.5.0"
|
94 |
+
|
95 |
+
"@babel/helper-create-class-features-plugin@^7.10.4":
|
96 |
+
version "7.10.5"
|
97 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d"
|
98 |
+
integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==
|
99 |
+
dependencies:
|
100 |
+
"@babel/helper-function-name" "^7.10.4"
|
101 |
+
"@babel/helper-member-expression-to-functions" "^7.10.5"
|
102 |
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
103 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
104 |
+
"@babel/helper-replace-supers" "^7.10.4"
|
105 |
+
"@babel/helper-split-export-declaration" "^7.10.4"
|
106 |
+
|
107 |
+
"@babel/helper-create-regexp-features-plugin@^7.10.4":
|
108 |
+
version "7.10.4"
|
109 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8"
|
110 |
+
integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==
|
111 |
+
dependencies:
|
112 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
113 |
+
"@babel/helper-regex" "^7.10.4"
|
114 |
+
regexpu-core "^4.7.0"
|
115 |
+
|
116 |
+
"@babel/helper-define-map@^7.10.4":
|
117 |
+
version "7.10.5"
|
118 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
|
119 |
+
integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
|
120 |
+
dependencies:
|
121 |
+
"@babel/helper-function-name" "^7.10.4"
|
122 |
+
"@babel/types" "^7.10.5"
|
123 |
+
lodash "^4.17.19"
|
124 |
+
|
125 |
+
"@babel/helper-explode-assignable-expression@^7.10.4":
|
126 |
+
version "7.11.4"
|
127 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b"
|
128 |
+
integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==
|
129 |
+
dependencies:
|
130 |
+
"@babel/types" "^7.10.4"
|
131 |
+
|
132 |
+
"@babel/helper-function-name@^7.10.4":
|
133 |
+
version "7.10.4"
|
134 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
|
135 |
+
integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
|
136 |
+
dependencies:
|
137 |
+
"@babel/helper-get-function-arity" "^7.10.4"
|
138 |
+
"@babel/template" "^7.10.4"
|
139 |
+
"@babel/types" "^7.10.4"
|
140 |
+
|
141 |
+
"@babel/helper-get-function-arity@^7.10.4":
|
142 |
+
version "7.10.4"
|
143 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
|
144 |
+
integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
|
145 |
+
dependencies:
|
146 |
+
"@babel/types" "^7.10.4"
|
147 |
+
|
148 |
+
"@babel/helper-hoist-variables@^7.10.4":
|
149 |
+
version "7.10.4"
|
150 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
|
151 |
+
integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
|
152 |
+
dependencies:
|
153 |
+
"@babel/types" "^7.10.4"
|
154 |
+
|
155 |
+
"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
|
156 |
+
version "7.11.0"
|
157 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
|
158 |
+
integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==
|
159 |
+
dependencies:
|
160 |
+
"@babel/types" "^7.11.0"
|
161 |
+
|
162 |
+
"@babel/helper-module-imports@^7.10.4":
|
163 |
+
version "7.10.4"
|
164 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
|
165 |
+
integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==
|
166 |
+
dependencies:
|
167 |
+
"@babel/types" "^7.10.4"
|
168 |
+
|
169 |
+
"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0":
|
170 |
+
version "7.11.0"
|
171 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
|
172 |
+
integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==
|
173 |
+
dependencies:
|
174 |
+
"@babel/helper-module-imports" "^7.10.4"
|
175 |
+
"@babel/helper-replace-supers" "^7.10.4"
|
176 |
+
"@babel/helper-simple-access" "^7.10.4"
|
177 |
+
"@babel/helper-split-export-declaration" "^7.11.0"
|
178 |
+
"@babel/template" "^7.10.4"
|
179 |
+
"@babel/types" "^7.11.0"
|
180 |
+
lodash "^4.17.19"
|
181 |
+
|
182 |
+
"@babel/helper-optimise-call-expression@^7.10.4":
|
183 |
+
version "7.10.4"
|
184 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
|
185 |
+
integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
|
186 |
+
dependencies:
|
187 |
+
"@babel/types" "^7.10.4"
|
188 |
+
|
189 |
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
190 |
+
version "7.10.4"
|
191 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
|
192 |
+
integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
|
193 |
+
|
194 |
+
"@babel/helper-regex@^7.10.4":
|
195 |
+
version "7.10.5"
|
196 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
|
197 |
+
integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
|
198 |
+
dependencies:
|
199 |
+
lodash "^4.17.19"
|
200 |
+
|
201 |
+
"@babel/helper-remap-async-to-generator@^7.10.4":
|
202 |
+
version "7.11.4"
|
203 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d"
|
204 |
+
integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==
|
205 |
+
dependencies:
|
206 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
207 |
+
"@babel/helper-wrap-function" "^7.10.4"
|
208 |
+
"@babel/template" "^7.10.4"
|
209 |
+
"@babel/types" "^7.10.4"
|
210 |
+
|
211 |
+
"@babel/helper-replace-supers@^7.10.4":
|
212 |
+
version "7.10.4"
|
213 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
|
214 |
+
integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
|
215 |
+
dependencies:
|
216 |
+
"@babel/helper-member-expression-to-functions" "^7.10.4"
|
217 |
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
218 |
+
"@babel/traverse" "^7.10.4"
|
219 |
+
"@babel/types" "^7.10.4"
|
220 |
+
|
221 |
+
"@babel/helper-simple-access@^7.10.4":
|
222 |
+
version "7.10.4"
|
223 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
|
224 |
+
integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
|
225 |
+
dependencies:
|
226 |
+
"@babel/template" "^7.10.4"
|
227 |
+
"@babel/types" "^7.10.4"
|
228 |
+
|
229 |
+
"@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
|
230 |
+
version "7.11.0"
|
231 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
|
232 |
+
integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==
|
233 |
+
dependencies:
|
234 |
+
"@babel/types" "^7.11.0"
|
235 |
+
|
236 |
+
"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
|
237 |
+
version "7.11.0"
|
238 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
|
239 |
+
integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
|
240 |
+
dependencies:
|
241 |
+
"@babel/types" "^7.11.0"
|
242 |
+
|
243 |
+
"@babel/helper-validator-identifier@^7.10.4":
|
244 |
+
version "7.10.4"
|
245 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
|
246 |
+
integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
|
247 |
+
|
248 |
+
"@babel/helper-wrap-function@^7.10.4":
|
249 |
+
version "7.10.4"
|
250 |
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87"
|
251 |
+
integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==
|
252 |
+
dependencies:
|
253 |
+
"@babel/helper-function-name" "^7.10.4"
|
254 |
+
"@babel/template" "^7.10.4"
|
255 |
+
"@babel/traverse" "^7.10.4"
|
256 |
+
"@babel/types" "^7.10.4"
|
257 |
+
|
258 |
+
"@babel/helpers@^7.10.4":
|
259 |
+
version "7.10.4"
|
260 |
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
|
261 |
+
integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==
|
262 |
+
dependencies:
|
263 |
+
"@babel/template" "^7.10.4"
|
264 |
+
"@babel/traverse" "^7.10.4"
|
265 |
+
"@babel/types" "^7.10.4"
|
266 |
+
|
267 |
+
"@babel/highlight@^7.10.4":
|
268 |
+
version "7.10.4"
|
269 |
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
|
270 |
+
integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
|
271 |
+
dependencies:
|
272 |
+
"@babel/helper-validator-identifier" "^7.10.4"
|
273 |
+
chalk "^2.0.0"
|
274 |
+
js-tokens "^4.0.0"
|
275 |
+
|
276 |
+
"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.5", "@babel/parser@^7.7.0":
|
277 |
+
version "7.11.5"
|
278 |
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037"
|
279 |
+
integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==
|
280 |
+
|
281 |
+
"@babel/plugin-proposal-async-generator-functions@^7.10.4":
|
282 |
+
version "7.10.5"
|
283 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558"
|
284 |
+
integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==
|
285 |
+
dependencies:
|
286 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
287 |
+
"@babel/helper-remap-async-to-generator" "^7.10.4"
|
288 |
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
289 |
+
|
290 |
+
"@babel/plugin-proposal-class-properties@^7.10.4":
|
291 |
+
version "7.10.4"
|
292 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807"
|
293 |
+
integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==
|
294 |
+
dependencies:
|
295 |
+
"@babel/helper-create-class-features-plugin" "^7.10.4"
|
296 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
297 |
+
|
298 |
+
"@babel/plugin-proposal-dynamic-import@^7.10.4":
|
299 |
+
version "7.10.4"
|
300 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e"
|
301 |
+
integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==
|
302 |
+
dependencies:
|
303 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
304 |
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
305 |
+
|
306 |
+
"@babel/plugin-proposal-export-namespace-from@^7.10.4":
|
307 |
+
version "7.10.4"
|
308 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54"
|
309 |
+
integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==
|
310 |
+
dependencies:
|
311 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
312 |
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
313 |
+
|
314 |
+
"@babel/plugin-proposal-json-strings@^7.10.4":
|
315 |
+
version "7.10.4"
|
316 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db"
|
317 |
+
integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==
|
318 |
+
dependencies:
|
319 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
320 |
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
321 |
+
|
322 |
+
"@babel/plugin-proposal-logical-assignment-operators@^7.11.0":
|
323 |
+
version "7.11.0"
|
324 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8"
|
325 |
+
integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==
|
326 |
+
dependencies:
|
327 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
328 |
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
329 |
+
|
330 |
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4":
|
331 |
+
version "7.10.4"
|
332 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
|
333 |
+
integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==
|
334 |
+
dependencies:
|
335 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
336 |
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
337 |
+
|
338 |
+
"@babel/plugin-proposal-numeric-separator@^7.10.4":
|
339 |
+
version "7.10.4"
|
340 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06"
|
341 |
+
integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==
|
342 |
+
dependencies:
|
343 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
344 |
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
345 |
+
|
346 |
+
"@babel/plugin-proposal-object-rest-spread@^7.11.0":
|
347 |
+
version "7.11.0"
|
348 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
|
349 |
+
integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
|
350 |
+
dependencies:
|
351 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
352 |
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
353 |
+
"@babel/plugin-transform-parameters" "^7.10.4"
|
354 |
+
|
355 |
+
"@babel/plugin-proposal-optional-catch-binding@^7.10.4":
|
356 |
+
version "7.10.4"
|
357 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd"
|
358 |
+
integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==
|
359 |
+
dependencies:
|
360 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
361 |
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
362 |
+
|
363 |
+
"@babel/plugin-proposal-optional-chaining@^7.11.0":
|
364 |
+
version "7.11.0"
|
365 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
|
366 |
+
integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==
|
367 |
+
dependencies:
|
368 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
369 |
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
|
370 |
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
371 |
+
|
372 |
+
"@babel/plugin-proposal-private-methods@^7.10.4":
|
373 |
+
version "7.10.4"
|
374 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909"
|
375 |
+
integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==
|
376 |
+
dependencies:
|
377 |
+
"@babel/helper-create-class-features-plugin" "^7.10.4"
|
378 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
379 |
+
|
380 |
+
"@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
|
381 |
+
version "7.10.4"
|
382 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d"
|
383 |
+
integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==
|
384 |
+
dependencies:
|
385 |
+
"@babel/helper-create-regexp-features-plugin" "^7.10.4"
|
386 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
387 |
+
|
388 |
+
"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4":
|
389 |
+
version "7.8.4"
|
390 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
391 |
+
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
392 |
+
dependencies:
|
393 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
394 |
+
|
395 |
+
"@babel/plugin-syntax-bigint@^7.8.3":
|
396 |
+
version "7.8.3"
|
397 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
|
398 |
+
integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
|
399 |
+
dependencies:
|
400 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
401 |
+
|
402 |
+
"@babel/plugin-syntax-class-properties@^7.10.4", "@babel/plugin-syntax-class-properties@^7.8.3":
|
403 |
+
version "7.10.4"
|
404 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c"
|
405 |
+
integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==
|
406 |
+
dependencies:
|
407 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
408 |
+
|
409 |
+
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
410 |
+
version "7.8.3"
|
411 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
412 |
+
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
413 |
+
dependencies:
|
414 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
415 |
+
|
416 |
+
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
|
417 |
+
version "7.8.3"
|
418 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
|
419 |
+
integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
|
420 |
+
dependencies:
|
421 |
+
"@babel/helper-plugin-utils" "^7.8.3"
|
422 |
+
|
423 |
+
"@babel/plugin-syntax-import-meta@^7.8.3":
|
424 |
+
version "7.10.4"
|
425 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
|
426 |
+
integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
|
427 |
+
dependencies:
|
428 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
429 |
+
|
430 |
+
"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3":
|
431 |
+
version "7.8.3"
|
432 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
433 |
+
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
434 |
+
dependencies:
|
435 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
436 |
+
|
437 |
+
"@babel/plugin-syntax-jsx@^7.10.4":
|
438 |
+
version "7.10.4"
|
439 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c"
|
440 |
+
integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==
|
441 |
+
dependencies:
|
442 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
443 |
+
|
444 |
+
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
|
445 |
+
version "7.10.4"
|
446 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
|
447 |
+
integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
|
448 |
+
dependencies:
|
449 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
450 |
+
|
451 |
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
|
452 |
+
version "7.8.3"
|
453 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
454 |
+
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
455 |
+
dependencies:
|
456 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
457 |
+
|
458 |
+
"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
|
459 |
+
version "7.10.4"
|
460 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
|
461 |
+
integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
|
462 |
+
dependencies:
|
463 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
464 |
+
|
465 |
+
"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
|
466 |
+
version "7.8.3"
|
467 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
468 |
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
469 |
+
dependencies:
|
470 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
471 |
+
|
472 |
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
|
473 |
+
version "7.8.3"
|
474 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
475 |
+
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
476 |
+
dependencies:
|
477 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
478 |
+
|
479 |
+
"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
|
480 |
+
version "7.8.3"
|
481 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
482 |
+
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
483 |
+
dependencies:
|
484 |
+
"@babel/helper-plugin-utils" "^7.8.0"
|
485 |
+
|
486 |
+
"@babel/plugin-syntax-top-level-await@^7.10.4":
|
487 |
+
version "7.10.4"
|
488 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d"
|
489 |
+
integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==
|
490 |
+
dependencies:
|
491 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
492 |
+
|
493 |
+
"@babel/plugin-transform-arrow-functions@^7.10.4":
|
494 |
+
version "7.10.4"
|
495 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd"
|
496 |
+
integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==
|
497 |
+
dependencies:
|
498 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
499 |
+
|
500 |
+
"@babel/plugin-transform-async-to-generator@^7.10.4":
|
501 |
+
version "7.10.4"
|
502 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37"
|
503 |
+
integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==
|
504 |
+
dependencies:
|
505 |
+
"@babel/helper-module-imports" "^7.10.4"
|
506 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
507 |
+
"@babel/helper-remap-async-to-generator" "^7.10.4"
|
508 |
+
|
509 |
+
"@babel/plugin-transform-block-scoped-functions@^7.10.4":
|
510 |
+
version "7.10.4"
|
511 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8"
|
512 |
+
integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==
|
513 |
+
dependencies:
|
514 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
515 |
+
|
516 |
+
"@babel/plugin-transform-block-scoping@^7.10.4":
|
517 |
+
version "7.11.1"
|
518 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
|
519 |
+
integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==
|
520 |
+
dependencies:
|
521 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
522 |
+
|
523 |
+
"@babel/plugin-transform-classes@^7.10.4":
|
524 |
+
version "7.10.4"
|
525 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7"
|
526 |
+
integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==
|
527 |
+
dependencies:
|
528 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
529 |
+
"@babel/helper-define-map" "^7.10.4"
|
530 |
+
"@babel/helper-function-name" "^7.10.4"
|
531 |
+
"@babel/helper-optimise-call-expression" "^7.10.4"
|
532 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
533 |
+
"@babel/helper-replace-supers" "^7.10.4"
|
534 |
+
"@babel/helper-split-export-declaration" "^7.10.4"
|
535 |
+
globals "^11.1.0"
|
536 |
+
|
537 |
+
"@babel/plugin-transform-computed-properties@^7.10.4":
|
538 |
+
version "7.10.4"
|
539 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"
|
540 |
+
integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==
|
541 |
+
dependencies:
|
542 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
543 |
+
|
544 |
+
"@babel/plugin-transform-destructuring@^7.10.4":
|
545 |
+
version "7.10.4"
|
546 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"
|
547 |
+
integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==
|
548 |
+
dependencies:
|
549 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
550 |
+
|
551 |
+
"@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4":
|
552 |
+
version "7.10.4"
|
553 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee"
|
554 |
+
integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==
|
555 |
+
dependencies:
|
556 |
+
"@babel/helper-create-regexp-features-plugin" "^7.10.4"
|
557 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
558 |
+
|
559 |
+
"@babel/plugin-transform-duplicate-keys@^7.10.4":
|
560 |
+
version "7.10.4"
|
561 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47"
|
562 |
+
integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==
|
563 |
+
dependencies:
|
564 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
565 |
+
|
566 |
+
"@babel/plugin-transform-exponentiation-operator@^7.10.4":
|
567 |
+
version "7.10.4"
|
568 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e"
|
569 |
+
integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==
|
570 |
+
dependencies:
|
571 |
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
|
572 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
573 |
+
|
574 |
+
"@babel/plugin-transform-for-of@^7.10.4":
|
575 |
+
version "7.10.4"
|
576 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9"
|
577 |
+
integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==
|
578 |
+
dependencies:
|
579 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
580 |
+
|
581 |
+
"@babel/plugin-transform-function-name@^7.10.4":
|
582 |
+
version "7.10.4"
|
583 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7"
|
584 |
+
integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==
|
585 |
+
dependencies:
|
586 |
+
"@babel/helper-function-name" "^7.10.4"
|
587 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
588 |
+
|
589 |
+
"@babel/plugin-transform-literals@^7.10.4":
|
590 |
+
version "7.10.4"
|
591 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c"
|
592 |
+
integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==
|
593 |
+
dependencies:
|
594 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
595 |
+
|
596 |
+
"@babel/plugin-transform-member-expression-literals@^7.10.4":
|
597 |
+
version "7.10.4"
|
598 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7"
|
599 |
+
integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==
|
600 |
+
dependencies:
|
601 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
602 |
+
|
603 |
+
"@babel/plugin-transform-modules-amd@^7.10.4":
|
604 |
+
version "7.10.5"
|
605 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"
|
606 |
+
integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==
|
607 |
+
dependencies:
|
608 |
+
"@babel/helper-module-transforms" "^7.10.5"
|
609 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
610 |
+
babel-plugin-dynamic-import-node "^2.3.3"
|
611 |
+
|
612 |
+
"@babel/plugin-transform-modules-commonjs@^7.10.4":
|
613 |
+
version "7.10.4"
|
614 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0"
|
615 |
+
integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==
|
616 |
+
dependencies:
|
617 |
+
"@babel/helper-module-transforms" "^7.10.4"
|
618 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
619 |
+
"@babel/helper-simple-access" "^7.10.4"
|
620 |
+
babel-plugin-dynamic-import-node "^2.3.3"
|
621 |
+
|
622 |
+
"@babel/plugin-transform-modules-systemjs@^7.10.4":
|
623 |
+
version "7.10.5"
|
624 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85"
|
625 |
+
integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==
|
626 |
+
dependencies:
|
627 |
+
"@babel/helper-hoist-variables" "^7.10.4"
|
628 |
+
"@babel/helper-module-transforms" "^7.10.5"
|
629 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
630 |
+
babel-plugin-dynamic-import-node "^2.3.3"
|
631 |
+
|
632 |
+
"@babel/plugin-transform-modules-umd@^7.10.4":
|
633 |
+
version "7.10.4"
|
634 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e"
|
635 |
+
integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==
|
636 |
+
dependencies:
|
637 |
+
"@babel/helper-module-transforms" "^7.10.4"
|
638 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
639 |
+
|
640 |
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4":
|
641 |
+
version "7.10.4"
|
642 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6"
|
643 |
+
integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==
|
644 |
+
dependencies:
|
645 |
+
"@babel/helper-create-regexp-features-plugin" "^7.10.4"
|
646 |
+
|
647 |
+
"@babel/plugin-transform-new-target@^7.10.4":
|
648 |
+
version "7.10.4"
|
649 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888"
|
650 |
+
integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==
|
651 |
+
dependencies:
|
652 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
653 |
+
|
654 |
+
"@babel/plugin-transform-object-super@^7.10.4":
|
655 |
+
version "7.10.4"
|
656 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894"
|
657 |
+
integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==
|
658 |
+
dependencies:
|
659 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
660 |
+
"@babel/helper-replace-supers" "^7.10.4"
|
661 |
+
|
662 |
+
"@babel/plugin-transform-parameters@^7.10.4":
|
663 |
+
version "7.10.5"
|
664 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
|
665 |
+
integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==
|
666 |
+
dependencies:
|
667 |
+
"@babel/helper-get-function-arity" "^7.10.4"
|
668 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
669 |
+
|
670 |
+
"@babel/plugin-transform-property-literals@^7.10.4":
|
671 |
+
version "7.10.4"
|
672 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0"
|
673 |
+
integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==
|
674 |
+
dependencies:
|
675 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
676 |
+
|
677 |
+
"@babel/plugin-transform-react-constant-elements@^7.9.0":
|
678 |
+
version "7.10.4"
|
679 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz#0f485260bf1c29012bb973e7e404749eaac12c9e"
|
680 |
+
integrity sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g==
|
681 |
+
dependencies:
|
682 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
683 |
+
|
684 |
+
"@babel/plugin-transform-react-display-name@^7.10.4":
|
685 |
+
version "7.10.4"
|
686 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d"
|
687 |
+
integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==
|
688 |
+
dependencies:
|
689 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
690 |
+
|
691 |
+
"@babel/plugin-transform-react-jsx-development@^7.10.4":
|
692 |
+
version "7.11.5"
|
693 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.11.5.tgz#e1439e6a57ee3d43e9f54ace363fb29cefe5d7b6"
|
694 |
+
integrity sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw==
|
695 |
+
dependencies:
|
696 |
+
"@babel/helper-builder-react-jsx-experimental" "^7.11.5"
|
697 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
698 |
+
"@babel/plugin-syntax-jsx" "^7.10.4"
|
699 |
+
|
700 |
+
"@babel/plugin-transform-react-jsx-self@^7.10.4":
|
701 |
+
version "7.10.4"
|
702 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369"
|
703 |
+
integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==
|
704 |
+
dependencies:
|
705 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
706 |
+
"@babel/plugin-syntax-jsx" "^7.10.4"
|
707 |
+
|
708 |
+
"@babel/plugin-transform-react-jsx-source@^7.10.4":
|
709 |
+
version "7.10.5"
|
710 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4"
|
711 |
+
integrity sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==
|
712 |
+
dependencies:
|
713 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
714 |
+
"@babel/plugin-syntax-jsx" "^7.10.4"
|
715 |
+
|
716 |
+
"@babel/plugin-transform-react-jsx@^7.10.4":
|
717 |
+
version "7.10.4"
|
718 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2"
|
719 |
+
integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==
|
720 |
+
dependencies:
|
721 |
+
"@babel/helper-builder-react-jsx" "^7.10.4"
|
722 |
+
"@babel/helper-builder-react-jsx-experimental" "^7.10.4"
|
723 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
724 |
+
"@babel/plugin-syntax-jsx" "^7.10.4"
|
725 |
+
|
726 |
+
"@babel/plugin-transform-react-pure-annotations@^7.10.4":
|
727 |
+
version "7.10.4"
|
728 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501"
|
729 |
+
integrity sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A==
|
730 |
+
dependencies:
|
731 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
732 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
733 |
+
|
734 |
+
"@babel/plugin-transform-regenerator@^7.10.4":
|
735 |
+
version "7.10.4"
|
736 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63"
|
737 |
+
integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==
|
738 |
+
dependencies:
|
739 |
+
regenerator-transform "^0.14.2"
|
740 |
+
|
741 |
+
"@babel/plugin-transform-reserved-words@^7.10.4":
|
742 |
+
version "7.10.4"
|
743 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd"
|
744 |
+
integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==
|
745 |
+
dependencies:
|
746 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
747 |
+
|
748 |
+
"@babel/plugin-transform-runtime@^7.11.5":
|
749 |
+
version "7.11.5"
|
750 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc"
|
751 |
+
integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg==
|
752 |
+
dependencies:
|
753 |
+
"@babel/helper-module-imports" "^7.10.4"
|
754 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
755 |
+
resolve "^1.8.1"
|
756 |
+
semver "^5.5.1"
|
757 |
+
|
758 |
+
"@babel/plugin-transform-shorthand-properties@^7.10.4":
|
759 |
+
version "7.10.4"
|
760 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"
|
761 |
+
integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==
|
762 |
+
dependencies:
|
763 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
764 |
+
|
765 |
+
"@babel/plugin-transform-spread@^7.11.0":
|
766 |
+
version "7.11.0"
|
767 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
|
768 |
+
integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==
|
769 |
+
dependencies:
|
770 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
771 |
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
|
772 |
+
|
773 |
+
"@babel/plugin-transform-sticky-regex@^7.10.4":
|
774 |
+
version "7.10.4"
|
775 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d"
|
776 |
+
integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==
|
777 |
+
dependencies:
|
778 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
779 |
+
"@babel/helper-regex" "^7.10.4"
|
780 |
+
|
781 |
+
"@babel/plugin-transform-template-literals@^7.10.4":
|
782 |
+
version "7.10.5"
|
783 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
|
784 |
+
integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==
|
785 |
+
dependencies:
|
786 |
+
"@babel/helper-annotate-as-pure" "^7.10.4"
|
787 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
788 |
+
|
789 |
+
"@babel/plugin-transform-typeof-symbol@^7.10.4":
|
790 |
+
version "7.10.4"
|
791 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc"
|
792 |
+
integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==
|
793 |
+
dependencies:
|
794 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
795 |
+
|
796 |
+
"@babel/plugin-transform-unicode-escapes@^7.10.4":
|
797 |
+
version "7.10.4"
|
798 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007"
|
799 |
+
integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==
|
800 |
+
dependencies:
|
801 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
802 |
+
|
803 |
+
"@babel/plugin-transform-unicode-regex@^7.10.4":
|
804 |
+
version "7.10.4"
|
805 |
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8"
|
806 |
+
integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==
|
807 |
+
dependencies:
|
808 |
+
"@babel/helper-create-regexp-features-plugin" "^7.10.4"
|
809 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
810 |
+
|
811 |
+
"@babel/preset-env@^7.11.5", "@babel/preset-env@^7.9.5":
|
812 |
+
version "7.11.5"
|
813 |
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272"
|
814 |
+
integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA==
|
815 |
+
dependencies:
|
816 |
+
"@babel/compat-data" "^7.11.0"
|
817 |
+
"@babel/helper-compilation-targets" "^7.10.4"
|
818 |
+
"@babel/helper-module-imports" "^7.10.4"
|
819 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
820 |
+
"@babel/plugin-proposal-async-generator-functions" "^7.10.4"
|
821 |
+
"@babel/plugin-proposal-class-properties" "^7.10.4"
|
822 |
+
"@babel/plugin-proposal-dynamic-import" "^7.10.4"
|
823 |
+
"@babel/plugin-proposal-export-namespace-from" "^7.10.4"
|
824 |
+
"@babel/plugin-proposal-json-strings" "^7.10.4"
|
825 |
+
"@babel/plugin-proposal-logical-assignment-operators" "^7.11.0"
|
826 |
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4"
|
827 |
+
"@babel/plugin-proposal-numeric-separator" "^7.10.4"
|
828 |
+
"@babel/plugin-proposal-object-rest-spread" "^7.11.0"
|
829 |
+
"@babel/plugin-proposal-optional-catch-binding" "^7.10.4"
|
830 |
+
"@babel/plugin-proposal-optional-chaining" "^7.11.0"
|
831 |
+
"@babel/plugin-proposal-private-methods" "^7.10.4"
|
832 |
+
"@babel/plugin-proposal-unicode-property-regex" "^7.10.4"
|
833 |
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
834 |
+
"@babel/plugin-syntax-class-properties" "^7.10.4"
|
835 |
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
836 |
+
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
837 |
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
838 |
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
839 |
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
840 |
+
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
841 |
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
842 |
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
843 |
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
844 |
+
"@babel/plugin-syntax-top-level-await" "^7.10.4"
|
845 |
+
"@babel/plugin-transform-arrow-functions" "^7.10.4"
|
846 |
+
"@babel/plugin-transform-async-to-generator" "^7.10.4"
|
847 |
+
"@babel/plugin-transform-block-scoped-functions" "^7.10.4"
|
848 |
+
"@babel/plugin-transform-block-scoping" "^7.10.4"
|
849 |
+
"@babel/plugin-transform-classes" "^7.10.4"
|
850 |
+
"@babel/plugin-transform-computed-properties" "^7.10.4"
|
851 |
+
"@babel/plugin-transform-destructuring" "^7.10.4"
|
852 |
+
"@babel/plugin-transform-dotall-regex" "^7.10.4"
|
853 |
+
"@babel/plugin-transform-duplicate-keys" "^7.10.4"
|
854 |
+
"@babel/plugin-transform-exponentiation-operator" "^7.10.4"
|
855 |
+
"@babel/plugin-transform-for-of" "^7.10.4"
|
856 |
+
"@babel/plugin-transform-function-name" "^7.10.4"
|
857 |
+
"@babel/plugin-transform-literals" "^7.10.4"
|
858 |
+
"@babel/plugin-transform-member-expression-literals" "^7.10.4"
|
859 |
+
"@babel/plugin-transform-modules-amd" "^7.10.4"
|
860 |
+
"@babel/plugin-transform-modules-commonjs" "^7.10.4"
|
861 |
+
"@babel/plugin-transform-modules-systemjs" "^7.10.4"
|
862 |
+
"@babel/plugin-transform-modules-umd" "^7.10.4"
|
863 |
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4"
|
864 |
+
"@babel/plugin-transform-new-target" "^7.10.4"
|
865 |
+
"@babel/plugin-transform-object-super" "^7.10.4"
|
866 |
+
"@babel/plugin-transform-parameters" "^7.10.4"
|
867 |
+
"@babel/plugin-transform-property-literals" "^7.10.4"
|
868 |
+
"@babel/plugin-transform-regenerator" "^7.10.4"
|
869 |
+
"@babel/plugin-transform-reserved-words" "^7.10.4"
|
870 |
+
"@babel/plugin-transform-shorthand-properties" "^7.10.4"
|
871 |
+
"@babel/plugin-transform-spread" "^7.11.0"
|
872 |
+
"@babel/plugin-transform-sticky-regex" "^7.10.4"
|
873 |
+
"@babel/plugin-transform-template-literals" "^7.10.4"
|
874 |
+
"@babel/plugin-transform-typeof-symbol" "^7.10.4"
|
875 |
+
"@babel/plugin-transform-unicode-escapes" "^7.10.4"
|
876 |
+
"@babel/plugin-transform-unicode-regex" "^7.10.4"
|
877 |
+
"@babel/preset-modules" "^0.1.3"
|
878 |
+
"@babel/types" "^7.11.5"
|
879 |
+
browserslist "^4.12.0"
|
880 |
+
core-js-compat "^3.6.2"
|
881 |
+
invariant "^2.2.2"
|
882 |
+
levenary "^1.1.1"
|
883 |
+
semver "^5.5.0"
|
884 |
+
|
885 |
+
"@babel/preset-modules@^0.1.3":
|
886 |
+
version "0.1.4"
|
887 |
+
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
|
888 |
+
integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
|
889 |
+
dependencies:
|
890 |
+
"@babel/helper-plugin-utils" "^7.0.0"
|
891 |
+
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
892 |
+
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
893 |
+
"@babel/types" "^7.4.4"
|
894 |
+
esutils "^2.0.2"
|
895 |
+
|
896 |
+
"@babel/preset-react@^7.9.4":
|
897 |
+
version "7.10.4"
|
898 |
+
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf"
|
899 |
+
integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==
|
900 |
+
dependencies:
|
901 |
+
"@babel/helper-plugin-utils" "^7.10.4"
|
902 |
+
"@babel/plugin-transform-react-display-name" "^7.10.4"
|
903 |
+
"@babel/plugin-transform-react-jsx" "^7.10.4"
|
904 |
+
"@babel/plugin-transform-react-jsx-development" "^7.10.4"
|
905 |
+
"@babel/plugin-transform-react-jsx-self" "^7.10.4"
|
906 |
+
"@babel/plugin-transform-react-jsx-source" "^7.10.4"
|
907 |
+
"@babel/plugin-transform-react-pure-annotations" "^7.10.4"
|
908 |
+
|
909 |
+
"@babel/runtime-corejs3@^7.10.2":
|
910 |
+
version "7.11.2"
|
911 |
+
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz#02c3029743150188edeb66541195f54600278419"
|
912 |
+
integrity sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==
|
913 |
+
dependencies:
|
914 |
+
core-js-pure "^3.0.0"
|
915 |
+
regenerator-runtime "^0.13.4"
|
916 |
+
|
917 |
+
"@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4":
|
918 |
+
version "7.11.2"
|
919 |
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
|
920 |
+
integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
|
921 |
+
dependencies:
|
922 |
+
regenerator-runtime "^0.13.4"
|
923 |
+
|
924 |
+
"@babel/template@^7.10.4", "@babel/template@^7.3.3":
|
925 |
+
version "7.10.4"
|
926 |
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
|
927 |
+
integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
|
928 |
+
dependencies:
|
929 |
+
"@babel/code-frame" "^7.10.4"
|
930 |
+
"@babel/parser" "^7.10.4"
|
931 |
+
"@babel/types" "^7.10.4"
|
932 |
+
|
933 |
+
"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5", "@babel/traverse@^7.7.0":
|
934 |
+
version "7.11.5"
|
935 |
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3"
|
936 |
+
integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==
|
937 |
+
dependencies:
|
938 |
+
"@babel/code-frame" "^7.10.4"
|
939 |
+
"@babel/generator" "^7.11.5"
|
940 |
+
"@babel/helper-function-name" "^7.10.4"
|
941 |
+
"@babel/helper-split-export-declaration" "^7.11.0"
|
942 |
+
"@babel/parser" "^7.11.5"
|
943 |
+
"@babel/types" "^7.11.5"
|
944 |
+
debug "^4.1.0"
|
945 |
+
globals "^11.1.0"
|
946 |
+
lodash "^4.17.19"
|
947 |
+
|
948 |
+
"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.9.5":
|
949 |
+
version "7.11.5"
|
950 |
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
|
951 |
+
integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==
|
952 |
+
dependencies:
|
953 |
+
"@babel/helper-validator-identifier" "^7.10.4"
|
954 |
+
lodash "^4.17.19"
|
955 |
+
to-fast-properties "^2.0.0"
|
956 |
+
|
957 |
+
"@bcoe/v8-coverage@^0.2.3":
|
958 |
+
version "0.2.3"
|
959 |
+
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
960 |
+
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
|
961 |
+
|
962 |
+
"@cnakazawa/watch@^1.0.3":
|
963 |
+
version "1.0.4"
|
964 |
+
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
|
965 |
+
integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
|
966 |
+
dependencies:
|
967 |
+
exec-sh "^0.3.2"
|
968 |
+
minimist "^1.2.0"
|
969 |
+
|
970 |
+
"@cypress/listr-verbose-renderer@^0.4.1":
|
971 |
+
version "0.4.1"
|
972 |
+
resolved "https://registry.yarnpkg.com/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a"
|
973 |
+
integrity sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo=
|
974 |
+
dependencies:
|
975 |
+
chalk "^1.1.3"
|
976 |
+
cli-cursor "^1.0.2"
|
977 |
+
date-fns "^1.27.2"
|
978 |
+
figures "^1.7.0"
|
979 |
+
|
980 |
+
"@cypress/request@^2.88.5":
|
981 |
+
version "2.88.5"
|
982 |
+
resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.5.tgz#8d7ecd17b53a849cfd5ab06d5abe7d84976375d7"
|
983 |
+
integrity sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA==
|
984 |
+
dependencies:
|
985 |
+
aws-sign2 "~0.7.0"
|
986 |
+
aws4 "^1.8.0"
|
987 |
+
caseless "~0.12.0"
|
988 |
+
combined-stream "~1.0.6"
|
989 |
+
extend "~3.0.2"
|
990 |
+
forever-agent "~0.6.1"
|
991 |
+
form-data "~2.3.2"
|
992 |
+
har-validator "~5.1.3"
|
993 |
+
http-signature "~1.2.0"
|
994 |
+
is-typedarray "~1.0.0"
|
995 |
+
isstream "~0.1.2"
|
996 |
+
json-stringify-safe "~5.0.1"
|
997 |
+
mime-types "~2.1.19"
|
998 |
+
oauth-sign "~0.9.0"
|
999 |
+
performance-now "^2.1.0"
|
1000 |
+
qs "~6.5.2"
|
1001 |
+
safe-buffer "^5.1.2"
|
1002 |
+
tough-cookie "~2.5.0"
|
1003 |
+
tunnel-agent "^0.6.0"
|
1004 |
+
uuid "^3.3.2"
|
1005 |
+
|
1006 |
+
"@cypress/xvfb@^1.2.4":
|
1007 |
+
version "1.2.4"
|
1008 |
+
resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a"
|
1009 |
+
integrity sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==
|
1010 |
+
dependencies:
|
1011 |
+
debug "^3.1.0"
|
1012 |
+
lodash.once "^4.1.1"
|
1013 |
+
|
1014 |
+
"@eslint/eslintrc@^0.1.3":
|
1015 |
+
version "0.1.3"
|
1016 |
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085"
|
1017 |
+
integrity sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==
|
1018 |
+
dependencies:
|
1019 |
+
ajv "^6.12.4"
|
1020 |
+
debug "^4.1.1"
|
1021 |
+
espree "^7.3.0"
|
1022 |
+
globals "^12.1.0"
|
1023 |
+
ignore "^4.0.6"
|
1024 |
+
import-fresh "^3.2.1"
|
1025 |
+
js-yaml "^3.13.1"
|
1026 |
+
lodash "^4.17.19"
|
1027 |
+
minimatch "^3.0.4"
|
1028 |
+
strip-json-comments "^3.1.1"
|
1029 |
+
|
1030 |
+
"@hapi/address@2.x.x":
|
1031 |
+
version "2.1.4"
|
1032 |
+
resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
|
1033 |
+
integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
|
1034 |
+
|
1035 |
+
"@hapi/bourne@1.x.x":
|
1036 |
+
version "1.3.2"
|
1037 |
+
resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a"
|
1038 |
+
integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
|
1039 |
+
|
1040 |
+
"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0":
|
1041 |
+
version "8.5.1"
|
1042 |
+
resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06"
|
1043 |
+
integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==
|
1044 |
+
|
1045 |
+
"@hapi/joi@^15.0.3":
|
1046 |
+
version "15.1.1"
|
1047 |
+
resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7"
|
1048 |
+
integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==
|
1049 |
+
dependencies:
|
1050 |
+
"@hapi/address" "2.x.x"
|
1051 |
+
"@hapi/bourne" "1.x.x"
|
1052 |
+
"@hapi/hoek" "8.x.x"
|
1053 |
+
"@hapi/topo" "3.x.x"
|
1054 |
+
|
1055 |
+
"@hapi/topo@3.x.x":
|
1056 |
+
version "3.1.6"
|
1057 |
+
resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29"
|
1058 |
+
integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
|
1059 |
+
dependencies:
|
1060 |
+
"@hapi/hoek" "^8.3.0"
|
1061 |
+
|
1062 |
+
"@iarna/cli@^1.2.0":
|
1063 |
+
version "1.2.0"
|
1064 |
+
resolved "https://registry.yarnpkg.com/@iarna/cli/-/cli-1.2.0.tgz#0f7af5e851afe895104583c4ca07377a8094d641"
|
1065 |
+
integrity sha512-ukITQAqVs2n9HGmn3car/Ir7d3ta650iXhrG7pjr3EWdFmJuuOVWgYsu7ftsSe5VifEFFhjxVuX9+8F7L8hwcA==
|
1066 |
+
dependencies:
|
1067 |
+
signal-exit "^3.0.2"
|
1068 |
+
update-notifier "^2.2.0"
|
1069 |
+
yargs "^8.0.2"
|
1070 |
+
|
1071 |
+
"@istanbuljs/load-nyc-config@^1.0.0":
|
1072 |
+
version "1.1.0"
|
1073 |
+
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
|
1074 |
+
integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
|
1075 |
+
dependencies:
|
1076 |
+
camelcase "^5.3.1"
|
1077 |
+
find-up "^4.1.0"
|
1078 |
+
get-package-type "^0.1.0"
|
1079 |
+
js-yaml "^3.13.1"
|
1080 |
+
resolve-from "^5.0.0"
|
1081 |
+
|
1082 |
+
"@istanbuljs/schema@^0.1.2":
|
1083 |
+
version "0.1.2"
|
1084 |
+
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
|
1085 |
+
integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
|
1086 |
+
|
1087 |
+
"@jest/console@^25.5.0":
|
1088 |
+
version "25.5.0"
|
1089 |
+
resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.5.0.tgz#770800799d510f37329c508a9edd0b7b447d9abb"
|
1090 |
+
integrity sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==
|
1091 |
+
dependencies:
|
1092 |
+
"@jest/types" "^25.5.0"
|
1093 |
+
chalk "^3.0.0"
|
1094 |
+
jest-message-util "^25.5.0"
|
1095 |
+
jest-util "^25.5.0"
|
1096 |
+
slash "^3.0.0"
|
1097 |
+
|
1098 |
+
"@jest/core@^25.5.4":
|
1099 |
+
version "25.5.4"
|
1100 |
+
resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.5.4.tgz#3ef7412f7339210f003cdf36646bbca786efe7b4"
|
1101 |
+
integrity sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==
|
1102 |
+
dependencies:
|
1103 |
+
"@jest/console" "^25.5.0"
|
1104 |
+
"@jest/reporters" "^25.5.1"
|
1105 |
+
"@jest/test-result" "^25.5.0"
|
1106 |
+
"@jest/transform" "^25.5.1"
|
1107 |
+
"@jest/types" "^25.5.0"
|
1108 |
+
ansi-escapes "^4.2.1"
|
1109 |
+
chalk "^3.0.0"
|
1110 |
+
exit "^0.1.2"
|
1111 |
+
graceful-fs "^4.2.4"
|
1112 |
+
jest-changed-files "^25.5.0"
|
1113 |
+
jest-config "^25.5.4"
|
1114 |
+
jest-haste-map "^25.5.1"
|
1115 |
+
jest-message-util "^25.5.0"
|
1116 |
+
jest-regex-util "^25.2.6"
|
1117 |
+
jest-resolve "^25.5.1"
|
1118 |
+
jest-resolve-dependencies "^25.5.4"
|
1119 |
+
jest-runner "^25.5.4"
|
1120 |
+
jest-runtime "^25.5.4"
|
1121 |
+
jest-snapshot "^25.5.1"
|
1122 |
+
jest-util "^25.5.0"
|
1123 |
+
jest-validate "^25.5.0"
|
1124 |
+
jest-watcher "^25.5.0"
|
1125 |
+
micromatch "^4.0.2"
|
1126 |
+
p-each-series "^2.1.0"
|
1127 |
+
realpath-native "^2.0.0"
|
1128 |
+
rimraf "^3.0.0"
|
1129 |
+
slash "^3.0.0"
|
1130 |
+
strip-ansi "^6.0.0"
|
1131 |
+
|
1132 |
+
"@jest/environment@^25.5.0":
|
1133 |
+
version "25.5.0"
|
1134 |
+
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.5.0.tgz#aa33b0c21a716c65686638e7ef816c0e3a0c7b37"
|
1135 |
+
integrity sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==
|
1136 |
+
dependencies:
|
1137 |
+
"@jest/fake-timers" "^25.5.0"
|
1138 |
+
"@jest/types" "^25.5.0"
|
1139 |
+
jest-mock "^25.5.0"
|
1140 |
+
|
1141 |
+
"@jest/fake-timers@^25.5.0":
|
1142 |
+
version "25.5.0"
|
1143 |
+
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.5.0.tgz#46352e00533c024c90c2bc2ad9f2959f7f114185"
|
1144 |
+
integrity sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==
|
1145 |
+
dependencies:
|
1146 |
+
"@jest/types" "^25.5.0"
|
1147 |
+
jest-message-util "^25.5.0"
|
1148 |
+
jest-mock "^25.5.0"
|
1149 |
+
jest-util "^25.5.0"
|
1150 |
+
lolex "^5.0.0"
|
1151 |
+
|
1152 |
+
"@jest/globals@^25.5.2":
|
1153 |
+
version "25.5.2"
|
1154 |
+
resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-25.5.2.tgz#5e45e9de8d228716af3257eeb3991cc2e162ca88"
|
1155 |
+
integrity sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==
|
1156 |
+
dependencies:
|
1157 |
+
"@jest/environment" "^25.5.0"
|
1158 |
+
"@jest/types" "^25.5.0"
|
1159 |
+
expect "^25.5.0"
|
1160 |
+
|
1161 |
+
"@jest/reporters@^25.3.0", "@jest/reporters@^25.5.1":
|
1162 |
+
version "25.5.1"
|
1163 |
+
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.5.1.tgz#cb686bcc680f664c2dbaf7ed873e93aa6811538b"
|
1164 |
+
integrity sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==
|
1165 |
+
dependencies:
|
1166 |
+
"@bcoe/v8-coverage" "^0.2.3"
|
1167 |
+
"@jest/console" "^25.5.0"
|
1168 |
+
"@jest/test-result" "^25.5.0"
|
1169 |
+
"@jest/transform" "^25.5.1"
|
1170 |
+
"@jest/types" "^25.5.0"
|
1171 |
+
chalk "^3.0.0"
|
1172 |
+
collect-v8-coverage "^1.0.0"
|
1173 |
+
exit "^0.1.2"
|
1174 |
+
glob "^7.1.2"
|
1175 |
+
graceful-fs "^4.2.4"
|
1176 |
+
istanbul-lib-coverage "^3.0.0"
|
1177 |
+
istanbul-lib-instrument "^4.0.0"
|
1178 |
+
istanbul-lib-report "^3.0.0"
|
1179 |
+
istanbul-lib-source-maps "^4.0.0"
|
1180 |
+
istanbul-reports "^3.0.2"
|
1181 |
+
jest-haste-map "^25.5.1"
|
1182 |
+
jest-resolve "^25.5.1"
|
1183 |
+
jest-util "^25.5.0"
|
1184 |
+
jest-worker "^25.5.0"
|
1185 |
+
slash "^3.0.0"
|
1186 |
+
source-map "^0.6.0"
|
1187 |
+
string-length "^3.1.0"
|
1188 |
+
terminal-link "^2.0.0"
|
1189 |
+
v8-to-istanbul "^4.1.3"
|
1190 |
+
optionalDependencies:
|
1191 |
+
node-notifier "^6.0.0"
|
1192 |
+
|
1193 |
+
"@jest/source-map@^25.5.0":
|
1194 |
+
version "25.5.0"
|
1195 |
+
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.5.0.tgz#df5c20d6050aa292c2c6d3f0d2c7606af315bd1b"
|
1196 |
+
integrity sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==
|
1197 |
+
dependencies:
|
1198 |
+
callsites "^3.0.0"
|
1199 |
+
graceful-fs "^4.2.4"
|
1200 |
+
source-map "^0.6.0"
|
1201 |
+
|
1202 |
+
"@jest/test-result@^25.5.0":
|
1203 |
+
version "25.5.0"
|
1204 |
+
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.5.0.tgz#139a043230cdeffe9ba2d8341b27f2efc77ce87c"
|
1205 |
+
integrity sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==
|
1206 |
+
dependencies:
|
1207 |
+
"@jest/console" "^25.5.0"
|
1208 |
+
"@jest/types" "^25.5.0"
|
1209 |
+
"@types/istanbul-lib-coverage" "^2.0.0"
|
1210 |
+
collect-v8-coverage "^1.0.0"
|
1211 |
+
|
1212 |
+
"@jest/test-sequencer@^25.5.4":
|
1213 |
+
version "25.5.4"
|
1214 |
+
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz#9b4e685b36954c38d0f052e596d28161bdc8b737"
|
1215 |
+
integrity sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==
|
1216 |
+
dependencies:
|
1217 |
+
"@jest/test-result" "^25.5.0"
|
1218 |
+
graceful-fs "^4.2.4"
|
1219 |
+
jest-haste-map "^25.5.1"
|
1220 |
+
jest-runner "^25.5.4"
|
1221 |
+
jest-runtime "^25.5.4"
|
1222 |
+
|
1223 |
+
"@jest/transform@^25.5.1":
|
1224 |
+
version "25.5.1"
|
1225 |
+
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3"
|
1226 |
+
integrity sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==
|
1227 |
+
dependencies:
|
1228 |
+
"@babel/core" "^7.1.0"
|
1229 |
+
"@jest/types" "^25.5.0"
|
1230 |
+
babel-plugin-istanbul "^6.0.0"
|
1231 |
+
chalk "^3.0.0"
|
1232 |
+
convert-source-map "^1.4.0"
|
1233 |
+
fast-json-stable-stringify "^2.0.0"
|
1234 |
+
graceful-fs "^4.2.4"
|
1235 |
+
jest-haste-map "^25.5.1"
|
1236 |
+
jest-regex-util "^25.2.6"
|
1237 |
+
jest-util "^25.5.0"
|
1238 |
+
micromatch "^4.0.2"
|
1239 |
+
pirates "^4.0.1"
|
1240 |
+
realpath-native "^2.0.0"
|
1241 |
+
slash "^3.0.0"
|
1242 |
+
source-map "^0.6.1"
|
1243 |
+
write-file-atomic "^3.0.0"
|
1244 |
+
|
1245 |
+
"@jest/types@^25.5.0":
|
1246 |
+
version "25.5.0"
|
1247 |
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d"
|
1248 |
+
integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==
|
1249 |
+
dependencies:
|
1250 |
+
"@types/istanbul-lib-coverage" "^2.0.0"
|
1251 |
+
"@types/istanbul-reports" "^1.1.1"
|
1252 |
+
"@types/yargs" "^15.0.0"
|
1253 |
+
chalk "^3.0.0"
|
1254 |
+
|
1255 |
+
"@nodelib/fs.scandir@2.1.3":
|
1256 |
+
version "2.1.3"
|
1257 |
+
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
|
1258 |
+
integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
|
1259 |
+
dependencies:
|
1260 |
+
"@nodelib/fs.stat" "2.0.3"
|
1261 |
+
run-parallel "^1.1.9"
|
1262 |
+
|
1263 |
+
"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
|
1264 |
+
version "2.0.3"
|
1265 |
+
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
|
1266 |
+
integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
|
1267 |
+
|
1268 |
+
"@nodelib/fs.walk@^1.2.3":
|
1269 |
+
version "1.2.4"
|
1270 |
+
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
|
1271 |
+
integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
|
1272 |
+
dependencies:
|
1273 |
+
"@nodelib/fs.scandir" "2.1.3"
|
1274 |
+
fastq "^1.6.0"
|
1275 |
+
|
1276 |
+
"@npmcli/move-file@^1.0.1":
|
1277 |
+
version "1.0.1"
|
1278 |
+
resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464"
|
1279 |
+
integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==
|
1280 |
+
dependencies:
|
1281 |
+
mkdirp "^1.0.4"
|
1282 |
+
|
1283 |
+
"@octokit/auth-token@^2.4.0":
|
1284 |
+
version "2.4.2"
|
1285 |
+
resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.2.tgz#10d0ae979b100fa6b72fa0e8e63e27e6d0dbff8a"
|
1286 |
+
integrity sha512-jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ==
|
1287 |
+
dependencies:
|
1288 |
+
"@octokit/types" "^5.0.0"
|
1289 |
+
|
1290 |
+
"@octokit/core@^2.4.3":
|
1291 |
+
version "2.5.4"
|
1292 |
+
resolved "https://registry.yarnpkg.com/@octokit/core/-/core-2.5.4.tgz#f7fbf8e4f86c5cc2497a8887ba2561ec8d358054"
|
1293 |
+
integrity sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==
|
1294 |
+
dependencies:
|
1295 |
+
"@octokit/auth-token" "^2.4.0"
|
1296 |
+
"@octokit/graphql" "^4.3.1"
|
1297 |
+
"@octokit/request" "^5.4.0"
|
1298 |
+
"@octokit/types" "^5.0.0"
|
1299 |
+
before-after-hook "^2.1.0"
|
1300 |
+
universal-user-agent "^5.0.0"
|
1301 |
+
|
1302 |
+
"@octokit/endpoint@^6.0.1":
|
1303 |
+
version "6.0.8"
|
1304 |
+
resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.8.tgz#91b07e236fdb69929c678c6439f7a560dc6058ac"
|
1305 |
+
integrity sha512-MuRrgv+bM4Q+e9uEvxAB/Kf+Sj0O2JAOBA131uo1o6lgdq1iS8ejKwtqHgdfY91V3rN9R/hdGKFiQYMzVzVBEQ==
|
1306 |
+
dependencies:
|
1307 |
+
"@octokit/types" "^5.0.0"
|
1308 |
+
is-plain-object "^5.0.0"
|
1309 |
+
universal-user-agent "^6.0.0"
|
1310 |
+
|
1311 |
+
"@octokit/graphql@^4.3.1":
|
1312 |
+
version "4.5.6"
|
1313 |
+
resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.5.6.tgz#708143ba15cf7c1879ed6188266e7f270be805d4"
|
1314 |
+
integrity sha512-Rry+unqKTa3svswT2ZAuqenpLrzJd+JTv89LTeVa5UM/5OX8o4KTkPL7/1ABq4f/ZkELb0XEK/2IEoYwykcLXg==
|
1315 |
+
dependencies:
|
1316 |
+
"@octokit/request" "^5.3.0"
|
1317 |
+
"@octokit/types" "^5.0.0"
|
1318 |
+
universal-user-agent "^6.0.0"
|
1319 |
+
|
1320 |
+
"@octokit/plugin-paginate-rest@^2.2.0":
|
1321 |
+
version "2.4.0"
|
1322 |
+
resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.4.0.tgz#92f951ddc8a1cd505353fa07650752ca25ed7e93"
|
1323 |
+
integrity sha512-YT6Klz3LLH6/nNgi0pheJnUmTFW4kVnxGft+v8Itc41IIcjl7y1C8TatmKQBbCSuTSNFXO5pCENnqg6sjwpJhg==
|
1324 |
+
dependencies:
|
1325 |
+
"@octokit/types" "^5.5.0"
|
1326 |
+
|
1327 |
+
"@octokit/plugin-request-log@^1.0.0":
|
1328 |
+
version "1.0.0"
|
1329 |
+
resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz#eef87a431300f6148c39a7f75f8cfeb218b2547e"
|
1330 |
+
integrity sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==
|
1331 |
+
|
1332 |
+
"@octokit/plugin-rest-endpoint-methods@3.17.0":
|
1333 |
+
version "3.17.0"
|
1334 |
+
resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.17.0.tgz#d8ba04eb883849dd98666c55bf49d8c9fe7be055"
|
1335 |
+
integrity sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==
|
1336 |
+
dependencies:
|
1337 |
+
"@octokit/types" "^4.1.6"
|
1338 |
+
deprecation "^2.3.1"
|
1339 |
+
|
1340 |
+
"@octokit/request-error@^2.0.0":
|
1341 |
+
version "2.0.2"
|
1342 |
+
resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.2.tgz#0e76b83f5d8fdda1db99027ea5f617c2e6ba9ed0"
|
1343 |
+
integrity sha512-2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw==
|
1344 |
+
dependencies:
|
1345 |
+
"@octokit/types" "^5.0.1"
|
1346 |
+
deprecation "^2.0.0"
|
1347 |
+
once "^1.4.0"
|
1348 |
+
|
1349 |
+
"@octokit/request@^5.3.0", "@octokit/request@^5.4.0":
|
1350 |
+
version "5.4.9"
|
1351 |
+
resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.4.9.tgz#0a46f11b82351b3416d3157261ad9b1558c43365"
|
1352 |
+
integrity sha512-CzwVvRyimIM1h2n9pLVYfTDmX9m+KHSgCpqPsY8F1NdEK8IaWqXhSBXsdjOBFZSpEcxNEeg4p0UO9cQ8EnOCLA==
|
1353 |
+
dependencies:
|
1354 |
+
"@octokit/endpoint" "^6.0.1"
|
1355 |
+
"@octokit/request-error" "^2.0.0"
|
1356 |
+
"@octokit/types" "^5.0.0"
|
1357 |
+
deprecation "^2.0.0"
|
1358 |
+
is-plain-object "^5.0.0"
|
1359 |
+
node-fetch "^2.6.1"
|
1360 |
+
once "^1.4.0"
|
1361 |
+
universal-user-agent "^6.0.0"
|
1362 |
+
|
1363 |
+
"@octokit/rest@^17.0.0":
|
1364 |
+
version "17.11.2"
|
1365 |
+
resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.11.2.tgz#f3dbd46f9f06361c646230fd0ef8598e59183ead"
|
1366 |
+
integrity sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ==
|
1367 |
+
dependencies:
|
1368 |
+
"@octokit/core" "^2.4.3"
|
1369 |
+
"@octokit/plugin-paginate-rest" "^2.2.0"
|
1370 |
+
"@octokit/plugin-request-log" "^1.0.0"
|
1371 |
+
"@octokit/plugin-rest-endpoint-methods" "3.17.0"
|
1372 |
+
|
1373 |
+
"@octokit/types@^4.1.6":
|
1374 |
+
version "4.1.10"
|
1375 |
+
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-4.1.10.tgz#e4029c11e2cc1335051775bc1600e7e740e4aca4"
|
1376 |
+
integrity sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==
|
1377 |
+
dependencies:
|
1378 |
+
"@types/node" ">= 8"
|
1379 |
+
|
1380 |
+
"@octokit/types@^5.0.0", "@octokit/types@^5.0.1", "@octokit/types@^5.5.0":
|
1381 |
+
version "5.5.0"
|
1382 |
+
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-5.5.0.tgz#e5f06e8db21246ca102aa28444cdb13ae17a139b"
|
1383 |
+
integrity sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==
|
1384 |
+
dependencies:
|
1385 |
+
"@types/node" ">= 8"
|
1386 |
+
|
1387 |
+
"@samverschueren/stream-to-observable@^0.3.0":
|
1388 |
+
version "0.3.1"
|
1389 |
+
resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301"
|
1390 |
+
integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==
|
1391 |
+
dependencies:
|
1392 |
+
any-observable "^0.3.0"
|
1393 |
+
|
1394 |
+
"@semantic-release/changelog@^5.0.1":
|
1395 |
+
version "5.0.1"
|
1396 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/changelog/-/changelog-5.0.1.tgz#50a84b63e5d391b7debfe021421589fa2bcdafe4"
|
1397 |
+
integrity sha512-unvqHo5jk4dvAf2nZ3aw4imrlwQ2I50eVVvq9D47Qc3R+keNqepx1vDYwkjF8guFXnOYaYcR28yrZWno1hFbiw==
|
1398 |
+
dependencies:
|
1399 |
+
"@semantic-release/error" "^2.1.0"
|
1400 |
+
aggregate-error "^3.0.0"
|
1401 |
+
fs-extra "^9.0.0"
|
1402 |
+
lodash "^4.17.4"
|
1403 |
+
|
1404 |
+
"@semantic-release/commit-analyzer@^8.0.0":
|
1405 |
+
version "8.0.1"
|
1406 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-8.0.1.tgz#5d2a37cd5a3312da0e3ac05b1ca348bf60b90bca"
|
1407 |
+
integrity sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A==
|
1408 |
+
dependencies:
|
1409 |
+
conventional-changelog-angular "^5.0.0"
|
1410 |
+
conventional-commits-filter "^2.0.0"
|
1411 |
+
conventional-commits-parser "^3.0.7"
|
1412 |
+
debug "^4.0.0"
|
1413 |
+
import-from "^3.0.0"
|
1414 |
+
lodash "^4.17.4"
|
1415 |
+
micromatch "^4.0.2"
|
1416 |
+
|
1417 |
+
"@semantic-release/error@^2.1.0", "@semantic-release/error@^2.2.0":
|
1418 |
+
version "2.2.0"
|
1419 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-2.2.0.tgz#ee9d5a09c9969eade1ec864776aeda5c5cddbbf0"
|
1420 |
+
integrity sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==
|
1421 |
+
|
1422 |
+
"@semantic-release/exec@^5.0.0":
|
1423 |
+
version "5.0.0"
|
1424 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/exec/-/exec-5.0.0.tgz#69c253107a755dabf7c262d417269d099f714356"
|
1425 |
+
integrity sha512-t7LWXIvDJQbuGCy2WmMG51WyaGSLTvZBv9INvcI4S0kn+QjnnVVUMhcioIqhb0r3yqqarMzHVcABFug0q0OXjw==
|
1426 |
+
dependencies:
|
1427 |
+
"@semantic-release/error" "^2.1.0"
|
1428 |
+
aggregate-error "^3.0.0"
|
1429 |
+
debug "^4.0.0"
|
1430 |
+
execa "^4.0.0"
|
1431 |
+
lodash "^4.17.4"
|
1432 |
+
parse-json "^5.0.0"
|
1433 |
+
|
1434 |
+
"@semantic-release/git@^9.0.0":
|
1435 |
+
version "9.0.0"
|
1436 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/git/-/git-9.0.0.tgz#304c4883c87d095b1faaae93300f1f1e0466e9a5"
|
1437 |
+
integrity sha512-AZ4Zha5NAPAciIJH3ipzw/WU9qLAn8ENaoVAhD6srRPxTpTzuV3NhNh14rcAo8Paj9dO+5u4rTKcpetOBluYVw==
|
1438 |
+
dependencies:
|
1439 |
+
"@semantic-release/error" "^2.1.0"
|
1440 |
+
aggregate-error "^3.0.0"
|
1441 |
+
debug "^4.0.0"
|
1442 |
+
dir-glob "^3.0.0"
|
1443 |
+
execa "^4.0.0"
|
1444 |
+
lodash "^4.17.4"
|
1445 |
+
micromatch "^4.0.0"
|
1446 |
+
p-reduce "^2.0.0"
|
1447 |
+
|
1448 |
+
"@semantic-release/github@^7.0.0":
|
1449 |
+
version "7.1.1"
|
1450 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-7.1.1.tgz#e998aa9a9cd770838d9f27c64f060c2b686b9d95"
|
1451 |
+
integrity sha512-w8CLCvGVKNe2FPOYQ68OFxFVNNha7YRzptnwTZYdjXYtgTDKw0XVfnMSd9NlJeQPYGfQmIhIVPNBU/cA6zUY0A==
|
1452 |
+
dependencies:
|
1453 |
+
"@octokit/rest" "^17.0.0"
|
1454 |
+
"@semantic-release/error" "^2.2.0"
|
1455 |
+
aggregate-error "^3.0.0"
|
1456 |
+
bottleneck "^2.18.1"
|
1457 |
+
debug "^4.0.0"
|
1458 |
+
dir-glob "^3.0.0"
|
1459 |
+
fs-extra "^9.0.0"
|
1460 |
+
globby "^11.0.0"
|
1461 |
+
http-proxy-agent "^4.0.0"
|
1462 |
+
https-proxy-agent "^5.0.0"
|
1463 |
+
issue-parser "^6.0.0"
|
1464 |
+
lodash "^4.17.4"
|
1465 |
+
mime "^2.4.3"
|
1466 |
+
p-filter "^2.0.0"
|
1467 |
+
p-retry "^4.0.0"
|
1468 |
+
url-join "^4.0.0"
|
1469 |
+
|
1470 |
+
"@semantic-release/npm@^7.0.0":
|
1471 |
+
version "7.0.6"
|
1472 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-7.0.6.tgz#1301bd57d246eae048d7104a735467bb0829f3d8"
|
1473 |
+
integrity sha512-F4judxdeLe8f7+vDva1TkqNc5Tb2tcltZYW0tLtvP2Xt7CD/gGiz7UxAWEOPsXBvIqAP+uTidvGLPl9U3/uRoQ==
|
1474 |
+
dependencies:
|
1475 |
+
"@semantic-release/error" "^2.2.0"
|
1476 |
+
aggregate-error "^3.0.0"
|
1477 |
+
execa "^4.0.0"
|
1478 |
+
fs-extra "^9.0.0"
|
1479 |
+
lodash "^4.17.15"
|
1480 |
+
nerf-dart "^1.0.0"
|
1481 |
+
normalize-url "^5.0.0"
|
1482 |
+
npm "^6.13.0"
|
1483 |
+
rc "^1.2.8"
|
1484 |
+
read-pkg "^5.0.0"
|
1485 |
+
registry-auth-token "^4.0.0"
|
1486 |
+
semver "^7.1.2"
|
1487 |
+
tempy "^0.5.0"
|
1488 |
+
|
1489 |
+
"@semantic-release/release-notes-generator@^9.0.0":
|
1490 |
+
version "9.0.1"
|
1491 |
+
resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-9.0.1.tgz#732d285d103064f2a64f08a32031551ebb4f918b"
|
1492 |
+
integrity sha512-bOoTiH6SiiR0x2uywSNR7uZcRDl22IpZhj+Q5Bn0v+98MFtOMhCxFhbrKQjhbYoZw7vps1mvMRmFkp/g6R9cvQ==
|
1493 |
+
dependencies:
|
1494 |
+
conventional-changelog-angular "^5.0.0"
|
1495 |
+
conventional-changelog-writer "^4.0.0"
|
1496 |
+
conventional-commits-filter "^2.0.0"
|
1497 |
+
conventional-commits-parser "^3.0.0"
|
1498 |
+
debug "^4.0.0"
|
1499 |
+
get-stream "^5.0.0"
|
1500 |
+
import-from "^3.0.0"
|
1501 |
+
into-stream "^5.0.0"
|
1502 |
+
lodash "^4.17.4"
|
1503 |
+
read-pkg-up "^7.0.0"
|
1504 |
+
|
1505 |
+
"@sinonjs/commons@^1.7.0":
|
1506 |
+
version "1.8.1"
|
1507 |
+
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217"
|
1508 |
+
integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
|
1509 |
+
dependencies:
|
1510 |
+
type-detect "4.0.8"
|
1511 |
+
|
1512 |
+
"@stylelint/postcss-css-in-js@^0.37.2":
|
1513 |
+
version "0.37.2"
|
1514 |
+
resolved "https://registry.yarnpkg.com/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz#7e5a84ad181f4234a2480803422a47b8749af3d2"
|
1515 |
+
integrity sha512-nEhsFoJurt8oUmieT8qy4nk81WRHmJynmVwn/Vts08PL9fhgIsMhk1GId5yAN643OzqEEb5S/6At2TZW7pqPDA==
|
1516 |
+
dependencies:
|
1517 |
+
"@babel/core" ">=7.9.0"
|
1518 |
+
|
1519 |
+
"@stylelint/postcss-markdown@^0.36.1":
|
1520 |
+
version "0.36.1"
|
1521 |
+
resolved "https://registry.yarnpkg.com/@stylelint/postcss-markdown/-/postcss-markdown-0.36.1.tgz#829b87e6c0f108014533d9d7b987dc9efb6632e8"
|
1522 |
+
integrity sha512-iDxMBWk9nB2BPi1VFQ+Dc5+XpvODBHw2n3tYpaBZuEAFQlbtF9If0Qh5LTTwSi/XwdbJ2jt+0dis3i8omyggpw==
|
1523 |
+
dependencies:
|
1524 |
+
remark "^12.0.0"
|
1525 |
+
unist-util-find-all-after "^3.0.1"
|
1526 |
+
|
1527 |
+
"@svgr/babel-plugin-add-jsx-attribute@^5.4.0":
|
1528 |
+
version "5.4.0"
|
1529 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906"
|
1530 |
+
integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
|
1531 |
+
|
1532 |
+
"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0":
|
1533 |
+
version "5.4.0"
|
1534 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef"
|
1535 |
+
integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
|
1536 |
+
|
1537 |
+
"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1":
|
1538 |
+
version "5.0.1"
|
1539 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd"
|
1540 |
+
integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
|
1541 |
+
|
1542 |
+
"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1":
|
1543 |
+
version "5.0.1"
|
1544 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897"
|
1545 |
+
integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
|
1546 |
+
|
1547 |
+
"@svgr/babel-plugin-svg-dynamic-title@^5.4.0":
|
1548 |
+
version "5.4.0"
|
1549 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7"
|
1550 |
+
integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
|
1551 |
+
|
1552 |
+
"@svgr/babel-plugin-svg-em-dimensions@^5.4.0":
|
1553 |
+
version "5.4.0"
|
1554 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0"
|
1555 |
+
integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
|
1556 |
+
|
1557 |
+
"@svgr/babel-plugin-transform-react-native-svg@^5.4.0":
|
1558 |
+
version "5.4.0"
|
1559 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80"
|
1560 |
+
integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
|
1561 |
+
|
1562 |
+
"@svgr/babel-plugin-transform-svg-component@^5.4.0":
|
1563 |
+
version "5.4.0"
|
1564 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.4.0.tgz#a2212b4d018e6075a058bb7e220a66959ef7a03c"
|
1565 |
+
integrity sha512-zLl4Fl3NvKxxjWNkqEcpdSOpQ3LGVH2BNFQ6vjaK6sFo2IrSznrhURIPI0HAphKiiIwNYjAfE0TNoQDSZv0U9A==
|
1566 |
+
|
1567 |
+
"@svgr/babel-preset@^5.4.0":
|
1568 |
+
version "5.4.0"
|
1569 |
+
resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.4.0.tgz#da21854643e1c4ad2279239baa7d5a8b128c1f15"
|
1570 |
+
integrity sha512-Gyx7cCxua04DBtyILTYdQxeO/pwfTBev6+eXTbVbxe4HTGhOUW6yo7PSbG2p6eJMl44j6XSequ0ZDP7bl0nu9A==
|
1571 |
+
dependencies:
|
1572 |
+
"@svgr/babel-plugin-add-jsx-attribute" "^5.4.0"
|
1573 |
+
"@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0"
|
1574 |
+
"@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1"
|
1575 |
+
"@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1"
|
1576 |
+
"@svgr/babel-plugin-svg-dynamic-title" "^5.4.0"
|
1577 |
+
"@svgr/babel-plugin-svg-em-dimensions" "^5.4.0"
|
1578 |
+
"@svgr/babel-plugin-transform-react-native-svg" "^5.4.0"
|
1579 |
+
"@svgr/babel-plugin-transform-svg-component" "^5.4.0"
|
1580 |
+
|
1581 |
+
"@svgr/core@^5.4.0":
|
1582 |
+
version "5.4.0"
|
1583 |
+
resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.4.0.tgz#655378ee43679eb94fee3d4e1976e38252dff8e7"
|
1584 |
+
integrity sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ==
|
1585 |
+
dependencies:
|
1586 |
+
"@svgr/plugin-jsx" "^5.4.0"
|
1587 |
+
camelcase "^6.0.0"
|
1588 |
+
cosmiconfig "^6.0.0"
|
1589 |
+
|
1590 |
+
"@svgr/hast-util-to-babel-ast@^5.4.0":
|
1591 |
+
version "5.4.0"
|
1592 |
+
resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.4.0.tgz#bb5d002e428f510aa5b53ec0a02377a95b367715"
|
1593 |
+
integrity sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg==
|
1594 |
+
dependencies:
|
1595 |
+
"@babel/types" "^7.9.5"
|
1596 |
+
|
1597 |
+
"@svgr/plugin-jsx@^5.4.0":
|
1598 |
+
version "5.4.0"
|
1599 |
+
resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.4.0.tgz#ab47504c55615833c6db70fca2d7e489f509787c"
|
1600 |
+
integrity sha512-SGzO4JZQ2HvGRKDzRga9YFSqOqaNrgLlQVaGvpZ2Iht2gwRp/tq+18Pvv9kS9ZqOMYgyix2LLxZMY1LOe9NPqw==
|
1601 |
+
dependencies:
|
1602 |
+
"@babel/core" "^7.7.5"
|
1603 |
+
"@svgr/babel-preset" "^5.4.0"
|
1604 |
+
"@svgr/hast-util-to-babel-ast" "^5.4.0"
|
1605 |
+
svg-parser "^2.0.2"
|
1606 |
+
|
1607 |
+
"@svgr/plugin-svgo@^5.4.0":
|
1608 |
+
version "5.4.0"
|
1609 |
+
resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.4.0.tgz#45d9800b7099a6f7b4d85ebac89ab9abe8592f64"
|
1610 |
+
integrity sha512-3Cgv3aYi1l6SHyzArV9C36yo4kgwVdF3zPQUC6/aCDUeXAofDYwE5kk3e3oT5ZO2a0N3lB+lLGvipBG6lnG8EA==
|
1611 |
+
dependencies:
|
1612 |
+
cosmiconfig "^6.0.0"
|
1613 |
+
merge-deep "^3.0.2"
|
1614 |
+
svgo "^1.2.2"
|
1615 |
+
|
1616 |
+
"@svgr/webpack@^5.2.0":
|
1617 |
+
version "5.4.0"
|
1618 |
+
resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.4.0.tgz#b68bc86e29cf007292b96ced65f80971175632e0"
|
1619 |
+
integrity sha512-LjepnS/BSAvelnOnnzr6Gg0GcpLmnZ9ThGFK5WJtm1xOqdBE/1IACZU7MMdVzjyUkfFqGz87eRE4hFaSLiUwYg==
|
1620 |
+
dependencies:
|
1621 |
+
"@babel/core" "^7.9.0"
|
1622 |
+
"@babel/plugin-transform-react-constant-elements" "^7.9.0"
|
1623 |
+
"@babel/preset-env" "^7.9.5"
|
1624 |
+
"@babel/preset-react" "^7.9.4"
|
1625 |
+
"@svgr/core" "^5.4.0"
|
1626 |
+
"@svgr/plugin-jsx" "^5.4.0"
|
1627 |
+
"@svgr/plugin-svgo" "^5.4.0"
|
1628 |
+
loader-utils "^2.0.0"
|
1629 |
+
|
1630 |
+
"@tootallnate/once@1":
|
1631 |
+
version "1.1.2"
|
1632 |
+
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
|
1633 |
+
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
|
1634 |
+
|
1635 |
+
"@types/anymatch@*":
|
1636 |
+
version "1.3.1"
|
1637 |
+
resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a"
|
1638 |
+
integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==
|
1639 |
+
|
1640 |
+
"@types/babel__core@^7.1.7":
|
1641 |
+
version "7.1.10"
|
1642 |
+
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.10.tgz#ca58fc195dd9734e77e57c6f2df565623636ab40"
|
1643 |
+
integrity sha512-x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw==
|
1644 |
+
dependencies:
|
1645 |
+
"@babel/parser" "^7.1.0"
|
1646 |
+
"@babel/types" "^7.0.0"
|
1647 |
+
"@types/babel__generator" "*"
|
1648 |
+
"@types/babel__template" "*"
|
1649 |
+
"@types/babel__traverse" "*"
|
1650 |
+
|
1651 |
+
"@types/babel__generator@*":
|
1652 |
+
version "7.6.2"
|
1653 |
+
resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8"
|
1654 |
+
integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==
|
1655 |
+
dependencies:
|
1656 |
+
"@babel/types" "^7.0.0"
|
1657 |
+
|
1658 |
+
"@types/babel__template@*":
|
1659 |
+
version "7.0.3"
|
1660 |
+
resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.3.tgz#b8aaeba0a45caca7b56a5de9459872dde3727214"
|
1661 |
+
integrity sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==
|
1662 |
+
dependencies:
|
1663 |
+
"@babel/parser" "^7.1.0"
|
1664 |
+
"@babel/types" "^7.0.0"
|
1665 |
+
|
1666 |
+
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
|
1667 |
+
version "7.0.15"
|
1668 |
+
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.15.tgz#db9e4238931eb69ef8aab0ad6523d4d4caa39d03"
|
1669 |
+
integrity sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==
|
1670 |
+
dependencies:
|
1671 |
+
"@babel/types" "^7.3.0"
|
1672 |
+
|
1673 |
+
"@types/cheerio@^0.22.22":
|
1674 |
+
version "0.22.22"
|
1675 |
+
resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.22.tgz#ae71cf4ca59b8bbaf34c99af7a5d6c8894988f5f"
|
1676 |
+
integrity sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA==
|
1677 |
+
dependencies:
|
1678 |
+
"@types/node" "*"
|
1679 |
+
|
1680 |
+
"@types/glob@^7.1.1":
|
1681 |
+
version "7.1.3"
|
1682 |
+
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
|
1683 |
+
integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
|
1684 |
+
dependencies:
|
1685 |
+
"@types/minimatch" "*"
|
1686 |
+
"@types/node" "*"
|
1687 |
+
|
1688 |
+
"@types/graceful-fs@^4.1.2":
|
1689 |
+
version "4.1.3"
|
1690 |
+
resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f"
|
1691 |
+
integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==
|
1692 |
+
dependencies:
|
1693 |
+
"@types/node" "*"
|
1694 |
+
|
1695 |
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
|
1696 |
+
version "2.0.3"
|
1697 |
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
|
1698 |
+
integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
|
1699 |
+
|
1700 |
+
"@types/istanbul-lib-report@*":
|
1701 |
+
version "3.0.0"
|
1702 |
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
|
1703 |
+
integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
|
1704 |
+
dependencies:
|
1705 |
+
"@types/istanbul-lib-coverage" "*"
|
1706 |
+
|
1707 |
+
"@types/istanbul-reports@^1.1.1":
|
1708 |
+
version "1.1.2"
|
1709 |
+
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2"
|
1710 |
+
integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==
|
1711 |
+
dependencies:
|
1712 |
+
"@types/istanbul-lib-coverage" "*"
|
1713 |
+
"@types/istanbul-lib-report" "*"
|
1714 |
+
|
1715 |
+
"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5":
|
1716 |
+
version "7.0.6"
|
1717 |
+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
|
1718 |
+
integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
|
1719 |
+
|
1720 |
+
"@types/mime-types@^2.1.0":
|
1721 |
+
version "2.1.0"
|
1722 |
+
resolved "https://registry.yarnpkg.com/@types/mime-types/-/mime-types-2.1.0.tgz#9ca52cda363f699c69466c2a6ccdaad913ea7a73"
|
1723 |
+
integrity sha1-nKUs2jY/aZxpRmwqbM2q2RPqenM=
|
1724 |
+
|
1725 |
+
"@types/minimatch@*":
|
1726 |
+
version "3.0.3"
|
1727 |
+
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
|
1728 |
+
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
|
1729 |
+
|
1730 |
+
"@types/minimist@^1.2.0":
|
1731 |
+
version "1.2.0"
|
1732 |
+
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6"
|
1733 |
+
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
|
1734 |
+
|
1735 |
+
"@types/node@*", "@types/node@>= 8":
|
1736 |
+
version "14.11.5"
|
1737 |
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.5.tgz#fecad41c041cae7f2404ad4b2d0742fdb628b305"
|
1738 |
+
integrity sha512-jVFzDV6NTbrLMxm4xDSIW/gKnk8rQLF9wAzLWIOg+5nU6ACrIMndeBdXci0FGtqJbP9tQvm6V39eshc96TO2wQ==
|
1739 |
+
|
1740 |
+
"@types/normalize-package-data@^2.4.0":
|
1741 |
+
version "2.4.0"
|
1742 |
+
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
|
1743 |
+
integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
|
1744 |
+
|
1745 |
+
"@types/parse-json@^4.0.0":
|
1746 |
+
version "4.0.0"
|
1747 |
+
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
1748 |
+
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
1749 |
+
|
1750 |
+
"@types/prettier@^1.19.0":
|
1751 |
+
version "1.19.1"
|
1752 |
+
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f"
|
1753 |
+
integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==
|
1754 |
+
|
1755 |
+
"@types/prop-types@*":
|
1756 |
+
version "15.7.3"
|
1757 |
+
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
|
1758 |
+
integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
|
1759 |
+
|
1760 |
+
"@types/q@^1.5.1":
|
1761 |
+
version "1.5.4"
|
1762 |
+
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
|
1763 |
+
integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
|
1764 |
+
|
1765 |
+
"@types/react-dom@^16.9.0":
|
1766 |
+
version "16.9.8"
|
1767 |
+
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423"
|
1768 |
+
integrity sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA==
|
1769 |
+
dependencies:
|
1770 |
+
"@types/react" "*"
|
1771 |
+
|
1772 |
+
"@types/react@*", "@types/react@^16.9.0":
|
1773 |
+
version "16.9.51"
|
1774 |
+
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.51.tgz#f8aa51ffa9996f1387f63686696d9b59713d2b60"
|
1775 |
+
integrity sha512-lQa12IyO+DMlnSZ3+AGHRUiUcpK47aakMMoBG8f7HGxJT8Yfe+WE128HIXaHOHVPReAW0oDS3KAI0JI2DDe1PQ==
|
1776 |
+
dependencies:
|
1777 |
+
"@types/prop-types" "*"
|
1778 |
+
csstype "^3.0.2"
|
1779 |
+
|
1780 |
+
"@types/retry@^0.12.0":
|
1781 |
+
version "0.12.0"
|
1782 |
+
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
|
1783 |
+
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
|
1784 |
+
|
1785 |
+
"@types/sinonjs__fake-timers@^6.0.1":
|
1786 |
+
version "6.0.2"
|
1787 |
+
resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz#3a84cf5ec3249439015e14049bd3161419bf9eae"
|
1788 |
+
integrity sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg==
|
1789 |
+
|
1790 |
+
"@types/sizzle@^2.3.2":
|
1791 |
+
version "2.3.2"
|
1792 |
+
resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47"
|
1793 |
+
integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==
|
1794 |
+
|
1795 |
+
"@types/source-list-map@*":
|
1796 |
+
version "0.1.2"
|
1797 |
+
resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
|
1798 |
+
integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
|
1799 |
+
|
1800 |
+
"@types/stack-utils@^1.0.1":
|
1801 |
+
version "1.0.1"
|
1802 |
+
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
|
1803 |
+
integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
|
1804 |
+
|
1805 |
+
"@types/tapable@*":
|
1806 |
+
version "1.0.6"
|
1807 |
+
resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74"
|
1808 |
+
integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==
|
1809 |
+
|
1810 |
+
"@types/uglify-js@*":
|
1811 |
+
version "3.11.0"
|
1812 |
+
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.0.tgz#2868d405cc45cd9dc3069179052103032c33afbc"
|
1813 |
+
integrity sha512-I0Yd8TUELTbgRHq2K65j8rnDPAzAP+DiaF/syLem7yXwYLsHZhPd+AM2iXsWmf9P2F2NlFCgl5erZPQx9IbM9Q==
|
1814 |
+
dependencies:
|
1815 |
+
source-map "^0.6.1"
|
1816 |
+
|
1817 |
+
"@types/unist@^2.0.0", "@types/unist@^2.0.2":
|
1818 |
+
version "2.0.3"
|
1819 |
+
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
|
1820 |
+
integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
|
1821 |
+
|
1822 |
+
"@types/webpack-sources@*":
|
1823 |
+
version "2.0.0"
|
1824 |
+
resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.0.0.tgz#08216ab9be2be2e1499beaebc4d469cec81e82a7"
|
1825 |
+
integrity sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==
|
1826 |
+
dependencies:
|
1827 |
+
"@types/node" "*"
|
1828 |
+
"@types/source-list-map" "*"
|
1829 |
+
source-map "^0.7.3"
|
1830 |
+
|
1831 |
+
"@types/webpack@^4.4.31":
|
1832 |
+
version "4.41.22"
|
1833 |
+
resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.22.tgz#ff9758a17c6bd499e459b91e78539848c32d0731"
|
1834 |
+
integrity sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ==
|
1835 |
+
dependencies:
|
1836 |
+
"@types/anymatch" "*"
|
1837 |
+
"@types/node" "*"
|
1838 |
+
"@types/tapable" "*"
|
1839 |
+
"@types/uglify-js" "*"
|
1840 |
+
"@types/webpack-sources" "*"
|
1841 |
+
source-map "^0.6.0"
|
1842 |
+
|
1843 |
+
"@types/yargs-parser@*":
|
1844 |
+
version "15.0.0"
|
1845 |
+
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d"
|
1846 |
+
integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
|
1847 |
+
|
1848 |
+
"@types/yargs@^15.0.0":
|
1849 |
+
version "15.0.7"
|
1850 |
+
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.7.tgz#dad50a7a234a35ef9460737a56024287a3de1d2b"
|
1851 |
+
integrity sha512-Gf4u3EjaPNcC9cTu4/j2oN14nSVhr8PQ+BvBcBQHAhDZfl0bVIiLgvnRXv/dn58XhTm9UXvBpvJpDlwV65QxOA==
|
1852 |
+
dependencies:
|
1853 |
+
"@types/yargs-parser" "*"
|
1854 |
+
|
1855 |
+
"@types/yauzl@^2.9.1":
|
1856 |
+
version "2.9.1"
|
1857 |
+
resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.1.tgz#d10f69f9f522eef3cf98e30afb684a1e1ec923af"
|
1858 |
+
integrity sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==
|
1859 |
+
dependencies:
|
1860 |
+
"@types/node" "*"
|
1861 |
+
|
1862 |
+
"@typescript-eslint/experimental-utils@^2.5.0":
|
1863 |
+
version "2.34.0"
|
1864 |
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"
|
1865 |
+
integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==
|
1866 |
+
dependencies:
|
1867 |
+
"@types/json-schema" "^7.0.3"
|
1868 |
+
"@typescript-eslint/typescript-estree" "2.34.0"
|
1869 |
+
eslint-scope "^5.0.0"
|
1870 |
+
eslint-utils "^2.0.0"
|
1871 |
+
|
1872 |
+
"@typescript-eslint/typescript-estree@2.34.0":
|
1873 |
+
version "2.34.0"
|
1874 |
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5"
|
1875 |
+
integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==
|
1876 |
+
dependencies:
|
1877 |
+
debug "^4.1.1"
|
1878 |
+
eslint-visitor-keys "^1.1.0"
|
1879 |
+
glob "^7.1.6"
|
1880 |
+
is-glob "^4.0.1"
|
1881 |
+
lodash "^4.17.15"
|
1882 |
+
semver "^7.3.2"
|
1883 |
+
tsutils "^3.17.1"
|
1884 |
+
|
1885 |
+
"@webassemblyjs/ast@1.9.0":
|
1886 |
+
version "1.9.0"
|
1887 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
|
1888 |
+
integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
|
1889 |
+
dependencies:
|
1890 |
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
1891 |
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1892 |
+
"@webassemblyjs/wast-parser" "1.9.0"
|
1893 |
+
|
1894 |
+
"@webassemblyjs/floating-point-hex-parser@1.9.0":
|
1895 |
+
version "1.9.0"
|
1896 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
|
1897 |
+
integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
|
1898 |
+
|
1899 |
+
"@webassemblyjs/helper-api-error@1.9.0":
|
1900 |
+
version "1.9.0"
|
1901 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
|
1902 |
+
integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
|
1903 |
+
|
1904 |
+
"@webassemblyjs/helper-buffer@1.9.0":
|
1905 |
+
version "1.9.0"
|
1906 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
|
1907 |
+
integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
|
1908 |
+
|
1909 |
+
"@webassemblyjs/helper-code-frame@1.9.0":
|
1910 |
+
version "1.9.0"
|
1911 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
|
1912 |
+
integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
|
1913 |
+
dependencies:
|
1914 |
+
"@webassemblyjs/wast-printer" "1.9.0"
|
1915 |
+
|
1916 |
+
"@webassemblyjs/helper-fsm@1.9.0":
|
1917 |
+
version "1.9.0"
|
1918 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
|
1919 |
+
integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
|
1920 |
+
|
1921 |
+
"@webassemblyjs/helper-module-context@1.9.0":
|
1922 |
+
version "1.9.0"
|
1923 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
|
1924 |
+
integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
|
1925 |
+
dependencies:
|
1926 |
+
"@webassemblyjs/ast" "1.9.0"
|
1927 |
+
|
1928 |
+
"@webassemblyjs/helper-wasm-bytecode@1.9.0":
|
1929 |
+
version "1.9.0"
|
1930 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
|
1931 |
+
integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
|
1932 |
+
|
1933 |
+
"@webassemblyjs/helper-wasm-section@1.9.0":
|
1934 |
+
version "1.9.0"
|
1935 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
|
1936 |
+
integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
|
1937 |
+
dependencies:
|
1938 |
+
"@webassemblyjs/ast" "1.9.0"
|
1939 |
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1940 |
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1941 |
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1942 |
+
|
1943 |
+
"@webassemblyjs/ieee754@1.9.0":
|
1944 |
+
version "1.9.0"
|
1945 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
|
1946 |
+
integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
|
1947 |
+
dependencies:
|
1948 |
+
"@xtuc/ieee754" "^1.2.0"
|
1949 |
+
|
1950 |
+
"@webassemblyjs/leb128@1.9.0":
|
1951 |
+
version "1.9.0"
|
1952 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
|
1953 |
+
integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
|
1954 |
+
dependencies:
|
1955 |
+
"@xtuc/long" "4.2.2"
|
1956 |
+
|
1957 |
+
"@webassemblyjs/utf8@1.9.0":
|
1958 |
+
version "1.9.0"
|
1959 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
|
1960 |
+
integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
|
1961 |
+
|
1962 |
+
"@webassemblyjs/wasm-edit@1.9.0":
|
1963 |
+
version "1.9.0"
|
1964 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
|
1965 |
+
integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
|
1966 |
+
dependencies:
|
1967 |
+
"@webassemblyjs/ast" "1.9.0"
|
1968 |
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1969 |
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1970 |
+
"@webassemblyjs/helper-wasm-section" "1.9.0"
|
1971 |
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1972 |
+
"@webassemblyjs/wasm-opt" "1.9.0"
|
1973 |
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
1974 |
+
"@webassemblyjs/wast-printer" "1.9.0"
|
1975 |
+
|
1976 |
+
"@webassemblyjs/wasm-gen@1.9.0":
|
1977 |
+
version "1.9.0"
|
1978 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
|
1979 |
+
integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
|
1980 |
+
dependencies:
|
1981 |
+
"@webassemblyjs/ast" "1.9.0"
|
1982 |
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1983 |
+
"@webassemblyjs/ieee754" "1.9.0"
|
1984 |
+
"@webassemblyjs/leb128" "1.9.0"
|
1985 |
+
"@webassemblyjs/utf8" "1.9.0"
|
1986 |
+
|
1987 |
+
"@webassemblyjs/wasm-opt@1.9.0":
|
1988 |
+
version "1.9.0"
|
1989 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
|
1990 |
+
integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
|
1991 |
+
dependencies:
|
1992 |
+
"@webassemblyjs/ast" "1.9.0"
|
1993 |
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1994 |
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1995 |
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
1996 |
+
|
1997 |
+
"@webassemblyjs/wasm-parser@1.9.0":
|
1998 |
+
version "1.9.0"
|
1999 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
|
2000 |
+
integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
|
2001 |
+
dependencies:
|
2002 |
+
"@webassemblyjs/ast" "1.9.0"
|
2003 |
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
2004 |
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
2005 |
+
"@webassemblyjs/ieee754" "1.9.0"
|
2006 |
+
"@webassemblyjs/leb128" "1.9.0"
|
2007 |
+
"@webassemblyjs/utf8" "1.9.0"
|
2008 |
+
|
2009 |
+
"@webassemblyjs/wast-parser@1.9.0":
|
2010 |
+
version "1.9.0"
|
2011 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
|
2012 |
+
integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
|
2013 |
+
dependencies:
|
2014 |
+
"@webassemblyjs/ast" "1.9.0"
|
2015 |
+
"@webassemblyjs/floating-point-hex-parser" "1.9.0"
|
2016 |
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
2017 |
+
"@webassemblyjs/helper-code-frame" "1.9.0"
|
2018 |
+
"@webassemblyjs/helper-fsm" "1.9.0"
|
2019 |
+
"@xtuc/long" "4.2.2"
|
2020 |
+
|
2021 |
+
"@webassemblyjs/wast-printer@1.9.0":
|
2022 |
+
version "1.9.0"
|
2023 |
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
|
2024 |
+
integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
|
2025 |
+
dependencies:
|
2026 |
+
"@webassemblyjs/ast" "1.9.0"
|
2027 |
+
"@webassemblyjs/wast-parser" "1.9.0"
|
2028 |
+
"@xtuc/long" "4.2.2"
|
2029 |
+
|
2030 |
+
"@wordpress/babel-plugin-import-jsx-pragma@^2.7.0":
|
2031 |
+
version "2.7.0"
|
2032 |
+
resolved "https://registry.yarnpkg.com/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-2.7.0.tgz#30fcdb6bb3a3eb37f551021aac338918455782eb"
|
2033 |
+
integrity sha512-yR+rSyfHKfevW84vKBOERpjEslD/o00CaYMftywVYOjsOQ8GLS6xv/VgDcpQ8JomJ9eRRInLRpeGKTM3lOa4xQ==
|
2034 |
+
|
2035 |
+
"@wordpress/babel-preset-default@^4.19.0":
|
2036 |
+
version "4.19.0"
|
2037 |
+
resolved "https://registry.yarnpkg.com/@wordpress/babel-preset-default/-/babel-preset-default-4.19.0.tgz#6362df46b703fda8f30ce40868b2bc804e8807d2"
|
2038 |
+
integrity sha512-b/DQ17UGqWm5Z/c1j+wF8kW3Sqeg7e0CVFKeNd+uoI6wH+ruRsOcS7e0iutjQcwOLmvaZ3TYh48jjfkMBnLBqA==
|
2039 |
+
dependencies:
|
2040 |
+
"@babel/core" "^7.11.6"
|
2041 |
+
"@babel/plugin-transform-react-jsx" "^7.10.4"
|
2042 |
+
"@babel/plugin-transform-runtime" "^7.11.5"
|
2043 |
+
"@babel/preset-env" "^7.11.5"
|
2044 |
+
"@babel/runtime" "^7.11.2"
|
2045 |
+
"@wordpress/babel-plugin-import-jsx-pragma" "^2.7.0"
|
2046 |
+
"@wordpress/browserslist-config" "^2.7.0"
|
2047 |
+
"@wordpress/element" "^2.18.0"
|
2048 |
+
"@wordpress/warning" "^1.3.0"
|
2049 |
+
core-js "^3.6.4"
|
2050 |
+
|
2051 |
+
"@wordpress/base-styles@^3.1.0":
|
2052 |
+
version "3.1.0"
|
2053 |
+
resolved "https://registry.yarnpkg.com/@wordpress/base-styles/-/base-styles-3.1.0.tgz#a624756bd80971573a50eee4247f13c0f774f52a"
|
2054 |
+
integrity sha512-+HR6Cw0E95IHLixWmDCy54kMCmPxTxwAx7UTkJY/9YvOZyK8Nu3plWbX4c/6MhsASJ9RVFVhJPSJWleQ8bDEkQ==
|
2055 |
+
|
2056 |
+
"@wordpress/browserslist-config@^2.7.0":
|
2057 |
+
version "2.7.0"
|
2058 |
+
resolved "https://registry.yarnpkg.com/@wordpress/browserslist-config/-/browserslist-config-2.7.0.tgz#37e39ede39bec5a540dc93b96569787025aadc83"
|
2059 |
+
integrity sha512-pB45JlfmHuEigNFZ1X+CTgIsOT3/TTb9iZxw1DHXge/7ytY8FNhtcNwTfF9IgnS6/xaFRZBqzw4DyH4sP1Lyxg==
|
2060 |
+
|
2061 |
+
"@wordpress/dependency-extraction-webpack-plugin@^2.8.0":
|
2062 |
+
version "2.8.0"
|
2063 |
+
resolved "https://registry.yarnpkg.com/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-2.8.0.tgz#699ba0b3555217fd9a844e5f9f4de486d4a89cba"
|
2064 |
+
integrity sha512-fEOsSl1kYY8gkiAe7OM9IopmSOtaAug37OQwKVeda5fK6xLsnpqprP5iwHHOApNWMEzgmVGS6/iW5IZoi7qv/A==
|
2065 |
+
dependencies:
|
2066 |
+
json2php "^0.0.4"
|
2067 |
+
webpack "^4.8.3"
|
2068 |
+
webpack-sources "^1.3.0"
|
2069 |
+
|
2070 |
+
"@wordpress/element@^2.18.0":
|
2071 |
+
version "2.18.0"
|
2072 |
+
resolved "https://registry.yarnpkg.com/@wordpress/element/-/element-2.18.0.tgz#6ccdaf05f49831058103ec111ab4744df030c335"
|
2073 |
+
integrity sha512-aR1gOXFxIDcrLCSANe5PwOwYH40n29LzjqBascNkFo6f0LBekCZPbI3Bqq4EtoH/zjq2RKAO9PVPlQRDoQUlmA==
|
2074 |
+
dependencies:
|
2075 |
+
"@babel/runtime" "^7.11.2"
|
2076 |
+
"@types/react" "^16.9.0"
|
2077 |
+
"@types/react-dom" "^16.9.0"
|
2078 |
+
"@wordpress/escape-html" "^1.10.0"
|
2079 |
+
lodash "^4.17.19"
|
2080 |
+
react "^16.13.1"
|
2081 |
+
react-dom "^16.13.1"
|
2082 |
+
|
2083 |
+
"@wordpress/escape-html@^1.10.0":
|
2084 |
+
version "1.10.0"
|
2085 |
+
resolved "https://registry.yarnpkg.com/@wordpress/escape-html/-/escape-html-1.10.0.tgz#72e2b502e2f77a7feb32c8c4504f5cda9f4ea5f6"
|
2086 |
+
integrity sha512-peG+Ypnw8L3YiUWSe/3Nmyzlaoqqbn5JaBaLpL0o6pBxFvGwKr00fFJoi+Yq2yZ3LEFDrHBHlVYAB6A2aYIbew==
|
2087 |
+
dependencies:
|
2088 |
+
"@babel/runtime" "^7.11.2"
|
2089 |
+
|
2090 |
+
"@wordpress/eslint-plugin@^7.2.1", "@wordpress/eslint-plugin@^7.3.0":
|
2091 |
+
version "7.3.0"
|
2092 |
+
resolved "https://registry.yarnpkg.com/@wordpress/eslint-plugin/-/eslint-plugin-7.3.0.tgz#a97ae738dcae052d4677f0e131d6cb58888b240a"
|
2093 |
+
integrity sha512-7wIFzzc14E1XuuT9haBuhoA9FRUGWlbD4Oek+XkiZlzNVqZI3slgbtIFJ6/Mfij1V18rv6Ns9a1cPJLtCU8JHQ==
|
2094 |
+
dependencies:
|
2095 |
+
"@wordpress/prettier-config" "^0.4.0"
|
2096 |
+
babel-eslint "^10.1.0"
|
2097 |
+
cosmiconfig "^7.0.0"
|
2098 |
+
eslint-config-prettier "^6.10.1"
|
2099 |
+
eslint-plugin-jest "^23.8.2"
|
2100 |
+
eslint-plugin-jsdoc "^30.2.2"
|
2101 |
+
eslint-plugin-jsx-a11y "^6.2.3"
|
2102 |
+
eslint-plugin-prettier "^3.1.2"
|
2103 |
+
eslint-plugin-react "^7.20.0"
|
2104 |
+
eslint-plugin-react-hooks "^4.0.4"
|
2105 |
+
globals "^12.0.0"
|
2106 |
+
prettier "npm:wp-prettier@2.0.5"
|
2107 |
+
requireindex "^1.2.0"
|
2108 |
+
|
2109 |
+
"@wordpress/jest-console@^3.9.0":
|
2110 |
+
version "3.9.0"
|
2111 |
+
resolved "https://registry.yarnpkg.com/@wordpress/jest-console/-/jest-console-3.9.0.tgz#88a81585e7d95dd1957994b5c9d83e82d9fe8a1a"
|
2112 |
+
integrity sha512-SJU78Gku3BC5iXrcEAAkER/sBkguYAhaA+HVI4FARklsOfmdBbElrA5wjU0lY54CGTSqWHLy0YZJkaZ5V/YWXA==
|
2113 |
+
dependencies:
|
2114 |
+
"@babel/runtime" "^7.11.2"
|
2115 |
+
jest-matcher-utils "^25.3.0"
|
2116 |
+
lodash "^4.17.19"
|
2117 |
+
|
2118 |
+
"@wordpress/jest-preset-default@^6.4.0":
|
2119 |
+
version "6.4.0"
|
2120 |
+
resolved "https://registry.yarnpkg.com/@wordpress/jest-preset-default/-/jest-preset-default-6.4.0.tgz#f027d8f81d2009703a4dbdcd8557f129be6d1dc2"
|
2121 |
+
integrity sha512-xey6qdRFnK3apC9qOjP5zsw+CsaEIyp6DBmeEgz8QXVd3kI9lE31HarKI/eBY7RBe0hSYLxUJ8tEuTDVMkKX4g==
|
2122 |
+
dependencies:
|
2123 |
+
"@jest/reporters" "^25.3.0"
|
2124 |
+
"@wordpress/jest-console" "^3.9.0"
|
2125 |
+
babel-jest "^25.3.0"
|
2126 |
+
enzyme "^3.11.0"
|
2127 |
+
enzyme-adapter-react-16 "^1.15.2"
|
2128 |
+
enzyme-to-json "^3.4.4"
|
2129 |
+
|
2130 |
+
"@wordpress/npm-package-json-lint-config@^3.1.0":
|
2131 |
+
version "3.1.0"
|
2132 |
+
resolved "https://registry.yarnpkg.com/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-3.1.0.tgz#e06d7c8c70fb4fc38947f35a195e49dc058fe9d1"
|
2133 |
+
integrity sha512-SYRWpzpQaSsBUiRO+ssqg6AHjgCF4j2npstGTGaKdVs/B720fLFzeyONuMmo1ZtMb9v6MyEWxVz5ON6dDgmVYg==
|
2134 |
+
|
2135 |
+
"@wordpress/postcss-plugins-preset@^1.5.0":
|
2136 |
+
version "1.5.0"
|
2137 |
+
resolved "https://registry.yarnpkg.com/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-1.5.0.tgz#a04c68b0b6f5e77801190c5ad753b3712052d22a"
|
2138 |
+
integrity sha512-+BXrkyxDRm8p0KFSGmm5dA9f0FuhbndsYLZW6aCF0jeEYL/65W5bYrdJpXd6zgsKUiU6OvfdxTvxIRdDCJ9hmg==
|
2139 |
+
dependencies:
|
2140 |
+
"@wordpress/base-styles" "^3.1.0"
|
2141 |
+
"@wordpress/postcss-themes" "^2.6.0"
|
2142 |
+
autoprefixer "^9.4.5"
|
2143 |
+
postcss-custom-properties "^9.1.1"
|
2144 |
+
|
2145 |
+
"@wordpress/postcss-themes@^2.6.0":
|
2146 |
+
version "2.6.0"
|
2147 |
+
resolved "https://registry.yarnpkg.com/@wordpress/postcss-themes/-/postcss-themes-2.6.0.tgz#9faba06849f4ba812569e663658eca8ba9bcc897"
|
2148 |
+
integrity sha512-Q22s1KSVdtoK0Z0ND06V2QwTx/U4KvJhWFmoI8IzYW/LGlk8BkQJhHH157Y9vFliwpMlQpqfXW6/zOg2XtvHzQ==
|
2149 |
+
dependencies:
|
2150 |
+
postcss "^7.0.32"
|
2151 |
+
|
2152 |
+
"@wordpress/prettier-config@^0.4.0":
|
2153 |
+
version "0.4.0"
|
2154 |
+
resolved "https://registry.yarnpkg.com/@wordpress/prettier-config/-/prettier-config-0.4.0.tgz#bc8ab5c234c74a5c3bbb424cbbc3010b2be1be44"
|
2155 |
+
integrity sha512-7c4VeugkCwDkaHSD7ffxoP0VC5c///gCTEAT032OhI5Rik2dPxE3EkNAB2NhotGE8M4dMAg4g5Wj2OWZIn8TFw==
|
2156 |
+
|
2157 |
+
"@wordpress/scripts@^12.2.1":
|
2158 |
+
version "12.3.0"
|
2159 |
+
resolved "https://registry.yarnpkg.com/@wordpress/scripts/-/scripts-12.3.0.tgz#9f122adbb87b8ec18481bb936aac82c1c1b9fd2b"
|
2160 |
+
integrity sha512-FKwM2rQldgnHEf+PX/tv7wQAU462geu7R+TkvdHmDSPR6LN3tU+Osm7e6yc4Vk4NXsLNtJW6bnbTcV9ZAt9EeQ==
|
2161 |
+
dependencies:
|
2162 |
+
"@svgr/webpack" "^5.2.0"
|
2163 |
+
"@wordpress/babel-preset-default" "^4.19.0"
|
2164 |
+
"@wordpress/dependency-extraction-webpack-plugin" "^2.8.0"
|
2165 |
+
"@wordpress/eslint-plugin" "^7.3.0"
|
2166 |
+
"@wordpress/jest-preset-default" "^6.4.0"
|
2167 |
+
"@wordpress/npm-package-json-lint-config" "^3.1.0"
|
2168 |
+
"@wordpress/postcss-plugins-preset" "^1.5.0"
|
2169 |
+
"@wordpress/prettier-config" "^0.4.0"
|
2170 |
+
babel-jest "^25.3.0"
|
2171 |
+
babel-loader "^8.1.0"
|
2172 |
+
chalk "^4.0.0"
|
2173 |
+
check-node-version "^3.1.1"
|
2174 |
+
clean-webpack-plugin "^3.0.0"
|
2175 |
+
cross-spawn "^5.1.0"
|
2176 |
+
css-loader "^3.5.2"
|
2177 |
+
dir-glob "^3.0.1"
|
2178 |
+
eslint "^7.1.0"
|
2179 |
+
eslint-plugin-markdown "^1.0.2"
|
2180 |
+
ignore-emit-webpack-plugin "^2.0.2"
|
2181 |
+
jest "^25.3.0"
|
2182 |
+
jest-puppeteer "^4.4.0"
|
2183 |
+
markdownlint "^0.18.0"
|
2184 |
+
markdownlint-cli "^0.21.0"
|
2185 |
+
mini-css-extract-plugin "^0.9.0"
|
2186 |
+
minimist "^1.2.0"
|
2187 |
+
node-sass "^4.13.1"
|
2188 |
+
npm-package-json-lint "^5.0.0"
|
2189 |
+
postcss-loader "^3.0.0"
|
2190 |
+
prettier "npm:wp-prettier@2.0.5"
|
2191 |
+
puppeteer "npm:puppeteer-core@3.0.0"
|
2192 |
+
read-pkg-up "^1.0.1"
|
2193 |
+
resolve-bin "^0.4.0"
|
2194 |
+
sass-loader "^8.0.2"
|
2195 |
+
source-map-loader "^0.2.4"
|
2196 |
+
stylelint "^13.6.0"
|
2197 |
+
stylelint-config-wordpress "^17.0.0"
|
2198 |
+
terser-webpack-plugin "^3.0.3"
|
2199 |
+
thread-loader "^2.1.3"
|
2200 |
+
url-loader "^3.0.0"
|
2201 |
+
webpack "^4.42.0"
|
2202 |
+
webpack-bundle-analyzer "^3.6.1"
|
2203 |
+
webpack-cli "^3.3.11"
|
2204 |
+
webpack-livereload-plugin "^2.3.0"
|
2205 |
+
|
2206 |
+
"@wordpress/warning@^1.3.0":
|
2207 |
+
version "1.3.0"
|
2208 |
+
resolved "https://registry.yarnpkg.com/@wordpress/warning/-/warning-1.3.0.tgz#9254f77b0cc79b1b356c93d2b726be78d82588ad"
|
2209 |
+
integrity sha512-xwvgwqugc3zQawSPMMA09knAgap7IGgp0PxTXpFqizGFRIohoXFWERnPBZT0VsSCovqYS0ADcH+ZZgQ+BKAzLA==
|
2210 |
+
|
2211 |
+
"@xtuc/ieee754@^1.2.0":
|
2212 |
+
version "1.2.0"
|
2213 |
+
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
|
2214 |
+
integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
|
2215 |
+
|
2216 |
+
"@xtuc/long@4.2.2":
|
2217 |
+
version "4.2.2"
|
2218 |
+
resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
|
2219 |
+
integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
|
2220 |
+
|
2221 |
+
JSONStream@^1.0.4, JSONStream@^1.3.4, JSONStream@^1.3.5:
|
2222 |
+
version "1.3.5"
|
2223 |
+
resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
|
2224 |
+
integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
|
2225 |
+
dependencies:
|
2226 |
+
jsonparse "^1.2.0"
|
2227 |
+
through ">=2.2.7 <3"
|
2228 |
+
|
2229 |
+
abab@^2.0.0:
|
2230 |
+
version "2.0.5"
|
2231 |
+
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
|
2232 |
+
integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
|
2233 |
+
|
2234 |
+
abbrev@1, abbrev@~1.1.1:
|
2235 |
+
version "1.1.1"
|
2236 |
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
2237 |
+
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
2238 |
+
|
2239 |
+
accepts@~1.3.7:
|
2240 |
+
version "1.3.7"
|
2241 |
+
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
|
2242 |
+
integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
|
2243 |
+
dependencies:
|
2244 |
+
mime-types "~2.1.24"
|
2245 |
+
negotiator "0.6.2"
|
2246 |
+
|
2247 |
+
acorn-globals@^4.3.2:
|
2248 |
+
version "4.3.4"
|
2249 |
+
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
|
2250 |
+
integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
|
2251 |
+
dependencies:
|
2252 |
+
acorn "^6.0.1"
|
2253 |
+
acorn-walk "^6.0.1"
|
2254 |
+
|
2255 |
+
acorn-jsx@^5.2.0:
|
2256 |
+
version "5.3.1"
|
2257 |
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
2258 |
+
integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
|
2259 |
+
|
2260 |
+
acorn-walk@^6.0.1:
|
2261 |
+
version "6.2.0"
|
2262 |
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
|
2263 |
+
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
2264 |
+
|
2265 |
+
acorn-walk@^7.1.1:
|
2266 |
+
version "7.2.0"
|
2267 |
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
|
2268 |
+
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
|
2269 |
+
|
2270 |
+
acorn@^6.0.1, acorn@^6.4.1:
|
2271 |
+
version "6.4.2"
|
2272 |
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
|
2273 |
+
integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
|
2274 |
+
|
2275 |
+
acorn@^7.1.0, acorn@^7.1.1, acorn@^7.4.0:
|
2276 |
+
version "7.4.1"
|
2277 |
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
2278 |
+
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
2279 |
+
|
2280 |
+
agent-base@4, agent-base@^4.3.0:
|
2281 |
+
version "4.3.0"
|
2282 |
+
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee"
|
2283 |
+
integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==
|
2284 |
+
dependencies:
|
2285 |
+
es6-promisify "^5.0.0"
|
2286 |
+
|
2287 |
+
agent-base@5:
|
2288 |
+
version "5.1.1"
|
2289 |
+
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c"
|
2290 |
+
integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==
|
2291 |
+
|
2292 |
+
agent-base@6:
|
2293 |
+
version "6.0.1"
|
2294 |
+
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.1.tgz#808007e4e5867decb0ab6ab2f928fbdb5a596db4"
|
2295 |
+
integrity sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg==
|
2296 |
+
dependencies:
|
2297 |
+
debug "4"
|
2298 |
+
|
2299 |
+
agent-base@~4.2.1:
|
2300 |
+
version "4.2.1"
|
2301 |
+
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
|
2302 |
+
integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==
|
2303 |
+
dependencies:
|
2304 |
+
es6-promisify "^5.0.0"
|
2305 |
+
|
2306 |
+
agentkeepalive@^3.4.1:
|
2307 |
+
version "3.5.2"
|
2308 |
+
resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67"
|
2309 |
+
integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==
|
2310 |
+
dependencies:
|
2311 |
+
humanize-ms "^1.2.1"
|
2312 |
+
|
2313 |
+
aggregate-error@^3.0.0:
|
2314 |
+
version "3.1.0"
|
2315 |
+
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
|
2316 |
+
integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
|
2317 |
+
dependencies:
|
2318 |
+
clean-stack "^2.0.0"
|
2319 |
+
indent-string "^4.0.0"
|
2320 |
+
|
2321 |
+
airbnb-prop-types@^2.16.0:
|
2322 |
+
version "2.16.0"
|
2323 |
+
resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2"
|
2324 |
+
integrity sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==
|
2325 |
+
dependencies:
|
2326 |
+
array.prototype.find "^2.1.1"
|
2327 |
+
function.prototype.name "^1.1.2"
|
2328 |
+
is-regex "^1.1.0"
|
2329 |
+
object-is "^1.1.2"
|
2330 |
+
object.assign "^4.1.0"
|
2331 |
+
object.entries "^1.1.2"
|
2332 |
+
prop-types "^15.7.2"
|
2333 |
+
prop-types-exact "^1.2.0"
|
2334 |
+
react-is "^16.13.1"
|
2335 |
+
|
2336 |
+
ajv-errors@^1.0.0, ajv-errors@^1.0.1:
|
2337 |
+
version "1.0.1"
|
2338 |
+
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
|
2339 |
+
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
|
2340 |
+
|
2341 |
+
ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
|
2342 |
+
version "3.5.2"
|
2343 |
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
|
2344 |
+
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
|
2345 |
+
|
2346 |
+
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.4:
|
2347 |
+
version "6.12.5"
|
2348 |
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da"
|
2349 |
+
integrity sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag==
|
2350 |
+
dependencies:
|
2351 |
+
fast-deep-equal "^3.1.1"
|
2352 |
+
fast-json-stable-stringify "^2.0.0"
|
2353 |
+
json-schema-traverse "^0.4.1"
|
2354 |
+
uri-js "^4.2.2"
|
2355 |
+
|
2356 |
+
amdefine@>=0.0.4:
|
2357 |
+
version "1.0.1"
|
2358 |
+
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
2359 |
+
integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=
|
2360 |
+
|
2361 |
+
ansi-align@^2.0.0:
|
2362 |
+
version "2.0.0"
|
2363 |
+
resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
|
2364 |
+
integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=
|
2365 |
+
dependencies:
|
2366 |
+
string-width "^2.0.0"
|
2367 |
+
|
2368 |
+
ansi-colors@^4.1.1:
|
2369 |
+
version "4.1.1"
|
2370 |
+
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
|
2371 |
+
integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
|
2372 |
+
|
2373 |
+
ansi-escapes@^3.0.0:
|
2374 |
+
version "3.2.0"
|
2375 |
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
|
2376 |
+
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
|
2377 |
+
|
2378 |
+
ansi-escapes@^4.2.1, ansi-escapes@^4.3.1:
|
2379 |
+
version "4.3.1"
|
2380 |
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
|
2381 |
+
integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
|
2382 |
+
dependencies:
|
2383 |
+
type-fest "^0.11.0"
|
2384 |
+
|
2385 |
+
ansi-regex@^2.0.0:
|
2386 |
+
version "2.1.1"
|
2387 |
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
2388 |
+
integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
|
2389 |
+
|
2390 |
+
ansi-regex@^3.0.0:
|
2391 |
+
version "3.0.0"
|
2392 |
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
2393 |
+
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
2394 |
+
|
2395 |
+
ansi-regex@^4.1.0:
|
2396 |
+
version "4.1.0"
|
2397 |
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
2398 |
+
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
2399 |
+
|
2400 |
+
ansi-regex@^5.0.0:
|
2401 |
+
version "5.0.0"
|
2402 |
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
|
2403 |
+
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
|
2404 |
+
|
2405 |
+
ansi-styles@^2.2.1:
|
2406 |
+
version "2.2.1"
|
2407 |
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
2408 |
+
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
|
2409 |
+
|
2410 |
+
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
2411 |
+
version "3.2.1"
|
2412 |
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
2413 |
+
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
2414 |
+
dependencies:
|
2415 |
+
color-convert "^1.9.0"
|
2416 |
+
|
2417 |
+
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
2418 |
+
version "4.3.0"
|
2419 |
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
2420 |
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
2421 |
+
dependencies:
|
2422 |
+
color-convert "^2.0.1"
|
2423 |
+
|
2424 |
+
ansicolors@~0.3.2:
|
2425 |
+
version "0.3.2"
|
2426 |
+
resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
|
2427 |
+
integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=
|
2428 |
+
|
2429 |
+
ansistyles@~0.1.3:
|
2430 |
+
version "0.1.3"
|
2431 |
+
resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539"
|
2432 |
+
integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk=
|
2433 |
+
|
2434 |
+
any-observable@^0.3.0:
|
2435 |
+
version "0.3.0"
|
2436 |
+
resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b"
|
2437 |
+
integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
|
2438 |
+
|
2439 |
+
anymatch@^2.0.0:
|
2440 |
+
version "2.0.0"
|
2441 |
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
|
2442 |
+
integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
|
2443 |
+
dependencies:
|
2444 |
+
micromatch "^3.1.4"
|
2445 |
+
normalize-path "^2.1.1"
|
2446 |
+
|
2447 |
+
anymatch@^3.0.3, anymatch@^3.1.1, anymatch@~3.1.1:
|
2448 |
+
version "3.1.1"
|
2449 |
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
|
2450 |
+
integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
|
2451 |
+
dependencies:
|
2452 |
+
normalize-path "^3.0.0"
|
2453 |
+
picomatch "^2.0.4"
|
2454 |
+
|
2455 |
+
aproba@^1.0.3, aproba@^1.1.1, aproba@^1.1.2:
|
2456 |
+
version "1.2.0"
|
2457 |
+
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
2458 |
+
integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
|
2459 |
+
|
2460 |
+
"aproba@^1.1.2 || 2", aproba@^2.0.0:
|
2461 |
+
version "2.0.0"
|
2462 |
+
resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
|
2463 |
+
integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
|
2464 |
+
|
2465 |
+
arch@^2.1.2:
|
2466 |
+
version "2.1.2"
|
2467 |
+
resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.2.tgz#0c52bbe7344bb4fa260c443d2cbad9c00ff2f0bf"
|
2468 |
+
integrity sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==
|
2469 |
+
|
2470 |
+
archy@~1.0.0:
|
2471 |
+
version "1.0.0"
|
2472 |
+
resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
|
2473 |
+
integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=
|
2474 |
+
|
2475 |
+
are-we-there-yet@~1.1.2:
|
2476 |
+
version "1.1.5"
|
2477 |
+
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
|
2478 |
+
integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
|
2479 |
+
dependencies:
|
2480 |
+
delegates "^1.0.0"
|
2481 |
+
readable-stream "^2.0.6"
|
2482 |
+
|
2483 |
+
argparse@^1.0.7:
|
2484 |
+
version "1.0.10"
|
2485 |
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
2486 |
+
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
|
2487 |
+
dependencies:
|
2488 |
+
sprintf-js "~1.0.2"
|
2489 |
+
|
2490 |
+
argv-formatter@~1.0.0:
|
2491 |
+
version "1.0.0"
|
2492 |
+
resolved "https://registry.yarnpkg.com/argv-formatter/-/argv-formatter-1.0.0.tgz#a0ca0cbc29a5b73e836eebe1cbf6c5e0e4eb82f9"
|
2493 |
+
integrity sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=
|
2494 |
+
|
2495 |
+
aria-query@^4.2.2:
|
2496 |
+
version "4.2.2"
|
2497 |
+
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
|
2498 |
+
integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
|
2499 |
+
dependencies:
|
2500 |
+
"@babel/runtime" "^7.10.2"
|
2501 |
+
"@babel/runtime-corejs3" "^7.10.2"
|
2502 |
+
|
2503 |
+
arr-diff@^4.0.0:
|
2504 |
+
version "4.0.0"
|
2505 |
+
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
|
2506 |
+
integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
|
2507 |
+
|
2508 |
+
arr-flatten@^1.1.0:
|
2509 |
+
version "1.1.0"
|
2510 |
+
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
|
2511 |
+
integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
|
2512 |
+
|
2513 |
+
arr-union@^3.1.0:
|
2514 |
+
version "3.1.0"
|
2515 |
+
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
|
2516 |
+
integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
|
2517 |
+
|
2518 |
+
array-each@^1.0.1:
|
2519 |
+
version "1.0.1"
|
2520 |
+
resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f"
|
2521 |
+
integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8=
|
2522 |
+
|
2523 |
+
array-equal@^1.0.0:
|
2524 |
+
version "1.0.0"
|
2525 |
+
resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
|
2526 |
+
integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
|
2527 |
+
|
2528 |
+
array-filter@^1.0.0:
|
2529 |
+
version "1.0.0"
|
2530 |
+
resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83"
|
2531 |
+
integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=
|
2532 |
+
|
2533 |
+
array-find-index@^1.0.1:
|
2534 |
+
version "1.0.2"
|
2535 |
+
resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
|
2536 |
+
integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
|
2537 |
+
|
2538 |
+
array-flatten@1.1.1:
|
2539 |
+
version "1.1.1"
|
2540 |
+
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
|
2541 |
+
integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
|
2542 |
+
|
2543 |
+
array-ify@^1.0.0:
|
2544 |
+
version "1.0.0"
|
2545 |
+
resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
|
2546 |
+
integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=
|
2547 |
+
|
2548 |
+
array-includes@^3.1.1:
|
2549 |
+
version "3.1.1"
|
2550 |
+
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
|
2551 |
+
integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
|
2552 |
+
dependencies:
|
2553 |
+
define-properties "^1.1.3"
|
2554 |
+
es-abstract "^1.17.0"
|
2555 |
+
is-string "^1.0.5"
|
2556 |
+
|
2557 |
+
array-slice@^1.0.0:
|
2558 |
+
version "1.1.0"
|
2559 |
+
resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"
|
2560 |
+
integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==
|
2561 |
+
|
2562 |
+
array-union@^1.0.1:
|
2563 |
+
version "1.0.2"
|
2564 |
+
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
2565 |
+
integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
|
2566 |
+
dependencies:
|
2567 |
+
array-uniq "^1.0.1"
|
2568 |
+
|
2569 |
+
array-union@^2.1.0:
|
2570 |
+
version "2.1.0"
|
2571 |
+
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
|
2572 |
+
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
|
2573 |
+
|
2574 |
+
array-uniq@^1.0.1:
|
2575 |
+
version "1.0.3"
|
2576 |
+
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
2577 |
+
integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
|
2578 |
+
|
2579 |
+
array-unique@^0.3.2:
|
2580 |
+
version "0.3.2"
|
2581 |
+
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
2582 |
+
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
2583 |
+
|
2584 |
+
array.prototype.find@^2.1.1:
|
2585 |
+
version "2.1.1"
|
2586 |
+
resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c"
|
2587 |
+
integrity sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==
|
2588 |
+
dependencies:
|
2589 |
+
define-properties "^1.1.3"
|
2590 |
+
es-abstract "^1.17.4"
|
2591 |
+
|
2592 |
+
array.prototype.flat@^1.2.3:
|
2593 |
+
version "1.2.3"
|
2594 |
+
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
|
2595 |
+
integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
|
2596 |
+
dependencies:
|
2597 |
+
define-properties "^1.1.3"
|
2598 |
+
es-abstract "^1.17.0-next.1"
|
2599 |
+
|
2600 |
+
array.prototype.flatmap@^1.2.3:
|
2601 |
+
version "1.2.3"
|
2602 |
+
resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443"
|
2603 |
+
integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==
|
2604 |
+
dependencies:
|
2605 |
+
define-properties "^1.1.3"
|
2606 |
+
es-abstract "^1.17.0-next.1"
|
2607 |
+
function-bind "^1.1.1"
|
2608 |
+
|
2609 |
+
arrify@^1.0.1:
|
2610 |
+
version "1.0.1"
|
2611 |
+
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
2612 |
+
integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
|
2613 |
+
|
2614 |
+
asap@^2.0.0:
|
2615 |
+
version "2.0.6"
|
2616 |
+
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
|
2617 |
+
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
|
2618 |
+
|
2619 |
+
asn1.js@^5.2.0:
|
2620 |
+
version "5.4.1"
|
2621 |
+
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
|
2622 |
+
integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
|
2623 |
+
dependencies:
|
2624 |
+
bn.js "^4.0.0"
|
2625 |
+
inherits "^2.0.1"
|
2626 |
+
minimalistic-assert "^1.0.0"
|
2627 |
+
safer-buffer "^2.1.0"
|
2628 |
+
|
2629 |
+
asn1@~0.2.3:
|
2630 |
+
version "0.2.4"
|
2631 |
+
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
|
2632 |
+
integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
|
2633 |
+
dependencies:
|
2634 |
+
safer-buffer "~2.1.0"
|
2635 |
+
|
2636 |
+
assert-plus@1.0.0, assert-plus@^1.0.0:
|
2637 |
+
version "1.0.0"
|
2638 |
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
2639 |
+
integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
|
2640 |
+
|
2641 |
+
assert@^1.1.1:
|
2642 |
+
version "1.5.0"
|
2643 |
+
resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
|
2644 |
+
integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
|
2645 |
+
dependencies:
|
2646 |
+
object-assign "^4.1.1"
|
2647 |
+
util "0.10.3"
|
2648 |
+
|
2649 |
+
assign-symbols@^1.0.0:
|
2650 |
+
version "1.0.0"
|
2651 |
+
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
|
2652 |
+
integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
|
2653 |
+
|
2654 |
+
ast-types-flow@^0.0.7:
|
2655 |
+
version "0.0.7"
|
2656 |
+
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
|
2657 |
+
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
|
2658 |
+
|
2659 |
+
astral-regex@^1.0.0:
|
2660 |
+
version "1.0.0"
|
2661 |
+
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
|
2662 |
+
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
|
2663 |
+
|
2664 |
+
astral-regex@^2.0.0:
|
2665 |
+
version "2.0.0"
|
2666 |
+
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
|
2667 |
+
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
|
2668 |
+
|
2669 |
+
async-each@^1.0.1:
|
2670 |
+
version "1.0.3"
|
2671 |
+
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
|
2672 |
+
integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
|
2673 |
+
|
2674 |
+
async-foreach@^0.1.3:
|
2675 |
+
version "0.1.3"
|
2676 |
+
resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
|
2677 |
+
integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=
|
2678 |
+
|
2679 |
+
async-limiter@~1.0.0:
|
2680 |
+
version "1.0.1"
|
2681 |
+
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
|
2682 |
+
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
2683 |
+
|
2684 |
+
async@^2.5.0, async@^2.6.2:
|
2685 |
+
version "2.6.3"
|
2686 |
+
resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
|
2687 |
+
integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
|
2688 |
+
dependencies:
|
2689 |
+
lodash "^4.17.14"
|
2690 |
+
|
2691 |
+
async@^3.2.0:
|
2692 |
+
version "3.2.0"
|
2693 |
+
resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720"
|
2694 |
+
integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==
|
2695 |
+
|
2696 |
+
async@~1.5.2:
|
2697 |
+
version "1.5.2"
|
2698 |
+
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
2699 |
+
integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
|
2700 |
+
|
2701 |
+
asynckit@^0.4.0:
|
2702 |
+
version "0.4.0"
|
2703 |
+
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
2704 |
+
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
2705 |
+
|
2706 |
+
at-least-node@^1.0.0:
|
2707 |
+
version "1.0.0"
|
2708 |
+
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
|
2709 |
+
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
|
2710 |
+
|
2711 |
+
atob@^2.1.2:
|
2712 |
+
version "2.1.2"
|
2713 |
+
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
2714 |
+
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
2715 |
+
|
2716 |
+
autoprefixer@^9.4.5, autoprefixer@^9.8.6:
|
2717 |
+
version "9.8.6"
|
2718 |
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
|
2719 |
+
integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
|
2720 |
+
dependencies:
|
2721 |
+
browserslist "^4.12.0"
|
2722 |
+
caniuse-lite "^1.0.30001109"
|
2723 |
+
colorette "^1.2.1"
|
2724 |
+
normalize-range "^0.1.2"
|
2725 |
+
num2fraction "^1.2.2"
|
2726 |
+
postcss "^7.0.32"
|
2727 |
+
postcss-value-parser "^4.1.0"
|
2728 |
+
|
2729 |
+
aws-sign2@~0.7.0:
|
2730 |
+
version "0.7.0"
|
2731 |
+
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
|
2732 |
+
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
2733 |
+
|
2734 |
+
aws4@^1.8.0:
|
2735 |
+
version "1.10.1"
|
2736 |
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428"
|
2737 |
+
integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==
|
2738 |
+
|
2739 |
+
axe-core@^3.5.4:
|
2740 |
+
version "3.5.5"
|
2741 |
+
resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-3.5.5.tgz#84315073b53fa3c0c51676c588d59da09a192227"
|
2742 |
+
integrity sha512-5P0QZ6J5xGikH780pghEdbEKijCTrruK9KxtPZCFWUpef0f6GipO+xEZ5GKCb020mmqgbiNO6TcA55CriL784Q==
|
2743 |
+
|
2744 |
+
axobject-query@^2.1.2:
|
2745 |
+
version "2.2.0"
|
2746 |
+
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
|
2747 |
+
integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
|
2748 |
+
|
2749 |
+
babel-eslint@^10.1.0:
|
2750 |
+
version "10.1.0"
|
2751 |
+
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
|
2752 |
+
integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
|
2753 |
+
dependencies:
|
2754 |
+
"@babel/code-frame" "^7.0.0"
|
2755 |
+
"@babel/parser" "^7.7.0"
|
2756 |
+
"@babel/traverse" "^7.7.0"
|
2757 |
+
"@babel/types" "^7.7.0"
|
2758 |
+
eslint-visitor-keys "^1.0.0"
|
2759 |
+
resolve "^1.12.0"
|
2760 |
+
|
2761 |
+
babel-jest@^25.3.0, babel-jest@^25.5.1:
|
2762 |
+
version "25.5.1"
|
2763 |
+
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853"
|
2764 |
+
integrity sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==
|
2765 |
+
dependencies:
|
2766 |
+
"@jest/transform" "^25.5.1"
|
2767 |
+
"@jest/types" "^25.5.0"
|
2768 |
+
"@types/babel__core" "^7.1.7"
|
2769 |
+
babel-plugin-istanbul "^6.0.0"
|
2770 |
+
babel-preset-jest "^25.5.0"
|
2771 |
+
chalk "^3.0.0"
|
2772 |
+
graceful-fs "^4.2.4"
|
2773 |
+
slash "^3.0.0"
|
2774 |
+
|
2775 |
+
babel-loader@^8.1.0:
|
2776 |
+
version "8.1.0"
|
2777 |
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
|
2778 |
+
integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
|
2779 |
+
dependencies:
|
2780 |
+
find-cache-dir "^2.1.0"
|
2781 |
+
loader-utils "^1.4.0"
|
2782 |
+
mkdirp "^0.5.3"
|
2783 |
+
pify "^4.0.1"
|
2784 |
+
schema-utils "^2.6.5"
|
2785 |
+
|
2786 |
+
babel-plugin-dynamic-import-node@^2.3.3:
|
2787 |
+
version "2.3.3"
|
2788 |
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
|
2789 |
+
integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
|
2790 |
+
dependencies:
|
2791 |
+
object.assign "^4.1.0"
|
2792 |
+
|
2793 |
+
babel-plugin-istanbul@^6.0.0:
|
2794 |
+
version "6.0.0"
|
2795 |
+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
|
2796 |
+
integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
|
2797 |
+
dependencies:
|
2798 |
+
"@babel/helper-plugin-utils" "^7.0.0"
|
2799 |
+
"@istanbuljs/load-nyc-config" "^1.0.0"
|
2800 |
+
"@istanbuljs/schema" "^0.1.2"
|
2801 |
+
istanbul-lib-instrument "^4.0.0"
|
2802 |
+
test-exclude "^6.0.0"
|
2803 |
+
|
2804 |
+
babel-plugin-jest-hoist@^25.5.0:
|
2805 |
+
version "25.5.0"
|
2806 |
+
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677"
|
2807 |
+
integrity sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==
|
2808 |
+
dependencies:
|
2809 |
+
"@babel/template" "^7.3.3"
|
2810 |
+
"@babel/types" "^7.3.3"
|
2811 |
+
"@types/babel__traverse" "^7.0.6"
|
2812 |
+
|
2813 |
+
babel-preset-current-node-syntax@^0.1.2:
|
2814 |
+
version "0.1.4"
|
2815 |
+
resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz#826f1f8e7245ad534714ba001f84f7e906c3b615"
|
2816 |
+
integrity sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==
|
2817 |
+
dependencies:
|
2818 |
+
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
2819 |
+
"@babel/plugin-syntax-bigint" "^7.8.3"
|
2820 |
+
"@babel/plugin-syntax-class-properties" "^7.8.3"
|
2821 |
+
"@babel/plugin-syntax-import-meta" "^7.8.3"
|
2822 |
+
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
2823 |
+
"@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
|
2824 |
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
|
2825 |
+
"@babel/plugin-syntax-numeric-separator" "^7.8.3"
|
2826 |
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
|
2827 |
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
|
2828 |
+
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
|
2829 |
+
|
2830 |
+
babel-preset-jest@^25.5.0:
|
2831 |
+
version "25.5.0"
|
2832 |
+
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49"
|
2833 |
+
integrity sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==
|
2834 |
+
dependencies:
|
2835 |
+
babel-plugin-jest-hoist "^25.5.0"
|
2836 |
+
babel-preset-current-node-syntax "^0.1.2"
|
2837 |
+
|
2838 |
+
bail@^1.0.0:
|
2839 |
+
version "1.0.5"
|
2840 |
+
resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
|
2841 |
+
integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
|
2842 |
+
|
2843 |
+
balanced-match@^1.0.0:
|
2844 |
+
version "1.0.0"
|
2845 |
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
2846 |
+
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
|
2847 |
+
|
2848 |
+
base64-js@^1.0.2:
|
2849 |
+
version "1.3.1"
|
2850 |
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
|
2851 |
+
integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
|
2852 |
+
|
2853 |
+
base@^0.11.1:
|
2854 |
+
version "0.11.2"
|
2855 |
+
resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
|
2856 |
+
integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
|
2857 |
+
dependencies:
|
2858 |
+
cache-base "^1.0.1"
|
2859 |
+
class-utils "^0.3.5"
|
2860 |
+
component-emitter "^1.2.1"
|
2861 |
+
define-property "^1.0.0"
|
2862 |
+
isobject "^3.0.1"
|
2863 |
+
mixin-deep "^1.2.0"
|
2864 |
+
pascalcase "^0.1.1"
|
2865 |
+
|
2866 |
+
bcrypt-pbkdf@^1.0.0:
|
2867 |
+
version "1.0.2"
|
2868 |
+
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
|
2869 |
+
integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
|
2870 |
+
dependencies:
|
2871 |
+
tweetnacl "^0.14.3"
|
2872 |
+
|
2873 |
+
before-after-hook@^2.1.0:
|
2874 |
+
version "2.1.0"
|
2875 |
+
resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635"
|
2876 |
+
integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==
|
2877 |
+
|
2878 |
+
bfj@^6.1.1:
|
2879 |
+
version "6.1.2"
|
2880 |
+
resolved "https://registry.yarnpkg.com/bfj/-/bfj-6.1.2.tgz#325c861a822bcb358a41c78a33b8e6e2086dde7f"
|
2881 |
+
integrity sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==
|
2882 |
+
dependencies:
|
2883 |
+
bluebird "^3.5.5"
|
2884 |
+
check-types "^8.0.3"
|
2885 |
+
hoopy "^0.1.4"
|
2886 |
+
tryer "^1.0.1"
|
2887 |
+
|
2888 |
+
big.js@^5.2.2:
|
2889 |
+
version "5.2.2"
|
2890 |
+
resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
|
2891 |
+
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
|
2892 |
+
|
2893 |
+
bin-links@^1.1.2, bin-links@^1.1.8:
|
2894 |
+
version "1.1.8"
|
2895 |
+
resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-1.1.8.tgz#bd39aadab5dc4bdac222a07df5baf1af745b2228"
|
2896 |
+
integrity sha512-KgmVfx+QqggqP9dA3iIc5pA4T1qEEEL+hOhOhNPaUm77OTrJoOXE/C05SJLNJe6m/2wUK7F1tDSou7n5TfCDzQ==
|
2897 |
+
dependencies:
|
2898 |
+
bluebird "^3.5.3"
|
2899 |
+
cmd-shim "^3.0.0"
|
2900 |
+
gentle-fs "^2.3.0"
|
2901 |
+
graceful-fs "^4.1.15"
|
2902 |
+
npm-normalize-package-bin "^1.0.0"
|
2903 |
+
write-file-atomic "^2.3.0"
|
2904 |
+
|
2905 |
+
binary-extensions@^1.0.0:
|
2906 |
+
version "1.13.1"
|
2907 |
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
|
2908 |
+
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
|
2909 |
+
|
2910 |
+
binary-extensions@^2.0.0:
|
2911 |
+
version "2.1.0"
|
2912 |
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
|
2913 |
+
integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
|
2914 |
+
|
2915 |
+
bindings@^1.5.0:
|
2916 |
+
version "1.5.0"
|
2917 |
+
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
|
2918 |
+
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
|
2919 |
+
dependencies:
|
2920 |
+
file-uri-to-path "1.0.0"
|
2921 |
+
|
2922 |
+
bl@^4.0.3:
|
2923 |
+
version "4.0.3"
|
2924 |
+
resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489"
|
2925 |
+
integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==
|
2926 |
+
dependencies:
|
2927 |
+
buffer "^5.5.0"
|
2928 |
+
inherits "^2.0.4"
|
2929 |
+
readable-stream "^3.4.0"
|
2930 |
+
|
2931 |
+
blob-util@2.0.2:
|
2932 |
+
version "2.0.2"
|
2933 |
+
resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb"
|
2934 |
+
integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==
|
2935 |
+
|
2936 |
+
block-stream@*:
|
2937 |
+
version "0.0.9"
|
2938 |
+
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
2939 |
+
integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=
|
2940 |
+
dependencies:
|
2941 |
+
inherits "~2.0.0"
|
2942 |
+
|
2943 |
+
bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5, bluebird@^3.7.2:
|
2944 |
+
version "3.7.2"
|
2945 |
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
|
2946 |
+
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
|
2947 |
+
|
2948 |
+
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
|
2949 |
+
version "4.11.9"
|
2950 |
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
|
2951 |
+
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
2952 |
+
|
2953 |
+
bn.js@^5.1.1:
|
2954 |
+
version "5.1.3"
|
2955 |
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b"
|
2956 |
+
integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==
|
2957 |
+
|
2958 |
+
body-parser@1.19.0:
|
2959 |
+
version "1.19.0"
|
2960 |
+
resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
|
2961 |
+
integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
|
2962 |
+
dependencies:
|
2963 |
+
bytes "3.1.0"
|
2964 |
+
content-type "~1.0.4"
|
2965 |
+
debug "2.6.9"
|
2966 |
+
depd "~1.1.2"
|
2967 |
+
http-errors "1.7.2"
|
2968 |
+
iconv-lite "0.4.24"
|
2969 |
+
on-finished "~2.3.0"
|
2970 |
+
qs "6.7.0"
|
2971 |
+
raw-body "2.4.0"
|
2972 |
+
type-is "~1.6.17"
|
2973 |
+
|
2974 |
+
body@^5.1.0:
|
2975 |
+
version "5.1.0"
|
2976 |
+
resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069"
|
2977 |
+
integrity sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=
|
2978 |
+
dependencies:
|
2979 |
+
continuable-cache "^0.3.1"
|
2980 |
+
error "^7.0.0"
|
2981 |
+
raw-body "~1.1.0"
|
2982 |
+
safe-json-parse "~1.0.1"
|
2983 |
+
|
2984 |
+
boolbase@^1.0.0, boolbase@~1.0.0:
|
2985 |
+
version "1.0.0"
|
2986 |
+
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
|
2987 |
+
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
|
2988 |
+
|
2989 |
+
bottleneck@^2.18.1:
|
2990 |
+
version "2.19.5"
|
2991 |
+
resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91"
|
2992 |
+
integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==
|
2993 |
+
|
2994 |
+
boxen@^1.2.1:
|
2995 |
+
version "1.3.0"
|
2996 |
+
resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
|
2997 |
+
integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==
|
2998 |
+
dependencies:
|
2999 |
+
ansi-align "^2.0.0"
|
3000 |
+
camelcase "^4.0.0"
|
3001 |
+
chalk "^2.0.1"
|
3002 |
+
cli-boxes "^1.0.0"
|
3003 |
+
string-width "^2.0.0"
|
3004 |
+
term-size "^1.2.0"
|
3005 |
+
widest-line "^2.0.0"
|
3006 |
+
|
3007 |
+
brace-expansion@^1.1.7:
|
3008 |
+
version "1.1.11"
|
3009 |
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
3010 |
+
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
|
3011 |
+
dependencies:
|
3012 |
+
balanced-match "^1.0.0"
|
3013 |
+
concat-map "0.0.1"
|
3014 |
+
|
3015 |
+
braces@^2.3.1, braces@^2.3.2:
|
3016 |
+
version "2.3.2"
|
3017 |
+
resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
|
3018 |
+
integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
|
3019 |
+
dependencies:
|
3020 |
+
arr-flatten "^1.1.0"
|
3021 |
+
array-unique "^0.3.2"
|
3022 |
+
extend-shallow "^2.0.1"
|
3023 |
+
fill-range "^4.0.0"
|
3024 |
+
isobject "^3.0.1"
|
3025 |
+
repeat-element "^1.1.2"
|
3026 |
+
snapdragon "^0.8.1"
|
3027 |
+
snapdragon-node "^2.0.1"
|
3028 |
+
split-string "^3.0.2"
|
3029 |
+
to-regex "^3.0.1"
|
3030 |
+
|
3031 |
+
braces@^3.0.1, braces@~3.0.2:
|
3032 |
+
version "3.0.2"
|
3033 |
+
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
3034 |
+
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
3035 |
+
dependencies:
|
3036 |
+
fill-range "^7.0.1"
|
3037 |
+
|
3038 |
+
brorand@^1.0.1:
|
3039 |
+
version "1.1.0"
|
3040 |
+
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
3041 |
+
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
|
3042 |
+
|
3043 |
+
browser-process-hrtime@^1.0.0:
|
3044 |
+
version "1.0.0"
|
3045 |
+
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
|
3046 |
+
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
|
3047 |
+
|
3048 |
+
browser-resolve@^1.11.3:
|
3049 |
+
version "1.11.3"
|
3050 |
+
resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
|
3051 |
+
integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
|
3052 |
+
dependencies:
|
3053 |
+
resolve "1.1.7"
|
3054 |
+
|
3055 |
+
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
|
3056 |
+
version "1.2.0"
|
3057 |
+
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
|
3058 |
+
integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
|
3059 |
+
dependencies:
|
3060 |
+
buffer-xor "^1.0.3"
|
3061 |
+
cipher-base "^1.0.0"
|
3062 |
+
create-hash "^1.1.0"
|
3063 |
+
evp_bytestokey "^1.0.3"
|
3064 |
+
inherits "^2.0.1"
|
3065 |
+
safe-buffer "^5.0.1"
|
3066 |
+
|
3067 |
+
browserify-cipher@^1.0.0:
|
3068 |
+
version "1.0.1"
|
3069 |
+
resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
|
3070 |
+
integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
|
3071 |
+
dependencies:
|
3072 |
+
browserify-aes "^1.0.4"
|
3073 |
+
browserify-des "^1.0.0"
|
3074 |
+
evp_bytestokey "^1.0.0"
|
3075 |
+
|
3076 |
+
browserify-des@^1.0.0:
|
3077 |
+
version "1.0.2"
|
3078 |
+
resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
|
3079 |
+
integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
|
3080 |
+
dependencies:
|
3081 |
+
cipher-base "^1.0.1"
|
3082 |
+
des.js "^1.0.0"
|
3083 |
+
inherits "^2.0.1"
|
3084 |
+
safe-buffer "^5.1.2"
|
3085 |
+
|
3086 |
+
browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
|
3087 |
+
version "4.0.1"
|
3088 |
+
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
|
3089 |
+
integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=
|
3090 |
+
dependencies:
|
3091 |
+
bn.js "^4.1.0"
|
3092 |
+
randombytes "^2.0.1"
|
3093 |
+
|
3094 |
+
browserify-sign@^4.0.0:
|
3095 |
+
version "4.2.1"
|
3096 |
+
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
|
3097 |
+
integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
|
3098 |
+
dependencies:
|
3099 |
+
bn.js "^5.1.1"
|
3100 |
+
browserify-rsa "^4.0.1"
|
3101 |
+
create-hash "^1.2.0"
|
3102 |
+
create-hmac "^1.1.7"
|
3103 |
+
elliptic "^6.5.3"
|
3104 |
+
inherits "^2.0.4"
|
3105 |
+
parse-asn1 "^5.1.5"
|
3106 |
+
readable-stream "^3.6.0"
|
3107 |
+
safe-buffer "^5.2.0"
|
3108 |
+
|
3109 |
+
browserify-zlib@^0.2.0:
|
3110 |
+
version "0.2.0"
|
3111 |
+
resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
|
3112 |
+
integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
|
3113 |
+
dependencies:
|
3114 |
+
pako "~1.0.5"
|
3115 |
+
|
3116 |
+
browserslist@^4.12.0, browserslist@^4.8.5:
|
3117 |
+
version "4.14.5"
|
3118 |
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015"
|
3119 |
+
integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==
|
3120 |
+
dependencies:
|
3121 |
+
caniuse-lite "^1.0.30001135"
|
3122 |
+
electron-to-chromium "^1.3.571"
|
3123 |
+
escalade "^3.1.0"
|
3124 |
+
node-releases "^1.1.61"
|
3125 |
+
|
3126 |
+
bser@2.1.1:
|
3127 |
+
version "2.1.1"
|
3128 |
+
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
|
3129 |
+
integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
|
3130 |
+
dependencies:
|
3131 |
+
node-int64 "^0.4.0"
|
3132 |
+
|
3133 |
+
buffer-crc32@~0.2.3:
|
3134 |
+
version "0.2.13"
|
3135 |
+
resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
|
3136 |
+
integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
|
3137 |
+
|
3138 |
+
buffer-from@^1.0.0:
|
3139 |
+
version "1.1.1"
|
3140 |
+
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
3141 |
+
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
3142 |
+
|
3143 |
+
buffer-xor@^1.0.3:
|
3144 |
+
version "1.0.3"
|
3145 |
+
resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
|
3146 |
+
integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
|
3147 |
+
|
3148 |
+
buffer@^4.3.0:
|
3149 |
+
version "4.9.2"
|
3150 |
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
|
3151 |
+
integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
|
3152 |
+
dependencies:
|
3153 |
+
base64-js "^1.0.2"
|
3154 |
+
ieee754 "^1.1.4"
|
3155 |
+
isarray "^1.0.0"
|
3156 |
+
|
3157 |
+
buffer@^5.2.1, buffer@^5.5.0:
|
3158 |
+
version "5.6.0"
|
3159 |
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
|
3160 |
+
integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
|
3161 |
+
dependencies:
|
3162 |
+
base64-js "^1.0.2"
|
3163 |
+
ieee754 "^1.1.4"
|
3164 |
+
|
3165 |
+
builtin-status-codes@^3.0.0:
|
3166 |
+
version "3.0.0"
|
3167 |
+
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
3168 |
+
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
|
3169 |
+
|
3170 |
+
builtins@^1.0.3:
|
3171 |
+
version "1.0.3"
|
3172 |
+
resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
|
3173 |
+
integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og=
|
3174 |
+
|
3175 |
+
byline@^5.0.0:
|
3176 |
+
version "5.0.0"
|
3177 |
+
resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1"
|
3178 |
+
integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=
|
3179 |
+
|
3180 |
+
byte-size@^5.0.1:
|
3181 |
+
version "5.0.1"
|
3182 |
+
resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191"
|
3183 |
+
integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw==
|
3184 |
+
|
3185 |
+
bytes@1:
|
3186 |
+
version "1.0.0"
|
3187 |
+
resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8"
|
3188 |
+
integrity sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=
|
3189 |
+
|
3190 |
+
bytes@3.1.0:
|
3191 |
+
version "3.1.0"
|
3192 |
+
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
|
3193 |
+
integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
|
3194 |
+
|
3195 |
+
cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3:
|
3196 |
+
version "12.0.4"
|
3197 |
+
resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
|
3198 |
+
integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
|
3199 |
+
dependencies:
|
3200 |
+
bluebird "^3.5.5"
|
3201 |
+
chownr "^1.1.1"
|
3202 |
+
figgy-pudding "^3.5.1"
|
3203 |
+
glob "^7.1.4"
|
3204 |
+
graceful-fs "^4.1.15"
|
3205 |
+
infer-owner "^1.0.3"
|
3206 |
+
lru-cache "^5.1.1"
|
3207 |
+
mississippi "^3.0.0"
|
3208 |
+
mkdirp "^0.5.1"
|
3209 |
+
move-concurrently "^1.0.1"
|
3210 |
+
promise-inflight "^1.0.1"
|
3211 |
+
rimraf "^2.6.3"
|
3212 |
+
ssri "^6.0.1"
|
3213 |
+
unique-filename "^1.1.1"
|
3214 |
+
y18n "^4.0.0"
|
3215 |
+
|
3216 |
+
cacache@^15.0.5:
|
3217 |
+
version "15.0.5"
|
3218 |
+
resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0"
|
3219 |
+
integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==
|
3220 |
+
dependencies:
|
3221 |
+
"@npmcli/move-file" "^1.0.1"
|
3222 |
+
chownr "^2.0.0"
|
3223 |
+
fs-minipass "^2.0.0"
|
3224 |
+
glob "^7.1.4"
|
3225 |
+
infer-owner "^1.0.4"
|
3226 |
+
lru-cache "^6.0.0"
|
3227 |
+
minipass "^3.1.1"
|
3228 |
+
minipass-collect "^1.0.2"
|
3229 |
+
minipass-flush "^1.0.5"
|
3230 |
+
minipass-pipeline "^1.2.2"
|
3231 |
+
mkdirp "^1.0.3"
|
3232 |
+
p-map "^4.0.0"
|
3233 |
+
promise-inflight "^1.0.1"
|
3234 |
+
rimraf "^3.0.2"
|
3235 |
+
ssri "^8.0.0"
|
3236 |
+
tar "^6.0.2"
|
3237 |
+
unique-filename "^1.1.1"
|
3238 |
+
|
3239 |
+
cache-base@^1.0.1:
|
3240 |
+
version "1.0.1"
|
3241 |
+
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
|
3242 |
+
integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
|
3243 |
+
dependencies:
|
3244 |
+
collection-visit "^1.0.0"
|
3245 |
+
component-emitter "^1.2.1"
|
3246 |
+
get-value "^2.0.6"
|
3247 |
+
has-value "^1.0.0"
|
3248 |
+
isobject "^3.0.1"
|
3249 |
+
set-value "^2.0.0"
|
3250 |
+
to-object-path "^0.3.0"
|
3251 |
+
union-value "^1.0.0"
|
3252 |
+
unset-value "^1.0.0"
|
3253 |
+
|
3254 |
+
cachedir@^2.3.0:
|
3255 |
+
version "2.3.0"
|
3256 |
+
resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8"
|
3257 |
+
integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==
|
3258 |
+
|
3259 |
+
call-limit@^1.1.1:
|
3260 |
+
version "1.1.1"
|
3261 |
+
resolved "https://registry.yarnpkg.com/call-limit/-/call-limit-1.1.1.tgz#ef15f2670db3f1992557e2d965abc459e6e358d4"
|
3262 |
+
integrity sha512-5twvci5b9eRBw2wCfPtN0GmlR2/gadZqyFpPhOK6CvMFoFgA+USnZ6Jpu1lhG9h85pQ3Ouil3PfXWRD4EUaRiQ==
|
3263 |
+
|
3264 |
+
caller-callsite@^2.0.0:
|
3265 |
+
version "2.0.0"
|
3266 |
+
resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
|
3267 |
+
integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
|
3268 |
+
dependencies:
|
3269 |
+
callsites "^2.0.0"
|
3270 |
+
|
3271 |
+
caller-path@^2.0.0:
|
3272 |
+
version "2.0.0"
|
3273 |
+
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
|
3274 |
+
integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
|
3275 |
+
dependencies:
|
3276 |
+
caller-callsite "^2.0.0"
|
3277 |
+
|
3278 |
+
callsites@^2.0.0:
|
3279 |
+
version "2.0.0"
|
3280 |
+
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
|
3281 |
+
integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
|
3282 |
+
|
3283 |
+
callsites@^3.0.0:
|
3284 |
+
version "3.1.0"
|
3285 |
+
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
3286 |
+
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
3287 |
+
|
3288 |
+
camelcase-keys@^2.0.0:
|
3289 |
+
version "2.1.0"
|
3290 |
+
resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
|
3291 |
+
integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc=
|
3292 |
+
dependencies:
|
3293 |
+
camelcase "^2.0.0"
|
3294 |
+
map-obj "^1.0.0"
|
3295 |
+
|
3296 |
+
camelcase-keys@^6.2.2:
|
3297 |
+
version "6.2.2"
|
3298 |
+
resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
|
3299 |
+
integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
|
3300 |
+
dependencies:
|
3301 |
+
camelcase "^5.3.1"
|
3302 |
+
map-obj "^4.0.0"
|
3303 |
+
quick-lru "^4.0.1"
|
3304 |
+
|
3305 |
+
camelcase@^2.0.0:
|
3306 |
+
version "2.1.1"
|
3307 |
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
|
3308 |
+
integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=
|
3309 |
+
|
3310 |
+
camelcase@^4.0.0, camelcase@^4.1.0:
|
3311 |
+
version "4.1.0"
|
3312 |
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
3313 |
+
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
|
3314 |
+
|
3315 |
+
camelcase@^5.0.0, camelcase@^5.3.1:
|
3316 |
+
version "5.3.1"
|
3317 |
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
3318 |
+
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
3319 |
+
|
3320 |
+
camelcase@^6.0.0:
|
3321 |
+
version "6.0.0"
|
3322 |
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e"
|
3323 |
+
integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==
|
3324 |
+
|
3325 |
+
caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135:
|
3326 |
+
version "1.0.30001144"
|
3327 |
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001144.tgz#bca0fffde12f97e1127a351fec3bfc1971aa3b3d"
|
3328 |
+
integrity sha512-4GQTEWNMnVZVOFG3BK0xvGeaDAtiPAbG2N8yuMXuXzx/c2Vd4XoMPO8+E918zeXn5IF0FRVtGShBfkfQea2wHQ==
|
3329 |
+
|
3330 |
+
capture-exit@^2.0.0:
|
3331 |
+
version "2.0.0"
|
3332 |
+
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
|
3333 |
+
integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
|
3334 |
+
dependencies:
|
3335 |
+
rsvp "^4.8.4"
|
3336 |
+
|
3337 |
+
capture-stack-trace@^1.0.0:
|
3338 |
+
version "1.0.1"
|
3339 |
+
resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d"
|
3340 |
+
integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==
|
3341 |
+
|
3342 |
+
cardinal@^2.1.1:
|
3343 |
+
version "2.1.1"
|
3344 |
+
resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505"
|
3345 |
+
integrity sha1-fMEFXYItISlU0HsIXeolHMe8VQU=
|
3346 |
+
dependencies:
|
3347 |
+
ansicolors "~0.3.2"
|
3348 |
+
redeyed "~2.1.0"
|
3349 |
+
|
3350 |
+
caseless@~0.12.0:
|
3351 |
+
version "0.12.0"
|
3352 |
+
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
3353 |
+
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
|
3354 |
+
|
3355 |
+
ccount@^1.0.0:
|
3356 |
+
version "1.0.5"
|
3357 |
+
resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.5.tgz#ac82a944905a65ce204eb03023157edf29425c17"
|
3358 |
+
integrity sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw==
|
3359 |
+
|
3360 |
+
chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
|
3361 |
+
version "1.1.3"
|
3362 |
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
3363 |
+
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
|
3364 |
+
dependencies:
|
3365 |
+
ansi-styles "^2.2.1"
|
3366 |
+
escape-string-regexp "^1.0.2"
|
3367 |
+
has-ansi "^2.0.0"
|
3368 |
+
strip-ansi "^3.0.0"
|
3369 |
+
supports-color "^2.0.0"
|
3370 |
+
|
3371 |
+
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2:
|
3372 |
+
version "2.4.2"
|
3373 |
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
3374 |
+
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
3375 |
+
dependencies:
|
3376 |
+
ansi-styles "^3.2.1"
|
3377 |
+
escape-string-regexp "^1.0.5"
|
3378 |
+
supports-color "^5.3.0"
|
3379 |
+
|
3380 |
+
chalk@^3.0.0:
|
3381 |
+
version "3.0.0"
|
3382 |
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
3383 |
+
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
3384 |
+
dependencies:
|
3385 |
+
ansi-styles "^4.1.0"
|
3386 |
+
supports-color "^7.1.0"
|
3387 |
+
|
3388 |
+
chalk@^4.0.0, chalk@^4.1.0, chalk@~4.1.0:
|
3389 |
+
version "4.1.0"
|
3390 |
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
|
3391 |
+
integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
|
3392 |
+
dependencies:
|
3393 |
+
ansi-styles "^4.1.0"
|
3394 |
+
supports-color "^7.1.0"
|
3395 |
+
|
3396 |
+
character-entities-html4@^1.0.0:
|
3397 |
+
version "1.1.4"
|
3398 |
+
resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
|
3399 |
+
integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==
|
3400 |
+
|
3401 |
+
character-entities-legacy@^1.0.0:
|
3402 |
+
version "1.1.4"
|
3403 |
+
resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
|
3404 |
+
integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
|
3405 |
+
|
3406 |
+
character-entities@^1.0.0:
|
3407 |
+
version "1.2.4"
|
3408 |
+
resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
|
3409 |
+
integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
|
3410 |
+
|
3411 |
+
character-reference-invalid@^1.0.0:
|
3412 |
+
version "1.1.4"
|
3413 |
+
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
|
3414 |
+
integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
|
3415 |
+
|
3416 |
+
check-more-types@^2.24.0:
|
3417 |
+
version "2.24.0"
|
3418 |
+
resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
|
3419 |
+
integrity sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=
|
3420 |
+
|
3421 |
+
check-node-version@^3.1.1:
|
3422 |
+
version "3.3.0"
|
3423 |
+
resolved "https://registry.yarnpkg.com/check-node-version/-/check-node-version-3.3.0.tgz#a53d0be9c24e7fd22e029de032863d020362fe32"
|
3424 |
+
integrity sha512-OAtp7prQf+8YYKn2UB/fK1Ppb9OT+apW56atoKYUvucYLPq69VozOY0B295okBwCKymk2cictrS3qsdcZwyfzw==
|
3425 |
+
dependencies:
|
3426 |
+
chalk "^2.3.0"
|
3427 |
+
map-values "^1.0.1"
|
3428 |
+
minimist "^1.2.0"
|
3429 |
+
object-filter "^1.0.2"
|
3430 |
+
object.assign "^4.0.4"
|
3431 |
+
run-parallel "^1.1.4"
|
3432 |
+
semver "^5.0.3"
|
3433 |
+
|
3434 |
+
check-types@^8.0.3:
|
3435 |
+
version "8.0.3"
|
3436 |
+
resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552"
|
3437 |
+
integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==
|
3438 |
+
|
3439 |
+
cheerio@^1.0.0-rc.3:
|
3440 |
+
version "1.0.0-rc.3"
|
3441 |
+
resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6"
|
3442 |
+
integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==
|
3443 |
+
dependencies:
|
3444 |
+
css-select "~1.2.0"
|
3445 |
+
dom-serializer "~0.1.1"
|
3446 |
+
entities "~1.1.1"
|
3447 |
+
htmlparser2 "^3.9.1"
|
3448 |
+
lodash "^4.15.0"
|
3449 |
+
parse5 "^3.0.1"
|
3450 |
+
|
3451 |
+
chokidar@^2.1.8:
|
3452 |
+
version "2.1.8"
|
3453 |
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
|
3454 |
+
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
|
3455 |
+
dependencies:
|
3456 |
+
anymatch "^2.0.0"
|
3457 |
+
async-each "^1.0.1"
|
3458 |
+
braces "^2.3.2"
|
3459 |
+
glob-parent "^3.1.0"
|
3460 |
+
inherits "^2.0.3"
|
3461 |
+
is-binary-path "^1.0.0"
|
3462 |
+
is-glob "^4.0.0"
|
3463 |
+
normalize-path "^3.0.0"
|
3464 |
+
path-is-absolute "^1.0.0"
|
3465 |
+
readdirp "^2.2.1"
|
3466 |
+
upath "^1.1.1"
|
3467 |
+
optionalDependencies:
|
3468 |
+
fsevents "^1.2.7"
|
3469 |
+
|
3470 |
+
chokidar@^3.4.1:
|
3471 |
+
version "3.4.2"
|
3472 |
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d"
|
3473 |
+
integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==
|
3474 |
+
dependencies:
|
3475 |
+
anymatch "~3.1.1"
|
3476 |
+
braces "~3.0.2"
|
3477 |
+
glob-parent "~5.1.0"
|
3478 |
+
is-binary-path "~2.1.0"
|
3479 |
+
is-glob "~4.0.1"
|
3480 |
+
normalize-path "~3.0.0"
|
3481 |
+
readdirp "~3.4.0"
|
3482 |
+
optionalDependencies:
|
3483 |
+
fsevents "~2.1.2"
|
3484 |
+
|
3485 |
+
chownr@^1.1.1, chownr@^1.1.2, chownr@^1.1.4:
|
3486 |
+
version "1.1.4"
|
3487 |
+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
|
3488 |
+
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
|
3489 |
+
|
3490 |
+
chownr@^2.0.0:
|
3491 |
+
version "2.0.0"
|
3492 |
+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
|
3493 |
+
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
|
3494 |
+
|
3495 |
+
chrome-trace-event@^1.0.2:
|
3496 |
+
version "1.0.2"
|
3497 |
+
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
|
3498 |
+
integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
|
3499 |
+
dependencies:
|
3500 |
+
tslib "^1.9.0"
|
3501 |
+
|
3502 |
+
ci-info@^1.5.0:
|
3503 |
+
version "1.6.0"
|
3504 |
+
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
|
3505 |
+
integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==
|
3506 |
+
|
3507 |
+
ci-info@^2.0.0:
|
3508 |
+
version "2.0.0"
|
3509 |
+
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
|
3510 |
+
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
|
3511 |
+
|
3512 |
+
cidr-regex@^2.0.10:
|
3513 |
+
version "2.0.10"
|
3514 |
+
resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-2.0.10.tgz#af13878bd4ad704de77d6dc800799358b3afa70d"
|
3515 |
+
integrity sha512-sB3ogMQXWvreNPbJUZMRApxuRYd+KoIo4RGQ81VatjmMW6WJPo+IJZ2846FGItr9VzKo5w7DXzijPLGtSd0N3Q==
|
3516 |
+
dependencies:
|
3517 |
+
ip-regex "^2.1.0"
|
3518 |
+
|
3519 |
+
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
|
3520 |
+
version "1.0.4"
|
3521 |
+
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
|
3522 |
+
integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
|
3523 |
+
dependencies:
|
3524 |
+
inherits "^2.0.1"
|
3525 |
+
safe-buffer "^5.0.1"
|
3526 |
+
|
3527 |
+
class-utils@^0.3.5:
|
3528 |
+
version "0.3.6"
|
3529 |
+
resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
|
3530 |
+
integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
|
3531 |
+
dependencies:
|
3532 |
+
arr-union "^3.1.0"
|
3533 |
+
define-property "^0.2.5"
|
3534 |
+
isobject "^3.0.0"
|
3535 |
+
static-extend "^0.1.1"
|
3536 |
+
|
3537 |
+
classnames@^2.2.6:
|
3538 |
+
version "2.2.6"
|
3539 |
+
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
|
3540 |
+
integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
|
3541 |
+
|
3542 |
+
clean-stack@^2.0.0:
|
3543 |
+
version "2.2.0"
|
3544 |
+
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
|
3545 |
+
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
|
3546 |
+
|
3547 |
+
clean-webpack-plugin@^3.0.0:
|
3548 |
+
version "3.0.0"
|
3549 |
+
resolved "https://registry.yarnpkg.com/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz#a99d8ec34c1c628a4541567aa7b457446460c62b"
|
3550 |
+
integrity sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==
|
3551 |
+
dependencies:
|
3552 |
+
"@types/webpack" "^4.4.31"
|
3553 |
+
del "^4.1.1"
|
3554 |
+
|
3555 |
+
cli-boxes@^1.0.0:
|
3556 |
+
version "1.0.0"
|
3557 |
+
resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
|
3558 |
+
integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
|
3559 |
+
|
3560 |
+
cli-columns@^3.1.2:
|
3561 |
+
version "3.1.2"
|
3562 |
+
resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-3.1.2.tgz#6732d972979efc2ae444a1f08e08fa139c96a18e"
|
3563 |
+
integrity sha1-ZzLZcpee/CrkRKHwjgj6E5yWoY4=
|
3564 |
+
dependencies:
|
3565 |
+
string-width "^2.0.0"
|
3566 |
+
strip-ansi "^3.0.1"
|
3567 |
+
|
3568 |
+
cli-cursor@^1.0.2:
|
3569 |
+
version "1.0.2"
|
3570 |
+
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
|
3571 |
+
integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=
|
3572 |
+
dependencies:
|
3573 |
+
restore-cursor "^1.0.1"
|
3574 |
+
|
3575 |
+
cli-cursor@^2.0.0, cli-cursor@^2.1.0:
|
3576 |
+
version "2.1.0"
|
3577 |
+
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
|
3578 |
+
integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
|
3579 |
+
dependencies:
|
3580 |
+
restore-cursor "^2.0.0"
|
3581 |
+
|
3582 |
+
cli-table3@^0.5.0, cli-table3@^0.5.1:
|
3583 |
+
version "0.5.1"
|
3584 |
+
resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
|
3585 |
+
integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==
|
3586 |
+
dependencies:
|
3587 |
+
object-assign "^4.1.0"
|
3588 |
+
string-width "^2.1.1"
|
3589 |
+
optionalDependencies:
|
3590 |
+
colors "^1.1.2"
|
3591 |
+
|
3592 |
+
cli-table3@~0.6.0:
|
3593 |
+
version "0.6.0"
|
3594 |
+
resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee"
|
3595 |
+
integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==
|
3596 |
+
dependencies:
|
3597 |
+
object-assign "^4.1.0"
|
3598 |
+
string-width "^4.2.0"
|
3599 |
+
optionalDependencies:
|
3600 |
+
colors "^1.1.2"
|
3601 |
+
|
3602 |
+
cli-table@^0.3.1:
|
3603 |
+
version "0.3.1"
|
3604 |
+
resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"
|
3605 |
+
integrity sha1-9TsFJmqLGguTSz0IIebi3FkUriM=
|
3606 |
+
dependencies:
|
3607 |
+
colors "1.0.3"
|
3608 |
+
|
3609 |
+
cli-truncate@^0.2.1:
|
3610 |
+
version "0.2.1"
|
3611 |
+
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
|
3612 |
+
integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=
|
3613 |
+
dependencies:
|
3614 |
+
slice-ansi "0.0.4"
|
3615 |
+
string-width "^1.0.1"
|
3616 |
+
|
3617 |
+
cliui@^3.2.0:
|
3618 |
+
version "3.2.0"
|
3619 |
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
|
3620 |
+
integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=
|
3621 |
+
dependencies:
|
3622 |
+
string-width "^1.0.1"
|
3623 |
+
strip-ansi "^3.0.1"
|
3624 |
+
wrap-ansi "^2.0.0"
|
3625 |
+
|
3626 |
+
cliui@^5.0.0:
|
3627 |
+
version "5.0.0"
|
3628 |
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
|
3629 |
+
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
|
3630 |
+
dependencies:
|
3631 |
+
string-width "^3.1.0"
|
3632 |
+
strip-ansi "^5.2.0"
|
3633 |
+
wrap-ansi "^5.1.0"
|
3634 |
+
|
3635 |
+
cliui@^6.0.0:
|
3636 |
+
version "6.0.0"
|
3637 |
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
|
3638 |
+
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
|
3639 |
+
dependencies:
|
3640 |
+
string-width "^4.2.0"
|
3641 |
+
strip-ansi "^6.0.0"
|
3642 |
+
wrap-ansi "^6.2.0"
|
3643 |
+
|
3644 |
+
clone-deep@^0.2.4:
|
3645 |
+
version "0.2.4"
|
3646 |
+
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6"
|
3647 |
+
integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=
|
3648 |
+
dependencies:
|
3649 |
+
for-own "^0.1.3"
|
3650 |
+
is-plain-object "^2.0.1"
|
3651 |
+
kind-of "^3.0.2"
|
3652 |
+
lazy-cache "^1.0.3"
|
3653 |
+
shallow-clone "^0.1.2"
|
3654 |
+
|
3655 |
+
clone-deep@^4.0.1:
|
3656 |
+
version "4.0.1"
|
3657 |
+
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
|
3658 |
+
integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
|
3659 |
+
dependencies:
|
3660 |
+
is-plain-object "^2.0.4"
|
3661 |
+
kind-of "^6.0.2"
|
3662 |
+
shallow-clone "^3.0.0"
|
3663 |
+
|
3664 |
+
clone-regexp@^2.1.0:
|
3665 |
+
version "2.2.0"
|
3666 |
+
resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-2.2.0.tgz#7d65e00885cd8796405c35a737e7a86b7429e36f"
|
3667 |
+
integrity sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==
|
3668 |
+
dependencies:
|
3669 |
+
is-regexp "^2.0.0"
|
3670 |
+
|
3671 |
+
clone@^1.0.2:
|
3672 |
+
version "1.0.4"
|
3673 |
+
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
|
3674 |
+
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
|
3675 |
+
|
3676 |
+
cmd-shim@^3.0.0, cmd-shim@^3.0.3:
|
3677 |
+
version "3.0.3"
|
3678 |
+
resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-3.0.3.tgz#2c35238d3df37d98ecdd7d5f6b8dc6b21cadc7cb"
|
3679 |
+
integrity sha512-DtGg+0xiFhQIntSBRzL2fRQBnmtAVwXIDo4Qq46HPpObYquxMaZS4sb82U9nH91qJrlosC1wa9gwr0QyL/HypA==
|
3680 |
+
dependencies:
|
3681 |
+
graceful-fs "^4.1.2"
|
3682 |
+
mkdirp "~0.5.0"
|
3683 |
+
|
3684 |
+
co@^4.6.0:
|
3685 |
+
version "4.6.0"
|
3686 |
+
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
3687 |
+
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
|
3688 |
+
|
3689 |
+
coa@^2.0.2:
|
3690 |
+
version "2.0.2"
|
3691 |
+
resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
|
3692 |
+
integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
|
3693 |
+
dependencies:
|
3694 |
+
"@types/q" "^1.5.1"
|
3695 |
+
chalk "^2.4.1"
|
3696 |
+
q "^1.1.2"
|
3697 |
+
|
3698 |
+
code-point-at@^1.0.0:
|
3699 |
+
version "1.1.0"
|
3700 |
+
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
3701 |
+
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
|
3702 |
+
|
3703 |
+
collapse-white-space@^1.0.2:
|
3704 |
+
version "1.0.6"
|
3705 |
+
resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
|
3706 |
+
integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
|
3707 |
+
|
3708 |
+
collect-v8-coverage@^1.0.0:
|
3709 |
+
version "1.0.1"
|
3710 |
+
resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
|
3711 |
+
integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
|
3712 |
+
|
3713 |
+
collection-visit@^1.0.0:
|
3714 |
+
version "1.0.0"
|
3715 |
+
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
|
3716 |
+
integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
|
3717 |
+
dependencies:
|
3718 |
+
map-visit "^1.0.0"
|
3719 |
+
object-visit "^1.0.0"
|
3720 |
+
|
3721 |
+
color-convert@^1.9.0:
|
3722 |
+
version "1.9.3"
|
3723 |
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
3724 |
+
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
3725 |
+
dependencies:
|
3726 |
+
color-name "1.1.3"
|
3727 |
+
|
3728 |
+
color-convert@^2.0.1:
|
3729 |
+
version "2.0.1"
|
3730 |
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
3731 |
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
3732 |
+
dependencies:
|
3733 |
+
color-name "~1.1.4"
|
3734 |
+
|
3735 |
+
color-name@1.1.3:
|
3736 |
+
version "1.1.3"
|
3737 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
3738 |
+
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
3739 |
+
|
3740 |
+
color-name@^1.1.4, color-name@~1.1.4:
|
3741 |
+
version "1.1.4"
|
3742 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
3743 |
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
3744 |
+
|
3745 |
+
colorette@^1.2.1:
|
3746 |
+
version "1.2.1"
|
3747 |
+
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
|
3748 |
+
integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
|
3749 |
+
|
3750 |
+
colors@1.0.3:
|
3751 |
+
version "1.0.3"
|
3752 |
+
resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
|
3753 |
+
integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=
|
3754 |
+
|
3755 |
+
colors@^1.1.2:
|
3756 |
+
version "1.4.0"
|
3757 |
+
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
|
3758 |
+
integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
|
3759 |
+
|
3760 |
+
colors@~0.6.0-1:
|
3761 |
+
version "0.6.2"
|
3762 |
+
resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc"
|
3763 |
+
integrity sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=
|
3764 |
+
|
3765 |
+
colors@~1.1.2:
|
3766 |
+
version "1.1.2"
|
3767 |
+
resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
|
3768 |
+
integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
|
3769 |
+
|
3770 |
+
columnify@~1.5.4:
|
3771 |
+
version "1.5.4"
|
3772 |
+
resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb"
|
3773 |
+
integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=
|
3774 |
+
dependencies:
|
3775 |
+
strip-ansi "^3.0.0"
|
3776 |
+
wcwidth "^1.0.0"
|
3777 |
+
|
3778 |
+
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
3779 |
+
version "1.0.8"
|
3780 |
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
|
3781 |
+
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
|
3782 |
+
dependencies:
|
3783 |
+
delayed-stream "~1.0.0"
|
3784 |
+
|
3785 |
+
commander@^2.11.0, commander@^2.18.0, commander@^2.19.0, commander@^2.20.0:
|
3786 |
+
version "2.20.3"
|
3787 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
3788 |
+
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
3789 |
+
|
3790 |
+
commander@^3.0.2:
|
3791 |
+
version "3.0.2"
|
3792 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e"
|
3793 |
+
integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==
|
3794 |
+
|
3795 |
+
commander@^4.1.1:
|
3796 |
+
version "4.1.1"
|
3797 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
|
3798 |
+
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
|
3799 |
+
|
3800 |
+
commander@~2.1.0:
|
3801 |
+
version "2.1.0"
|
3802 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781"
|
3803 |
+
integrity sha1-0SG7roYNmZKj1Re6lvVliOR8Z4E=
|
3804 |
+
|
3805 |
+
commander@~2.9.0:
|
3806 |
+
version "2.9.0"
|
3807 |
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
|
3808 |
+
integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=
|
3809 |
+
dependencies:
|
3810 |
+
graceful-readlink ">= 1.0.0"
|
3811 |
+
|
3812 |
+
comment-parser@^0.7.6:
|
3813 |
+
version "0.7.6"
|
3814 |
+
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-0.7.6.tgz#0e743a53c8e646c899a1323db31f6cd337b10f12"
|
3815 |
+
integrity sha512-GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg==
|
3816 |
+
|
3817 |
+
common-tags@^1.8.0:
|
3818 |
+
version "1.8.0"
|
3819 |
+
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
|
3820 |
+
integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
|
3821 |
+
|
3822 |
+
commondir@^1.0.1:
|
3823 |
+
version "1.0.1"
|
3824 |
+
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
3825 |
+
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
|
3826 |
+
|
3827 |
+
compare-func@^1.3.1:
|
3828 |
+
version "1.3.4"
|
3829 |
+
resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.4.tgz#6b07c4c5e8341119baf44578085bda0f4a823516"
|
3830 |
+
integrity sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==
|
3831 |
+
dependencies:
|
3832 |
+
array-ify "^1.0.0"
|
3833 |
+
dot-prop "^3.0.0"
|
3834 |
+
|
3835 |
+
compare-func@^2.0.0:
|
3836 |
+
version "2.0.0"
|
3837 |
+
resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
|
3838 |
+
integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
|
3839 |
+
dependencies:
|
3840 |
+
array-ify "^1.0.0"
|
3841 |
+
dot-prop "^5.1.0"
|
3842 |
+
|
3843 |
+
component-emitter@^1.2.1:
|
3844 |
+
version "1.3.0"
|
3845 |
+
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
3846 |
+
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
|
3847 |
+
|
3848 |
+
concat-map@0.0.1:
|
3849 |
+
version "0.0.1"
|
3850 |
+
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
3851 |
+
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
|
3852 |
+
|
3853 |
+
concat-stream@^1.5.0, concat-stream@^1.6.2:
|
3854 |
+
version "1.6.2"
|
3855 |
+
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
|
3856 |
+
integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
|
3857 |
+
dependencies:
|
3858 |
+
buffer-from "^1.0.0"
|
3859 |
+
inherits "^2.0.3"
|
3860 |
+
readable-stream "^2.2.2"
|
3861 |
+
typedarray "^0.0.6"
|
3862 |
+
|
3863 |
+
config-chain@^1.1.12:
|
3864 |
+
version "1.1.12"
|
3865 |
+
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
|
3866 |
+
integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
|
3867 |
+
dependencies:
|
3868 |
+
ini "^1.3.4"
|
3869 |
+
proto-list "~1.2.1"
|
3870 |
+
|
3871 |
+
configstore@^3.0.0:
|
3872 |
+
version "3.1.5"
|
3873 |
+
resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f"
|
3874 |
+
integrity sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==
|
3875 |
+
dependencies:
|
3876 |
+
dot-prop "^4.2.1"
|
3877 |
+
graceful-fs "^4.1.2"
|
3878 |
+
make-dir "^1.0.0"
|
3879 |
+
unique-string "^1.0.0"
|
3880 |
+
write-file-atomic "^2.0.0"
|
3881 |
+
xdg-basedir "^3.0.0"
|
3882 |
+
|
3883 |
+
console-browserify@^1.1.0:
|
3884 |
+
version "1.2.0"
|
3885 |
+
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
|
3886 |
+
integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
|
3887 |
+
|
3888 |
+
console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0:
|
3889 |
+
version "1.1.0"
|
3890 |
+
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
3891 |
+
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
|
3892 |
+
|
3893 |
+
constants-browserify@^1.0.0:
|
3894 |
+
version "1.0.0"
|
3895 |
+
resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
|
3896 |
+
integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
|
3897 |
+
|
3898 |
+
content-disposition@0.5.3:
|
3899 |
+
version "0.5.3"
|
3900 |
+
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
|
3901 |
+
integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
|
3902 |
+
dependencies:
|
3903 |
+
safe-buffer "5.1.2"
|
3904 |
+
|
3905 |
+
content-type@~1.0.4:
|
3906 |
+
version "1.0.4"
|
3907 |
+
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
|
3908 |
+
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
|
3909 |
+
|
3910 |
+
continuable-cache@^0.3.1:
|
3911 |
+
version "0.3.1"
|
3912 |
+
resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f"
|
3913 |
+
integrity sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=
|
3914 |
+
|
3915 |
+
conventional-changelog-angular@^5.0.0:
|
3916 |
+
version "5.0.11"
|
3917 |
+
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz#99a3ca16e4a5305e0c2c2fae3ef74fd7631fc3fb"
|
3918 |
+
integrity sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==
|
3919 |
+
dependencies:
|
3920 |
+
compare-func "^2.0.0"
|
3921 |
+
q "^1.5.1"
|
3922 |
+
|
3923 |
+
conventional-changelog-simple-preset@^1.0.14:
|
3924 |
+
version "1.0.14"
|
3925 |
+
resolved "https://registry.yarnpkg.com/conventional-changelog-simple-preset/-/conventional-changelog-simple-preset-1.0.14.tgz#3767bb08a30c34973a0fa543a5dab2eb4c86f898"
|
3926 |
+
integrity sha512-r7fs3p2tK4LoR+zBmWCAoZWqyGY9zer7z+Fvjf4cpUfYjoWJAwx85JjX/TimDJmIt12nZZI6WOGDB3kkZ4w84g==
|
3927 |
+
dependencies:
|
3928 |
+
compare-func "^1.3.1"
|
3929 |
+
q "^1.5.1"
|
3930 |
+
|
3931 |
+
conventional-changelog-writer@^4.0.0:
|
3932 |
+
version "4.0.17"
|
3933 |
+
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz#4753aaa138bf5aa59c0b274cb5937efcd2722e21"
|
3934 |
+
integrity sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==
|
3935 |
+
dependencies:
|
3936 |
+
compare-func "^2.0.0"
|
3937 |
+
conventional-commits-filter "^2.0.6"
|
3938 |
+
dateformat "^3.0.0"
|
3939 |
+
handlebars "^4.7.6"
|
3940 |
+
json-stringify-safe "^5.0.1"
|
3941 |
+
lodash "^4.17.15"
|
3942 |
+
meow "^7.0.0"
|
3943 |
+
semver "^6.0.0"
|
3944 |
+
split "^1.0.0"
|
3945 |
+
through2 "^3.0.0"
|
3946 |
+
|
3947 |
+
conventional-commits-filter@^2.0.0, conventional-commits-filter@^2.0.6:
|
3948 |
+
version "2.0.6"
|
3949 |
+
resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz#0935e1240c5ca7698329affee1b6a46d33324c4c"
|
3950 |
+
integrity sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==
|
3951 |
+
dependencies:
|
3952 |
+
lodash.ismatch "^4.4.0"
|
3953 |
+
modify-values "^1.0.0"
|
3954 |
+
|
3955 |
+
conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.0.7:
|
3956 |
+
version "3.1.0"
|
3957 |
+
resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz#10140673d5e7ef5572633791456c5d03b69e8be4"
|
3958 |
+
integrity sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==
|
3959 |
+
dependencies:
|
3960 |
+
JSONStream "^1.0.4"
|
3961 |
+
is-text-path "^1.0.1"
|
3962 |
+
lodash "^4.17.15"
|
3963 |
+
meow "^7.0.0"
|
3964 |
+
split2 "^2.0.0"
|
3965 |
+
through2 "^3.0.0"
|
3966 |
+
trim-off-newlines "^1.0.0"
|
3967 |
+
|
3968 |
+
convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
|
3969 |
+
version "1.7.0"
|
3970 |
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
|
3971 |
+
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
|
3972 |
+
dependencies:
|
3973 |
+
safe-buffer "~5.1.1"
|
3974 |
+
|
3975 |
+
cookie-signature@1.0.6:
|
3976 |
+
version "1.0.6"
|
3977 |
+
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
|
3978 |
+
integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
|
3979 |
+
|
3980 |
+
cookie@0.4.0:
|
3981 |
+
version "0.4.0"
|
3982 |
+
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
|
3983 |
+
integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
|
3984 |
+
|
3985 |
+
copy-concurrently@^1.0.0:
|
3986 |
+
version "1.0.5"
|
3987 |
+
resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
|
3988 |
+
integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
|
3989 |
+
dependencies:
|
3990 |
+
aproba "^1.1.1"
|
3991 |
+
fs-write-stream-atomic "^1.0.8"
|
3992 |
+
iferr "^0.1.5"
|
3993 |
+
mkdirp "^0.5.1"
|
3994 |
+
rimraf "^2.5.4"
|
3995 |
+
run-queue "^1.0.0"
|
3996 |
+
|
3997 |
+
copy-descriptor@^0.1.0:
|
3998 |
+
version "0.1.1"
|
3999 |
+
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
4000 |
+
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
4001 |
+
|
4002 |
+
core-js-compat@^3.6.2:
|
4003 |
+
version "3.6.5"
|
4004 |
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
|
4005 |
+
integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==
|
4006 |
+
dependencies:
|
4007 |
+
browserslist "^4.8.5"
|
4008 |
+
semver "7.0.0"
|
4009 |
+
|
4010 |
+
core-js-pure@^3.0.0:
|
4011 |
+
version "3.6.5"
|
4012 |
+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813"
|
4013 |
+
integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==
|
4014 |
+
|
4015 |
+
core-js@^2.6.5:
|
4016 |
+
version "2.6.11"
|
4017 |
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
|
4018 |
+
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
|
4019 |
+
|
4020 |
+
core-js@^3.6.4:
|
4021 |
+
version "3.6.5"
|
4022 |
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
|
4023 |
+
integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
|
4024 |
+
|
4025 |
+
core-util-is@1.0.2, core-util-is@~1.0.0:
|
4026 |
+
version "1.0.2"
|
4027 |
+
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
4028 |
+
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
4029 |
+
|
4030 |
+
cosmiconfig@^5.0.0:
|
4031 |
+
version "5.2.1"
|
4032 |
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
|
4033 |
+
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
|
4034 |
+
dependencies:
|
4035 |
+
import-fresh "^2.0.0"
|
4036 |
+
is-directory "^0.3.1"
|
4037 |
+
js-yaml "^3.13.1"
|
4038 |
+
parse-json "^4.0.0"
|
4039 |
+
|
4040 |
+
cosmiconfig@^6.0.0:
|
4041 |
+
version "6.0.0"
|
4042 |
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
|
4043 |
+
integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
|
4044 |
+
dependencies:
|
4045 |
+
"@types/parse-json" "^4.0.0"
|
4046 |
+
import-fresh "^3.1.0"
|
4047 |
+
parse-json "^5.0.0"
|
4048 |
+
path-type "^4.0.0"
|
4049 |
+
yaml "^1.7.2"
|
4050 |
+
|
4051 |
+
cosmiconfig@^7.0.0:
|
4052 |
+
version "7.0.0"
|
4053 |
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
|
4054 |
+
integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
|
4055 |
+
dependencies:
|
4056 |
+
"@types/parse-json" "^4.0.0"
|
4057 |
+
import-fresh "^3.2.1"
|
4058 |
+
parse-json "^5.0.0"
|
4059 |
+
path-type "^4.0.0"
|
4060 |
+
yaml "^1.10.0"
|
4061 |
+
|
4062 |
+
create-ecdh@^4.0.0:
|
4063 |
+
version "4.0.4"
|
4064 |
+
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
|
4065 |
+
integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
|
4066 |
+
dependencies:
|
4067 |
+
bn.js "^4.1.0"
|
4068 |
+
elliptic "^6.5.3"
|
4069 |
+
|
4070 |
+
create-error-class@^3.0.0:
|
4071 |
+
version "3.0.2"
|
4072 |
+
resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
|
4073 |
+
integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=
|
4074 |
+
dependencies:
|
4075 |
+
capture-stack-trace "^1.0.0"
|
4076 |
+
|
4077 |
+
create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
|
4078 |
+
version "1.2.0"
|
4079 |
+
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
|
4080 |
+
integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
|
4081 |
+
dependencies:
|
4082 |
+
cipher-base "^1.0.1"
|
4083 |
+
inherits "^2.0.1"
|
4084 |
+
md5.js "^1.3.4"
|
4085 |
+
ripemd160 "^2.0.1"
|
4086 |
+
sha.js "^2.4.0"
|
4087 |
+
|
4088 |
+
create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
|
4089 |
+
version "1.1.7"
|
4090 |
+
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
|
4091 |
+
integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
|
4092 |
+
dependencies:
|
4093 |
+
cipher-base "^1.0.3"
|
4094 |
+
create-hash "^1.1.0"
|
4095 |
+
inherits "^2.0.1"
|
4096 |
+
ripemd160 "^2.0.0"
|
4097 |
+
safe-buffer "^5.0.1"
|
4098 |
+
sha.js "^2.4.8"
|
4099 |
+
|
4100 |
+
cross-spawn@^3.0.0:
|
4101 |
+
version "3.0.1"
|
4102 |
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982"
|
4103 |
+
integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI=
|
4104 |
+
dependencies:
|
4105 |
+
lru-cache "^4.0.1"
|
4106 |
+
which "^1.2.9"
|
4107 |
+
|
4108 |
+
cross-spawn@^5.0.1, cross-spawn@^5.1.0:
|
4109 |
+
version "5.1.0"
|
4110 |
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
|
4111 |
+
integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
|
4112 |
+
dependencies:
|
4113 |
+
lru-cache "^4.0.1"
|
4114 |
+
shebang-command "^1.2.0"
|
4115 |
+
which "^1.2.9"
|
4116 |
+
|
4117 |
+
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
|
4118 |
+
version "6.0.5"
|
4119 |
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
|
4120 |
+
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
|
4121 |
+
dependencies:
|
4122 |
+
nice-try "^1.0.4"
|
4123 |
+
path-key "^2.0.1"
|
4124 |
+
semver "^5.5.0"
|
4125 |
+
shebang-command "^1.2.0"
|
4126 |
+
which "^1.2.9"
|
4127 |
+
|
4128 |
+
cross-spawn@^7.0.0, cross-spawn@^7.0.2:
|
4129 |
+
version "7.0.3"
|
4130 |
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
4131 |
+
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
4132 |
+
dependencies:
|
4133 |
+
path-key "^3.1.0"
|
4134 |
+
shebang-command "^2.0.0"
|
4135 |
+
which "^2.0.1"
|
4136 |
+
|
4137 |
+
crypto-browserify@^3.11.0:
|
4138 |
+
version "3.12.0"
|
4139 |
+
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
|
4140 |
+
integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
|
4141 |
+
dependencies:
|
4142 |
+
browserify-cipher "^1.0.0"
|
4143 |
+
browserify-sign "^4.0.0"
|
4144 |
+
create-ecdh "^4.0.0"
|
4145 |
+
create-hash "^1.1.0"
|
4146 |
+
create-hmac "^1.1.0"
|
4147 |
+
diffie-hellman "^5.0.0"
|
4148 |
+
inherits "^2.0.1"
|
4149 |
+
pbkdf2 "^3.0.3"
|
4150 |
+
public-encrypt "^4.0.0"
|
4151 |
+
randombytes "^2.0.0"
|
4152 |
+
randomfill "^1.0.3"
|
4153 |
+
|
4154 |
+
crypto-random-string@^1.0.0:
|
4155 |
+
version "1.0.0"
|
4156 |
+
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
|
4157 |
+
integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
|
4158 |
+
|
4159 |
+
crypto-random-string@^2.0.0:
|
4160 |
+
version "2.0.0"
|
4161 |
+
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
|
4162 |
+
integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
|
4163 |
+
|
4164 |
+
css-loader@^3.5.2:
|
4165 |
+
version "3.6.0"
|
4166 |
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
|
4167 |
+
integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==
|
4168 |
+
dependencies:
|
4169 |
+
camelcase "^5.3.1"
|
4170 |
+
cssesc "^3.0.0"
|
4171 |
+
icss-utils "^4.1.1"
|
4172 |
+
loader-utils "^1.2.3"
|
4173 |
+
normalize-path "^3.0.0"
|
4174 |
+
postcss "^7.0.32"
|
4175 |
+
postcss-modules-extract-imports "^2.0.0"
|
4176 |
+
postcss-modules-local-by-default "^3.0.2"
|
4177 |
+
postcss-modules-scope "^2.2.0"
|
4178 |
+
postcss-modules-values "^3.0.0"
|
4179 |
+
postcss-value-parser "^4.1.0"
|
4180 |
+
schema-utils "^2.7.0"
|
4181 |
+
semver "^6.3.0"
|
4182 |
+
|
4183 |
+
css-select-base-adapter@^0.1.1:
|
4184 |
+
version "0.1.1"
|
4185 |
+
resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
|
4186 |
+
integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
|
4187 |
+
|
4188 |
+
css-select@^2.0.0:
|
4189 |
+
version "2.1.0"
|
4190 |
+
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
|
4191 |
+
integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
|
4192 |
+
dependencies:
|
4193 |
+
boolbase "^1.0.0"
|
4194 |
+
css-what "^3.2.1"
|
4195 |
+
domutils "^1.7.0"
|
4196 |
+
nth-check "^1.0.2"
|
4197 |
+
|
4198 |
+
css-select@~1.2.0:
|
4199 |
+
version "1.2.0"
|
4200 |
+
resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
|
4201 |
+
integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=
|
4202 |
+
dependencies:
|
4203 |
+
boolbase "~1.0.0"
|
4204 |
+
css-what "2.1"
|
4205 |
+
domutils "1.5.1"
|
4206 |
+
nth-check "~1.0.1"
|
4207 |
+
|
4208 |
+
css-tree@1.0.0-alpha.37:
|
4209 |
+
version "1.0.0-alpha.37"
|
4210 |
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
|
4211 |
+
integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
|
4212 |
+
dependencies:
|
4213 |
+
mdn-data "2.0.4"
|
4214 |
+
source-map "^0.6.1"
|
4215 |
+
|
4216 |
+
css-tree@1.0.0-alpha.39:
|
4217 |
+
version "1.0.0-alpha.39"
|
4218 |
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb"
|
4219 |
+
integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==
|
4220 |
+
dependencies:
|
4221 |
+
mdn-data "2.0.6"
|
4222 |
+
source-map "^0.6.1"
|
4223 |
+
|
4224 |
+
css-what@2.1:
|
4225 |
+
version "2.1.3"
|
4226 |
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
|
4227 |
+
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
|
4228 |
+
|
4229 |
+
css-what@^3.2.1:
|
4230 |
+
version "3.4.1"
|
4231 |
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.1.tgz#81cb70b609e4b1351b1e54cbc90fd9c54af86e2e"
|
4232 |
+
integrity sha512-wHOppVDKl4vTAOWzJt5Ek37Sgd9qq1Bmj/T1OjvicWbU5W7ru7Pqbn0Jdqii3Drx/h+dixHKXNhZYx7blthL7g==
|
4233 |
+
|
4234 |
+
cssesc@^3.0.0:
|
4235 |
+
version "3.0.0"
|
4236 |
+
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
4237 |
+
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
4238 |
+
|
4239 |
+
csso@^4.0.2:
|
4240 |
+
version "4.0.3"
|
4241 |
+
resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903"
|
4242 |
+
integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==
|
4243 |
+
dependencies:
|
4244 |
+
css-tree "1.0.0-alpha.39"
|
4245 |
+
|
4246 |
+
cssom@^0.4.1:
|
4247 |
+
version "0.4.4"
|
4248 |
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
|
4249 |
+
integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
|
4250 |
+
|
4251 |
+
cssom@~0.3.6:
|
4252 |
+
version "0.3.8"
|
4253 |
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
|
4254 |
+
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
|
4255 |
+
|
4256 |
+
cssstyle@^2.0.0:
|
4257 |
+
version "2.3.0"
|
4258 |
+
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
|
4259 |
+
integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
|
4260 |
+
dependencies:
|
4261 |
+
cssom "~0.3.6"
|
4262 |
+
|
4263 |
+
csstype@^3.0.2:
|
4264 |
+
version "3.0.3"
|
4265 |
+
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz#2b410bbeba38ba9633353aff34b05d9755d065f8"
|
4266 |
+
integrity sha512-jPl+wbWPOWJ7SXsWyqGRk3lGecbar0Cb0OvZF/r/ZU011R4YqiRehgkQ9p4eQfo9DSDLqLL3wHwfxeJiuIsNag==
|
4267 |
+
|
4268 |
+
currently-unhandled@^0.4.1:
|
4269 |
+
version "0.4.1"
|
4270 |
+
resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
|
4271 |
+
integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
|
4272 |
+
dependencies:
|
4273 |
+
array-find-index "^1.0.1"
|
4274 |
+
|
4275 |
+
cwd@^0.10.0:
|
4276 |
+
version "0.10.0"
|
4277 |
+
resolved "https://registry.yarnpkg.com/cwd/-/cwd-0.10.0.tgz#172400694057c22a13b0cf16162c7e4b7a7fe567"
|
4278 |
+
integrity sha1-FyQAaUBXwioTsM8WFix+S3p/5Wc=
|
4279 |
+
dependencies:
|
4280 |
+
find-pkg "^0.1.2"
|
4281 |
+
fs-exists-sync "^0.1.0"
|
4282 |
+
|
4283 |
+
cyclist@^1.0.1:
|
4284 |
+
version "1.0.1"
|
4285 |
+
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
|
4286 |
+
integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
|
4287 |
+
|
4288 |
+
cypress@^5.3.0:
|
4289 |
+
version "5.3.0"
|
4290 |
+
resolved "https://registry.yarnpkg.com/cypress/-/cypress-5.3.0.tgz#91122219ae66ab910058970dbf36619ab0fbde6c"
|
4291 |
+
integrity sha512-XgebyqL7Th6/8YenE1ddb7+d4EiCG2Jvg/5c8+HPfFFY/gXnOVhoCVUU3KW8qg3JL7g0B+iJbHd5hxuCqbd1RQ==
|
4292 |
+
dependencies:
|
4293 |
+
"@cypress/listr-verbose-renderer" "^0.4.1"
|
4294 |
+
"@cypress/request" "^2.88.5"
|
4295 |
+
"@cypress/xvfb" "^1.2.4"
|
4296 |
+
"@types/sinonjs__fake-timers" "^6.0.1"
|
4297 |
+
"@types/sizzle" "^2.3.2"
|
4298 |
+
arch "^2.1.2"
|
4299 |
+
blob-util "2.0.2"
|
4300 |
+
bluebird "^3.7.2"
|
4301 |
+
cachedir "^2.3.0"
|
4302 |
+
chalk "^4.1.0"
|
4303 |
+
check-more-types "^2.24.0"
|
4304 |
+
cli-table3 "~0.6.0"
|
4305 |
+
commander "^4.1.1"
|
4306 |
+
common-tags "^1.8.0"
|
4307 |
+
debug "^4.1.1"
|
4308 |
+
eventemitter2 "^6.4.2"
|
4309 |
+
execa "^4.0.2"
|
4310 |
+
executable "^4.1.1"
|
4311 |
+
extract-zip "^1.7.0"
|
4312 |
+
fs-extra "^9.0.1"
|
4313 |
+
getos "^3.2.1"
|
4314 |
+
is-ci "^2.0.0"
|
4315 |
+
is-installed-globally "^0.3.2"
|
4316 |
+
lazy-ass "^1.6.0"
|
4317 |
+
listr "^0.14.3"
|
4318 |
+
lodash "^4.17.19"
|
4319 |
+
log-symbols "^4.0.0"
|
4320 |
+
minimist "^1.2.5"
|
4321 |
+
moment "^2.27.0"
|
4322 |
+
ospath "^1.2.2"
|
4323 |
+
pretty-bytes "^5.3.0"
|
4324 |
+
ramda "~0.26.1"
|
4325 |
+
request-progress "^3.0.0"
|
4326 |
+
supports-color "^7.1.0"
|
4327 |
+
tmp "~0.2.1"
|
4328 |
+
untildify "^4.0.0"
|
4329 |
+
url "^0.11.0"
|
4330 |
+
yauzl "^2.10.0"
|
4331 |
+
|
4332 |
+
damerau-levenshtein@^1.0.6:
|
4333 |
+
version "1.0.6"
|
4334 |
+
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
|
4335 |
+
integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==
|
4336 |
+
|
4337 |
+
dashdash@^1.12.0:
|
4338 |
+
version "1.14.1"
|
4339 |
+
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
|
4340 |
+
integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
|
4341 |
+
dependencies:
|
4342 |
+
assert-plus "^1.0.0"
|
4343 |
+
|
4344 |
+
data-urls@^1.1.0:
|
4345 |
+
version "1.1.0"
|
4346 |
+
resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
|
4347 |
+
integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
|
4348 |
+
dependencies:
|
4349 |
+
abab "^2.0.0"
|
4350 |
+
whatwg-mimetype "^2.2.0"
|
4351 |
+
whatwg-url "^7.0.0"
|
4352 |
+
|
4353 |
+
date-fns@^1.27.2:
|
4354 |
+
version "1.30.1"
|
4355 |
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
|
4356 |
+
integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
|
4357 |
+
|
4358 |
+
dateformat@^3.0.0, dateformat@~3.0.3:
|
4359 |
+
version "3.0.3"
|
4360 |
+
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
|
4361 |
+
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
|
4362 |
+
|
4363 |
+
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
|
4364 |
+
version "2.6.9"
|
4365 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
4366 |
+
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
4367 |
+
dependencies:
|
4368 |
+
ms "2.0.0"
|
4369 |
+
|
4370 |
+
debug@3.1.0:
|
4371 |
+
version "3.1.0"
|
4372 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
4373 |
+
integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
|
4374 |
+
dependencies:
|
4375 |
+
ms "2.0.0"
|
4376 |
+
|
4377 |
+
debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
4378 |
+
version "4.2.0"
|
4379 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1"
|
4380 |
+
integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
|
4381 |
+
dependencies:
|
4382 |
+
ms "2.1.2"
|
4383 |
+
|
4384 |
+
debug@^3.1.0, debug@^3.1.1:
|
4385 |
+
version "3.2.6"
|
4386 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
|
4387 |
+
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
|
4388 |
+
dependencies:
|
4389 |
+
ms "^2.1.1"
|
4390 |
+
|
4391 |
+
debuglog@^1.0.1:
|
4392 |
+
version "1.0.1"
|
4393 |
+
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
|
4394 |
+
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
|
4395 |
+
|
4396 |
+
decamelize-keys@^1.1.0:
|
4397 |
+
version "1.1.0"
|
4398 |
+
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
|
4399 |
+
integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
|
4400 |
+
dependencies:
|
4401 |
+
decamelize "^1.1.0"
|
4402 |
+
map-obj "^1.0.0"
|
4403 |
+
|
4404 |
+
decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0:
|
4405 |
+
version "1.2.0"
|
4406 |
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
4407 |
+
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
4408 |
+
|
4409 |
+
decode-uri-component@^0.2.0:
|
4410 |
+
version "0.2.0"
|
4411 |
+
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
4412 |
+
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
|
4413 |
+
|
4414 |
+
deep-extend@^0.6.0:
|
4415 |
+
version "0.6.0"
|
4416 |
+
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
4417 |
+
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
|
4418 |
+
|
4419 |
+
deep-extend@~0.5.1:
|
4420 |
+
version "0.5.1"
|
4421 |
+
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f"
|
4422 |
+
integrity sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w==
|
4423 |
+
|
4424 |
+
deep-is@^0.1.3, deep-is@~0.1.3:
|
4425 |
+
version "0.1.3"
|
4426 |
+
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
4427 |
+
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
4428 |
+
|
4429 |
+
deepmerge@^4.2.2:
|
4430 |
+
version "4.2.2"
|
4431 |
+
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
4432 |
+
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
|
4433 |
+
|
4434 |
+
defaults@^1.0.3:
|
4435 |
+
version "1.0.3"
|
4436 |
+
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
|
4437 |
+
integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
|
4438 |
+
dependencies:
|
4439 |
+
clone "^1.0.2"
|
4440 |
+
|
4441 |
+
define-properties@^1.1.3:
|
4442 |
+
version "1.1.3"
|
4443 |
+
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
4444 |
+
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
|
4445 |
+
dependencies:
|
4446 |
+
object-keys "^1.0.12"
|
4447 |
+
|
4448 |
+
define-property@^0.2.5:
|
4449 |
+
version "0.2.5"
|
4450 |
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
|
4451 |
+
integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
|
4452 |
+
dependencies:
|
4453 |
+
is-descriptor "^0.1.0"
|
4454 |
+
|
4455 |
+
define-property@^1.0.0:
|
4456 |
+
version "1.0.0"
|
4457 |
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
|
4458 |
+
integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
|
4459 |
+
dependencies:
|
4460 |
+
is-descriptor "^1.0.0"
|
4461 |
+
|
4462 |
+
define-property@^2.0.2:
|
4463 |
+
version "2.0.2"
|
4464 |
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
|
4465 |
+
integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
|
4466 |
+
dependencies:
|
4467 |
+
is-descriptor "^1.0.2"
|
4468 |
+
isobject "^3.0.1"
|
4469 |
+
|
4470 |
+
del@^4.1.1:
|
4471 |
+
version "4.1.1"
|
4472 |
+
resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
|
4473 |
+
integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
|
4474 |
+
dependencies:
|
4475 |
+
"@types/glob" "^7.1.1"
|
4476 |
+
globby "^6.1.0"
|
4477 |
+
is-path-cwd "^2.0.0"
|
4478 |
+
is-path-in-cwd "^2.0.0"
|
4479 |
+
p-map "^2.0.0"
|
4480 |
+
pify "^4.0.1"
|
4481 |
+
rimraf "^2.6.3"
|
4482 |
+
|
4483 |
+
delayed-stream@~1.0.0:
|
4484 |
+
version "1.0.0"
|
4485 |
+
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
4486 |
+
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
|
4487 |
+
|
4488 |
+
delegates@^1.0.0:
|
4489 |
+
version "1.0.0"
|
4490 |
+
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
4491 |
+
integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
|
4492 |
+
|
4493 |
+
depd@~1.1.2:
|
4494 |
+
version "1.1.2"
|
4495 |
+
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
|
4496 |
+
integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
|
4497 |
+
|
4498 |
+
deprecation@^2.0.0, deprecation@^2.3.1:
|
4499 |
+
version "2.3.1"
|
4500 |
+
resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
|
4501 |
+
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
|
4502 |
+
|
4503 |
+
des.js@^1.0.0:
|
4504 |
+
version "1.0.1"
|
4505 |
+
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
|
4506 |
+
integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
|
4507 |
+
dependencies:
|
4508 |
+
inherits "^2.0.1"
|
4509 |
+
minimalistic-assert "^1.0.0"
|
4510 |
+
|
4511 |
+
destroy@~1.0.4:
|
4512 |
+
version "1.0.4"
|
4513 |
+
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
|
4514 |
+
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
|
4515 |
+
|
4516 |
+
detect-file@^1.0.0:
|
4517 |
+
version "1.0.0"
|
4518 |
+
resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
|
4519 |
+
integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=
|
4520 |
+
|
4521 |
+
detect-indent@~5.0.0:
|
4522 |
+
version "5.0.0"
|
4523 |
+
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
|
4524 |
+
integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50=
|
4525 |
+
|
4526 |
+
detect-newline@^2.1.0:
|
4527 |
+
version "2.1.0"
|
4528 |
+
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
|
4529 |
+
integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
|
4530 |
+
|
4531 |
+
detect-newline@^3.0.0:
|
4532 |
+
version "3.1.0"
|
4533 |
+
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
|
4534 |
+
integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
|
4535 |
+
|
4536 |
+
dezalgo@^1.0.0, dezalgo@~1.0.3:
|
4537 |
+
version "1.0.3"
|
4538 |
+
resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
|
4539 |
+
integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=
|
4540 |
+
dependencies:
|
4541 |
+
asap "^2.0.0"
|
4542 |
+
wrappy "1"
|
4543 |
+
|
4544 |
+
diff-sequences@^25.2.6:
|
4545 |
+
version "25.2.6"
|
4546 |
+
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd"
|
4547 |
+
integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==
|
4548 |
+
|
4549 |
+
diffie-hellman@^5.0.0:
|
4550 |
+
version "5.0.3"
|
4551 |
+
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
|
4552 |
+
integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
|
4553 |
+
dependencies:
|
4554 |
+
bn.js "^4.1.0"
|
4555 |
+
miller-rabin "^4.0.0"
|
4556 |
+
randombytes "^2.0.0"
|
4557 |
+
|
4558 |
+
dir-glob@^3.0.0, dir-glob@^3.0.1:
|
4559 |
+
version "3.0.1"
|
4560 |
+
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
|
4561 |
+
integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
|
4562 |
+
dependencies:
|
4563 |
+
path-type "^4.0.0"
|
4564 |
+
|
4565 |
+
discontinuous-range@1.0.0:
|
4566 |
+
version "1.0.0"
|
4567 |
+
resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
|
4568 |
+
integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=
|
4569 |
+
|
4570 |
+
doctrine@^2.1.0:
|
4571 |
+
version "2.1.0"
|
4572 |
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
4573 |
+
integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
|
4574 |
+
dependencies:
|
4575 |
+
esutils "^2.0.2"
|
4576 |
+
|
4577 |
+
doctrine@^3.0.0:
|
4578 |
+
version "3.0.0"
|
4579 |
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
|
4580 |
+
integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
|
4581 |
+
dependencies:
|
4582 |
+
esutils "^2.0.2"
|
4583 |
+
|
4584 |
+
dom-serializer@0:
|
4585 |
+
version "0.2.2"
|
4586 |
+
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
|
4587 |
+
integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
|
4588 |
+
dependencies:
|
4589 |
+
domelementtype "^2.0.1"
|
4590 |
+
entities "^2.0.0"
|
4591 |
+
|
4592 |
+
dom-serializer@~0.1.1:
|
4593 |
+
version "0.1.1"
|
4594 |
+
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0"
|
4595 |
+
integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==
|
4596 |
+
dependencies:
|
4597 |
+
domelementtype "^1.3.0"
|
4598 |
+
entities "^1.1.1"
|
4599 |
+
|
4600 |
+
domain-browser@^1.1.1:
|
4601 |
+
version "1.2.0"
|
4602 |
+
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
|
4603 |
+
integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
|
4604 |
+
|
4605 |
+
domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1:
|
4606 |
+
version "1.3.1"
|
4607 |
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
|
4608 |
+
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
|
4609 |
+
|
4610 |
+
domelementtype@^2.0.1:
|
4611 |
+
version "2.0.2"
|
4612 |
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971"
|
4613 |
+
integrity sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==
|
4614 |
+
|
4615 |
+
domexception@^1.0.1:
|
4616 |
+
version "1.0.1"
|
4617 |
+
resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
|
4618 |
+
integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
|
4619 |
+
dependencies:
|
4620 |
+
webidl-conversions "^4.0.2"
|
4621 |
+
|
4622 |
+
domhandler@^2.3.0:
|
4623 |
+
version "2.4.2"
|
4624 |
+
resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
|
4625 |
+
integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
|
4626 |
+
dependencies:
|
4627 |
+
domelementtype "1"
|
4628 |
+
|
4629 |
+
domutils@1.5.1:
|
4630 |
+
version "1.5.1"
|
4631 |
+
resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
|
4632 |
+
integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=
|
4633 |
+
dependencies:
|
4634 |
+
dom-serializer "0"
|
4635 |
+
domelementtype "1"
|
4636 |
+
|
4637 |
+
domutils@^1.5.1, domutils@^1.7.0:
|
4638 |
+
version "1.7.0"
|
4639 |
+
resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
|
4640 |
+
integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
|
4641 |
+
dependencies:
|
4642 |
+
dom-serializer "0"
|
4643 |
+
domelementtype "1"
|
4644 |
+
|
4645 |
+
dot-prop@^3.0.0:
|
4646 |
+
version "3.0.0"
|
4647 |
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
|
4648 |
+
integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
|
4649 |
+
dependencies:
|
4650 |
+
is-obj "^1.0.0"
|
4651 |
+
|
4652 |
+
dot-prop@^4.2.1:
|
4653 |
+
version "4.2.1"
|
4654 |
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"
|
4655 |
+
integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==
|
4656 |
+
dependencies:
|
4657 |
+
is-obj "^1.0.0"
|
4658 |
+
|
4659 |
+
dot-prop@^5.1.0:
|
4660 |
+
version "5.3.0"
|
4661 |
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
|
4662 |
+
integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
|
4663 |
+
dependencies:
|
4664 |
+
is-obj "^2.0.0"
|
4665 |
+
|
4666 |
+
dotenv@^5.0.1:
|
4667 |
+
version "5.0.1"
|
4668 |
+
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-5.0.1.tgz#a5317459bd3d79ab88cff6e44057a6a3fbb1fcef"
|
4669 |
+
integrity sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==
|
4670 |
+
|
4671 |
+
duplexer2@~0.1.0:
|
4672 |
+
version "0.1.4"
|
4673 |
+
resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
|
4674 |
+
integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=
|
4675 |
+
dependencies:
|
4676 |
+
readable-stream "^2.0.2"
|
4677 |
+
|
4678 |
+
duplexer3@^0.1.4:
|
4679 |
+
version "0.1.4"
|
4680 |
+
resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
|
4681 |
+
integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
|
4682 |
+
|
4683 |
+
duplexer@^0.1.1:
|
4684 |
+
version "0.1.2"
|
4685 |
+
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
|
4686 |
+
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
|
4687 |
+
|
4688 |
+
duplexify@^3.4.2, duplexify@^3.6.0:
|
4689 |
+
version "3.7.1"
|
4690 |
+
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
|
4691 |
+
integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
|
4692 |
+
dependencies:
|
4693 |
+
end-of-stream "^1.0.0"
|
4694 |
+
inherits "^2.0.1"
|
4695 |
+
readable-stream "^2.0.0"
|
4696 |
+
stream-shift "^1.0.0"
|
4697 |
+
|
4698 |
+
ecc-jsbn@~0.1.1:
|
4699 |
+
version "0.1.2"
|
4700 |
+
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
|
4701 |
+
integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
|
4702 |
+
dependencies:
|
4703 |
+
jsbn "~0.1.0"
|
4704 |
+
safer-buffer "^2.1.0"
|
4705 |
+
|
4706 |
+
editor@~1.0.0:
|
4707 |
+
version "1.0.0"
|
4708 |
+
resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742"
|
4709 |
+
integrity sha1-YMf4e9YrzGqJT6jM1q+3gjok90I=
|
4710 |
+
|
4711 |
+
ee-first@1.1.1:
|
4712 |
+
version "1.1.1"
|
4713 |
+
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
4714 |
+
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
4715 |
+
|
4716 |
+
ejs@^2.6.1:
|
4717 |
+
version "2.7.4"
|
4718 |
+
resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
|
4719 |
+
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
|
4720 |
+
|
4721 |
+
electron-to-chromium@^1.3.571:
|
4722 |
+
version "1.3.578"
|
4723 |
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz#e6671936f4571a874eb26e2e833aa0b2c0b776e0"
|
4724 |
+
integrity sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q==
|
4725 |
+
|
4726 |
+
elegant-spinner@^1.0.1:
|
4727 |
+
version "1.0.1"
|
4728 |
+
resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
|
4729 |
+
integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=
|
4730 |
+
|
4731 |
+
elliptic@^6.5.3:
|
4732 |
+
version "6.5.3"
|
4733 |
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
|
4734 |
+
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
|
4735 |
+
dependencies:
|
4736 |
+
bn.js "^4.4.0"
|
4737 |
+
brorand "^1.0.1"
|
4738 |
+
hash.js "^1.0.0"
|
4739 |
+
hmac-drbg "^1.0.0"
|
4740 |
+
inherits "^2.0.1"
|
4741 |
+
minimalistic-assert "^1.0.0"
|
4742 |
+
minimalistic-crypto-utils "^1.0.0"
|
4743 |
+
|
4744 |
+
emoji-regex@^7.0.1:
|
4745 |
+
version "7.0.3"
|
4746 |
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
|
4747 |
+
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
|
4748 |
+
|
4749 |
+
emoji-regex@^8.0.0:
|
4750 |
+
version "8.0.0"
|
4751 |
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
4752 |
+
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
4753 |
+
|
4754 |
+
emoji-regex@^9.0.0:
|
4755 |
+
version "9.0.0"
|
4756 |
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.0.0.tgz#48a2309cc8a1d2e9d23bc6a67c39b63032e76ea4"
|
4757 |
+
integrity sha512-6p1NII1Vm62wni/VR/cUMauVQoxmLVb9csqQlvLz+hO2gk8U2UYDfXHQSUYIBKmZwAKz867IDqG7B+u0mj+M6w==
|
4758 |
+
|
4759 |
+
emojis-list@^3.0.0:
|
4760 |
+
version "3.0.0"
|
4761 |
+
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
|
4762 |
+
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
|
4763 |
+
|
4764 |
+
encodeurl@~1.0.2:
|
4765 |
+
version "1.0.2"
|
4766 |
+
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
4767 |
+
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
|
4768 |
+
|
4769 |
+
encoding@^0.1.11:
|
4770 |
+
version "0.1.13"
|
4771 |
+
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
|
4772 |
+
integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
|
4773 |
+
dependencies:
|
4774 |
+
iconv-lite "^0.6.2"
|
4775 |
+
|
4776 |
+
end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:
|
4777 |
+
version "1.4.4"
|
4778 |
+
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
|
4779 |
+
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
|
4780 |
+
dependencies:
|
4781 |
+
once "^1.4.0"
|
4782 |
+
|
4783 |
+
enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0:
|
4784 |
+
version "4.3.0"
|
4785 |
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
|
4786 |
+
integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
|
4787 |
+
dependencies:
|
4788 |
+
graceful-fs "^4.1.2"
|
4789 |
+
memory-fs "^0.5.0"
|
4790 |
+
tapable "^1.0.0"
|
4791 |
+
|
4792 |
+
enquirer@^2.3.5:
|
4793 |
+
version "2.3.6"
|
4794 |
+
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
|
4795 |
+
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
|
4796 |
+
dependencies:
|
4797 |
+
ansi-colors "^4.1.1"
|
4798 |
+
|
4799 |
+
entities@^1.1.1, entities@~1.1.1:
|
4800 |
+
version "1.1.2"
|
4801 |
+
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
|
4802 |
+
integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
|
4803 |
+
|
4804 |
+
entities@^2.0.0, entities@~2.0.0:
|
4805 |
+
version "2.0.3"
|
4806 |
+
resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f"
|
4807 |
+
integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==
|
4808 |
+
|
4809 |
+
env-ci@^5.0.0:
|
4810 |
+
version "5.0.2"
|
4811 |
+
resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-5.0.2.tgz#48b6687f8af8cdf5e31b8fcf2987553d085249d9"
|
4812 |
+
integrity sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==
|
4813 |
+
dependencies:
|
4814 |
+
execa "^4.0.0"
|
4815 |
+
java-properties "^1.0.0"
|
4816 |
+
|
4817 |
+
env-paths@^2.2.0:
|
4818 |
+
version "2.2.0"
|
4819 |
+
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
|
4820 |
+
integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
|
4821 |
+
|
4822 |
+
enzyme-adapter-react-16@^1.15.2:
|
4823 |
+
version "1.15.5"
|
4824 |
+
resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.5.tgz#7a6f0093d3edd2f7025b36e7fbf290695473ee04"
|
4825 |
+
integrity sha512-33yUJGT1nHFQlbVI5qdo5Pfqvu/h4qPwi1o0a6ZZsjpiqq92a3HjynDhwd1IeED+Su60HDWV8mxJqkTnLYdGkw==
|
4826 |
+
dependencies:
|
4827 |
+
enzyme-adapter-utils "^1.13.1"
|
4828 |
+
enzyme-shallow-equal "^1.0.4"
|
4829 |
+
has "^1.0.3"
|
4830 |
+
object.assign "^4.1.0"
|
4831 |
+
object.values "^1.1.1"
|
4832 |
+
prop-types "^15.7.2"
|
4833 |
+
react-is "^16.13.1"
|
4834 |
+
react-test-renderer "^16.0.0-0"
|
4835 |
+
semver "^5.7.0"
|
4836 |
+
|
4837 |
+
enzyme-adapter-utils@^1.13.1:
|
4838 |
+
version "1.13.1"
|
4839 |
+
resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.1.tgz#59c1b734b0927543e3d8dc477299ec957feb312d"
|
4840 |
+
integrity sha512-5A9MXXgmh/Tkvee3bL/9RCAAgleHqFnsurTYCbymecO4ohvtNO5zqIhHxV370t7nJAwaCfkgtffarKpC0GPt0g==
|
4841 |
+
dependencies:
|
4842 |
+
airbnb-prop-types "^2.16.0"
|
4843 |
+
function.prototype.name "^1.1.2"
|
4844 |
+
object.assign "^4.1.0"
|
4845 |
+
object.fromentries "^2.0.2"
|
4846 |
+
prop-types "^15.7.2"
|
4847 |
+
semver "^5.7.1"
|
4848 |
+
|
4849 |
+
enzyme-shallow-equal@^1.0.1, enzyme-shallow-equal@^1.0.4:
|
4850 |
+
version "1.0.4"
|
4851 |
+
resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz#b9256cb25a5f430f9bfe073a84808c1d74fced2e"
|
4852 |
+
integrity sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==
|
4853 |
+
dependencies:
|
4854 |
+
has "^1.0.3"
|
4855 |
+
object-is "^1.1.2"
|
4856 |
+
|
4857 |
+
enzyme-to-json@^3.4.4:
|
4858 |
+
version "3.6.1"
|
4859 |
+
resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.6.1.tgz#d60740950bc7ca6384dfe6fe405494ec5df996bc"
|
4860 |
+
integrity sha512-15tXuONeq5ORoZjV/bUo2gbtZrN2IH+Z6DvL35QmZyKHgbY1ahn6wcnLd9Xv9OjiwbAXiiP8MRZwbZrCv1wYNg==
|
4861 |
+
dependencies:
|
4862 |
+
"@types/cheerio" "^0.22.22"
|
4863 |
+
lodash "^4.17.15"
|
4864 |
+
react-is "^16.12.0"
|
4865 |
+
|
4866 |
+
enzyme@^3.11.0:
|
4867 |
+
version "3.11.0"
|
4868 |
+
resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28"
|
4869 |
+
integrity sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==
|
4870 |
+
dependencies:
|
4871 |
+
array.prototype.flat "^1.2.3"
|
4872 |
+
cheerio "^1.0.0-rc.3"
|
4873 |
+
enzyme-shallow-equal "^1.0.1"
|
4874 |
+
function.prototype.name "^1.1.2"
|
4875 |
+
has "^1.0.3"
|
4876 |
+
html-element-map "^1.2.0"
|
4877 |
+
is-boolean-object "^1.0.1"
|
4878 |
+
is-callable "^1.1.5"
|
4879 |
+
is-number-object "^1.0.4"
|
4880 |
+
is-regex "^1.0.5"
|
4881 |
+
is-string "^1.0.5"
|
4882 |
+
is-subset "^0.1.1"
|
4883 |
+
lodash.escape "^4.0.1"
|
4884 |
+
lodash.isequal "^4.5.0"
|
4885 |
+
object-inspect "^1.7.0"
|
4886 |
+
object-is "^1.0.2"
|
4887 |
+
object.assign "^4.1.0"
|
4888 |
+
object.entries "^1.1.1"
|
4889 |
+
object.values "^1.1.1"
|
4890 |
+
raf "^3.4.1"
|
4891 |
+
rst-selector-parser "^2.2.3"
|
4892 |
+
string.prototype.trim "^1.2.1"
|
4893 |
+
|
4894 |
+
err-code@^1.0.0:
|
4895 |
+
version "1.1.2"
|
4896 |
+
resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960"
|
4897 |
+
integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=
|
4898 |
+
|
4899 |
+
errno@^0.1.3, errno@~0.1.7:
|
4900 |
+
version "0.1.7"
|
4901 |
+
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
|
4902 |
+
integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
|
4903 |
+
dependencies:
|
4904 |
+
prr "~1.0.1"
|
4905 |
+
|
4906 |
+
error-ex@^1.2.0, error-ex@^1.3.1:
|
4907 |
+
version "1.3.2"
|
4908 |
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
4909 |
+
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
|
4910 |
+
dependencies:
|
4911 |
+
is-arrayish "^0.2.1"
|
4912 |
+
|
4913 |
+
error@^7.0.0:
|
4914 |
+
version "7.2.1"
|
4915 |
+
resolved "https://registry.yarnpkg.com/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894"
|
4916 |
+
integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==
|
4917 |
+
dependencies:
|
4918 |
+
string-template "~0.2.1"
|
4919 |
+
|
4920 |
+
es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5:
|
4921 |
+
version "1.17.7"
|
4922 |
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c"
|
4923 |
+
integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==
|
4924 |
+
dependencies:
|
4925 |
+
es-to-primitive "^1.2.1"
|
4926 |
+
function-bind "^1.1.1"
|
4927 |
+
has "^1.0.3"
|
4928 |
+
has-symbols "^1.0.1"
|
4929 |
+
is-callable "^1.2.2"
|
4930 |
+
is-regex "^1.1.1"
|
4931 |
+
object-inspect "^1.8.0"
|
4932 |
+
object-keys "^1.1.1"
|
4933 |
+
object.assign "^4.1.1"
|
4934 |
+
string.prototype.trimend "^1.0.1"
|
4935 |
+
string.prototype.trimstart "^1.0.1"
|
4936 |
+
|
4937 |
+
es-abstract@^1.18.0-next.0, es-abstract@^1.18.0-next.1:
|
4938 |
+
version "1.18.0-next.1"
|
4939 |
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
|
4940 |
+
integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
|
4941 |
+
dependencies:
|
4942 |
+
es-to-primitive "^1.2.1"
|
4943 |
+
function-bind "^1.1.1"
|
4944 |
+
has "^1.0.3"
|
4945 |
+
has-symbols "^1.0.1"
|
4946 |
+
is-callable "^1.2.2"
|
4947 |
+
is-negative-zero "^2.0.0"
|
4948 |
+
is-regex "^1.1.1"
|
4949 |
+
object-inspect "^1.8.0"
|
4950 |
+
object-keys "^1.1.1"
|
4951 |
+
object.assign "^4.1.1"
|
4952 |
+
string.prototype.trimend "^1.0.1"
|
4953 |
+
string.prototype.trimstart "^1.0.1"
|
4954 |
+
|
4955 |
+
es-to-primitive@^1.2.1:
|
4956 |
+
version "1.2.1"
|
4957 |
+
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
4958 |
+
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
4959 |
+
dependencies:
|
4960 |
+
is-callable "^1.1.4"
|
4961 |
+
is-date-object "^1.0.1"
|
4962 |
+
is-symbol "^1.0.2"
|
4963 |
+
|
4964 |
+
es6-promise@^4.0.3:
|
4965 |
+
version "4.2.8"
|
4966 |
+
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
|
4967 |
+
integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==
|
4968 |
+
|
4969 |
+
es6-promisify@^5.0.0:
|
4970 |
+
version "5.0.0"
|
4971 |
+
resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
|
4972 |
+
integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=
|
4973 |
+
dependencies:
|
4974 |
+
es6-promise "^4.0.3"
|
4975 |
+
|
4976 |
+
escalade@^3.1.0:
|
4977 |
+
version "3.1.0"
|
4978 |
+
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e"
|
4979 |
+
integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig==
|
4980 |
+
|
4981 |
+
escape-html@~1.0.3:
|
4982 |
+
version "1.0.3"
|
4983 |
+
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
4984 |
+
integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
|
4985 |
+
|
4986 |
+
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
4987 |
+
version "1.0.5"
|
4988 |
+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
4989 |
+
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
4990 |
+
|
4991 |
+
escodegen@^1.11.1:
|
4992 |
+
version "1.14.3"
|
4993 |
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
|
4994 |
+
integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
|
4995 |
+
dependencies:
|
4996 |
+
esprima "^4.0.1"
|
4997 |
+
estraverse "^4.2.0"
|
4998 |
+
esutils "^2.0.2"
|
4999 |
+
optionator "^0.8.1"
|
5000 |
+
optionalDependencies:
|
5001 |
+
source-map "~0.6.1"
|
5002 |
+
|
5003 |
+
eslint-config-prettier@^6.10.1:
|
5004 |
+
version "6.12.0"
|
5005 |
+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.12.0.tgz#9eb2bccff727db1c52104f0b49e87ea46605a0d2"
|
5006 |
+
integrity sha512-9jWPlFlgNwRUYVoujvWTQ1aMO8o6648r+K7qU7K5Jmkbyqav1fuEZC0COYpGBxyiAJb65Ra9hrmFx19xRGwXWw==
|
5007 |
+
dependencies:
|
5008 |
+
get-stdin "^6.0.0"
|
5009 |
+
|
5010 |
+
eslint-plugin-jest@^23.8.2:
|
5011 |
+
version "23.20.0"
|
5012 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.20.0.tgz#e1d69c75f639e99d836642453c4e75ed22da4099"
|
5013 |
+
integrity sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==
|
5014 |
+
dependencies:
|
5015 |
+
"@typescript-eslint/experimental-utils" "^2.5.0"
|
5016 |
+
|
5017 |
+
eslint-plugin-jsdoc@^30.2.2:
|
5018 |
+
version "30.6.3"
|
5019 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.3.tgz#5d946f7a27bd9ee851c67838f607d85ea0492bfa"
|
5020 |
+
integrity sha512-RnyM+a3SKRfPs/jqO2qOGAEZnOJT2dOhiwhBlYVp8/yRUUBNPlvkwZm0arrnyFKvfZX6WqSwlK5OcNnM5W1Etg==
|
5021 |
+
dependencies:
|
5022 |
+
comment-parser "^0.7.6"
|
5023 |
+
debug "^4.1.1"
|
5024 |
+
jsdoctypeparser "^9.0.0"
|
5025 |
+
lodash "^4.17.20"
|
5026 |
+
regextras "^0.7.1"
|
5027 |
+
semver "^7.3.2"
|
5028 |
+
spdx-expression-parse "^3.0.1"
|
5029 |
+
|
5030 |
+
eslint-plugin-jsx-a11y@^6.2.3:
|
5031 |
+
version "6.3.1"
|
5032 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz#99ef7e97f567cc6a5b8dd5ab95a94a67058a2660"
|
5033 |
+
integrity sha512-i1S+P+c3HOlBJzMFORRbC58tHa65Kbo8b52/TwCwSKLohwvpfT5rm2GjGWzOHTEuq4xxf2aRlHHTtmExDQOP+g==
|
5034 |
+
dependencies:
|
5035 |
+
"@babel/runtime" "^7.10.2"
|
5036 |
+
aria-query "^4.2.2"
|
5037 |
+
array-includes "^3.1.1"
|
5038 |
+
ast-types-flow "^0.0.7"
|
5039 |
+
axe-core "^3.5.4"
|
5040 |
+
axobject-query "^2.1.2"
|
5041 |
+
damerau-levenshtein "^1.0.6"
|
5042 |
+
emoji-regex "^9.0.0"
|
5043 |
+
has "^1.0.3"
|
5044 |
+
jsx-ast-utils "^2.4.1"
|
5045 |
+
language-tags "^1.0.5"
|
5046 |
+
|
5047 |
+
eslint-plugin-markdown@^1.0.2:
|
5048 |
+
version "1.0.2"
|
5049 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-1.0.2.tgz#79274bf17ce3ead48e4a55cbcb6d7ce735754280"
|
5050 |
+
integrity sha512-BfvXKsO0K+zvdarNc801jsE/NTLmig4oKhZ1U3aSUgTf2dB/US5+CrfGxMsCK2Ki1vS1R3HPok+uYpufFndhzw==
|
5051 |
+
dependencies:
|
5052 |
+
object-assign "^4.0.1"
|
5053 |
+
remark-parse "^5.0.0"
|
5054 |
+
unified "^6.1.2"
|
5055 |
+
|
5056 |
+
eslint-plugin-prettier@^3.1.2:
|
5057 |
+
version "3.1.4"
|
5058 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2"
|
5059 |
+
integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg==
|
5060 |
+
dependencies:
|
5061 |
+
prettier-linter-helpers "^1.0.0"
|
5062 |
+
|
5063 |
+
eslint-plugin-react-hooks@^4.0.4:
|
5064 |
+
version "4.1.2"
|
5065 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.1.2.tgz#2eb53731d11c95826ef7a7272303eabb5c9a271e"
|
5066 |
+
integrity sha512-ykUeqkGyUGgwTtk78C0o8UG2fzwmgJ0qxBGPp2WqRKsTwcLuVf01kTDRAtOsd4u6whX2XOC8749n2vPydP82fg==
|
5067 |
+
|
5068 |
+
eslint-plugin-react@^7.20.0:
|
5069 |
+
version "7.21.3"
|
5070 |
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.3.tgz#71655d2af5155b19285ec929dd2cdc67a4470b52"
|
5071 |
+
integrity sha512-OI4GwTCqyIb4ipaOEGLWdaOHCXZZydStAsBEPB2e1ZfNM37bojpgO1BoOQbFb0eLVz3QLDx7b+6kYcrxCuJfhw==
|
5072 |
+
dependencies:
|
5073 |
+
array-includes "^3.1.1"
|
5074 |
+
array.prototype.flatmap "^1.2.3"
|
5075 |
+
doctrine "^2.1.0"
|
5076 |
+
has "^1.0.3"
|
5077 |
+
jsx-ast-utils "^2.4.1"
|
5078 |
+
object.entries "^1.1.2"
|
5079 |
+
object.fromentries "^2.0.2"
|
5080 |
+
object.values "^1.1.1"
|
5081 |
+
prop-types "^15.7.2"
|
5082 |
+
resolve "^1.17.0"
|
5083 |
+
string.prototype.matchall "^4.0.2"
|
5084 |
+
|
5085 |
+
eslint-scope@^4.0.3:
|
5086 |
+
version "4.0.3"
|
5087 |
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
|
5088 |
+
integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
|
5089 |
+
dependencies:
|
5090 |
+
esrecurse "^4.1.0"
|
5091 |
+
estraverse "^4.1.1"
|
5092 |
+
|
5093 |
+
eslint-scope@^5.0.0, eslint-scope@^5.1.1:
|
5094 |
+
version "5.1.1"
|
5095 |
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
|
5096 |
+
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
|
5097 |
+
dependencies:
|
5098 |
+
esrecurse "^4.3.0"
|
5099 |
+
estraverse "^4.1.1"
|
5100 |
+
|
5101 |
+
eslint-utils@^2.0.0, eslint-utils@^2.1.0:
|
5102 |
+
version "2.1.0"
|
5103 |
+
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
|
5104 |
+
integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
|
5105 |
+
dependencies:
|
5106 |
+
eslint-visitor-keys "^1.1.0"
|
5107 |
+
|
5108 |
+
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
|
5109 |
+
version "1.3.0"
|
5110 |
+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
|
5111 |
+
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
|
5112 |
+
|
5113 |
+
eslint@^7.1.0:
|
5114 |
+
version "7.10.0"
|
5115 |
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.10.0.tgz#494edb3e4750fb791133ca379e786a8f648c72b9"
|
5116 |
+
integrity sha512-BDVffmqWl7JJXqCjAK6lWtcQThZB/aP1HXSH1JKwGwv0LQEdvpR7qzNrUT487RM39B5goWuboFad5ovMBmD8yA==
|
5117 |
+
dependencies:
|
5118 |
+
"@babel/code-frame" "^7.0.0"
|
5119 |
+
"@eslint/eslintrc" "^0.1.3"
|
5120 |
+
ajv "^6.10.0"
|
5121 |
+
chalk "^4.0.0"
|
5122 |
+
cross-spawn "^7.0.2"
|
5123 |
+
debug "^4.0.1"
|
5124 |
+
doctrine "^3.0.0"
|
5125 |
+
enquirer "^2.3.5"
|
5126 |
+
eslint-scope "^5.1.1"
|
5127 |
+
eslint-utils "^2.1.0"
|
5128 |
+
eslint-visitor-keys "^1.3.0"
|
5129 |
+
espree "^7.3.0"
|
5130 |
+
esquery "^1.2.0"
|
5131 |
+
esutils "^2.0.2"
|
5132 |
+
file-entry-cache "^5.0.1"
|
5133 |
+
functional-red-black-tree "^1.0.1"
|
5134 |
+
glob-parent "^5.0.0"
|
5135 |
+
globals "^12.1.0"
|
5136 |
+
ignore "^4.0.6"
|
5137 |
+
import-fresh "^3.0.0"
|
5138 |
+
imurmurhash "^0.1.4"
|
5139 |
+
is-glob "^4.0.0"
|
5140 |
+
js-yaml "^3.13.1"
|
5141 |
+
json-stable-stringify-without-jsonify "^1.0.1"
|
5142 |
+
levn "^0.4.1"
|
5143 |
+
lodash "^4.17.19"
|
5144 |
+
minimatch "^3.0.4"
|
5145 |
+
natural-compare "^1.4.0"
|
5146 |
+
optionator "^0.9.1"
|
5147 |
+
progress "^2.0.0"
|
5148 |
+
regexpp "^3.1.0"
|
5149 |
+
semver "^7.2.1"
|
5150 |
+
strip-ansi "^6.0.0"
|
5151 |
+
strip-json-comments "^3.1.0"
|
5152 |
+
table "^5.2.3"
|
5153 |
+
text-table "^0.2.0"
|
5154 |
+
v8-compile-cache "^2.0.3"
|
5155 |
+
|
5156 |
+
espree@^7.3.0:
|
5157 |
+
version "7.3.0"
|
5158 |
+
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
|
5159 |
+
integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
|
5160 |
+
dependencies:
|
5161 |
+
acorn "^7.4.0"
|
5162 |
+
acorn-jsx "^5.2.0"
|
5163 |
+
eslint-visitor-keys "^1.3.0"
|
5164 |
+
|
5165 |
+
esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
|
5166 |
+
version "4.0.1"
|
5167 |
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
5168 |
+
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
5169 |
+
|
5170 |
+
esquery@^1.2.0:
|
5171 |
+
version "1.3.1"
|
5172 |
+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
|
5173 |
+
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
|
5174 |
+
dependencies:
|
5175 |
+
estraverse "^5.1.0"
|
5176 |
+
|
5177 |
+
esrecurse@^4.1.0, esrecurse@^4.3.0:
|
5178 |
+
version "4.3.0"
|
5179 |
+
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
|
5180 |
+
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
|
5181 |
+
dependencies:
|
5182 |
+
estraverse "^5.2.0"
|
5183 |
+
|
5184 |
+
estraverse@^4.1.1, estraverse@^4.2.0:
|
5185 |
+
version "4.3.0"
|
5186 |
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
5187 |
+
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
5188 |
+
|
5189 |
+
estraverse@^5.1.0, estraverse@^5.2.0:
|
5190 |
+
version "5.2.0"
|
5191 |
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
|
5192 |
+
integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
|
5193 |
+
|
5194 |
+
esutils@^2.0.2:
|
5195 |
+
version "2.0.3"
|
5196 |
+
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
5197 |
+
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
5198 |
+
|
5199 |
+
etag@~1.8.1:
|
5200 |
+
version "1.8.1"
|
5201 |
+
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
|
5202 |
+
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
|
5203 |
+
|
5204 |
+
eventemitter2@^6.4.2:
|
5205 |
+
version "6.4.3"
|
5206 |
+
resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.3.tgz#35c563619b13f3681e7eb05cbdaf50f56ba58820"
|
5207 |
+
integrity sha512-t0A2msp6BzOf+QAcI6z9XMktLj52OjGQg+8SJH6v5+3uxNpWYRR3wQmfA+6xtMU9kOC59qk9licus5dYcrYkMQ==
|
5208 |
+
|
5209 |
+
eventemitter2@~0.4.13:
|
5210 |
+
version "0.4.14"
|
5211 |
+
resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab"
|
5212 |
+
integrity sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=
|
5213 |
+
|
5214 |
+
events@^3.0.0:
|
5215 |
+
version "3.2.0"
|
5216 |
+
resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
|
5217 |
+
integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
|
5218 |
+
|
5219 |
+
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
5220 |
+
version "1.0.3"
|
5221 |
+
resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
|
5222 |
+
integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
|
5223 |
+
dependencies:
|
5224 |
+
md5.js "^1.3.4"
|
5225 |
+
safe-buffer "^5.1.1"
|
5226 |
+
|
5227 |
+
exec-sh@^0.3.2:
|
5228 |
+
version "0.3.4"
|
5229 |
+
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5"
|
5230 |
+
integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
|
5231 |
+
|
5232 |
+
execa@^0.7.0:
|
5233 |
+
version "0.7.0"
|
5234 |
+
resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
|
5235 |
+
integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
|
5236 |
+
dependencies:
|
5237 |
+
cross-spawn "^5.0.1"
|
5238 |
+
get-stream "^3.0.0"
|
5239 |
+
is-stream "^1.1.0"
|
5240 |
+
npm-run-path "^2.0.0"
|
5241 |
+
p-finally "^1.0.0"
|
5242 |
+
signal-exit "^3.0.0"
|
5243 |
+
strip-eof "^1.0.0"
|
5244 |
+
|
5245 |
+
execa@^1.0.0:
|
5246 |
+
version "1.0.0"
|
5247 |
+
resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
|
5248 |
+
integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
|
5249 |
+
dependencies:
|
5250 |
+
cross-spawn "^6.0.0"
|
5251 |
+
get-stream "^4.0.0"
|
5252 |
+
is-stream "^1.1.0"
|
5253 |
+
npm-run-path "^2.0.0"
|
5254 |
+
p-finally "^1.0.0"
|
5255 |
+
signal-exit "^3.0.0"
|
5256 |
+
strip-eof "^1.0.0"
|
5257 |
+
|
5258 |
+
execa@^3.2.0:
|
5259 |
+
version "3.4.0"
|
5260 |
+
resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
|
5261 |
+
integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==
|
5262 |
+
dependencies:
|
5263 |
+
cross-spawn "^7.0.0"
|
5264 |
+
get-stream "^5.0.0"
|
5265 |
+
human-signals "^1.1.1"
|
5266 |
+
is-stream "^2.0.0"
|
5267 |
+
merge-stream "^2.0.0"
|
5268 |
+
npm-run-path "^4.0.0"
|
5269 |
+
onetime "^5.1.0"
|
5270 |
+
p-finally "^2.0.0"
|
5271 |
+
signal-exit "^3.0.2"
|
5272 |
+
strip-final-newline "^2.0.0"
|
5273 |
+
|
5274 |
+
execa@^4.0.0, execa@^4.0.2:
|
5275 |
+
version "4.0.3"
|
5276 |
+
resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2"
|
5277 |
+
integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==
|
5278 |
+
dependencies:
|
5279 |
+
cross-spawn "^7.0.0"
|
5280 |
+
get-stream "^5.0.0"
|
5281 |
+
human-signals "^1.1.1"
|
5282 |
+
is-stream "^2.0.0"
|
5283 |
+
merge-stream "^2.0.0"
|
5284 |
+
npm-run-path "^4.0.0"
|
5285 |
+
onetime "^5.1.0"
|
5286 |
+
signal-exit "^3.0.2"
|
5287 |
+
strip-final-newline "^2.0.0"
|
5288 |
+
|
5289 |
+
execall@^2.0.0:
|
5290 |
+
version "2.0.0"
|
5291 |
+
resolved "https://registry.yarnpkg.com/execall/-/execall-2.0.0.tgz#16a06b5fe5099df7d00be5d9c06eecded1663b45"
|
5292 |
+
integrity sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==
|
5293 |
+
dependencies:
|
5294 |
+
clone-regexp "^2.1.0"
|
5295 |
+
|
5296 |
+
executable@^4.1.1:
|
5297 |
+
version "4.1.1"
|
5298 |
+
resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c"
|
5299 |
+
integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==
|
5300 |
+
dependencies:
|
5301 |
+
pify "^2.2.0"
|
5302 |
+
|
5303 |
+
exit-hook@^1.0.0:
|
5304 |
+
version "1.1.1"
|
5305 |
+
resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
|
5306 |
+
integrity sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=
|
5307 |
+
|
5308 |
+
exit@^0.1.2, exit@~0.1.1, exit@~0.1.2:
|
5309 |
+
version "0.1.2"
|
5310 |
+
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
|
5311 |
+
integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
|
5312 |
+
|
5313 |
+
expand-brackets@^2.1.4:
|
5314 |
+
version "2.1.4"
|
5315 |
+
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
|
5316 |
+
integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
|
5317 |
+
dependencies:
|
5318 |
+
debug "^2.3.3"
|
5319 |
+
define-property "^0.2.5"
|
5320 |
+
extend-shallow "^2.0.1"
|
5321 |
+
posix-character-classes "^0.1.0"
|
5322 |
+
regex-not "^1.0.0"
|
5323 |
+
snapdragon "^0.8.1"
|
5324 |
+
to-regex "^3.0.1"
|
5325 |
+
|
5326 |
+
expand-tilde@^1.2.2:
|
5327 |
+
version "1.2.2"
|
5328 |
+
resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
|
5329 |
+
integrity sha1-C4HrqJflo9MdHD0QL48BRB5VlEk=
|
5330 |
+
dependencies:
|
5331 |
+
os-homedir "^1.0.1"
|
5332 |
+
|
5333 |
+
expand-tilde@^2.0.0, expand-tilde@^2.0.2:
|
5334 |
+
version "2.0.2"
|
5335 |
+
resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
|
5336 |
+
integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=
|
5337 |
+
dependencies:
|
5338 |
+
homedir-polyfill "^1.0.1"
|
5339 |
+
|
5340 |
+
expect-puppeteer@^4.4.0:
|
5341 |
+
version "4.4.0"
|
5342 |
+
resolved "https://registry.yarnpkg.com/expect-puppeteer/-/expect-puppeteer-4.4.0.tgz#1c948af08acdd6c8cbdb7f90e617f44d86888886"
|
5343 |
+
integrity sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==
|
5344 |
+
|
5345 |
+
expect@^25.5.0:
|
5346 |
+
version "25.5.0"
|
5347 |
+
resolved "https://registry.yarnpkg.com/expect/-/expect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba"
|
5348 |
+
integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==
|
5349 |
+
dependencies:
|
5350 |
+
"@jest/types" "^25.5.0"
|
5351 |
+
ansi-styles "^4.0.0"
|
5352 |
+
jest-get-type "^25.2.6"
|
5353 |
+
jest-matcher-utils "^25.5.0"
|
5354 |
+
jest-message-util "^25.5.0"
|
5355 |
+
jest-regex-util "^25.2.6"
|
5356 |
+
|
5357 |
+
express@^4.16.3:
|
5358 |
+
version "4.17.1"
|
5359 |
+
resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
|
5360 |
+
integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
|
5361 |
+
dependencies:
|
5362 |
+
accepts "~1.3.7"
|
5363 |
+
array-flatten "1.1.1"
|
5364 |
+
body-parser "1.19.0"
|
5365 |
+
content-disposition "0.5.3"
|
5366 |
+
content-type "~1.0.4"
|
5367 |
+
cookie "0.4.0"
|
5368 |
+
cookie-signature "1.0.6"
|
5369 |
+
debug "2.6.9"
|
5370 |
+
depd "~1.1.2"
|
5371 |
+
encodeurl "~1.0.2"
|
5372 |
+
escape-html "~1.0.3"
|
5373 |
+
etag "~1.8.1"
|
5374 |
+
finalhandler "~1.1.2"
|
5375 |
+
fresh "0.5.2"
|
5376 |
+
merge-descriptors "1.0.1"
|
5377 |
+
methods "~1.1.2"
|
5378 |
+
on-finished "~2.3.0"
|
5379 |
+
parseurl "~1.3.3"
|
5380 |
+
path-to-regexp "0.1.7"
|
5381 |
+
proxy-addr "~2.0.5"
|
5382 |
+
qs "6.7.0"
|
5383 |
+
range-parser "~1.2.1"
|
5384 |
+
safe-buffer "5.1.2"
|
5385 |
+
send "0.17.1"
|
5386 |
+
serve-static "1.14.1"
|
5387 |
+
setprototypeof "1.1.1"
|
5388 |
+
statuses "~1.5.0"
|
5389 |
+
type-is "~1.6.18"
|
5390 |
+
utils-merge "1.0.1"
|
5391 |
+
vary "~1.1.2"
|
5392 |
+
|
5393 |
+
extend-shallow@^2.0.1:
|
5394 |
+
version "2.0.1"
|
5395 |
+
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
|
5396 |
+
integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
|
5397 |
+
dependencies:
|
5398 |
+
is-extendable "^0.1.0"
|
5399 |
+
|
5400 |
+
extend-shallow@^3.0.0, extend-shallow@^3.0.2:
|
5401 |
+
version "3.0.2"
|
5402 |
+
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
|
5403 |
+
integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
|
5404 |
+
dependencies:
|
5405 |
+
assign-symbols "^1.0.0"
|
5406 |
+
is-extendable "^1.0.1"
|
5407 |
+
|
5408 |
+
extend@^3.0.0, extend@~3.0.2:
|
5409 |
+
version "3.0.2"
|
5410 |
+
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
|
5411 |
+
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
|
5412 |
+
|
5413 |
+
extglob@^2.0.4:
|
5414 |
+
version "2.0.4"
|
5415 |
+
resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
|
5416 |
+
integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
|
5417 |
+
dependencies:
|
5418 |
+
array-unique "^0.3.2"
|
5419 |
+
define-property "^1.0.0"
|
5420 |
+
expand-brackets "^2.1.4"
|
5421 |
+
extend-shallow "^2.0.1"
|
5422 |
+
fragment-cache "^0.2.1"
|
5423 |
+
regex-not "^1.0.0"
|
5424 |
+
snapdragon "^0.8.1"
|
5425 |
+
to-regex "^3.0.1"
|
5426 |
+
|
5427 |
+
extract-zip@^1.7.0:
|
5428 |
+
version "1.7.0"
|
5429 |
+
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927"
|
5430 |
+
integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==
|
5431 |
+
dependencies:
|
5432 |
+
concat-stream "^1.6.2"
|
5433 |
+
debug "^2.6.9"
|
5434 |
+
mkdirp "^0.5.4"
|
5435 |
+
yauzl "^2.10.0"
|
5436 |
+
|
5437 |
+
extract-zip@^2.0.0:
|
5438 |
+
version "2.0.1"
|
5439 |
+
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a"
|
5440 |
+
integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==
|
5441 |
+
dependencies:
|
5442 |
+
debug "^4.1.1"
|
5443 |
+
get-stream "^5.1.0"
|
5444 |
+
yauzl "^2.10.0"
|
5445 |
+
optionalDependencies:
|
5446 |
+
"@types/yauzl" "^2.9.1"
|
5447 |
+
|
5448 |
+
extsprintf@1.3.0:
|
5449 |
+
version "1.3.0"
|
5450 |
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
|
5451 |
+
integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
|
5452 |
+
|
5453 |
+
extsprintf@^1.2.0:
|
5454 |
+
version "1.4.0"
|
5455 |
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
|
5456 |
+
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
|
5457 |
+
|
5458 |
+
fast-deep-equal@^3.1.1:
|
5459 |
+
version "3.1.3"
|
5460 |
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
5461 |
+
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
5462 |
+
|
5463 |
+
fast-diff@^1.1.2:
|
5464 |
+
version "1.2.0"
|
5465 |
+
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
|
5466 |
+
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
|
5467 |
+
|
5468 |
+
fast-glob@^3.1.1, fast-glob@^3.2.4:
|
5469 |
+
version "3.2.4"
|
5470 |
+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
|
5471 |
+
integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
|
5472 |
+
dependencies:
|
5473 |
+
"@nodelib/fs.stat" "^2.0.2"
|
5474 |
+
"@nodelib/fs.walk" "^1.2.3"
|
5475 |
+
glob-parent "^5.1.0"
|
5476 |
+
merge2 "^1.3.0"
|
5477 |
+
micromatch "^4.0.2"
|
5478 |
+
picomatch "^2.2.1"
|
5479 |
+
|
5480 |
+
fast-json-stable-stringify@^2.0.0:
|
5481 |
+
version "2.1.0"
|
5482 |
+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
5483 |
+
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
5484 |
+
|
5485 |
+
fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
|
5486 |
+
version "2.0.6"
|
5487 |
+
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
5488 |
+
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
5489 |
+
|
5490 |
+
fastest-levenshtein@^1.0.12:
|
5491 |
+
version "1.0.12"
|
5492 |
+
resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2"
|
5493 |
+
integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
|
5494 |
+
|
5495 |
+
fastq@^1.6.0:
|
5496 |
+
version "1.8.0"
|
5497 |
+
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481"
|
5498 |
+
integrity sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==
|
5499 |
+
dependencies:
|
5500 |
+
reusify "^1.0.4"
|
5501 |
+
|
5502 |
+
faye-websocket@~0.10.0:
|
5503 |
+
version "0.10.0"
|
5504 |
+
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
|
5505 |
+
integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=
|
5506 |
+
dependencies:
|
5507 |
+
websocket-driver ">=0.5.1"
|
5508 |
+
|
5509 |
+
fb-watchman@^2.0.0:
|
5510 |
+
version "2.0.1"
|
5511 |
+
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
|
5512 |
+
integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
|
5513 |
+
dependencies:
|
5514 |
+
bser "2.1.1"
|
5515 |
+
|
5516 |
+
fd-slicer@~1.1.0:
|
5517 |
+
version "1.1.0"
|
5518 |
+
resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e"
|
5519 |
+
integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=
|
5520 |
+
dependencies:
|
5521 |
+
pend "~1.2.0"
|
5522 |
+
|
5523 |
+
figgy-pudding@^3.4.1, figgy-pudding@^3.5.1:
|
5524 |
+
version "3.5.2"
|
5525 |
+
resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
|
5526 |
+
integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
|
5527 |
+
|
5528 |
+
figures@^1.7.0:
|
5529 |
+
version "1.7.0"
|
5530 |
+
resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
|
5531 |
+
integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=
|
5532 |
+
dependencies:
|
5533 |
+
escape-string-regexp "^1.0.5"
|
5534 |
+
object-assign "^4.1.0"
|
5535 |
+
|
5536 |
+
figures@^2.0.0:
|
5537 |
+
version "2.0.0"
|
5538 |
+
resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
|
5539 |
+
integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
|
5540 |
+
dependencies:
|
5541 |
+
escape-string-regexp "^1.0.5"
|
5542 |
+
|
5543 |
+
figures@^3.0.0:
|
5544 |
+
version "3.2.0"
|
5545 |
+
resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
|
5546 |
+
integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
|
5547 |
+
dependencies:
|
5548 |
+
escape-string-regexp "^1.0.5"
|
5549 |
+
|
5550 |
+
file-entry-cache@^5.0.1:
|
5551 |
+
version "5.0.1"
|
5552 |
+
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
|
5553 |
+
integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
|
5554 |
+
dependencies:
|
5555 |
+
flat-cache "^2.0.1"
|
5556 |
+
|
5557 |
+
file-uri-to-path@1.0.0:
|
5558 |
+
version "1.0.0"
|
5559 |
+
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
5560 |
+
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
5561 |
+
|
5562 |
+
filesize@^3.6.1:
|
5563 |
+
version "3.6.1"
|
5564 |
+
resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
|
5565 |
+
integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==
|
5566 |
+
|
5567 |
+
fill-range@^4.0.0:
|
5568 |
+
version "4.0.0"
|
5569 |
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
|
5570 |
+
integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
|
5571 |
+
dependencies:
|
5572 |
+
extend-shallow "^2.0.1"
|
5573 |
+
is-number "^3.0.0"
|
5574 |
+
repeat-string "^1.6.1"
|
5575 |
+
to-regex-range "^2.1.0"
|
5576 |
+
|
5577 |
+
fill-range@^7.0.1:
|
5578 |
+
version "7.0.1"
|
5579 |
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
5580 |
+
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
5581 |
+
dependencies:
|
5582 |
+
to-regex-range "^5.0.1"
|
5583 |
+
|
5584 |
+
finalhandler@~1.1.2:
|
5585 |
+
version "1.1.2"
|
5586 |
+
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
|
5587 |
+
integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
|
5588 |
+
dependencies:
|
5589 |
+
debug "2.6.9"
|
5590 |
+
encodeurl "~1.0.2"
|
5591 |
+
escape-html "~1.0.3"
|
5592 |
+
on-finished "~2.3.0"
|
5593 |
+
parseurl "~1.3.3"
|
5594 |
+
statuses "~1.5.0"
|
5595 |
+
unpipe "~1.0.0"
|
5596 |
+
|
5597 |
+
find-cache-dir@^2.1.0:
|
5598 |
+
version "2.1.0"
|
5599 |
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
|
5600 |
+
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
|
5601 |
+
dependencies:
|
5602 |
+
commondir "^1.0.1"
|
5603 |
+
make-dir "^2.0.0"
|
5604 |
+
pkg-dir "^3.0.0"
|
5605 |
+
|
5606 |
+
find-cache-dir@^3.3.1:
|
5607 |
+
version "3.3.1"
|
5608 |
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
|
5609 |
+
integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
|
5610 |
+
dependencies:
|
5611 |
+
commondir "^1.0.1"
|
5612 |
+
make-dir "^3.0.2"
|
5613 |
+
pkg-dir "^4.1.0"
|
5614 |
+
|
5615 |
+
find-file-up@^0.1.2:
|
5616 |
+
version "0.1.3"
|
5617 |
+
resolved "https://registry.yarnpkg.com/find-file-up/-/find-file-up-0.1.3.tgz#cf68091bcf9f300a40da411b37da5cce5a2fbea0"
|
5618 |
+
integrity sha1-z2gJG8+fMApA2kEbN9pczlovvqA=
|
5619 |
+
dependencies:
|
5620 |
+
fs-exists-sync "^0.1.0"
|
5621 |
+
resolve-dir "^0.1.0"
|
5622 |
+
|
5623 |
+
find-npm-prefix@^1.0.2:
|
5624 |
+
version "1.0.2"
|
5625 |
+
resolved "https://registry.yarnpkg.com/find-npm-prefix/-/find-npm-prefix-1.0.2.tgz#8d8ce2c78b3b4b9e66c8acc6a37c231eb841cfdf"
|
5626 |
+
integrity sha512-KEftzJ+H90x6pcKtdXZEPsQse8/y/UnvzRKrOSQFprnrGaFuJ62fVkP34Iu2IYuMvyauCyoLTNkJZgrrGA2wkA==
|
5627 |
+
|
5628 |
+
find-parent-dir@~0.3.0:
|
5629 |
+
version "0.3.0"
|
5630 |
+
resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54"
|
5631 |
+
integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ=
|
5632 |
+
|
5633 |
+
find-pkg@^0.1.2:
|
5634 |
+
version "0.1.2"
|
5635 |
+
resolved "https://registry.yarnpkg.com/find-pkg/-/find-pkg-0.1.2.tgz#1bdc22c06e36365532e2a248046854b9788da557"
|
5636 |
+
integrity sha1-G9wiwG42NlUy4qJIBGhUuXiNpVc=
|
5637 |
+
dependencies:
|
5638 |
+
find-file-up "^0.1.2"
|
5639 |
+
|
5640 |
+
find-process@^1.4.3:
|
5641 |
+
version "1.4.3"
|
5642 |
+
resolved "https://registry.yarnpkg.com/find-process/-/find-process-1.4.3.tgz#25f9105dc32e42abad4636752c37c51cd57dce45"
|
5643 |
+
integrity sha512-+IA+AUsQCf3uucawyTwMWcY+2M3FXq3BRvw3S+j5Jvydjk31f/+NPWpYZOJs+JUs2GvxH4Yfr6Wham0ZtRLlPA==
|
5644 |
+
dependencies:
|
5645 |
+
chalk "^2.0.1"
|
5646 |
+
commander "^2.11.0"
|
5647 |
+
debug "^2.6.8"
|
5648 |
+
|
5649 |
+
find-up@^1.0.0:
|
5650 |
+
version "1.1.2"
|
5651 |
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
|
5652 |
+
integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
|
5653 |
+
dependencies:
|
5654 |
+
path-exists "^2.0.0"
|
5655 |
+
pinkie-promise "^2.0.0"
|
5656 |
+
|
5657 |
+
find-up@^2.0.0:
|
5658 |
+
version "2.1.0"
|
5659 |
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
5660 |
+
integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
|
5661 |
+
dependencies:
|
5662 |
+
locate-path "^2.0.0"
|
5663 |
+
|
5664 |
+
find-up@^3.0.0:
|
5665 |
+
version "3.0.0"
|
5666 |
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
|
5667 |
+
integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
|
5668 |
+
dependencies:
|
5669 |
+
locate-path "^3.0.0"
|
5670 |
+
|
5671 |
+
find-up@^4.0.0, find-up@^4.1.0:
|
5672 |
+
version "4.1.0"
|
5673 |
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
|
5674 |
+
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
|
5675 |
+
dependencies:
|
5676 |
+
locate-path "^5.0.0"
|
5677 |
+
path-exists "^4.0.0"
|
5678 |
+
|
5679 |
+
find-versions@^3.0.0:
|
5680 |
+
version "3.2.0"
|
5681 |
+
resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
|
5682 |
+
integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
|
5683 |
+
dependencies:
|
5684 |
+
semver-regex "^2.0.0"
|
5685 |
+
|
5686 |
+
findup-sync@^2.0.0:
|
5687 |
+
version "2.0.0"
|
5688 |
+
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc"
|
5689 |
+
integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=
|
5690 |
+
dependencies:
|
5691 |
+
detect-file "^1.0.0"
|
5692 |
+
is-glob "^3.1.0"
|
5693 |
+
micromatch "^3.0.4"
|
5694 |
+
resolve-dir "^1.0.1"
|
5695 |
+
|
5696 |
+
findup-sync@^3.0.0:
|
5697 |
+
version "3.0.0"
|
5698 |
+
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"
|
5699 |
+
integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==
|
5700 |
+
dependencies:
|
5701 |
+
detect-file "^1.0.0"
|
5702 |
+
is-glob "^4.0.0"
|
5703 |
+
micromatch "^3.0.4"
|
5704 |
+
resolve-dir "^1.0.1"
|
5705 |
+
|
5706 |
+
findup-sync@~0.3.0:
|
5707 |
+
version "0.3.0"
|
5708 |
+
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16"
|
5709 |
+
integrity sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=
|
5710 |
+
dependencies:
|
5711 |
+
glob "~5.0.0"
|
5712 |
+
|
5713 |
+
findup@^0.1.5:
|
5714 |
+
version "0.1.5"
|
5715 |
+
resolved "https://registry.yarnpkg.com/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb"
|
5716 |
+
integrity sha1-itkpozk7rGJ5V6fl3kYjsGsOLOs=
|
5717 |
+
dependencies:
|
5718 |
+
colors "~0.6.0-1"
|
5719 |
+
commander "~2.1.0"
|
5720 |
+
|
5721 |
+
fined@^1.0.1:
|
5722 |
+
version "1.2.0"
|
5723 |
+
resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b"
|
5724 |
+
integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==
|
5725 |
+
dependencies:
|
5726 |
+
expand-tilde "^2.0.2"
|
5727 |
+
is-plain-object "^2.0.3"
|
5728 |
+
object.defaults "^1.1.0"
|
5729 |
+
object.pick "^1.2.0"
|
5730 |
+
parse-filepath "^1.0.1"
|
5731 |
+
|
5732 |
+
flagged-respawn@^1.0.0:
|
5733 |
+
version "1.0.1"
|
5734 |
+
resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41"
|
5735 |
+
integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==
|
5736 |
+
|
5737 |
+
flat-cache@^2.0.1:
|
5738 |
+
version "2.0.1"
|
5739 |
+
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
|
5740 |
+
integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
|
5741 |
+
dependencies:
|
5742 |
+
flatted "^2.0.0"
|
5743 |
+
rimraf "2.6.3"
|
5744 |
+
write "1.0.3"
|
5745 |
+
|
5746 |
+
flatted@^2.0.0:
|
5747 |
+
version "2.0.2"
|
5748 |
+
resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"
|
5749 |
+
integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
|
5750 |
+
|
5751 |
+
flush-write-stream@^1.0.0:
|
5752 |
+
version "1.1.1"
|
5753 |
+
resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
|
5754 |
+
integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
|
5755 |
+
dependencies:
|
5756 |
+
inherits "^2.0.3"
|
5757 |
+
readable-stream "^2.3.6"
|
5758 |
+
|
5759 |
+
for-in@^0.1.3:
|
5760 |
+
version "0.1.8"
|
5761 |
+
resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1"
|
5762 |
+
integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=
|
5763 |
+
|
5764 |
+
for-in@^1.0.1, for-in@^1.0.2:
|
5765 |
+
version "1.0.2"
|
5766 |
+
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
5767 |
+
integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
|
5768 |
+
|
5769 |
+
for-own@^0.1.3:
|
5770 |
+
version "0.1.5"
|
5771 |
+
resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
|
5772 |
+
integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=
|
5773 |
+
dependencies:
|
5774 |
+
for-in "^1.0.1"
|
5775 |
+
|
5776 |
+
for-own@^1.0.0:
|
5777 |
+
version "1.0.0"
|
5778 |
+
resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
|
5779 |
+
integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=
|
5780 |
+
dependencies:
|
5781 |
+
for-in "^1.0.1"
|
5782 |
+
|
5783 |
+
forever-agent@~0.6.1:
|
5784 |
+
version "0.6.1"
|
5785 |
+
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
|
5786 |
+
integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
|
5787 |
+
|
5788 |
+
form-data@~2.3.2:
|
5789 |
+
version "2.3.3"
|
5790 |
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
|
5791 |
+
integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
|
5792 |
+
dependencies:
|
5793 |
+
asynckit "^0.4.0"
|
5794 |
+
combined-stream "^1.0.6"
|
5795 |
+
mime-types "^2.1.12"
|
5796 |
+
|
5797 |
+
forwarded@~0.1.2:
|
5798 |
+
version "0.1.2"
|
5799 |
+
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
|
5800 |
+
integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
|
5801 |
+
|
5802 |
+
fragment-cache@^0.2.1:
|
5803 |
+
version "0.2.1"
|
5804 |
+
resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
|
5805 |
+
integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
|
5806 |
+
dependencies:
|
5807 |
+
map-cache "^0.2.2"
|
5808 |
+
|
5809 |
+
fresh@0.5.2:
|
5810 |
+
version "0.5.2"
|
5811 |
+
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
|
5812 |
+
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
|
5813 |
+
|
5814 |
+
from2@^1.3.0:
|
5815 |
+
version "1.3.0"
|
5816 |
+
resolved "https://registry.yarnpkg.com/from2/-/from2-1.3.0.tgz#88413baaa5f9a597cfde9221d86986cd3c061dfd"
|
5817 |
+
integrity sha1-iEE7qqX5pZfP3pIh2GmGzTwGHf0=
|
5818 |
+
dependencies:
|
5819 |
+
inherits "~2.0.1"
|
5820 |
+
readable-stream "~1.1.10"
|
5821 |
+
|
5822 |
+
from2@^2.1.0, from2@^2.3.0:
|
5823 |
+
version "2.3.0"
|
5824 |
+
resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
|
5825 |
+
integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
|
5826 |
+
dependencies:
|
5827 |
+
inherits "^2.0.1"
|
5828 |
+
readable-stream "^2.0.0"
|
5829 |
+
|
5830 |
+
fs-constants@^1.0.0:
|
5831 |
+
version "1.0.0"
|
5832 |
+
resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
|
5833 |
+
integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
|
5834 |
+
|
5835 |
+
fs-exists-sync@^0.1.0:
|
5836 |
+
version "0.1.0"
|
5837 |
+
resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
|
5838 |
+
integrity sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=
|
5839 |
+
|
5840 |
+
fs-extra@^9.0.0, fs-extra@^9.0.1:
|
5841 |
+
version "9.0.1"
|
5842 |
+
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc"
|
5843 |
+
integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==
|
5844 |
+
dependencies:
|
5845 |
+
at-least-node "^1.0.0"
|
5846 |
+
graceful-fs "^4.2.0"
|
5847 |
+
jsonfile "^6.0.1"
|
5848 |
+
universalify "^1.0.0"
|
5849 |
+
|
5850 |
+
fs-minipass@^1.2.5:
|
5851 |
+
version "1.2.7"
|
5852 |
+
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
|
5853 |
+
integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
|
5854 |
+
dependencies:
|
5855 |
+
minipass "^2.6.0"
|
5856 |
+
|
5857 |
+
fs-minipass@^2.0.0:
|
5858 |
+
version "2.1.0"
|
5859 |
+
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
|
5860 |
+
integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
|
5861 |
+
dependencies:
|
5862 |
+
minipass "^3.0.0"
|
5863 |
+
|
5864 |
+
fs-vacuum@^1.2.10, fs-vacuum@~1.2.10:
|
5865 |
+
version "1.2.10"
|
5866 |
+
resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36"
|
5867 |
+
integrity sha1-t2Kb7AekAxolSP35n17PHMizHjY=
|
5868 |
+
dependencies:
|
5869 |
+
graceful-fs "^4.1.2"
|
5870 |
+
path-is-inside "^1.0.1"
|
5871 |
+
rimraf "^2.5.2"
|
5872 |
+
|
5873 |
+
fs-write-stream-atomic@^1.0.8, fs-write-stream-atomic@~1.0.10:
|
5874 |
+
version "1.0.10"
|
5875 |
+
resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
|
5876 |
+
integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
|
5877 |
+
dependencies:
|
5878 |
+
graceful-fs "^4.1.2"
|
5879 |
+
iferr "^0.1.5"
|
5880 |
+
imurmurhash "^0.1.4"
|
5881 |
+
readable-stream "1 || 2"
|
5882 |
+
|
5883 |
+
fs.realpath@^1.0.0:
|
5884 |
+
version "1.0.0"
|
5885 |
+
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
5886 |
+
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
5887 |
+
|
5888 |
+
fsevents@^1.2.7:
|
5889 |
+
version "1.2.13"
|
5890 |
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
|
5891 |
+
integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
|
5892 |
+
dependencies:
|
5893 |
+
bindings "^1.5.0"
|
5894 |
+
nan "^2.12.1"
|
5895 |
+
|
5896 |
+
fsevents@^2.1.2, fsevents@~2.1.2:
|
5897 |
+
version "2.1.3"
|
5898 |
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
|
5899 |
+
integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
|
5900 |
+
|
5901 |
+
fstream@^1.0.0, fstream@^1.0.12:
|
5902 |
+
version "1.0.12"
|
5903 |
+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
|
5904 |
+
integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==
|
5905 |
+
dependencies:
|
5906 |
+
graceful-fs "^4.1.2"
|
5907 |
+
inherits "~2.0.0"
|
5908 |
+
mkdirp ">=0.5 0"
|
5909 |
+
rimraf "2"
|
5910 |
+
|
5911 |
+
function-bind@^1.1.1:
|
5912 |
+
version "1.1.1"
|
5913 |
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
5914 |
+
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
5915 |
+
|
5916 |
+
function.prototype.name@^1.1.2:
|
5917 |
+
version "1.1.2"
|
5918 |
+
resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45"
|
5919 |
+
integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==
|
5920 |
+
dependencies:
|
5921 |
+
define-properties "^1.1.3"
|
5922 |
+
es-abstract "^1.17.0-next.1"
|
5923 |
+
functions-have-names "^1.2.0"
|
5924 |
+
|
5925 |
+
functional-red-black-tree@^1.0.1:
|
5926 |
+
version "1.0.1"
|
5927 |
+
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
5928 |
+
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
|
5929 |
+
|
5930 |
+
functions-have-names@^1.2.0:
|
5931 |
+
version "1.2.1"
|
5932 |
+
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz#a981ac397fa0c9964551402cdc5533d7a4d52f91"
|
5933 |
+
integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA==
|
5934 |
+
|
5935 |
+
fuse.js@^6.4.1:
|
5936 |
+
version "6.4.1"
|
5937 |
+
resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.4.1.tgz#76f1b4ab9cd021b854a68381b35628033d27507e"
|
5938 |
+
integrity sha512-+hAS7KYgLXontDh/vqffs7wIBw0ceb9Sx8ywZQhOsiQGcSO5zInGhttWOUYQYlvV/yYMJOacQ129Xs3mP3+oZQ==
|
5939 |
+
|
5940 |
+
gauge@~2.7.3:
|
5941 |
+
version "2.7.4"
|
5942 |
+
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
5943 |
+
integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
|
5944 |
+
dependencies:
|
5945 |
+
aproba "^1.0.3"
|
5946 |
+
console-control-strings "^1.0.0"
|
5947 |
+
has-unicode "^2.0.0"
|
5948 |
+
object-assign "^4.1.0"
|
5949 |
+
signal-exit "^3.0.0"
|
5950 |
+
string-width "^1.0.1"
|
5951 |
+
strip-ansi "^3.0.1"
|
5952 |
+
wide-align "^1.1.0"
|
5953 |
+
|
5954 |
+
gaze@^1.0.0:
|
5955 |
+
version "1.1.3"
|
5956 |
+
resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a"
|
5957 |
+
integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==
|
5958 |
+
dependencies:
|
5959 |
+
globule "^1.0.0"
|
5960 |
+
|
5961 |
+
genfun@^5.0.0:
|
5962 |
+
version "5.0.0"
|
5963 |
+
resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537"
|
5964 |
+
integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA==
|
5965 |
+
|
5966 |
+
gensync@^1.0.0-beta.1:
|
5967 |
+
version "1.0.0-beta.1"
|
5968 |
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
|
5969 |
+
integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
|
5970 |
+
|
5971 |
+
gentle-fs@^2.3.0, gentle-fs@^2.3.1:
|
5972 |
+
version "2.3.1"
|
5973 |
+
resolved "https://registry.yarnpkg.com/gentle-fs/-/gentle-fs-2.3.1.tgz#11201bf66c18f930ddca72cf69460bdfa05727b1"
|
5974 |
+
integrity sha512-OlwBBwqCFPcjm33rF2BjW+Pr6/ll2741l+xooiwTCeaX2CA1ZuclavyMBe0/KlR21/XGsgY6hzEQZ15BdNa13Q==
|
5975 |
+
dependencies:
|
5976 |
+
aproba "^1.1.2"
|
5977 |
+
chownr "^1.1.2"
|
5978 |
+
cmd-shim "^3.0.3"
|
5979 |
+
fs-vacuum "^1.2.10"
|
5980 |
+
graceful-fs "^4.1.11"
|
5981 |
+
iferr "^0.1.5"
|
5982 |
+
infer-owner "^1.0.4"
|
5983 |
+
mkdirp "^0.5.1"
|
5984 |
+
path-is-inside "^1.0.2"
|
5985 |
+
read-cmd-shim "^1.0.1"
|
5986 |
+
slide "^1.1.6"
|
5987 |
+
|
5988 |
+
get-caller-file@^1.0.1:
|
5989 |
+
version "1.0.3"
|
5990 |
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
|
5991 |
+
integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
|
5992 |
+
|
5993 |
+
get-caller-file@^2.0.1:
|
5994 |
+
version "2.0.5"
|
5995 |
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
5996 |
+
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
5997 |
+
|
5998 |
+
get-package-type@^0.1.0:
|
5999 |
+
version "0.1.0"
|
6000 |
+
resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
|
6001 |
+
integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
|
6002 |
+
|
6003 |
+
get-stdin@^4.0.1:
|
6004 |
+
version "4.0.1"
|
6005 |
+
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
|
6006 |
+
integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
|
6007 |
+
|
6008 |
+
get-stdin@^6.0.0:
|
6009 |
+
version "6.0.0"
|
6010 |
+
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
|
6011 |
+
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
|
6012 |
+
|
6013 |
+
get-stdin@^8.0.0:
|
6014 |
+
version "8.0.0"
|
6015 |
+
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
|
6016 |
+
integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
|
6017 |
+
|
6018 |
+
get-stdin@~5.0.1:
|
6019 |
+
version "5.0.1"
|
6020 |
+
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
|
6021 |
+
integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=
|
6022 |
+
|
6023 |
+
get-stream@^3.0.0:
|
6024 |
+
version "3.0.0"
|
6025 |
+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
6026 |
+
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
|
6027 |
+
|
6028 |
+
get-stream@^4.0.0, get-stream@^4.1.0:
|
6029 |
+
version "4.1.0"
|
6030 |
+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
|
6031 |
+
integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
|
6032 |
+
dependencies:
|
6033 |
+
pump "^3.0.0"
|
6034 |
+
|
6035 |
+
get-stream@^5.0.0, get-stream@^5.1.0:
|
6036 |
+
version "5.2.0"
|
6037 |
+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
|
6038 |
+
integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
|
6039 |
+
dependencies:
|
6040 |
+
pump "^3.0.0"
|
6041 |
+
|
6042 |
+
get-value@^2.0.3, get-value@^2.0.6:
|
6043 |
+
version "2.0.6"
|
6044 |
+
resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
|
6045 |
+
integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
|
6046 |
+
|
6047 |
+
getobject@~0.1.0:
|
6048 |
+
version "0.1.0"
|
6049 |
+
resolved "https://registry.yarnpkg.com/getobject/-/getobject-0.1.0.tgz#047a449789fa160d018f5486ed91320b6ec7885c"
|
6050 |
+
integrity sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=
|
6051 |
+
|
6052 |
+
getos@^3.2.1:
|
6053 |
+
version "3.2.1"
|
6054 |
+
resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5"
|
6055 |
+
integrity sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==
|
6056 |
+
dependencies:
|
6057 |
+
async "^3.2.0"
|
6058 |
+
|
6059 |
+
getpass@^0.1.1:
|
6060 |
+
version "0.1.7"
|
6061 |
+
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
6062 |
+
integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
|
6063 |
+
dependencies:
|
6064 |
+
assert-plus "^1.0.0"
|
6065 |
+
|
6066 |
+
git-log-parser@^1.2.0:
|
6067 |
+
version "1.2.0"
|
6068 |
+
resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"
|
6069 |
+
integrity sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=
|
6070 |
+
dependencies:
|
6071 |
+
argv-formatter "~1.0.0"
|
6072 |
+
spawn-error-forwarder "~1.0.0"
|
6073 |
+
split2 "~1.0.0"
|
6074 |
+
stream-combiner2 "~1.1.1"
|
6075 |
+
through2 "~2.0.0"
|
6076 |
+
traverse "~0.6.6"
|
6077 |
+
|
6078 |
+
glob-parent@^3.1.0:
|
6079 |
+
version "3.1.0"
|
6080 |
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
|
6081 |
+
integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
|
6082 |
+
dependencies:
|
6083 |
+
is-glob "^3.1.0"
|
6084 |
+
path-dirname "^1.0.0"
|
6085 |
+
|
6086 |
+
glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
|
6087 |
+
version "5.1.1"
|
6088 |
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
|
6089 |
+
integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
|
6090 |
+
dependencies:
|
6091 |
+
is-glob "^4.0.1"
|
6092 |
+
|
6093 |
+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1, glob@~7.1.2, glob@~7.1.6:
|
6094 |
+
version "7.1.6"
|
6095 |
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
6096 |
+
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
6097 |
+
dependencies:
|
6098 |
+
fs.realpath "^1.0.0"
|
6099 |
+
inflight "^1.0.4"
|
6100 |
+
inherits "2"
|
6101 |
+
minimatch "^3.0.4"
|
6102 |
+
once "^1.3.0"
|
6103 |
+
path-is-absolute "^1.0.0"
|
6104 |
+
|
6105 |
+
glob@~5.0.0:
|
6106 |
+
version "5.0.15"
|
6107 |
+
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
|
6108 |
+
integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=
|
6109 |
+
dependencies:
|
6110 |
+
inflight "^1.0.4"
|
6111 |
+
inherits "2"
|
6112 |
+
minimatch "2 || 3"
|
6113 |
+
once "^1.3.0"
|
6114 |
+
path-is-absolute "^1.0.0"
|
6115 |
+
|
6116 |
+
global-dirs@^0.1.0:
|
6117 |
+
version "0.1.1"
|
6118 |
+
resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
|
6119 |
+
integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
|
6120 |
+
dependencies:
|
6121 |
+
ini "^1.3.4"
|
6122 |
+
|
6123 |
+
global-dirs@^2.0.1:
|
6124 |
+
version "2.0.1"
|
6125 |
+
resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.0.1.tgz#acdf3bb6685bcd55cb35e8a052266569e9469201"
|
6126 |
+
integrity sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==
|
6127 |
+
dependencies:
|
6128 |
+
ini "^1.3.5"
|
6129 |
+
|
6130 |
+
global-modules@^0.2.3:
|
6131 |
+
version "0.2.3"
|
6132 |
+
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"
|
6133 |
+
integrity sha1-6lo77ULG1s6ZWk+KEmm12uIjgo0=
|
6134 |
+
dependencies:
|
6135 |
+
global-prefix "^0.1.4"
|
6136 |
+
is-windows "^0.2.0"
|
6137 |
+
|
6138 |
+
global-modules@^1.0.0:
|
6139 |
+
version "1.0.0"
|
6140 |
+
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
|
6141 |
+
integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==
|
6142 |
+
dependencies:
|
6143 |
+
global-prefix "^1.0.1"
|
6144 |
+
is-windows "^1.0.1"
|
6145 |
+
resolve-dir "^1.0.0"
|
6146 |
+
|
6147 |
+
global-modules@^2.0.0:
|
6148 |
+
version "2.0.0"
|
6149 |
+
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
|
6150 |
+
integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
|
6151 |
+
dependencies:
|
6152 |
+
global-prefix "^3.0.0"
|
6153 |
+
|
6154 |
+
global-prefix@^0.1.4:
|
6155 |
+
version "0.1.5"
|
6156 |
+
resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"
|
6157 |
+
integrity sha1-jTvGuNo8qBEqFg2NSW/wRiv+948=
|
6158 |
+
dependencies:
|
6159 |
+
homedir-polyfill "^1.0.0"
|
6160 |
+
ini "^1.3.4"
|
6161 |
+
is-windows "^0.2.0"
|
6162 |
+
which "^1.2.12"
|
6163 |
+
|
6164 |
+
global-prefix@^1.0.1:
|
6165 |
+
version "1.0.2"
|
6166 |
+
resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
|
6167 |
+
integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=
|
6168 |
+
dependencies:
|
6169 |
+
expand-tilde "^2.0.2"
|
6170 |
+
homedir-polyfill "^1.0.1"
|
6171 |
+
ini "^1.3.4"
|
6172 |
+
is-windows "^1.0.1"
|
6173 |
+
which "^1.2.14"
|
6174 |
+
|
6175 |
+
global-prefix@^3.0.0:
|
6176 |
+
version "3.0.0"
|
6177 |
+
resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
|
6178 |
+
integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
|
6179 |
+
dependencies:
|
6180 |
+
ini "^1.3.5"
|
6181 |
+
kind-of "^6.0.2"
|
6182 |
+
which "^1.3.1"
|
6183 |
+
|
6184 |
+
globals@^11.1.0:
|
6185 |
+
version "11.12.0"
|
6186 |
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
6187 |
+
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
6188 |
+
|
6189 |
+
globals@^12.0.0, globals@^12.1.0:
|
6190 |
+
version "12.4.0"
|
6191 |
+
resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
|
6192 |
+
integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
|
6193 |
+
dependencies:
|
6194 |
+
type-fest "^0.8.1"
|
6195 |
+
|
6196 |
+
globby@^11.0.0, globby@^11.0.1:
|
6197 |
+
version "11.0.1"
|
6198 |
+
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
|
6199 |
+
integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
|
6200 |
+
dependencies:
|
6201 |
+
array-union "^2.1.0"
|
6202 |
+
dir-glob "^3.0.1"
|
6203 |
+
fast-glob "^3.1.1"
|
6204 |
+
ignore "^5.1.4"
|
6205 |
+
merge2 "^1.3.0"
|
6206 |
+
slash "^3.0.0"
|
6207 |
+
|
6208 |
+
globby@^6.1.0:
|
6209 |
+
version "6.1.0"
|
6210 |
+
resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
|
6211 |
+
integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
|
6212 |
+
dependencies:
|
6213 |
+
array-union "^1.0.1"
|
6214 |
+
glob "^7.0.3"
|
6215 |
+
object-assign "^4.0.1"
|
6216 |
+
pify "^2.0.0"
|
6217 |
+
pinkie-promise "^2.0.0"
|
6218 |
+
|
6219 |
+
globjoin@^0.1.4:
|
6220 |
+
version "0.1.4"
|
6221 |
+
resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43"
|
6222 |
+
integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=
|
6223 |
+
|
6224 |
+
globule@^1.0.0:
|
6225 |
+
version "1.3.2"
|
6226 |
+
resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.2.tgz#d8bdd9e9e4eef8f96e245999a5dee7eb5d8529c4"
|
6227 |
+
integrity sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA==
|
6228 |
+
dependencies:
|
6229 |
+
glob "~7.1.1"
|
6230 |
+
lodash "~4.17.10"
|
6231 |
+
minimatch "~3.0.2"
|
6232 |
+
|
6233 |
+
gonzales-pe@^4.3.0:
|
6234 |
+
version "4.3.0"
|
6235 |
+
resolved "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.3.0.tgz#fe9dec5f3c557eead09ff868c65826be54d067b3"
|
6236 |
+
integrity sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==
|
6237 |
+
dependencies:
|
6238 |
+
minimist "^1.2.5"
|
6239 |
+
|
6240 |
+
got@^6.7.1:
|
6241 |
+
version "6.7.1"
|
6242 |
+
resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
|
6243 |
+
integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=
|
6244 |
+
dependencies:
|
6245 |
+
create-error-class "^3.0.0"
|
6246 |
+
duplexer3 "^0.1.4"
|
6247 |
+
get-stream "^3.0.0"
|
6248 |
+
is-redirect "^1.0.0"
|
6249 |
+
is-retry-allowed "^1.0.0"
|
6250 |
+
is-stream "^1.0.0"
|
6251 |
+
lowercase-keys "^1.0.0"
|
6252 |
+
safe-buffer "^5.0.1"
|
6253 |
+
timed-out "^4.0.0"
|
6254 |
+
unzip-response "^2.0.1"
|
6255 |
+
url-parse-lax "^1.0.0"
|
6256 |
+
|
6257 |
+
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4:
|
6258 |
+
version "4.2.4"
|
6259 |
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
6260 |
+
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
6261 |
+
|
6262 |
+
"graceful-readlink@>= 1.0.0":
|
6263 |
+
version "1.0.1"
|
6264 |
+
resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
|
6265 |
+
integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=
|
6266 |
+
|
6267 |
+
growly@^1.3.0:
|
6268 |
+
version "1.3.0"
|
6269 |
+
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
6270 |
+
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
6271 |
+
|
6272 |
+
grunt-cli@~1.3.2:
|
6273 |
+
version "1.3.2"
|
6274 |
+
resolved "https://registry.yarnpkg.com/grunt-cli/-/grunt-cli-1.3.2.tgz#60f12d12c1b5aae94ae3469c6b5fe24e960014e8"
|
6275 |
+
integrity sha512-8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==
|
6276 |
+
dependencies:
|
6277 |
+
grunt-known-options "~1.1.0"
|
6278 |
+
interpret "~1.1.0"
|
6279 |
+
liftoff "~2.5.0"
|
6280 |
+
nopt "~4.0.1"
|
6281 |
+
v8flags "~3.1.1"
|
6282 |
+
|
6283 |
+
grunt-known-options@~1.1.0:
|
6284 |
+
version "1.1.1"
|
6285 |
+
resolved "https://registry.yarnpkg.com/grunt-known-options/-/grunt-known-options-1.1.1.tgz#6cc088107bd0219dc5d3e57d91923f469059804d"
|
6286 |
+
integrity sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==
|
6287 |
+
|
6288 |
+
grunt-legacy-log-utils@~2.1.0:
|
6289 |
+
version "2.1.0"
|
6290 |
+
resolved "https://registry.yarnpkg.com/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz#49a8c7dc74051476dcc116c32faf9db8646856ef"
|
6291 |
+
integrity sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==
|
6292 |
+
dependencies:
|
6293 |
+
chalk "~4.1.0"
|
6294 |
+
lodash "~4.17.19"
|
6295 |
+
|
6296 |
+
grunt-legacy-log@~3.0.0:
|
6297 |
+
version "3.0.0"
|
6298 |
+
resolved "https://registry.yarnpkg.com/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz#1c6eaf92371ea415af31ea84ce50d434ef6d39c4"
|
6299 |
+
integrity sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==
|
6300 |
+
dependencies:
|
6301 |
+
colors "~1.1.2"
|
6302 |
+
grunt-legacy-log-utils "~2.1.0"
|
6303 |
+
hooker "~0.2.3"
|
6304 |
+
lodash "~4.17.19"
|
6305 |
+
|
6306 |
+
grunt-legacy-util@~2.0.0:
|
6307 |
+
version "2.0.0"
|
6308 |
+
resolved "https://registry.yarnpkg.com/grunt-legacy-util/-/grunt-legacy-util-2.0.0.tgz#34d20f2a26c6adebfe9a9bdc8823f7016b0369c3"
|
6309 |
+
integrity sha512-ZEmYFB44bblwPE2oz3q3ygfF6hseQja9tx8I3UZIwbUik32FMWewA+d1qSFicMFB+8dNXDkh35HcDCWlpRsGlA==
|
6310 |
+
dependencies:
|
6311 |
+
async "~1.5.2"
|
6312 |
+
exit "~0.1.1"
|
6313 |
+
getobject "~0.1.0"
|
6314 |
+
hooker "~0.2.3"
|
6315 |
+
lodash "~4.17.20"
|
6316 |
+
underscore.string "~3.3.5"
|
6317 |
+
which "~1.3.0"
|
6318 |
+
|
6319 |
+
grunt-version@^2.0.0:
|
6320 |
+
version "2.0.0"
|
6321 |
+
resolved "https://registry.yarnpkg.com/grunt-version/-/grunt-version-2.0.0.tgz#459a1bbc88358dec25ee9baf9b9ff6e866d77104"
|
6322 |
+
integrity sha512-Vf1Bey3HPc4hU/kB4zWhznqsHdMlawuZml+94mFiAta/LWWoQisBEoxXB8IeDV9pVUGJ3lOLZQlw5AZAp3pMGg==
|
6323 |
+
dependencies:
|
6324 |
+
grunt "^1.1.0"
|
6325 |
+
semver "^6.3.0"
|
6326 |
+
|
6327 |
+
grunt-wp-readme-to-markdown@^2.0.1:
|
6328 |
+
version "2.0.1"
|
6329 |
+
resolved "https://registry.yarnpkg.com/grunt-wp-readme-to-markdown/-/grunt-wp-readme-to-markdown-2.0.1.tgz#406cd5e98988580dc1d16e805c4e2e6092568552"
|
6330 |
+
integrity sha1-QGzV6YmIWA3B0W6AXE4uYJJWhVI=
|
6331 |
+
|
6332 |
+
grunt@^1.1.0, grunt@^1.2.1:
|
6333 |
+
version "1.3.0"
|
6334 |
+
resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.3.0.tgz#55db6ccd80c6fb53722e496f680620a2e681f809"
|
6335 |
+
integrity sha512-6ILlMXv11/4cxuhSMfSU+SfvbxrPuqZrAtLN64+tZpQ3DAKfSQPQHRbTjSbdtxfyQhGZPtN0bDZJ/LdCM5WXXA==
|
6336 |
+
dependencies:
|
6337 |
+
dateformat "~3.0.3"
|
6338 |
+
eventemitter2 "~0.4.13"
|
6339 |
+
exit "~0.1.2"
|
6340 |
+
findup-sync "~0.3.0"
|
6341 |
+
glob "~7.1.6"
|
6342 |
+
grunt-cli "~1.3.2"
|
6343 |
+
grunt-known-options "~1.1.0"
|
6344 |
+
grunt-legacy-log "~3.0.0"
|
6345 |
+
grunt-legacy-util "~2.0.0"
|
6346 |
+
iconv-lite "~0.4.13"
|
6347 |
+
js-yaml "~3.14.0"
|
6348 |
+
minimatch "~3.0.4"
|
6349 |
+
mkdirp "~1.0.4"
|
6350 |
+
nopt "~3.0.6"
|
6351 |
+
rimraf "~3.0.2"
|
6352 |
+
|
6353 |
+
gzip-size@^5.0.0:
|
6354 |
+
version "5.1.1"
|
6355 |
+
resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
|
6356 |
+
integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
|
6357 |
+
dependencies:
|
6358 |
+
duplexer "^0.1.1"
|
6359 |
+
pify "^4.0.1"
|
6360 |
+
|
6361 |
+
handlebars@^4.7.6:
|
6362 |
+
version "4.7.6"
|
6363 |
+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
|
6364 |
+
integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
|
6365 |
+
dependencies:
|
6366 |
+
minimist "^1.2.5"
|
6367 |
+
neo-async "^2.6.0"
|
6368 |
+
source-map "^0.6.1"
|
6369 |
+
wordwrap "^1.0.0"
|
6370 |
+
optionalDependencies:
|
6371 |
+
uglify-js "^3.1.4"
|
6372 |
+
|
6373 |
+
har-schema@^2.0.0:
|
6374 |
+
version "2.0.0"
|
6375 |
+
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
6376 |
+
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
|
6377 |
+
|
6378 |
+
har-validator@~5.1.3:
|
6379 |
+
version "5.1.5"
|
6380 |
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
|
6381 |
+
integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
|
6382 |
+
dependencies:
|
6383 |
+
ajv "^6.12.3"
|
6384 |
+
har-schema "^2.0.0"
|
6385 |
+
|
6386 |
+
hard-rejection@^2.1.0:
|
6387 |
+
version "2.1.0"
|
6388 |
+
resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
|
6389 |
+
integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
|
6390 |
+
|
6391 |
+
has-ansi@^2.0.0:
|
6392 |
+
version "2.0.0"
|
6393 |
+
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
6394 |
+
integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
|
6395 |
+
dependencies:
|
6396 |
+
ansi-regex "^2.0.0"
|
6397 |
+
|
6398 |
+
has-flag@^3.0.0:
|
6399 |
+
version "3.0.0"
|
6400 |
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
6401 |
+
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
6402 |
+
|
6403 |
+
has-flag@^4.0.0:
|
6404 |
+
version "4.0.0"
|
6405 |
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
6406 |
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
6407 |
+
|
6408 |
+
has-symbols@^1.0.1:
|
6409 |
+
version "1.0.1"
|
6410 |
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
6411 |
+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
6412 |
+
|
6413 |
+
has-unicode@^2.0.0, has-unicode@~2.0.1:
|
6414 |
+
version "2.0.1"
|
6415 |
+
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
6416 |
+
integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
|
6417 |
+
|
6418 |
+
has-value@^0.3.1:
|
6419 |
+
version "0.3.1"
|
6420 |
+
resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
|
6421 |
+
integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
|
6422 |
+
dependencies:
|
6423 |
+
get-value "^2.0.3"
|
6424 |
+
has-values "^0.1.4"
|
6425 |
+
isobject "^2.0.0"
|
6426 |
+
|
6427 |
+
has-value@^1.0.0:
|
6428 |
+
version "1.0.0"
|
6429 |
+
resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
|
6430 |
+
integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
|
6431 |
+
dependencies:
|
6432 |
+
get-value "^2.0.6"
|
6433 |
+
has-values "^1.0.0"
|
6434 |
+
isobject "^3.0.0"
|
6435 |
+
|
6436 |
+
has-values@^0.1.4:
|
6437 |
+
version "0.1.4"
|
6438 |
+
resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
|
6439 |
+
integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
|
6440 |
+
|
6441 |
+
has-values@^1.0.0:
|
6442 |
+
version "1.0.0"
|
6443 |
+
resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
|
6444 |
+
integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
|
6445 |
+
dependencies:
|
6446 |
+
is-number "^3.0.0"
|
6447 |
+
kind-of "^4.0.0"
|
6448 |
+
|
6449 |
+
has@^1.0.3:
|
6450 |
+
version "1.0.3"
|
6451 |
+
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
6452 |
+
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
6453 |
+
dependencies:
|
6454 |
+
function-bind "^1.1.1"
|
6455 |
+
|
6456 |
+
hash-base@^3.0.0:
|
6457 |
+
version "3.1.0"
|
6458 |
+
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
|
6459 |
+
integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
|
6460 |
+
dependencies:
|
6461 |
+
inherits "^2.0.4"
|
6462 |
+
readable-stream "^3.6.0"
|
6463 |
+
safe-buffer "^5.2.0"
|
6464 |
+
|
6465 |
+
hash.js@^1.0.0, hash.js@^1.0.3:
|
6466 |
+
version "1.1.7"
|
6467 |
+
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
|
6468 |
+
integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
|
6469 |
+
dependencies:
|
6470 |
+
inherits "^2.0.3"
|
6471 |
+
minimalistic-assert "^1.0.1"
|
6472 |
+
|
6473 |
+
hmac-drbg@^1.0.0:
|
6474 |
+
version "1.0.1"
|
6475 |
+
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
6476 |
+
integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
|
6477 |
+
dependencies:
|
6478 |
+
hash.js "^1.0.3"
|
6479 |
+
minimalistic-assert "^1.0.0"
|
6480 |
+
minimalistic-crypto-utils "^1.0.1"
|
6481 |
+
|
6482 |
+
homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1:
|
6483 |
+
version "1.0.3"
|
6484 |
+
resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
|
6485 |
+
integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
|
6486 |
+
dependencies:
|
6487 |
+
parse-passwd "^1.0.0"
|
6488 |
+
|
6489 |
+
hook-std@^2.0.0:
|
6490 |
+
version "2.0.0"
|
6491 |
+
resolved "https://registry.yarnpkg.com/hook-std/-/hook-std-2.0.0.tgz#ff9aafdebb6a989a354f729bb6445cf4a3a7077c"
|
6492 |
+
integrity sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==
|
6493 |
+
|
6494 |
+
hooker@~0.2.3:
|
6495 |
+
version "0.2.3"
|
6496 |
+
resolved "https://registry.yarnpkg.com/hooker/-/hooker-0.2.3.tgz#b834f723cc4a242aa65963459df6d984c5d3d959"
|
6497 |
+
integrity sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=
|
6498 |
+
|
6499 |
+
hoopy@^0.1.4:
|
6500 |
+
version "0.1.4"
|
6501 |
+
resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
|
6502 |
+
integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
|
6503 |
+
|
6504 |
+
hosted-git-info@^2.1.4, hosted-git-info@^2.7.1, hosted-git-info@^2.8.8:
|
6505 |
+
version "2.8.8"
|
6506 |
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
|
6507 |
+
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
|
6508 |
+
|
6509 |
+
hosted-git-info@^3.0.0:
|
6510 |
+
version "3.0.5"
|
6511 |
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.5.tgz#bea87905ef7317442e8df3087faa3c842397df03"
|
6512 |
+
integrity sha512-i4dpK6xj9BIpVOTboXIlKG9+8HMKggcrMX7WA24xZtKwX0TPelq/rbaS5rCKeNX8sJXZJGdSxpnEGtta+wismQ==
|
6513 |
+
dependencies:
|
6514 |
+
lru-cache "^6.0.0"
|
6515 |
+
|
6516 |
+
html-element-map@^1.2.0:
|
6517 |
+
version "1.2.0"
|
6518 |
+
resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz#dfbb09efe882806af63d990cf6db37993f099f22"
|
6519 |
+
integrity sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw==
|
6520 |
+
dependencies:
|
6521 |
+
array-filter "^1.0.0"
|
6522 |
+
|
6523 |
+
html-encoding-sniffer@^1.0.2:
|
6524 |
+
version "1.0.2"
|
6525 |
+
resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
|
6526 |
+
integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
|
6527 |
+
dependencies:
|
6528 |
+
whatwg-encoding "^1.0.1"
|
6529 |
+
|
6530 |
+
html-escaper@^2.0.0:
|
6531 |
+
version "2.0.2"
|
6532 |
+
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
|
6533 |
+
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
|
6534 |
+
|
6535 |
+
html-tags@^3.1.0:
|
6536 |
+
version "3.1.0"
|
6537 |
+
resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
|
6538 |
+
integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
|
6539 |
+
|
6540 |
+
htmlparser2@^3.10.0, htmlparser2@^3.9.1:
|
6541 |
+
version "3.10.1"
|
6542 |
+
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
|
6543 |
+
integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
|
6544 |
+
dependencies:
|
6545 |
+
domelementtype "^1.3.1"
|
6546 |
+
domhandler "^2.3.0"
|
6547 |
+
domutils "^1.5.1"
|
6548 |
+
entities "^1.1.1"
|
6549 |
+
inherits "^2.0.1"
|
6550 |
+
readable-stream "^3.1.1"
|
6551 |
+
|
6552 |
+
http-cache-semantics@^3.8.1:
|
6553 |
+
version "3.8.1"
|
6554 |
+
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
|
6555 |
+
integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
|
6556 |
+
|
6557 |
+
http-errors@1.7.2:
|
6558 |
+
version "1.7.2"
|
6559 |
+
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
|
6560 |
+
integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
|
6561 |
+
dependencies:
|
6562 |
+
depd "~1.1.2"
|
6563 |
+
inherits "2.0.3"
|
6564 |
+
setprototypeof "1.1.1"
|
6565 |
+
statuses ">= 1.5.0 < 2"
|
6566 |
+
toidentifier "1.0.0"
|
6567 |
+
|
6568 |
+
http-errors@~1.7.2:
|
6569 |
+
version "1.7.3"
|
6570 |
+
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
|
6571 |
+
integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
|
6572 |
+
dependencies:
|
6573 |
+
depd "~1.1.2"
|
6574 |
+
inherits "2.0.4"
|
6575 |
+
setprototypeof "1.1.1"
|
6576 |
+
statuses ">= 1.5.0 < 2"
|
6577 |
+
toidentifier "1.0.0"
|
6578 |
+
|
6579 |
+
http-parser-js@>=0.5.1:
|
6580 |
+
version "0.5.2"
|
6581 |
+
resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77"
|
6582 |
+
integrity sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==
|
6583 |
+
|
6584 |
+
http-proxy-agent@^2.1.0:
|
6585 |
+
version "2.1.0"
|
6586 |
+
resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405"
|
6587 |
+
integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==
|
6588 |
+
dependencies:
|
6589 |
+
agent-base "4"
|
6590 |
+
debug "3.1.0"
|
6591 |
+
|
6592 |
+
http-proxy-agent@^4.0.0:
|
6593 |
+
version "4.0.1"
|
6594 |
+
resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
|
6595 |
+
integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
|
6596 |
+
dependencies:
|
6597 |
+
"@tootallnate/once" "1"
|
6598 |
+
agent-base "6"
|
6599 |
+
debug "4"
|
6600 |
+
|
6601 |
+
http-signature@~1.2.0:
|
6602 |
+
version "1.2.0"
|
6603 |
+
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
|
6604 |
+
integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
|
6605 |
+
dependencies:
|
6606 |
+
assert-plus "^1.0.0"
|
6607 |
+
jsprim "^1.2.2"
|
6608 |
+
sshpk "^1.7.0"
|
6609 |
+
|
6610 |
+
https-browserify@^1.0.0:
|
6611 |
+
version "1.0.0"
|
6612 |
+
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
|
6613 |
+
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
6614 |
+
|
6615 |
+
https-proxy-agent@^2.2.3:
|
6616 |
+
version "2.2.4"
|
6617 |
+
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b"
|
6618 |
+
integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==
|
6619 |
+
dependencies:
|
6620 |
+
agent-base "^4.3.0"
|
6621 |
+
debug "^3.1.0"
|
6622 |
+
|
6623 |
+
https-proxy-agent@^4.0.0:
|
6624 |
+
version "4.0.0"
|
6625 |
+
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b"
|
6626 |
+
integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==
|
6627 |
+
dependencies:
|
6628 |
+
agent-base "5"
|
6629 |
+
debug "4"
|
6630 |
+
|
6631 |
+
https-proxy-agent@^5.0.0:
|
6632 |
+
version "5.0.0"
|
6633 |
+
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
|
6634 |
+
integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
|
6635 |
+
dependencies:
|
6636 |
+
agent-base "6"
|
6637 |
+
debug "4"
|
6638 |
+
|
6639 |
+
human-signals@^1.1.1:
|
6640 |
+
version "1.1.1"
|
6641 |
+
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
|
6642 |
+
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
|
6643 |
+
|
6644 |
+
humanize-ms@^1.2.1:
|
6645 |
+
version "1.2.1"
|
6646 |
+
resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
|
6647 |
+
integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=
|
6648 |
+
dependencies:
|
6649 |
+
ms "^2.0.0"
|
6650 |
+
|
6651 |
+
iconv-lite@0.4.24, iconv-lite@~0.4.13:
|
6652 |
+
version "0.4.24"
|
6653 |
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
6654 |
+
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
|
6655 |
+
dependencies:
|
6656 |
+
safer-buffer ">= 2.1.2 < 3"
|
6657 |
+
|
6658 |
+
iconv-lite@^0.6.2:
|
6659 |
+
version "0.6.2"
|
6660 |
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01"
|
6661 |
+
integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==
|
6662 |
+
dependencies:
|
6663 |
+
safer-buffer ">= 2.1.2 < 3.0.0"
|
6664 |
+
|
6665 |
+
icss-utils@^4.0.0, icss-utils@^4.1.1:
|
6666 |
+
version "4.1.1"
|
6667 |
+
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
|
6668 |
+
integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
|
6669 |
+
dependencies:
|
6670 |
+
postcss "^7.0.14"
|
6671 |
+
|
6672 |
+
ieee754@^1.1.4:
|
6673 |
+
version "1.1.13"
|
6674 |
+
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
6675 |
+
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
|
6676 |
+
|
6677 |
+
iferr@^0.1.5:
|
6678 |
+
version "0.1.5"
|
6679 |
+
resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
|
6680 |
+
integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
|
6681 |
+
|
6682 |
+
iferr@^1.0.2:
|
6683 |
+
version "1.0.2"
|
6684 |
+
resolved "https://registry.yarnpkg.com/iferr/-/iferr-1.0.2.tgz#e9fde49a9da06dc4a4194c6c9ed6d08305037a6d"
|
6685 |
+
integrity sha512-9AfeLfji44r5TKInjhz3W9DyZI1zR1JAf2hVBMGhddAKPqBsupb89jGfbCTHIGZd6fGZl9WlHdn4AObygyMKwg==
|
6686 |
+
|
6687 |
+
ignore-emit-webpack-plugin@^2.0.2:
|
6688 |
+
version "2.0.3"
|
6689 |
+
resolved "https://registry.yarnpkg.com/ignore-emit-webpack-plugin/-/ignore-emit-webpack-plugin-2.0.3.tgz#d2e810c4d05ab86b2748b5d2eec3cd7c72df5af0"
|
6690 |
+
integrity sha512-ahTYD5KZ3DiZG9goS8NCxBaPEfXsPLH5JeWKmFTThD8lsPen6R4tLnWcN/mrksK5cDqyxOzmRL12feJQZjffuA==
|
6691 |
+
|
6692 |
+
ignore-walk@^3.0.1:
|
6693 |
+
version "3.0.3"
|
6694 |
+
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37"
|
6695 |
+
integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==
|
6696 |
+
dependencies:
|
6697 |
+
minimatch "^3.0.4"
|
6698 |
+
|
6699 |
+
ignore@^4.0.6:
|
6700 |
+
version "4.0.6"
|
6701 |
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
6702 |
+
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
6703 |
+
|
6704 |
+
ignore@^5.1.4, ignore@^5.1.8, ignore@~5.1.4:
|
6705 |
+
version "5.1.8"
|
6706 |
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
|
6707 |
+
integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
|
6708 |
+
|
6709 |
+
import-cwd@^2.0.0:
|
6710 |
+
version "2.1.0"
|
6711 |
+
resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
|
6712 |
+
integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
|
6713 |
+
dependencies:
|
6714 |
+
import-from "^2.1.0"
|
6715 |
+
|
6716 |
+
import-fresh@^2.0.0:
|
6717 |
+
version "2.0.0"
|
6718 |
+
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
|
6719 |
+
integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
|
6720 |
+
dependencies:
|
6721 |
+
caller-path "^2.0.0"
|
6722 |
+
resolve-from "^3.0.0"
|
6723 |
+
|
6724 |
+
import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
|
6725 |
+
version "3.2.1"
|
6726 |
+
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
|
6727 |
+
integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
|
6728 |
+
dependencies:
|
6729 |
+
parent-module "^1.0.0"
|
6730 |
+
resolve-from "^4.0.0"
|
6731 |
+
|
6732 |
+
import-from@^2.1.0:
|
6733 |
+
version "2.1.0"
|
6734 |
+
resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
|
6735 |
+
integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
|
6736 |
+
dependencies:
|
6737 |
+
resolve-from "^3.0.0"
|
6738 |
+
|
6739 |
+
import-from@^3.0.0:
|
6740 |
+
version "3.0.0"
|
6741 |
+
resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
|
6742 |
+
integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
|
6743 |
+
dependencies:
|
6744 |
+
resolve-from "^5.0.0"
|
6745 |
+
|
6746 |
+
import-lazy@^2.1.0:
|
6747 |
+
version "2.1.0"
|
6748 |
+
resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
|
6749 |
+
integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
|
6750 |
+
|
6751 |
+
import-lazy@^4.0.0:
|
6752 |
+
version "4.0.0"
|
6753 |
+
resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153"
|
6754 |
+
integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==
|
6755 |
+
|
6756 |
+
import-local@^2.0.0:
|
6757 |
+
version "2.0.0"
|
6758 |
+
resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
|
6759 |
+
integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
|
6760 |
+
dependencies:
|
6761 |
+
pkg-dir "^3.0.0"
|
6762 |
+
resolve-cwd "^2.0.0"
|
6763 |
+
|
6764 |
+
import-local@^3.0.2:
|
6765 |
+
version "3.0.2"
|
6766 |
+
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
|
6767 |
+
integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
|
6768 |
+
dependencies:
|
6769 |
+
pkg-dir "^4.2.0"
|
6770 |
+
resolve-cwd "^3.0.0"
|
6771 |
+
|
6772 |
+
imurmurhash@^0.1.4:
|
6773 |
+
version "0.1.4"
|
6774 |
+
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
6775 |
+
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
|
6776 |
+
|
6777 |
+
in-publish@^2.0.0:
|
6778 |
+
version "2.0.1"
|
6779 |
+
resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c"
|
6780 |
+
integrity sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==
|
6781 |
+
|
6782 |
+
indent-string@^2.1.0:
|
6783 |
+
version "2.1.0"
|
6784 |
+
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
|
6785 |
+
integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
|
6786 |
+
dependencies:
|
6787 |
+
repeating "^2.0.0"
|
6788 |
+
|
6789 |
+
indent-string@^3.0.0:
|
6790 |
+
version "3.2.0"
|
6791 |
+
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
|
6792 |
+
integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
|
6793 |
+
|
6794 |
+
indent-string@^4.0.0:
|
6795 |
+
version "4.0.0"
|
6796 |
+
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
|
6797 |
+
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
|
6798 |
+
|
6799 |
+
indexes-of@^1.0.1:
|
6800 |
+
version "1.0.1"
|
6801 |
+
resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
|
6802 |
+
integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
|
6803 |
+
|
6804 |
+
infer-owner@^1.0.3, infer-owner@^1.0.4:
|
6805 |
+
version "1.0.4"
|
6806 |
+
resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
|
6807 |
+
integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
|
6808 |
+
|
6809 |
+
inflight@^1.0.4, inflight@~1.0.6:
|
6810 |
+
version "1.0.6"
|
6811 |
+
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
6812 |
+
integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
|
6813 |
+
dependencies:
|
6814 |
+
once "^1.3.0"
|
6815 |
+
wrappy "1"
|
6816 |
+
|
6817 |
+
inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
|
6818 |
+
version "2.0.4"
|
6819 |
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
6820 |
+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
6821 |
+
|
6822 |
+
inherits@2.0.1:
|
6823 |
+
version "2.0.1"
|
6824 |
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
|
6825 |
+
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
|
6826 |
+
|
6827 |
+
inherits@2.0.3:
|
6828 |
+
version "2.0.3"
|
6829 |
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
6830 |
+
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
6831 |
+
|
6832 |
+
ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
|
6833 |
+
version "1.3.5"
|
6834 |
+
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
6835 |
+
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
|
6836 |
+
|
6837 |
+
init-package-json@^1.10.3:
|
6838 |
+
version "1.10.3"
|
6839 |
+
resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.10.3.tgz#45ffe2f610a8ca134f2bd1db5637b235070f6cbe"
|
6840 |
+
integrity sha512-zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==
|
6841 |
+
dependencies:
|
6842 |
+
glob "^7.1.1"
|
6843 |
+
npm-package-arg "^4.0.0 || ^5.0.0 || ^6.0.0"
|
6844 |
+
promzard "^0.3.0"
|
6845 |
+
read "~1.0.1"
|
6846 |
+
read-package-json "1 || 2"
|
6847 |
+
semver "2.x || 3.x || 4 || 5"
|
6848 |
+
validate-npm-package-license "^3.0.1"
|
6849 |
+
validate-npm-package-name "^3.0.0"
|
6850 |
+
|
6851 |
+
internal-slot@^1.0.2:
|
6852 |
+
version "1.0.2"
|
6853 |
+
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"
|
6854 |
+
integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==
|
6855 |
+
dependencies:
|
6856 |
+
es-abstract "^1.17.0-next.1"
|
6857 |
+
has "^1.0.3"
|
6858 |
+
side-channel "^1.0.2"
|
6859 |
+
|
6860 |
+
interpret@^1.4.0:
|
6861 |
+
version "1.4.0"
|
6862 |
+
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
|
6863 |
+
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
|
6864 |
+
|
6865 |
+
interpret@~1.1.0:
|
6866 |
+
version "1.1.0"
|
6867 |
+
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
|
6868 |
+
integrity sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=
|
6869 |
+
|
6870 |
+
into-stream@^5.0.0:
|
6871 |
+
version "5.1.1"
|
6872 |
+
resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-5.1.1.tgz#f9a20a348a11f3c13face22763f2d02e127f4db8"
|
6873 |
+
integrity sha512-krrAJ7McQxGGmvaYbB7Q1mcA+cRwg9Ij2RfWIeVesNBgVDZmzY/Fa4IpZUT3bmdRzMzdf/mzltCG2Dq99IZGBA==
|
6874 |
+
dependencies:
|
6875 |
+
from2 "^2.3.0"
|
6876 |
+
p-is-promise "^3.0.0"
|
6877 |
+
|
6878 |
+
invariant@^2.2.2, invariant@^2.2.4:
|
6879 |
+
version "2.2.4"
|
6880 |
+
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
6881 |
+
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
6882 |
+
dependencies:
|
6883 |
+
loose-envify "^1.0.0"
|
6884 |
+
|
6885 |
+
invert-kv@^1.0.0:
|
6886 |
+
version "1.0.0"
|
6887 |
+
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
6888 |
+
integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY=
|
6889 |
+
|
6890 |
+
ip-regex@^2.1.0:
|
6891 |
+
version "2.1.0"
|
6892 |
+
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
6893 |
+
integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
|
6894 |
+
|
6895 |
+
ip-regex@^4.1.0:
|
6896 |
+
version "4.2.0"
|
6897 |
+
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.2.0.tgz#a03f5eb661d9a154e3973a03de8b23dd0ad6892e"
|
6898 |
+
integrity sha512-n5cDDeTWWRwK1EBoWwRti+8nP4NbytBBY0pldmnIkq6Z55KNFmWofh4rl9dPZpj+U/nVq7gweR3ylrvMt4YZ5A==
|
6899 |
+
|
6900 |
+
ip@1.1.5:
|
6901 |
+
version "1.1.5"
|
6902 |
+
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
|
6903 |
+
integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
|
6904 |
+
|
6905 |
+
ipaddr.js@1.9.1:
|
6906 |
+
version "1.9.1"
|
6907 |
+
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
6908 |
+
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
|
6909 |
+
|
6910 |
+
irregular-plurals@^3.2.0:
|
6911 |
+
version "3.2.0"
|
6912 |
+
resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-3.2.0.tgz#b19c490a0723798db51b235d7e39add44dab0822"
|
6913 |
+
integrity sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q==
|
6914 |
+
|
6915 |
+
is-absolute@^1.0.0:
|
6916 |
+
version "1.0.0"
|
6917 |
+
resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576"
|
6918 |
+
integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
|
6919 |
+
dependencies:
|
6920 |
+
is-relative "^1.0.0"
|
6921 |
+
is-windows "^1.0.1"
|
6922 |
+
|
6923 |
+
is-accessor-descriptor@^0.1.6:
|
6924 |
+
version "0.1.6"
|
6925 |
+
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
|
6926 |
+
integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
|
6927 |
+
dependencies:
|
6928 |
+
kind-of "^3.0.2"
|
6929 |
+
|
6930 |
+
is-accessor-descriptor@^1.0.0:
|
6931 |
+
version "1.0.0"
|
6932 |
+
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
|
6933 |
+
integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
|
6934 |
+
dependencies:
|
6935 |
+
kind-of "^6.0.0"
|
6936 |
+
|
6937 |
+
is-alphabetical@^1.0.0:
|
6938 |
+
version "1.0.4"
|
6939 |
+
resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
|
6940 |
+
integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
|
6941 |
+
|
6942 |
+
is-alphanumeric@^1.0.0:
|
6943 |
+
version "1.0.0"
|
6944 |
+
resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4"
|
6945 |
+
integrity sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=
|
6946 |
+
|
6947 |
+
is-alphanumerical@^1.0.0:
|
6948 |
+
version "1.0.4"
|
6949 |
+
resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
|
6950 |
+
integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
|
6951 |
+
dependencies:
|
6952 |
+
is-alphabetical "^1.0.0"
|
6953 |
+
is-decimal "^1.0.0"
|
6954 |
+
|
6955 |
+
is-arrayish@^0.2.1:
|
6956 |
+
version "0.2.1"
|
6957 |
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
6958 |
+
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
6959 |
+
|
6960 |
+
is-binary-path@^1.0.0:
|
6961 |
+
version "1.0.1"
|
6962 |
+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
6963 |
+
integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
|
6964 |
+
dependencies:
|
6965 |
+
binary-extensions "^1.0.0"
|
6966 |
+
|
6967 |
+
is-binary-path@~2.1.0:
|
6968 |
+
version "2.1.0"
|
6969 |
+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
6970 |
+
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
6971 |
+
dependencies:
|
6972 |
+
binary-extensions "^2.0.0"
|
6973 |
+
|
6974 |
+
is-boolean-object@^1.0.1:
|
6975 |
+
version "1.0.1"
|
6976 |
+
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e"
|
6977 |
+
integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ==
|
6978 |
+
|
6979 |
+
is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@^1.1.5:
|
6980 |
+
version "1.1.6"
|
6981 |
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
6982 |
+
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
6983 |
+
|
6984 |
+
is-buffer@^2.0.0:
|
6985 |
+
version "2.0.4"
|
6986 |
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
|
6987 |
+
integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
|
6988 |
+
|
6989 |
+
is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.2:
|
6990 |
+
version "1.2.2"
|
6991 |
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
|
6992 |
+
integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
|
6993 |
+
|
6994 |
+
is-ci@^1.0.10:
|
6995 |
+
version "1.2.1"
|
6996 |
+
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c"
|
6997 |
+
integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==
|
6998 |
+
dependencies:
|
6999 |
+
ci-info "^1.5.0"
|
7000 |
+
|
7001 |
+
is-ci@^2.0.0:
|
7002 |
+
version "2.0.0"
|
7003 |
+
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
|
7004 |
+
integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
|
7005 |
+
dependencies:
|
7006 |
+
ci-info "^2.0.0"
|
7007 |
+
|
7008 |
+
is-cidr@^3.0.0:
|
7009 |
+
version "3.1.1"
|
7010 |
+
resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-3.1.1.tgz#e92ef121bdec2782271a77ce487a8b8df3718ab7"
|
7011 |
+
integrity sha512-Gx+oErgq1j2jAKCR2Kbq0b3wbH0vQKqZ0wOlHxm0o56nq51Cs/DZA8oz9dMDhbHyHEGgJ86eTeVudtgMMOx3Mw==
|
7012 |
+
dependencies:
|
7013 |
+
cidr-regex "^2.0.10"
|
7014 |
+
|
7015 |
+
is-data-descriptor@^0.1.4:
|
7016 |
+
version "0.1.4"
|
7017 |
+
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
7018 |
+
integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
|
7019 |
+
dependencies:
|
7020 |
+
kind-of "^3.0.2"
|
7021 |
+
|
7022 |
+
is-data-descriptor@^1.0.0:
|
7023 |
+
version "1.0.0"
|
7024 |
+
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
|
7025 |
+
integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
|
7026 |
+
dependencies:
|
7027 |
+
kind-of "^6.0.0"
|
7028 |
+
|
7029 |
+
is-date-object@^1.0.1:
|
7030 |
+
version "1.0.2"
|
7031 |
+
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
|
7032 |
+
integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
|
7033 |
+
|
7034 |
+
is-decimal@^1.0.0, is-decimal@^1.0.2:
|
7035 |
+
version "1.0.4"
|
7036 |
+
resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
|
7037 |
+
integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
|
7038 |
+
|
7039 |
+
is-descriptor@^0.1.0:
|
7040 |
+
version "0.1.6"
|
7041 |
+
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
|
7042 |
+
integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
|
7043 |
+
dependencies:
|
7044 |
+
is-accessor-descriptor "^0.1.6"
|
7045 |
+
is-data-descriptor "^0.1.4"
|
7046 |
+
kind-of "^5.0.0"
|
7047 |
+
|
7048 |
+
is-descriptor@^1.0.0, is-descriptor@^1.0.2:
|
7049 |
+
version "1.0.2"
|
7050 |
+
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
|
7051 |
+
integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
|
7052 |
+
dependencies:
|
7053 |
+
is-accessor-descriptor "^1.0.0"
|
7054 |
+
is-data-descriptor "^1.0.0"
|
7055 |
+
kind-of "^6.0.2"
|
7056 |
+
|
7057 |
+
is-directory@^0.3.1:
|
7058 |
+
version "0.3.1"
|
7059 |
+
resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
|
7060 |
+
integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
|
7061 |
+
|
7062 |
+
is-docker@^2.0.0:
|
7063 |
+
version "2.1.1"
|
7064 |
+
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
|
7065 |
+
integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
|
7066 |
+
|
7067 |
+
is-extendable@^0.1.0, is-extendable@^0.1.1:
|
7068 |
+
version "0.1.1"
|
7069 |
+
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
|
7070 |
+
integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
|
7071 |
+
|
7072 |
+
is-extendable@^1.0.1:
|
7073 |
+
version "1.0.1"
|
7074 |
+
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
|
7075 |
+
integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
|
7076 |
+
dependencies:
|
7077 |
+
is-plain-object "^2.0.4"
|
7078 |
+
|
7079 |
+
is-extglob@^2.1.0, is-extglob@^2.1.1:
|
7080 |
+
version "2.1.1"
|
7081 |
+
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
7082 |
+
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
7083 |
+
|
7084 |
+
is-finite@^1.0.0:
|
7085 |
+
version "1.1.0"
|
7086 |
+
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
|
7087 |
+
integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
|
7088 |
+
|
7089 |
+
is-fullwidth-code-point@^1.0.0:
|
7090 |
+
version "1.0.0"
|
7091 |
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
|
7092 |
+
integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
|
7093 |
+
dependencies:
|
7094 |
+
number-is-nan "^1.0.0"
|
7095 |
+
|
7096 |
+
is-fullwidth-code-point@^2.0.0:
|
7097 |
+
version "2.0.0"
|
7098 |
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
7099 |
+
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
7100 |
+
|
7101 |
+
is-fullwidth-code-point@^3.0.0:
|
7102 |
+
version "3.0.0"
|
7103 |
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
7104 |
+
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
7105 |
+
|
7106 |
+
is-generator-fn@^2.0.0:
|
7107 |
+
version "2.1.0"
|
7108 |
+
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
|
7109 |
+
integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
|
7110 |
+
|
7111 |
+
is-glob@^3.1.0:
|
7112 |
+
version "3.1.0"
|
7113 |
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
|
7114 |
+
integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
|
7115 |
+
dependencies:
|
7116 |
+
is-extglob "^2.1.0"
|
7117 |
+
|
7118 |
+
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
|
7119 |
+
version "4.0.1"
|
7120 |
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
7121 |
+
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
|
7122 |
+
dependencies:
|
7123 |
+
is-extglob "^2.1.1"
|
7124 |
+
|
7125 |
+
is-hexadecimal@^1.0.0:
|
7126 |
+
version "1.0.4"
|
7127 |
+
resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
|
7128 |
+
integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
|
7129 |
+
|
7130 |
+
is-installed-globally@^0.1.0:
|
7131 |
+
version "0.1.0"
|
7132 |
+
resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
|
7133 |
+
integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=
|
7134 |
+
dependencies:
|
7135 |
+
global-dirs "^0.1.0"
|
7136 |
+
is-path-inside "^1.0.0"
|
7137 |
+
|
7138 |
+
is-installed-globally@^0.3.2:
|
7139 |
+
version "0.3.2"
|
7140 |
+
resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141"
|
7141 |
+
integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==
|
7142 |
+
dependencies:
|
7143 |
+
global-dirs "^2.0.1"
|
7144 |
+
is-path-inside "^3.0.1"
|
7145 |
+
|
7146 |
+
is-negative-zero@^2.0.0:
|
7147 |
+
version "2.0.0"
|
7148 |
+
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461"
|
7149 |
+
integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=
|
7150 |
+
|
7151 |
+
is-npm@^1.0.0:
|
7152 |
+
version "1.0.0"
|
7153 |
+
resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
|
7154 |
+
integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ=
|
7155 |
+
|
7156 |
+
is-number-object@^1.0.4:
|
7157 |
+
version "1.0.4"
|
7158 |
+
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
|
7159 |
+
integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
|
7160 |
+
|
7161 |
+
is-number@^3.0.0:
|
7162 |
+
version "3.0.0"
|
7163 |
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
|
7164 |
+
integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
|
7165 |
+
dependencies:
|
7166 |
+
kind-of "^3.0.2"
|
7167 |
+
|
7168 |
+
is-number@^7.0.0:
|
7169 |
+
version "7.0.0"
|
7170 |
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
7171 |
+
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
7172 |
+
|
7173 |
+
is-obj@^1.0.0:
|
7174 |
+
version "1.0.1"
|
7175 |
+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
7176 |
+
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
7177 |
+
|
7178 |
+
is-obj@^2.0.0:
|
7179 |
+
version "2.0.0"
|
7180 |
+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
|
7181 |
+
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
|
7182 |
+
|
7183 |
+
is-observable@^1.1.0:
|
7184 |
+
version "1.1.0"
|
7185 |
+
resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
|
7186 |
+
integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
|
7187 |
+
dependencies:
|
7188 |
+
symbol-observable "^1.1.0"
|
7189 |
+
|
7190 |
+
is-path-cwd@^2.0.0:
|
7191 |
+
version "2.2.0"
|
7192 |
+
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
|
7193 |
+
integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
|
7194 |
+
|
7195 |
+
is-path-in-cwd@^2.0.0:
|
7196 |
+
version "2.1.0"
|
7197 |
+
resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
|
7198 |
+
integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
|
7199 |
+
dependencies:
|
7200 |
+
is-path-inside "^2.1.0"
|
7201 |
+
|
7202 |
+
is-path-inside@^1.0.0:
|
7203 |
+
version "1.0.1"
|
7204 |
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
|
7205 |
+
integrity sha1-jvW33lBDej/cprToZe96pVy0gDY=
|
7206 |
+
dependencies:
|
7207 |
+
path-is-inside "^1.0.1"
|
7208 |
+
|
7209 |
+
is-path-inside@^2.1.0:
|
7210 |
+
version "2.1.0"
|
7211 |
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
|
7212 |
+
integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
|
7213 |
+
dependencies:
|
7214 |
+
path-is-inside "^1.0.2"
|
7215 |
+
|
7216 |
+
is-path-inside@^3.0.1:
|
7217 |
+
version "3.0.2"
|
7218 |
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017"
|
7219 |
+
integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==
|
7220 |
+
|
7221 |
+
is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
|
7222 |
+
version "1.1.0"
|
7223 |
+
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
|
7224 |
+
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
|
7225 |
+
|
7226 |
+
is-plain-obj@^2.0.0, is-plain-obj@^2.1.0:
|
7227 |
+
version "2.1.0"
|
7228 |
+
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
|
7229 |
+
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
|
7230 |
+
|
7231 |
+
is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
7232 |
+
version "2.0.4"
|
7233 |
+
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
|
7234 |
+
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
|
7235 |
+
dependencies:
|
7236 |
+
isobject "^3.0.1"
|
7237 |
+
|
7238 |
+
is-plain-object@^5.0.0:
|
7239 |
+
version "5.0.0"
|
7240 |
+
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
|
7241 |
+
integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
|
7242 |
+
|
7243 |
+
is-promise@^2.1.0:
|
7244 |
+
version "2.2.2"
|
7245 |
+
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
|
7246 |
+
integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
|
7247 |
+
|
7248 |
+
is-redirect@^1.0.0:
|
7249 |
+
version "1.0.0"
|
7250 |
+
resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
|
7251 |
+
integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=
|
7252 |
+
|
7253 |
+
is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.1:
|
7254 |
+
version "1.1.1"
|
7255 |
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
|
7256 |
+
integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
|
7257 |
+
dependencies:
|
7258 |
+
has-symbols "^1.0.1"
|
7259 |
+
|
7260 |
+
is-regexp@^2.0.0:
|
7261 |
+
version "2.1.0"
|
7262 |
+
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-2.1.0.tgz#cd734a56864e23b956bf4e7c66c396a4c0b22c2d"
|
7263 |
+
integrity sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==
|
7264 |
+
|
7265 |
+
is-relative@^1.0.0:
|
7266 |
+
version "1.0.0"
|
7267 |
+
resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
|
7268 |
+
integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
|
7269 |
+
dependencies:
|
7270 |
+
is-unc-path "^1.0.0"
|
7271 |
+
|
7272 |
+
is-retry-allowed@^1.0.0:
|
7273 |
+
version "1.2.0"
|
7274 |
+
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
|
7275 |
+
integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
|
7276 |
+
|
7277 |
+
is-stream@^1.0.0, is-stream@^1.1.0:
|
7278 |
+
version "1.1.0"
|
7279 |
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
7280 |
+
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
|
7281 |
+
|
7282 |
+
is-stream@^2.0.0:
|
7283 |
+
version "2.0.0"
|
7284 |
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
|
7285 |
+
integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
|
7286 |
+
|
7287 |
+
is-string@^1.0.5:
|
7288 |
+
version "1.0.5"
|
7289 |
+
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
|
7290 |
+
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
|
7291 |
+
|
7292 |
+
is-subset@^0.1.1:
|
7293 |
+
version "0.1.1"
|
7294 |
+
resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
|
7295 |
+
integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=
|
7296 |
+
|
7297 |
+
is-symbol@^1.0.2:
|
7298 |
+
version "1.0.3"
|
7299 |
+
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
|
7300 |
+
integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
|
7301 |
+
dependencies:
|
7302 |
+
has-symbols "^1.0.1"
|
7303 |
+
|
7304 |
+
is-text-path@^1.0.1:
|
7305 |
+
version "1.0.1"
|
7306 |
+
resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
|
7307 |
+
integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=
|
7308 |
+
dependencies:
|
7309 |
+
text-extensions "^1.0.0"
|
7310 |
+
|
7311 |
+
is-typedarray@^1.0.0, is-typedarray@~1.0.0:
|
7312 |
+
version "1.0.0"
|
7313 |
+
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
7314 |
+
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
|
7315 |
+
|
7316 |
+
is-unc-path@^1.0.0:
|
7317 |
+
version "1.0.0"
|
7318 |
+
resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d"
|
7319 |
+
integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
|
7320 |
+
dependencies:
|
7321 |
+
unc-path-regex "^0.1.2"
|
7322 |
+
|
7323 |
+
is-url-superb@^3.0.0:
|
7324 |
+
version "3.0.0"
|
7325 |
+
resolved "https://registry.yarnpkg.com/is-url-superb/-/is-url-superb-3.0.0.tgz#b9a1da878a1ac73659047d1e6f4ef22c209d3e25"
|
7326 |
+
integrity sha512-3faQP+wHCGDQT1qReM5zCPx2mxoal6DzbzquFlCYJLWyy4WPTved33ea2xFbX37z4NoriEwZGIYhFtx8RUB5wQ==
|
7327 |
+
dependencies:
|
7328 |
+
url-regex "^5.0.0"
|
7329 |
+
|
7330 |
+
is-utf8@^0.2.0:
|
7331 |
+
version "0.2.1"
|
7332 |
+
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
|
7333 |
+
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
|
7334 |
+
|
7335 |
+
is-whitespace-character@^1.0.0:
|
7336 |
+
version "1.0.4"
|
7337 |
+
resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
|
7338 |
+
integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==
|
7339 |
+
|
7340 |
+
is-windows@^0.2.0:
|
7341 |
+
version "0.2.0"
|
7342 |
+
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c"
|
7343 |
+
integrity sha1-3hqm1j6indJIc3tp8f+LgALSEIw=
|
7344 |
+
|
7345 |
+
is-windows@^1.0.1, is-windows@^1.0.2:
|
7346 |
+
version "1.0.2"
|
7347 |
+
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
|
7348 |
+
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
|
7349 |
+
|
7350 |
+
is-word-character@^1.0.0:
|
7351 |
+
version "1.0.4"
|
7352 |
+
resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
|
7353 |
+
integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==
|
7354 |
+
|
7355 |
+
is-wsl@^1.1.0:
|
7356 |
+
version "1.1.0"
|
7357 |
+
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
|
7358 |
+
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
|
7359 |
+
|
7360 |
+
is-wsl@^2.1.1:
|
7361 |
+
version "2.2.0"
|
7362 |
+
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
|
7363 |
+
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
|
7364 |
+
dependencies:
|
7365 |
+
is-docker "^2.0.0"
|
7366 |
+
|
7367 |
+
isarray@0.0.1:
|
7368 |
+
version "0.0.1"
|
7369 |
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
|
7370 |
+
integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
|
7371 |
+
|
7372 |
+
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
7373 |
+
version "1.0.0"
|
7374 |
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
7375 |
+
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
|
7376 |
+
|
7377 |
+
isexe@^2.0.0:
|
7378 |
+
version "2.0.0"
|
7379 |
+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
7380 |
+
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
|
7381 |
+
|
7382 |
+
isobject@^2.0.0:
|
7383 |
+
version "2.1.0"
|
7384 |
+
resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
|
7385 |
+
integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
|
7386 |
+
dependencies:
|
7387 |
+
isarray "1.0.0"
|
7388 |
+
|
7389 |
+
isobject@^3.0.0, isobject@^3.0.1:
|
7390 |
+
version "3.0.1"
|
7391 |
+
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
|
7392 |
+
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
|
7393 |
+
|
7394 |
+
isstream@~0.1.2:
|
7395 |
+
version "0.1.2"
|
7396 |
+
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
7397 |
+
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
7398 |
+
|
7399 |
+
issue-parser@^6.0.0:
|
7400 |
+
version "6.0.0"
|
7401 |
+
resolved "https://registry.yarnpkg.com/issue-parser/-/issue-parser-6.0.0.tgz#b1edd06315d4f2044a9755daf85fdafde9b4014a"
|
7402 |
+
integrity sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==
|
7403 |
+
dependencies:
|
7404 |
+
lodash.capitalize "^4.2.1"
|
7405 |
+
lodash.escaperegexp "^4.1.2"
|
7406 |
+
lodash.isplainobject "^4.0.6"
|
7407 |
+
lodash.isstring "^4.0.1"
|
7408 |
+
lodash.uniqby "^4.7.0"
|
7409 |
+
|
7410 |
+
istanbul-lib-coverage@^3.0.0:
|
7411 |
+
version "3.0.0"
|
7412 |
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
|
7413 |
+
integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
|
7414 |
+
|
7415 |
+
istanbul-lib-instrument@^4.0.0:
|
7416 |
+
version "4.0.3"
|
7417 |
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
|
7418 |
+
integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
|
7419 |
+
dependencies:
|
7420 |
+
"@babel/core" "^7.7.5"
|
7421 |
+
"@istanbuljs/schema" "^0.1.2"
|
7422 |
+
istanbul-lib-coverage "^3.0.0"
|
7423 |
+
semver "^6.3.0"
|
7424 |
+
|
7425 |
+
istanbul-lib-report@^3.0.0:
|
7426 |
+
version "3.0.0"
|
7427 |
+
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
|
7428 |
+
integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
|
7429 |
+
dependencies:
|
7430 |
+
istanbul-lib-coverage "^3.0.0"
|
7431 |
+
make-dir "^3.0.0"
|
7432 |
+
supports-color "^7.1.0"
|
7433 |
+
|
7434 |
+
istanbul-lib-source-maps@^4.0.0:
|
7435 |
+
version "4.0.0"
|
7436 |
+
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
|
7437 |
+
integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
|
7438 |
+
dependencies:
|
7439 |
+
debug "^4.1.1"
|
7440 |
+
istanbul-lib-coverage "^3.0.0"
|
7441 |
+
source-map "^0.6.1"
|
7442 |
+
|
7443 |
+
istanbul-reports@^3.0.2:
|
7444 |
+
version "3.0.2"
|
7445 |
+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
|
7446 |
+
integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
|
7447 |
+
dependencies:
|
7448 |
+
html-escaper "^2.0.0"
|
7449 |
+
istanbul-lib-report "^3.0.0"
|
7450 |
+
|
7451 |
+
java-properties@^1.0.0:
|
7452 |
+
version "1.0.2"
|
7453 |
+
resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211"
|
7454 |
+
integrity sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==
|
7455 |
+
|
7456 |
+
jest-changed-files@^25.5.0:
|
7457 |
+
version "25.5.0"
|
7458 |
+
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.5.0.tgz#141cc23567ceb3f534526f8614ba39421383634c"
|
7459 |
+
integrity sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==
|
7460 |
+
dependencies:
|
7461 |
+
"@jest/types" "^25.5.0"
|
7462 |
+
execa "^3.2.0"
|
7463 |
+
throat "^5.0.0"
|
7464 |
+
|
7465 |
+
jest-cli@^25.5.4:
|
7466 |
+
version "25.5.4"
|
7467 |
+
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.5.4.tgz#b9f1a84d1301a92c5c217684cb79840831db9f0d"
|
7468 |
+
integrity sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==
|
7469 |
+
dependencies:
|
7470 |
+
"@jest/core" "^25.5.4"
|
7471 |
+
"@jest/test-result" "^25.5.0"
|
7472 |
+
"@jest/types" "^25.5.0"
|
7473 |
+
chalk "^3.0.0"
|
7474 |
+
exit "^0.1.2"
|
7475 |
+
graceful-fs "^4.2.4"
|
7476 |
+
import-local "^3.0.2"
|
7477 |
+
is-ci "^2.0.0"
|
7478 |
+
jest-config "^25.5.4"
|
7479 |
+
jest-util "^25.5.0"
|
7480 |
+
jest-validate "^25.5.0"
|
7481 |
+
prompts "^2.0.1"
|
7482 |
+
realpath-native "^2.0.0"
|
7483 |
+
yargs "^15.3.1"
|
7484 |
+
|
7485 |
+
jest-config@^25.5.4:
|
7486 |
+
version "25.5.4"
|
7487 |
+
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.5.4.tgz#38e2057b3f976ef7309b2b2c8dcd2a708a67f02c"
|
7488 |
+
integrity sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==
|
7489 |
+
dependencies:
|
7490 |
+
"@babel/core" "^7.1.0"
|
7491 |
+
"@jest/test-sequencer" "^25.5.4"
|
7492 |
+
"@jest/types" "^25.5.0"
|
7493 |
+
babel-jest "^25.5.1"
|
7494 |
+
chalk "^3.0.0"
|
7495 |
+
deepmerge "^4.2.2"
|
7496 |
+
glob "^7.1.1"
|
7497 |
+
graceful-fs "^4.2.4"
|
7498 |
+
jest-environment-jsdom "^25.5.0"
|
7499 |
+
jest-environment-node "^25.5.0"
|
7500 |
+
jest-get-type "^25.2.6"
|
7501 |
+
jest-jasmine2 "^25.5.4"
|
7502 |
+
jest-regex-util "^25.2.6"
|
7503 |
+
jest-resolve "^25.5.1"
|
7504 |
+
jest-util "^25.5.0"
|
7505 |
+
jest-validate "^25.5.0"
|
7506 |
+
micromatch "^4.0.2"
|
7507 |
+
pretty-format "^25.5.0"
|
7508 |
+
realpath-native "^2.0.0"
|
7509 |
+
|
7510 |
+
jest-dev-server@^4.4.0:
|
7511 |
+
version "4.4.0"
|
7512 |
+
resolved "https://registry.yarnpkg.com/jest-dev-server/-/jest-dev-server-4.4.0.tgz#557113faae2877452162696aa94c1e44491ab011"
|
7513 |
+
integrity sha512-STEHJ3iPSC8HbrQ3TME0ozGX2KT28lbT4XopPxUm2WimsX3fcB3YOptRh12YphQisMhfqNSNTZUmWyT3HEXS2A==
|
7514 |
+
dependencies:
|
7515 |
+
chalk "^3.0.0"
|
7516 |
+
cwd "^0.10.0"
|
7517 |
+
find-process "^1.4.3"
|
7518 |
+
prompts "^2.3.0"
|
7519 |
+
spawnd "^4.4.0"
|
7520 |
+
tree-kill "^1.2.2"
|
7521 |
+
wait-on "^3.3.0"
|
7522 |
+
|
7523 |
+
jest-diff@^25.5.0:
|
7524 |
+
version "25.5.0"
|
7525 |
+
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9"
|
7526 |
+
integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==
|
7527 |
+
dependencies:
|
7528 |
+
chalk "^3.0.0"
|
7529 |
+
diff-sequences "^25.2.6"
|
7530 |
+
jest-get-type "^25.2.6"
|
7531 |
+
pretty-format "^25.5.0"
|
7532 |
+
|
7533 |
+
jest-docblock@^25.3.0:
|
7534 |
+
version "25.3.0"
|
7535 |
+
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef"
|
7536 |
+
integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==
|
7537 |
+
dependencies:
|
7538 |
+
detect-newline "^3.0.0"
|
7539 |
+
|
7540 |
+
jest-each@^25.5.0:
|
7541 |
+
version "25.5.0"
|
7542 |
+
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.5.0.tgz#0c3c2797e8225cb7bec7e4d249dcd96b934be516"
|
7543 |
+
integrity sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==
|
7544 |
+
dependencies:
|
7545 |
+
"@jest/types" "^25.5.0"
|
7546 |
+
chalk "^3.0.0"
|
7547 |
+
jest-get-type "^25.2.6"
|
7548 |
+
jest-util "^25.5.0"
|
7549 |
+
pretty-format "^25.5.0"
|
7550 |
+
|
7551 |
+
jest-environment-jsdom@^25.5.0:
|
7552 |
+
version "25.5.0"
|
7553 |
+
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz#dcbe4da2ea997707997040ecf6e2560aec4e9834"
|
7554 |
+
integrity sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==
|
7555 |
+
dependencies:
|
7556 |
+
"@jest/environment" "^25.5.0"
|
7557 |
+
"@jest/fake-timers" "^25.5.0"
|
7558 |
+
"@jest/types" "^25.5.0"
|
7559 |
+
jest-mock "^25.5.0"
|
7560 |
+
jest-util "^25.5.0"
|
7561 |
+
jsdom "^15.2.1"
|
7562 |
+
|
7563 |
+
jest-environment-node@^25.5.0:
|
7564 |
+
version "25.5.0"
|
7565 |
+
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.5.0.tgz#0f55270d94804902988e64adca37c6ce0f7d07a1"
|
7566 |
+
integrity sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==
|
7567 |
+
dependencies:
|
7568 |
+
"@jest/environment" "^25.5.0"
|
7569 |
+
"@jest/fake-timers" "^25.5.0"
|
7570 |
+
"@jest/types" "^25.5.0"
|
7571 |
+
jest-mock "^25.5.0"
|
7572 |
+
jest-util "^25.5.0"
|
7573 |
+
semver "^6.3.0"
|
7574 |
+
|
7575 |
+
jest-environment-puppeteer@^4.4.0:
|
7576 |
+
version "4.4.0"
|
7577 |
+
resolved "https://registry.yarnpkg.com/jest-environment-puppeteer/-/jest-environment-puppeteer-4.4.0.tgz#d82a37e0e0c51b63cc6b15dea101d53967508860"
|
7578 |
+
integrity sha512-iV8S8+6qkdTM6OBR/M9gKywEk8GDSOe05hspCs5D8qKSwtmlUfdtHfB4cakdc68lC6YfK3AUsLirpfgodCHjzQ==
|
7579 |
+
dependencies:
|
7580 |
+
chalk "^3.0.0"
|
7581 |
+
cwd "^0.10.0"
|
7582 |
+
jest-dev-server "^4.4.0"
|
7583 |
+
merge-deep "^3.0.2"
|
7584 |
+
|
7585 |
+
jest-get-type@^25.2.6:
|
7586 |
+
version "25.2.6"
|
7587 |
+
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877"
|
7588 |
+
integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==
|
7589 |
+
|
7590 |
+
jest-haste-map@^25.5.1:
|
7591 |
+
version "25.5.1"
|
7592 |
+
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943"
|
7593 |
+
integrity sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==
|
7594 |
+
dependencies:
|
7595 |
+
"@jest/types" "^25.5.0"
|
7596 |
+
"@types/graceful-fs" "^4.1.2"
|
7597 |
+
anymatch "^3.0.3"
|
7598 |
+
fb-watchman "^2.0.0"
|
7599 |
+
graceful-fs "^4.2.4"
|
7600 |
+
jest-serializer "^25.5.0"
|
7601 |
+
jest-util "^25.5.0"
|
7602 |
+
jest-worker "^25.5.0"
|
7603 |
+
micromatch "^4.0.2"
|
7604 |
+
sane "^4.0.3"
|
7605 |
+
walker "^1.0.7"
|
7606 |
+
which "^2.0.2"
|
7607 |
+
optionalDependencies:
|
7608 |
+
fsevents "^2.1.2"
|
7609 |
+
|
7610 |
+
jest-jasmine2@^25.5.4:
|
7611 |
+
version "25.5.4"
|
7612 |
+
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz#66ca8b328fb1a3c5364816f8958f6970a8526968"
|
7613 |
+
integrity sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==
|
7614 |
+
dependencies:
|
7615 |
+
"@babel/traverse" "^7.1.0"
|
7616 |
+
"@jest/environment" "^25.5.0"
|
7617 |
+
"@jest/source-map" "^25.5.0"
|
7618 |
+
"@jest/test-result" "^25.5.0"
|
7619 |
+
"@jest/types" "^25.5.0"
|
7620 |
+
chalk "^3.0.0"
|
7621 |
+
co "^4.6.0"
|
7622 |
+
expect "^25.5.0"
|
7623 |
+
is-generator-fn "^2.0.0"
|
7624 |
+
jest-each "^25.5.0"
|
7625 |
+
jest-matcher-utils "^25.5.0"
|
7626 |
+
jest-message-util "^25.5.0"
|
7627 |
+
jest-runtime "^25.5.4"
|
7628 |
+
jest-snapshot "^25.5.1"
|
7629 |
+
jest-util "^25.5.0"
|
7630 |
+
pretty-format "^25.5.0"
|
7631 |
+
throat "^5.0.0"
|
7632 |
+
|
7633 |
+
jest-leak-detector@^25.5.0:
|
7634 |
+
version "25.5.0"
|
7635 |
+
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz#2291c6294b0ce404241bb56fe60e2d0c3e34f0bb"
|
7636 |
+
integrity sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==
|
7637 |
+
dependencies:
|
7638 |
+
jest-get-type "^25.2.6"
|
7639 |
+
pretty-format "^25.5.0"
|
7640 |
+
|
7641 |
+
jest-matcher-utils@^25.3.0, jest-matcher-utils@^25.5.0:
|
7642 |
+
version "25.5.0"
|
7643 |
+
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867"
|
7644 |
+
integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==
|
7645 |
+
dependencies:
|
7646 |
+
chalk "^3.0.0"
|
7647 |
+
jest-diff "^25.5.0"
|
7648 |
+
jest-get-type "^25.2.6"
|
7649 |
+
pretty-format "^25.5.0"
|
7650 |
+
|
7651 |
+
jest-message-util@^25.5.0:
|
7652 |
+
version "25.5.0"
|
7653 |
+
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea"
|
7654 |
+
integrity sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==
|
7655 |
+
dependencies:
|
7656 |
+
"@babel/code-frame" "^7.0.0"
|
7657 |
+
"@jest/types" "^25.5.0"
|
7658 |
+
"@types/stack-utils" "^1.0.1"
|
7659 |
+
chalk "^3.0.0"
|
7660 |
+
graceful-fs "^4.2.4"
|
7661 |
+
micromatch "^4.0.2"
|
7662 |
+
slash "^3.0.0"
|
7663 |
+
stack-utils "^1.0.1"
|
7664 |
+
|
7665 |
+
jest-mock@^25.5.0:
|
7666 |
+
version "25.5.0"
|
7667 |
+
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.5.0.tgz#a91a54dabd14e37ecd61665d6b6e06360a55387a"
|
7668 |
+
integrity sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==
|
7669 |
+
dependencies:
|
7670 |
+
"@jest/types" "^25.5.0"
|
7671 |
+
|
7672 |
+
jest-pnp-resolver@^1.2.1:
|
7673 |
+
version "1.2.2"
|
7674 |
+
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
|
7675 |
+
integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
|
7676 |
+
|
7677 |
+
jest-puppeteer@^4.4.0:
|
7678 |
+
version "4.4.0"
|
7679 |
+
resolved "https://registry.yarnpkg.com/jest-puppeteer/-/jest-puppeteer-4.4.0.tgz#4b906e638a5e3782ed865e7b673c82047b85952e"
|
7680 |
+
integrity sha512-ZaiCTlPZ07B9HW0erAWNX6cyzBqbXMM7d2ugai4epBDKpKvRDpItlRQC6XjERoJELKZsPziFGS0OhhUvTvQAXA==
|
7681 |
+
dependencies:
|
7682 |
+
expect-puppeteer "^4.4.0"
|
7683 |
+
jest-environment-puppeteer "^4.4.0"
|
7684 |
+
|
7685 |
+
jest-regex-util@^25.2.6:
|
7686 |
+
version "25.2.6"
|
7687 |
+
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964"
|
7688 |
+
integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==
|
7689 |
+
|
7690 |
+
jest-resolve-dependencies@^25.5.4:
|
7691 |
+
version "25.5.4"
|
7692 |
+
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz#85501f53957c8e3be446e863a74777b5a17397a7"
|
7693 |
+
integrity sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==
|
7694 |
+
dependencies:
|
7695 |
+
"@jest/types" "^25.5.0"
|
7696 |
+
jest-regex-util "^25.2.6"
|
7697 |
+
jest-snapshot "^25.5.1"
|
7698 |
+
|
7699 |
+
jest-resolve@^25.5.1:
|
7700 |
+
version "25.5.1"
|
7701 |
+
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829"
|
7702 |
+
integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==
|
7703 |
+
dependencies:
|
7704 |
+
"@jest/types" "^25.5.0"
|
7705 |
+
browser-resolve "^1.11.3"
|
7706 |
+
chalk "^3.0.0"
|
7707 |
+
graceful-fs "^4.2.4"
|
7708 |
+
jest-pnp-resolver "^1.2.1"
|
7709 |
+
read-pkg-up "^7.0.1"
|
7710 |
+
realpath-native "^2.0.0"
|
7711 |
+
resolve "^1.17.0"
|
7712 |
+
slash "^3.0.0"
|
7713 |
+
|
7714 |
+
jest-runner@^25.5.4:
|
7715 |
+
version "25.5.4"
|
7716 |
+
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.5.4.tgz#ffec5df3875da5f5c878ae6d0a17b8e4ecd7c71d"
|
7717 |
+
integrity sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==
|
7718 |
+
dependencies:
|
7719 |
+
"@jest/console" "^25.5.0"
|
7720 |
+
"@jest/environment" "^25.5.0"
|
7721 |
+
"@jest/test-result" "^25.5.0"
|
7722 |
+
"@jest/types" "^25.5.0"
|
7723 |
+
chalk "^3.0.0"
|
7724 |
+
exit "^0.1.2"
|
7725 |
+
graceful-fs "^4.2.4"
|
7726 |
+
jest-config "^25.5.4"
|
7727 |
+
jest-docblock "^25.3.0"
|
7728 |
+
jest-haste-map "^25.5.1"
|
7729 |
+
jest-jasmine2 "^25.5.4"
|
7730 |
+
jest-leak-detector "^25.5.0"
|
7731 |
+
jest-message-util "^25.5.0"
|
7732 |
+
jest-resolve "^25.5.1"
|
7733 |
+
jest-runtime "^25.5.4"
|
7734 |
+
jest-util "^25.5.0"
|
7735 |
+
jest-worker "^25.5.0"
|
7736 |
+
source-map-support "^0.5.6"
|
7737 |
+
throat "^5.0.0"
|
7738 |
+
|
7739 |
+
jest-runtime@^25.5.4:
|
7740 |
+
version "25.5.4"
|
7741 |
+
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.5.4.tgz#dc981fe2cb2137abcd319e74ccae7f7eeffbfaab"
|
7742 |
+
integrity sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==
|
7743 |
+
dependencies:
|
7744 |
+
"@jest/console" "^25.5.0"
|
7745 |
+
"@jest/environment" "^25.5.0"
|
7746 |
+
"@jest/globals" "^25.5.2"
|
7747 |
+
"@jest/source-map" "^25.5.0"
|
7748 |
+
"@jest/test-result" "^25.5.0"
|
7749 |
+
"@jest/transform" "^25.5.1"
|
7750 |
+
"@jest/types" "^25.5.0"
|
7751 |
+
"@types/yargs" "^15.0.0"
|
7752 |
+
chalk "^3.0.0"
|
7753 |
+
collect-v8-coverage "^1.0.0"
|
7754 |
+
exit "^0.1.2"
|
7755 |
+
glob "^7.1.3"
|
7756 |
+
graceful-fs "^4.2.4"
|
7757 |
+
jest-config "^25.5.4"
|
7758 |
+
jest-haste-map "^25.5.1"
|
7759 |
+
jest-message-util "^25.5.0"
|
7760 |
+
jest-mock "^25.5.0"
|
7761 |
+
jest-regex-util "^25.2.6"
|
7762 |
+
jest-resolve "^25.5.1"
|
7763 |
+
jest-snapshot "^25.5.1"
|
7764 |
+
jest-util "^25.5.0"
|
7765 |
+
jest-validate "^25.5.0"
|
7766 |
+
realpath-native "^2.0.0"
|
7767 |
+
slash "^3.0.0"
|
7768 |
+
strip-bom "^4.0.0"
|
7769 |
+
yargs "^15.3.1"
|
7770 |
+
|
7771 |
+
jest-serializer@^25.5.0:
|
7772 |
+
version "25.5.0"
|
7773 |
+
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b"
|
7774 |
+
integrity sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==
|
7775 |
+
dependencies:
|
7776 |
+
graceful-fs "^4.2.4"
|
7777 |
+
|
7778 |
+
jest-snapshot@^25.5.1:
|
7779 |
+
version "25.5.1"
|
7780 |
+
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f"
|
7781 |
+
integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==
|
7782 |
+
dependencies:
|
7783 |
+
"@babel/types" "^7.0.0"
|
7784 |
+
"@jest/types" "^25.5.0"
|
7785 |
+
"@types/prettier" "^1.19.0"
|
7786 |
+
chalk "^3.0.0"
|
7787 |
+
expect "^25.5.0"
|
7788 |
+
graceful-fs "^4.2.4"
|
7789 |
+
jest-diff "^25.5.0"
|
7790 |
+
jest-get-type "^25.2.6"
|
7791 |
+
jest-matcher-utils "^25.5.0"
|
7792 |
+
jest-message-util "^25.5.0"
|
7793 |
+
jest-resolve "^25.5.1"
|
7794 |
+
make-dir "^3.0.0"
|
7795 |
+
natural-compare "^1.4.0"
|
7796 |
+
pretty-format "^25.5.0"
|
7797 |
+
semver "^6.3.0"
|
7798 |
+
|
7799 |
+
jest-util@^25.5.0:
|
7800 |
+
version "25.5.0"
|
7801 |
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0"
|
7802 |
+
integrity sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==
|
7803 |
+
dependencies:
|
7804 |
+
"@jest/types" "^25.5.0"
|
7805 |
+
chalk "^3.0.0"
|
7806 |
+
graceful-fs "^4.2.4"
|
7807 |
+
is-ci "^2.0.0"
|
7808 |
+
make-dir "^3.0.0"
|
7809 |
+
|
7810 |
+
jest-validate@^25.5.0:
|
7811 |
+
version "25.5.0"
|
7812 |
+
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.5.0.tgz#fb4c93f332c2e4cf70151a628e58a35e459a413a"
|
7813 |
+
integrity sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==
|
7814 |
+
dependencies:
|
7815 |
+
"@jest/types" "^25.5.0"
|
7816 |
+
camelcase "^5.3.1"
|
7817 |
+
chalk "^3.0.0"
|
7818 |
+
jest-get-type "^25.2.6"
|
7819 |
+
leven "^3.1.0"
|
7820 |
+
pretty-format "^25.5.0"
|
7821 |
+
|
7822 |
+
jest-watcher@^25.5.0:
|
7823 |
+
version "25.5.0"
|
7824 |
+
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.5.0.tgz#d6110d101df98badebe435003956fd4a465e8456"
|
7825 |
+
integrity sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==
|
7826 |
+
dependencies:
|
7827 |
+
"@jest/test-result" "^25.5.0"
|
7828 |
+
"@jest/types" "^25.5.0"
|
7829 |
+
ansi-escapes "^4.2.1"
|
7830 |
+
chalk "^3.0.0"
|
7831 |
+
jest-util "^25.5.0"
|
7832 |
+
string-length "^3.1.0"
|
7833 |
+
|
7834 |
+
jest-worker@^25.5.0:
|
7835 |
+
version "25.5.0"
|
7836 |
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1"
|
7837 |
+
integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==
|
7838 |
+
dependencies:
|
7839 |
+
merge-stream "^2.0.0"
|
7840 |
+
supports-color "^7.0.0"
|
7841 |
+
|
7842 |
+
jest-worker@^26.2.1:
|
7843 |
+
version "26.5.0"
|
7844 |
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.5.0.tgz#87deee86dbbc5f98d9919e0dadf2c40e3152fa30"
|
7845 |
+
integrity sha512-kTw66Dn4ZX7WpjZ7T/SUDgRhapFRKWmisVAF0Rv4Fu8SLFD7eLbqpLvbxVqYhSgaWa7I+bW7pHnbyfNsH6stug==
|
7846 |
+
dependencies:
|
7847 |
+
"@types/node" "*"
|
7848 |
+
merge-stream "^2.0.0"
|
7849 |
+
supports-color "^7.0.0"
|
7850 |
+
|
7851 |
+
jest@^25.3.0:
|
7852 |
+
version "25.5.4"
|
7853 |
+
resolved "https://registry.yarnpkg.com/jest/-/jest-25.5.4.tgz#f21107b6489cfe32b076ce2adcadee3587acb9db"
|
7854 |
+
integrity sha512-hHFJROBTqZahnO+X+PMtT6G2/ztqAZJveGqz//FnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ==
|
7855 |
+
dependencies:
|
7856 |
+
"@jest/core" "^25.5.4"
|
7857 |
+
import-local "^3.0.2"
|
7858 |
+
jest-cli "^25.5.4"
|
7859 |
+
|
7860 |
+
js-base64@^2.1.8:
|
7861 |
+
version "2.6.4"
|
7862 |
+
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4"
|
7863 |
+
integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==
|
7864 |
+
|
7865 |
+
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
7866 |
+
version "4.0.0"
|
7867 |
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
7868 |
+
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
7869 |
+
|
7870 |
+
js-yaml@^3.13.1, js-yaml@~3.14.0:
|
7871 |
+
version "3.14.0"
|
7872 |
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
|
7873 |
+
integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
|
7874 |
+
dependencies:
|
7875 |
+
argparse "^1.0.7"
|
7876 |
+
esprima "^4.0.0"
|
7877 |
+
|
7878 |
+
js-yaml@~3.13.1:
|
7879 |
+
version "3.13.1"
|
7880 |
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
|
7881 |
+
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
|
7882 |
+
dependencies:
|
7883 |
+
argparse "^1.0.7"
|
7884 |
+
esprima "^4.0.0"
|
7885 |
+
|
7886 |
+
jsbn@~0.1.0:
|
7887 |
+
version "0.1.1"
|
7888 |
+
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
7889 |
+
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
|
7890 |
+
|
7891 |
+
jsdoctypeparser@^9.0.0:
|
7892 |
+
version "9.0.0"
|
7893 |
+
resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz#8c97e2fb69315eb274b0f01377eaa5c940bd7b26"
|
7894 |
+
integrity sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==
|
7895 |
+
|
7896 |
+
jsdom@^15.2.1:
|
7897 |
+
version "15.2.1"
|
7898 |
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5"
|
7899 |
+
integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==
|
7900 |
+
dependencies:
|
7901 |
+
abab "^2.0.0"
|
7902 |
+
acorn "^7.1.0"
|
7903 |
+
acorn-globals "^4.3.2"
|
7904 |
+
array-equal "^1.0.0"
|
7905 |
+
cssom "^0.4.1"
|
7906 |
+
cssstyle "^2.0.0"
|
7907 |
+
data-urls "^1.1.0"
|
7908 |
+
domexception "^1.0.1"
|
7909 |
+
escodegen "^1.11.1"
|
7910 |
+
html-encoding-sniffer "^1.0.2"
|
7911 |
+
nwsapi "^2.2.0"
|
7912 |
+
parse5 "5.1.0"
|
7913 |
+
pn "^1.1.0"
|
7914 |
+
request "^2.88.0"
|
7915 |
+
request-promise-native "^1.0.7"
|
7916 |
+
saxes "^3.1.9"
|
7917 |
+
symbol-tree "^3.2.2"
|
7918 |
+
tough-cookie "^3.0.1"
|
7919 |
+
w3c-hr-time "^1.0.1"
|
7920 |
+
w3c-xmlserializer "^1.1.2"
|
7921 |
+
webidl-conversions "^4.0.2"
|
7922 |
+
whatwg-encoding "^1.0.5"
|
7923 |
+
whatwg-mimetype "^2.3.0"
|
7924 |
+
whatwg-url "^7.0.0"
|
7925 |
+
ws "^7.0.0"
|
7926 |
+
xml-name-validator "^3.0.0"
|
7927 |
+
|
7928 |
+
jsesc@^2.5.1:
|
7929 |
+
version "2.5.2"
|
7930 |
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
|
7931 |
+
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
|
7932 |
+
|
7933 |
+
jsesc@~0.5.0:
|
7934 |
+
version "0.5.0"
|
7935 |
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
7936 |
+
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
|
7937 |
+
|
7938 |
+
json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
|
7939 |
+
version "1.0.2"
|
7940 |
+
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
|
7941 |
+
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
|
7942 |
+
|
7943 |
+
json-parse-even-better-errors@^2.3.0:
|
7944 |
+
version "2.3.1"
|
7945 |
+
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
|
7946 |
+
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
|
7947 |
+
|
7948 |
+
json-schema-traverse@^0.4.1:
|
7949 |
+
version "0.4.1"
|
7950 |
+
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
|
7951 |
+
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
|
7952 |
+
|
7953 |
+
json-schema@0.2.3:
|
7954 |
+
version "0.2.3"
|
7955 |
+
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
7956 |
+
integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
|
7957 |
+
|
7958 |
+
json-stable-stringify-without-jsonify@^1.0.1:
|
7959 |
+
version "1.0.1"
|
7960 |
+
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
|
7961 |
+
integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
|
7962 |
+
|
7963 |
+
json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
|
7964 |
+
version "5.0.1"
|
7965 |
+
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
7966 |
+
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
|
7967 |
+
|
7968 |
+
json2php@^0.0.4:
|
7969 |
+
version "0.0.4"
|
7970 |
+
resolved "https://registry.yarnpkg.com/json2php/-/json2php-0.0.4.tgz#6bd85a1dda6a5dd7e91022bb24403cc1b7c2ee34"
|
7971 |
+
integrity sha1-a9haHdpqXdfpECK7JEA8wbfC7jQ=
|
7972 |
+
|
7973 |
+
json5@^1.0.1:
|
7974 |
+
version "1.0.1"
|
7975 |
+
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
|
7976 |
+
integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
|
7977 |
+
dependencies:
|
7978 |
+
minimist "^1.2.0"
|
7979 |
+
|
7980 |
+
json5@^2.1.2:
|
7981 |
+
version "2.1.3"
|
7982 |
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
|
7983 |
+
integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
|
7984 |
+
dependencies:
|
7985 |
+
minimist "^1.2.5"
|
7986 |
+
|
7987 |
+
jsonc-parser@^2.2.1:
|
7988 |
+
version "2.3.1"
|
7989 |
+
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-2.3.1.tgz#59549150b133f2efacca48fe9ce1ec0659af2342"
|
7990 |
+
integrity sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==
|
7991 |
+
|
7992 |
+
jsonc-parser@~2.2.0:
|
7993 |
+
version "2.2.1"
|
7994 |
+
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-2.2.1.tgz#db73cd59d78cce28723199466b2a03d1be1df2bc"
|
7995 |
+
integrity sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==
|
7996 |
+
|
7997 |
+
jsonfile@^6.0.1:
|
7998 |
+
version "6.0.1"
|
7999 |
+
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179"
|
8000 |
+
integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
|
8001 |
+
dependencies:
|
8002 |
+
universalify "^1.0.0"
|
8003 |
+
optionalDependencies:
|
8004 |
+
graceful-fs "^4.1.6"
|
8005 |
+
|
8006 |
+
jsonparse@^1.2.0:
|
8007 |
+
version "1.3.1"
|
8008 |
+
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
|
8009 |
+
integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
|
8010 |
+
|
8011 |
+
jsprim@^1.2.2:
|
8012 |
+
version "1.4.1"
|
8013 |
+
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
8014 |
+
integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
|
8015 |
+
dependencies:
|
8016 |
+
assert-plus "1.0.0"
|
8017 |
+
extsprintf "1.3.0"
|
8018 |
+
json-schema "0.2.3"
|
8019 |
+
verror "1.10.0"
|
8020 |
+
|
8021 |
+
jsx-ast-utils@^2.4.1:
|
8022 |
+
version "2.4.1"
|
8023 |
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e"
|
8024 |
+
integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==
|
8025 |
+
dependencies:
|
8026 |
+
array-includes "^3.1.1"
|
8027 |
+
object.assign "^4.1.0"
|
8028 |
+
|
8029 |
+
kind-of@^2.0.1:
|
8030 |
+
version "2.0.1"
|
8031 |
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5"
|
8032 |
+
integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=
|
8033 |
+
dependencies:
|
8034 |
+
is-buffer "^1.0.2"
|
8035 |
+
|
8036 |
+
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
|
8037 |
+
version "3.2.2"
|
8038 |
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
8039 |
+
integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
|
8040 |
+
dependencies:
|
8041 |
+
is-buffer "^1.1.5"
|
8042 |
+
|
8043 |
+
kind-of@^4.0.0:
|
8044 |
+
version "4.0.0"
|
8045 |
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
|
8046 |
+
integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
|
8047 |
+
dependencies:
|
8048 |
+
is-buffer "^1.1.5"
|
8049 |
+
|
8050 |
+
kind-of@^5.0.0:
|
8051 |
+
version "5.1.0"
|
8052 |
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
|
8053 |
+
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
|
8054 |
+
|
8055 |
+
kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
|
8056 |
+
version "6.0.3"
|
8057 |
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
8058 |
+
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
8059 |
+
|
8060 |
+
kleur@^3.0.3:
|
8061 |
+
version "3.0.3"
|
8062 |
+
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
|
8063 |
+
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
|
8064 |
+
|
8065 |
+
known-css-properties@^0.19.0:
|
8066 |
+
version "0.19.0"
|
8067 |
+
resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.19.0.tgz#5d92b7fa16c72d971bda9b7fe295bdf61836ee5b"
|
8068 |
+
integrity sha512-eYboRV94Vco725nKMlpkn3nV2+96p9c3gKXRsYqAJSswSENvBhN7n5L+uDhY58xQa0UukWsDMTGELzmD8Q+wTA==
|
8069 |
+
|
8070 |
+
language-subtag-registry@~0.3.2:
|
8071 |
+
version "0.3.20"
|
8072 |
+
resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.20.tgz#a00a37121894f224f763268e431c55556b0c0755"
|
8073 |
+
integrity sha512-KPMwROklF4tEx283Xw0pNKtfTj1gZ4UByp4EsIFWLgBavJltF4TiYPc39k06zSTsLzxTVXXDSpbwaQXaFB4Qeg==
|
8074 |
+
|
8075 |
+
language-tags@^1.0.5:
|
8076 |
+
version "1.0.5"
|
8077 |
+
resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
|
8078 |
+
integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
|
8079 |
+
dependencies:
|
8080 |
+
language-subtag-registry "~0.3.2"
|
8081 |
+
|
8082 |
+
latest-version@^3.0.0:
|
8083 |
+
version "3.1.0"
|
8084 |
+
resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
|
8085 |
+
integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=
|
8086 |
+
dependencies:
|
8087 |
+
package-json "^4.0.0"
|
8088 |
+
|
8089 |
+
lazy-ass@^1.6.0:
|
8090 |
+
version "1.6.0"
|
8091 |
+
resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513"
|
8092 |
+
integrity sha1-eZllXoZGwX8In90YfRUNMyTVRRM=
|
8093 |
+
|
8094 |
+
lazy-cache@^0.2.3:
|
8095 |
+
version "0.2.7"
|
8096 |
+
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65"
|
8097 |
+
integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=
|
8098 |
+
|
8099 |
+
lazy-cache@^1.0.3:
|
8100 |
+
version "1.0.4"
|
8101 |
+
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
8102 |
+
integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4=
|
8103 |
+
|
8104 |
+
lazy-property@~1.0.0:
|
8105 |
+
version "1.0.0"
|
8106 |
+
resolved "https://registry.yarnpkg.com/lazy-property/-/lazy-property-1.0.0.tgz#84ddc4b370679ba8bd4cdcfa4c06b43d57111147"
|
8107 |
+
integrity sha1-hN3Es3Bnm6i9TNz6TAa0PVcREUc=
|
8108 |
+
|
8109 |
+
lcid@^1.0.0:
|
8110 |
+
version "1.0.0"
|
8111 |
+
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
|
8112 |
+
integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=
|
8113 |
+
dependencies:
|
8114 |
+
invert-kv "^1.0.0"
|
8115 |
+
|
8116 |
+
leven@^3.1.0:
|
8117 |
+
version "3.1.0"
|
8118 |
+
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
8119 |
+
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
8120 |
+
|
8121 |
+
levenary@^1.1.1:
|
8122 |
+
version "1.1.1"
|
8123 |
+
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
|
8124 |
+
integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
|
8125 |
+
dependencies:
|
8126 |
+
leven "^3.1.0"
|
8127 |
+
|
8128 |
+
levn@^0.4.1:
|
8129 |
+
version "0.4.1"
|
8130 |
+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
|
8131 |
+
integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
|
8132 |
+
dependencies:
|
8133 |
+
prelude-ls "^1.2.1"
|
8134 |
+
type-check "~0.4.0"
|
8135 |
+
|
8136 |
+
levn@~0.3.0:
|
8137 |
+
version "0.3.0"
|
8138 |
+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
8139 |
+
integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
|
8140 |
+
dependencies:
|
8141 |
+
prelude-ls "~1.1.2"
|
8142 |
+
type-check "~0.3.2"
|
8143 |
+
|
8144 |
+
libcipm@^4.0.8:
|
8145 |
+
version "4.0.8"
|
8146 |
+
resolved "https://registry.yarnpkg.com/libcipm/-/libcipm-4.0.8.tgz#dcea4919e10dfbce420327e63901613b9141bc89"
|
8147 |
+
integrity sha512-IN3hh2yDJQtZZ5paSV4fbvJg4aHxCCg5tcZID/dSVlTuUiWktsgaldVljJv6Z5OUlYspx6xQkbR0efNodnIrOA==
|
8148 |
+
dependencies:
|
8149 |
+
bin-links "^1.1.2"
|
8150 |
+
bluebird "^3.5.1"
|
8151 |
+
figgy-pudding "^3.5.1"
|
8152 |
+
find-npm-prefix "^1.0.2"
|
8153 |
+
graceful-fs "^4.1.11"
|
8154 |
+
ini "^1.3.5"
|
8155 |
+
lock-verify "^2.1.0"
|
8156 |
+
mkdirp "^0.5.1"
|
8157 |
+
npm-lifecycle "^3.0.0"
|
8158 |
+
npm-logical-tree "^1.2.1"
|
8159 |
+
npm-package-arg "^6.1.0"
|
8160 |
+
pacote "^9.1.0"
|
8161 |
+
read-package-json "^2.0.13"
|
8162 |
+
rimraf "^2.6.2"
|
8163 |
+
worker-farm "^1.6.0"
|
8164 |
+
|
8165 |
+
libnpm@^3.0.1:
|
8166 |
+
version "3.0.1"
|
8167 |
+
resolved "https://registry.yarnpkg.com/libnpm/-/libnpm-3.0.1.tgz#0be11b4c9dd4d1ffd7d95c786e92e55d65be77a2"
|
8168 |
+
integrity sha512-d7jU5ZcMiTfBqTUJVZ3xid44fE5ERBm9vBnmhp2ECD2Ls+FNXWxHSkO7gtvrnbLO78gwPdNPz1HpsF3W4rjkBQ==
|
8169 |
+
dependencies:
|
8170 |
+
bin-links "^1.1.2"
|
8171 |
+
bluebird "^3.5.3"
|
8172 |
+
find-npm-prefix "^1.0.2"
|
8173 |
+
libnpmaccess "^3.0.2"
|
8174 |
+
libnpmconfig "^1.2.1"
|
8175 |
+
libnpmhook "^5.0.3"
|
8176 |
+
libnpmorg "^1.0.1"
|
8177 |
+
libnpmpublish "^1.1.2"
|
8178 |
+
libnpmsearch "^2.0.2"
|
8179 |
+
libnpmteam "^1.0.2"
|
8180 |
+
lock-verify "^2.0.2"
|
8181 |
+
npm-lifecycle "^3.0.0"
|
8182 |
+
npm-logical-tree "^1.2.1"
|
8183 |
+
npm-package-arg "^6.1.0"
|
8184 |
+
npm-profile "^4.0.2"
|
8185 |
+
npm-registry-fetch "^4.0.0"
|
8186 |
+
npmlog "^4.1.2"
|
8187 |
+
pacote "^9.5.3"
|
8188 |
+
read-package-json "^2.0.13"
|
8189 |
+
stringify-package "^1.0.0"
|
8190 |
+
|
8191 |
+
libnpmaccess@^3.0.2:
|
8192 |
+
version "3.0.2"
|
8193 |
+
resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-3.0.2.tgz#8b2d72345ba3bef90d3b4f694edd5c0417f58923"
|
8194 |
+
integrity sha512-01512AK7MqByrI2mfC7h5j8N9V4I7MHJuk9buo8Gv+5QgThpOgpjB7sQBDDkeZqRteFb1QM/6YNdHfG7cDvfAQ==
|
8195 |
+
dependencies:
|
8196 |
+
aproba "^2.0.0"
|
8197 |
+
get-stream "^4.0.0"
|
8198 |
+
npm-package-arg "^6.1.0"
|
8199 |
+
npm-registry-fetch "^4.0.0"
|
8200 |
+
|
8201 |
+
libnpmconfig@^1.2.1:
|
8202 |
+
version "1.2.1"
|
8203 |
+
resolved "https://registry.yarnpkg.com/libnpmconfig/-/libnpmconfig-1.2.1.tgz#c0c2f793a74e67d4825e5039e7a02a0044dfcbc0"
|
8204 |
+
integrity sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA==
|
8205 |
+
dependencies:
|
8206 |
+
figgy-pudding "^3.5.1"
|
8207 |
+
find-up "^3.0.0"
|
8208 |
+
ini "^1.3.5"
|
8209 |
+
|
8210 |
+
libnpmhook@^5.0.3:
|
8211 |
+
version "5.0.3"
|
8212 |
+
resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-5.0.3.tgz#4020c0f5edbf08ebe395325caa5ea01885b928f7"
|
8213 |
+
integrity sha512-UdNLMuefVZra/wbnBXECZPefHMGsVDTq5zaM/LgKNE9Keyl5YXQTnGAzEo+nFOpdRqTWI9LYi4ApqF9uVCCtuA==
|
8214 |
+
dependencies:
|
8215 |
+
aproba "^2.0.0"
|
8216 |
+
figgy-pudding "^3.4.1"
|
8217 |
+
get-stream "^4.0.0"
|
8218 |
+
npm-registry-fetch "^4.0.0"
|
8219 |
+
|
8220 |
+
libnpmorg@^1.0.1:
|
8221 |
+
version "1.0.1"
|
8222 |
+
resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-1.0.1.tgz#5d2503f6ceb57f33dbdcc718e6698fea6d5ad087"
|
8223 |
+
integrity sha512-0sRUXLh+PLBgZmARvthhYXQAWn0fOsa6T5l3JSe2n9vKG/lCVK4nuG7pDsa7uMq+uTt2epdPK+a2g6btcY11Ww==
|
8224 |
+
dependencies:
|
8225 |
+
aproba "^2.0.0"
|
8226 |
+
figgy-pudding "^3.4.1"
|
8227 |
+
get-stream "^4.0.0"
|
8228 |
+
npm-registry-fetch "^4.0.0"
|
8229 |
+
|
8230 |
+
libnpmpublish@^1.1.2:
|
8231 |
+
version "1.1.3"
|
8232 |
+
resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.3.tgz#e3782796722d79eef1a0a22944c117e0c4ca4280"
|
8233 |
+
integrity sha512-/3LsYqVc52cHXBmu26+J8Ed7sLs/hgGVFMH1mwYpL7Qaynb9RenpKqIKu0sJ130FB9PMkpMlWjlbtU8A4m7CQw==
|
8234 |
+
dependencies:
|
8235 |
+
aproba "^2.0.0"
|
8236 |
+
figgy-pudding "^3.5.1"
|
8237 |
+
get-stream "^4.0.0"
|
8238 |
+
lodash.clonedeep "^4.5.0"
|
8239 |
+
normalize-package-data "^2.4.0"
|
8240 |
+
npm-package-arg "^6.1.0"
|
8241 |
+
npm-registry-fetch "^4.0.0"
|
8242 |
+
semver "^5.5.1"
|
8243 |
+
ssri "^6.0.1"
|
8244 |
+
|
8245 |
+
libnpmsearch@^2.0.2:
|
8246 |
+
version "2.0.2"
|
8247 |
+
resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-2.0.2.tgz#9a4f059102d38e3dd44085bdbfe5095f2a5044cf"
|
8248 |
+
integrity sha512-VTBbV55Q6fRzTdzziYCr64+f8AopQ1YZ+BdPOv16UegIEaE8C0Kch01wo4s3kRTFV64P121WZJwgmBwrq68zYg==
|
8249 |
+
dependencies:
|
8250 |
+
figgy-pudding "^3.5.1"
|
8251 |
+
get-stream "^4.0.0"
|
8252 |
+
npm-registry-fetch "^4.0.0"
|
8253 |
+
|
8254 |
+
libnpmteam@^1.0.2:
|
8255 |
+
version "1.0.2"
|
8256 |
+
resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-1.0.2.tgz#8b48bcbb6ce70dd8150c950fcbdbf3feb6eec820"
|
8257 |
+
integrity sha512-p420vM28Us04NAcg1rzgGW63LMM6rwe+6rtZpfDxCcXxM0zUTLl7nPFEnRF3JfFBF5skF/yuZDUthTsHgde8QA==
|
8258 |
+
dependencies:
|
8259 |
+
aproba "^2.0.0"
|
8260 |
+
figgy-pudding "^3.4.1"
|
8261 |
+
get-stream "^4.0.0"
|
8262 |
+
npm-registry-fetch "^4.0.0"
|
8263 |
+
|
8264 |
+
libnpx@^10.2.4:
|
8265 |
+
version "10.2.4"
|
8266 |
+
resolved "https://registry.yarnpkg.com/libnpx/-/libnpx-10.2.4.tgz#ef0e3258e29aef2ec7ee3276115e20e67f67d4ee"
|
8267 |
+
integrity sha512-BPc0D1cOjBeS8VIBKUu5F80s6njm0wbVt7CsGMrIcJ+SI7pi7V0uVPGpEMH9H5L8csOcclTxAXFE2VAsJXUhfA==
|
8268 |
+
dependencies:
|
8269 |
+
dotenv "^5.0.1"
|
8270 |
+
npm-package-arg "^6.0.0"
|
8271 |
+
rimraf "^2.6.2"
|
8272 |
+
safe-buffer "^5.1.0"
|
8273 |
+
update-notifier "^2.3.0"
|
8274 |
+
which "^1.3.0"
|
8275 |
+
y18n "^4.0.0"
|
8276 |
+
yargs "^14.2.3"
|
8277 |
+
|
8278 |
+
liftoff@~2.5.0:
|
8279 |
+
version "2.5.0"
|
8280 |
+
resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec"
|
8281 |
+
integrity sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=
|
8282 |
+
dependencies:
|
8283 |
+
extend "^3.0.0"
|
8284 |
+
findup-sync "^2.0.0"
|
8285 |
+
fined "^1.0.1"
|
8286 |
+
flagged-respawn "^1.0.0"
|
8287 |
+
is-plain-object "^2.0.4"
|
8288 |
+
object.map "^1.0.0"
|
8289 |
+
rechoir "^0.6.2"
|
8290 |
+
resolve "^1.1.7"
|
8291 |
+
|
8292 |
+
lines-and-columns@^1.1.6:
|
8293 |
+
version "1.1.6"
|
8294 |
+
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
|
8295 |
+
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
|
8296 |
+
|
8297 |
+
linkify-it@^2.0.0:
|
8298 |
+
version "2.2.0"
|
8299 |
+
resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf"
|
8300 |
+
integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==
|
8301 |
+
dependencies:
|
8302 |
+
uc.micro "^1.0.1"
|
8303 |
+
|
8304 |
+
listr-silent-renderer@^1.1.1:
|
8305 |
+
version "1.1.1"
|
8306 |
+
resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
|
8307 |
+
integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=
|
8308 |
+
|
8309 |
+
listr-update-renderer@^0.5.0:
|
8310 |
+
version "0.5.0"
|
8311 |
+
resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"
|
8312 |
+
integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==
|
8313 |
+
dependencies:
|
8314 |
+
chalk "^1.1.3"
|
8315 |
+
cli-truncate "^0.2.1"
|
8316 |
+
elegant-spinner "^1.0.1"
|
8317 |
+
figures "^1.7.0"
|
8318 |
+
indent-string "^3.0.0"
|
8319 |
+
log-symbols "^1.0.2"
|
8320 |
+
log-update "^2.3.0"
|
8321 |
+
strip-ansi "^3.0.1"
|
8322 |
+
|
8323 |
+
listr-verbose-renderer@^0.5.0:
|
8324 |
+
version "0.5.0"
|
8325 |
+
resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db"
|
8326 |
+
integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==
|
8327 |
+
dependencies:
|
8328 |
+
chalk "^2.4.1"
|
8329 |
+
cli-cursor "^2.1.0"
|
8330 |
+
date-fns "^1.27.2"
|
8331 |
+
figures "^2.0.0"
|
8332 |
+
|
8333 |
+
listr@^0.14.3:
|
8334 |
+
version "0.14.3"
|
8335 |
+
resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586"
|
8336 |
+
integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==
|
8337 |
+
dependencies:
|
8338 |
+
"@samverschueren/stream-to-observable" "^0.3.0"
|
8339 |
+
is-observable "^1.1.0"
|
8340 |
+
is-promise "^2.1.0"
|
8341 |
+
is-stream "^1.1.0"
|
8342 |
+
listr-silent-renderer "^1.1.1"
|
8343 |
+
listr-update-renderer "^0.5.0"
|
8344 |
+
listr-verbose-renderer "^0.5.0"
|
8345 |
+
p-map "^2.0.0"
|
8346 |
+
rxjs "^6.3.3"
|
8347 |
+
|
8348 |
+
livereload-js@^2.3.0:
|
8349 |
+
version "2.4.0"
|
8350 |
+
resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.4.0.tgz#447c31cf1ea9ab52fc20db615c5ddf678f78009c"
|
8351 |
+
integrity sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==
|
8352 |
+
|
8353 |
+
load-json-file@^1.0.0:
|
8354 |
+
version "1.1.0"
|
8355 |
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
|
8356 |
+
integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=
|
8357 |
+
dependencies:
|
8358 |
+
graceful-fs "^4.1.2"
|
8359 |
+
parse-json "^2.2.0"
|
8360 |
+
pify "^2.0.0"
|
8361 |
+
pinkie-promise "^2.0.0"
|
8362 |
+
strip-bom "^2.0.0"
|
8363 |
+
|
8364 |
+
load-json-file@^2.0.0:
|
8365 |
+
version "2.0.0"
|
8366 |
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
|
8367 |
+
integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
|
8368 |
+
dependencies:
|
8369 |
+
graceful-fs "^4.1.2"
|
8370 |
+
parse-json "^2.2.0"
|
8371 |
+
pify "^2.0.0"
|
8372 |
+
strip-bom "^3.0.0"
|
8373 |
+
|
8374 |
+
load-json-file@^4.0.0:
|
8375 |
+
version "4.0.0"
|
8376 |
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
|
8377 |
+
integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
|
8378 |
+
dependencies:
|
8379 |
+
graceful-fs "^4.1.2"
|
8380 |
+
parse-json "^4.0.0"
|
8381 |
+
pify "^3.0.0"
|
8382 |
+
strip-bom "^3.0.0"
|
8383 |
+
|
8384 |
+
loader-runner@^2.3.1, loader-runner@^2.4.0:
|
8385 |
+
version "2.4.0"
|
8386 |
+
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
8387 |
+
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
|
8388 |
+
|
8389 |
+
loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0:
|
8390 |
+
version "1.4.0"
|
8391 |
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
|
8392 |
+
integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
|
8393 |
+
dependencies:
|
8394 |
+
big.js "^5.2.2"
|
8395 |
+
emojis-list "^3.0.0"
|
8396 |
+
json5 "^1.0.1"
|
8397 |
+
|
8398 |
+
loader-utils@^2.0.0:
|
8399 |
+
version "2.0.0"
|
8400 |
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
|
8401 |
+
integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
|
8402 |
+
dependencies:
|
8403 |
+
big.js "^5.2.2"
|
8404 |
+
emojis-list "^3.0.0"
|
8405 |
+
json5 "^2.1.2"
|
8406 |
+
|
8407 |
+
locate-path@^2.0.0:
|
8408 |
+
version "2.0.0"
|
8409 |
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
8410 |
+
integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
|
8411 |
+
dependencies:
|
8412 |
+
p-locate "^2.0.0"
|
8413 |
+
path-exists "^3.0.0"
|
8414 |
+
|
8415 |
+
locate-path@^3.0.0:
|
8416 |
+
version "3.0.0"
|
8417 |
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
|
8418 |
+
integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
|
8419 |
+
dependencies:
|
8420 |
+
p-locate "^3.0.0"
|
8421 |
+
path-exists "^3.0.0"
|
8422 |
+
|
8423 |
+
locate-path@^5.0.0:
|
8424 |
+
version "5.0.0"
|
8425 |
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
|
8426 |
+
integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
|
8427 |
+
dependencies:
|
8428 |
+
p-locate "^4.1.0"
|
8429 |
+
|
8430 |
+
lock-verify@^2.0.2, lock-verify@^2.1.0:
|
8431 |
+
version "2.2.1"
|
8432 |
+
resolved "https://registry.yarnpkg.com/lock-verify/-/lock-verify-2.2.1.tgz#81107948c51ed16f97b96ff8b60675affb243fc1"
|
8433 |
+
integrity sha512-n0Zw2DVupKfZMazy/HIFVNohJ1z8fIoZ77WBnyyBGG6ixw83uJNyrbiJvvHWe1QKkGiBCjj8RCPlymltliqEww==
|
8434 |
+
dependencies:
|
8435 |
+
"@iarna/cli" "^1.2.0"
|
8436 |
+
npm-package-arg "^6.1.0"
|
8437 |
+
semver "^5.4.1"
|
8438 |
+
|
8439 |
+
lockfile@^1.0.4:
|
8440 |
+
version "1.0.4"
|
8441 |
+
resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.4.tgz#07f819d25ae48f87e538e6578b6964a4981a5609"
|
8442 |
+
integrity sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==
|
8443 |
+
dependencies:
|
8444 |
+
signal-exit "^3.0.2"
|
8445 |
+
|
8446 |
+
lodash._baseuniq@~4.6.0:
|
8447 |
+
version "4.6.0"
|
8448 |
+
resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8"
|
8449 |
+
integrity sha1-DrtE5FaBSveQXGIS+iybLVG4Qeg=
|
8450 |
+
dependencies:
|
8451 |
+
lodash._createset "~4.0.0"
|
8452 |
+
lodash._root "~3.0.0"
|
8453 |
+
|
8454 |
+
lodash._createset@~4.0.0:
|
8455 |
+
version "4.0.3"
|
8456 |
+
resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26"
|
8457 |
+
integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY=
|
8458 |
+
|
8459 |
+
lodash._root@~3.0.0:
|
8460 |
+
version "3.0.1"
|
8461 |
+
resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
|
8462 |
+
integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=
|
8463 |
+
|
8464 |
+
lodash.capitalize@^4.2.1:
|
8465 |
+
version "4.2.1"
|
8466 |
+
resolved "https://registry.yarnpkg.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz#f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9"
|
8467 |
+
integrity sha1-+CbJtOKoUR2E46yinbBeGk87cqk=
|
8468 |
+
|
8469 |
+
lodash.clonedeep@^4.5.0, lodash.clonedeep@~4.5.0:
|
8470 |
+
version "4.5.0"
|
8471 |
+
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
|
8472 |
+
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
|
8473 |
+
|
8474 |
+
lodash.differencewith@~4.5.0:
|
8475 |
+
version "4.5.0"
|
8476 |
+
resolved "https://registry.yarnpkg.com/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz#bafafbc918b55154e179176a00bb0aefaac854b7"
|
8477 |
+
integrity sha1-uvr7yRi1UVTheRdqALsK76rIVLc=
|
8478 |
+
|
8479 |
+
lodash.escape@^4.0.1:
|
8480 |
+
version "4.0.1"
|
8481 |
+
resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98"
|
8482 |
+
integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=
|
8483 |
+
|
8484 |
+
lodash.escaperegexp@^4.1.2:
|
8485 |
+
version "4.1.2"
|
8486 |
+
resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347"
|
8487 |
+
integrity sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=
|
8488 |
+
|
8489 |
+
lodash.flatten@~4.4.0:
|
8490 |
+
version "4.4.0"
|
8491 |
+
resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
|
8492 |
+
integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
|
8493 |
+
|
8494 |
+
lodash.flattendeep@^4.4.0:
|
8495 |
+
version "4.4.0"
|
8496 |
+
resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
|
8497 |
+
integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=
|
8498 |
+
|
8499 |
+
lodash.isequal@^4.5.0:
|
8500 |
+
version "4.5.0"
|
8501 |
+
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
|
8502 |
+
integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA=
|
8503 |
+
|
8504 |
+
lodash.ismatch@^4.4.0:
|
8505 |
+
version "4.4.0"
|
8506 |
+
resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
|
8507 |
+
integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=
|
8508 |
+
|
8509 |
+
lodash.isplainobject@^4.0.6:
|
8510 |
+
version "4.0.6"
|
8511 |
+
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
|
8512 |
+
integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
|
8513 |
+
|
8514 |
+
lodash.isstring@^4.0.1:
|
8515 |
+
version "4.0.1"
|
8516 |
+
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
|
8517 |
+
integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
|
8518 |
+
|
8519 |
+
lodash.once@^4.1.1:
|
8520 |
+
version "4.1.1"
|
8521 |
+
resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
|
8522 |
+
integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
|
8523 |
+
|
8524 |
+
lodash.sortby@^4.7.0:
|
8525 |
+
version "4.7.0"
|
8526 |
+
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
|
8527 |
+
integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
|
8528 |
+
|
8529 |
+
lodash.toarray@^4.4.0:
|
8530 |
+
version "4.4.0"
|
8531 |
+
resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561"
|
8532 |
+
integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE=
|
8533 |
+
|
8534 |
+
lodash.union@~4.6.0:
|
8535 |
+
version "4.6.0"
|
8536 |
+
resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88"
|
8537 |
+
integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=
|
8538 |
+
|
8539 |
+
lodash.uniq@~4.5.0:
|
8540 |
+
version "4.5.0"
|
8541 |
+
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
8542 |
+
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
8543 |
+
|
8544 |
+
lodash.uniqby@^4.7.0:
|
8545 |
+
version "4.7.0"
|
8546 |
+
resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
|
8547 |
+
integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
|
8548 |
+
|
8549 |
+
lodash.without@~4.4.0:
|
8550 |
+
version "4.4.0"
|
8551 |
+
resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac"
|
8552 |
+
integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw=
|
8553 |
+
|
8554 |
+
lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.4, lodash@~4.17.10, lodash@~4.17.19, lodash@~4.17.20:
|
8555 |
+
version "4.17.20"
|
8556 |
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
8557 |
+
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
|
8558 |
+
|
8559 |
+
log-symbols@^1.0.2:
|
8560 |
+
version "1.0.2"
|
8561 |
+
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
|
8562 |
+
integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=
|
8563 |
+
dependencies:
|
8564 |
+
chalk "^1.0.0"
|
8565 |
+
|
8566 |
+
log-symbols@^4.0.0:
|
8567 |
+
version "4.0.0"
|
8568 |
+
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920"
|
8569 |
+
integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
|
8570 |
+
dependencies:
|
8571 |
+
chalk "^4.0.0"
|
8572 |
+
|
8573 |
+
log-update@^2.3.0:
|
8574 |
+
version "2.3.0"
|
8575 |
+
resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708"
|
8576 |
+
integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg=
|
8577 |
+
dependencies:
|
8578 |
+
ansi-escapes "^3.0.0"
|
8579 |
+
cli-cursor "^2.0.0"
|
8580 |
+
wrap-ansi "^3.0.1"
|
8581 |
+
|
8582 |
+
lolex@^5.0.0:
|
8583 |
+
version "5.1.2"
|
8584 |
+
resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367"
|
8585 |
+
integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==
|
8586 |
+
dependencies:
|
8587 |
+
"@sinonjs/commons" "^1.7.0"
|
8588 |
+
|
8589 |
+
longest-streak@^2.0.1:
|
8590 |
+
version "2.0.4"
|
8591 |
+
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
|
8592 |
+
integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==
|
8593 |
+
|
8594 |
+
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
|
8595 |
+
version "1.4.0"
|
8596 |
+
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
8597 |
+
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
8598 |
+
dependencies:
|
8599 |
+
js-tokens "^3.0.0 || ^4.0.0"
|
8600 |
+
|
8601 |
+
loud-rejection@^1.0.0:
|
8602 |
+
version "1.6.0"
|
8603 |
+
resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
|
8604 |
+
integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
|
8605 |
+
dependencies:
|
8606 |
+
currently-unhandled "^0.4.1"
|
8607 |
+
signal-exit "^3.0.0"
|
8608 |
+
|
8609 |
+
lowercase-keys@^1.0.0:
|
8610 |
+
version "1.0.1"
|
8611 |
+
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
|
8612 |
+
integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
|
8613 |
+
|
8614 |
+
lru-cache@^4.0.1:
|
8615 |
+
version "4.1.5"
|
8616 |
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
|
8617 |
+
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
|
8618 |
+
dependencies:
|
8619 |
+
pseudomap "^1.0.2"
|
8620 |
+
yallist "^2.1.2"
|
8621 |
+
|
8622 |
+
lru-cache@^5.1.1:
|
8623 |
+
version "5.1.1"
|
8624 |
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
|
8625 |
+
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
|
8626 |
+
dependencies:
|
8627 |
+
yallist "^3.0.2"
|
8628 |
+
|
8629 |
+
lru-cache@^6.0.0:
|
8630 |
+
version "6.0.0"
|
8631 |
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
8632 |
+
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
|
8633 |
+
dependencies:
|
8634 |
+
yallist "^4.0.0"
|
8635 |
+
|
8636 |
+
macos-release@^2.2.0:
|
8637 |
+
version "2.4.1"
|
8638 |
+
resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.4.1.tgz#64033d0ec6a5e6375155a74b1a1eba8e509820ac"
|
8639 |
+
integrity sha512-H/QHeBIN1fIGJX517pvK8IEK53yQOW7YcEI55oYtgjDdoCQQz7eJS94qt5kNrscReEyuD/JcdFCm2XBEcGOITg==
|
8640 |
+
|
8641 |
+
make-dir@^1.0.0:
|
8642 |
+
version "1.3.0"
|
8643 |
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
|
8644 |
+
integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
|
8645 |
+
dependencies:
|
8646 |
+
pify "^3.0.0"
|
8647 |
+
|
8648 |
+
make-dir@^2.0.0:
|
8649 |
+
version "2.1.0"
|
8650 |
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
8651 |
+
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
|
8652 |
+
dependencies:
|
8653 |
+
pify "^4.0.1"
|
8654 |
+
semver "^5.6.0"
|
8655 |
+
|
8656 |
+
make-dir@^3.0.0, make-dir@^3.0.2:
|
8657 |
+
version "3.1.0"
|
8658 |
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
|
8659 |
+
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
|
8660 |
+
dependencies:
|
8661 |
+
semver "^6.0.0"
|
8662 |
+
|
8663 |
+
make-fetch-happen@^5.0.0:
|
8664 |
+
version "5.0.2"
|
8665 |
+
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-5.0.2.tgz#aa8387104f2687edca01c8687ee45013d02d19bd"
|
8666 |
+
integrity sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag==
|
8667 |
+
dependencies:
|
8668 |
+
agentkeepalive "^3.4.1"
|
8669 |
+
cacache "^12.0.0"
|
8670 |
+
http-cache-semantics "^3.8.1"
|
8671 |
+
http-proxy-agent "^2.1.0"
|
8672 |
+
https-proxy-agent "^2.2.3"
|
8673 |
+
lru-cache "^5.1.1"
|
8674 |
+
mississippi "^3.0.0"
|
8675 |
+
node-fetch-npm "^2.0.2"
|
8676 |
+
promise-retry "^1.1.1"
|
8677 |
+
socks-proxy-agent "^4.0.0"
|
8678 |
+
ssri "^6.0.0"
|
8679 |
+
|
8680 |
+
make-iterator@^1.0.0:
|
8681 |
+
version "1.0.1"
|
8682 |
+
resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6"
|
8683 |
+
integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==
|
8684 |
+
dependencies:
|
8685 |
+
kind-of "^6.0.2"
|
8686 |
+
|
8687 |
+
makeerror@1.0.x:
|
8688 |
+
version "1.0.11"
|
8689 |
+
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
|
8690 |
+
integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
|
8691 |
+
dependencies:
|
8692 |
+
tmpl "1.0.x"
|
8693 |
+
|
8694 |
+
map-cache@^0.2.0, map-cache@^0.2.2:
|
8695 |
+
version "0.2.2"
|
8696 |
+
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
|
8697 |
+
integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
|
8698 |
+
|
8699 |
+
map-obj@^1.0.0, map-obj@^1.0.1:
|
8700 |
+
version "1.0.1"
|
8701 |
+
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
|
8702 |
+
integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
|
8703 |
+
|
8704 |
+
map-obj@^4.0.0:
|
8705 |
+
version "4.1.0"
|
8706 |
+
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5"
|
8707 |
+
integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==
|
8708 |
+
|
8709 |
+
map-values@^1.0.1:
|
8710 |
+
version "1.0.1"
|
8711 |
+
resolved "https://registry.yarnpkg.com/map-values/-/map-values-1.0.1.tgz#768b8e79c009bf2b64fee806e22a7b1c4190c990"
|
8712 |
+
integrity sha1-douOecAJvytk/ugG4ip7HEGQyZA=
|
8713 |
+
|
8714 |
+
map-visit@^1.0.0:
|
8715 |
+
version "1.0.0"
|
8716 |
+
resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
|
8717 |
+
integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
|
8718 |
+
dependencies:
|
8719 |
+
object-visit "^1.0.0"
|
8720 |
+
|
8721 |
+
markdown-escapes@^1.0.0:
|
8722 |
+
version "1.0.4"
|
8723 |
+
resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
|
8724 |
+
integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
|
8725 |
+
|
8726 |
+
markdown-it@10.0.0:
|
8727 |
+
version "10.0.0"
|
8728 |
+
resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc"
|
8729 |
+
integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==
|
8730 |
+
dependencies:
|
8731 |
+
argparse "^1.0.7"
|
8732 |
+
entities "~2.0.0"
|
8733 |
+
linkify-it "^2.0.0"
|
8734 |
+
mdurl "^1.0.1"
|
8735 |
+
uc.micro "^1.0.5"
|
8736 |
+
|
8737 |
+
markdown-table@^2.0.0:
|
8738 |
+
version "2.0.0"
|
8739 |
+
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b"
|
8740 |
+
integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==
|
8741 |
+
dependencies:
|
8742 |
+
repeat-string "^1.0.0"
|
8743 |
+
|
8744 |
+
markdownlint-cli@^0.21.0:
|
8745 |
+
version "0.21.0"
|
8746 |
+
resolved "https://registry.yarnpkg.com/markdownlint-cli/-/markdownlint-cli-0.21.0.tgz#d792b157e9de63ce1d6b6e13d7cf83d5e552d5e8"
|
8747 |
+
integrity sha512-gvnczz3W3Wgex851/cIQ/2y8GNhY+EVK8Ael8kRd8hoSQ0ps9xjhtwPwMyJPoiYbAoPxG6vSBFISiysaAbCEZg==
|
8748 |
+
dependencies:
|
8749 |
+
commander "~2.9.0"
|
8750 |
+
deep-extend "~0.5.1"
|
8751 |
+
get-stdin "~5.0.1"
|
8752 |
+
glob "~7.1.2"
|
8753 |
+
ignore "~5.1.4"
|
8754 |
+
js-yaml "~3.13.1"
|
8755 |
+
jsonc-parser "~2.2.0"
|
8756 |
+
lodash.differencewith "~4.5.0"
|
8757 |
+
lodash.flatten "~4.4.0"
|
8758 |
+
markdownlint "~0.18.0"
|
8759 |
+
markdownlint-rule-helpers "~0.6.0"
|
8760 |
+
minimatch "~3.0.4"
|
8761 |
+
rc "~1.2.7"
|
8762 |
+
|
8763 |
+
markdownlint-rule-helpers@~0.6.0:
|
8764 |
+
version "0.6.0"
|
8765 |
+
resolved "https://registry.yarnpkg.com/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.6.0.tgz#3a866a340d394d21d40777b787d3ad84489405c5"
|
8766 |
+
integrity sha512-LiZVAbg9/cqkBHtLNNqHV3xuy4Y2L/KuGU6+ZXqCT9NnCdEkIoxeI5/96t+ExquBY0iHy2CVWxPH16nG1RKQVQ==
|
8767 |
+
|
8768 |
+
markdownlint@^0.18.0, markdownlint@~0.18.0:
|
8769 |
+
version "0.18.0"
|
8770 |
+
resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.18.0.tgz#906ab9229da4c4be074d0b79de23a69bfa8471d3"
|
8771 |
+
integrity sha512-nQAfK9Pbq0ZRoMC/abNGterEnV3kL8MZmi0WHhw8WJKoIbsm3cXGufGsxzCRvjW15cxe74KWcxRSKqwplS26Bw==
|
8772 |
+
dependencies:
|
8773 |
+
markdown-it "10.0.0"
|
8774 |
+
|
8775 |
+
marked-terminal@^4.0.0:
|
8776 |
+
version "4.1.0"
|
8777 |
+
resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-4.1.0.tgz#01087372d3636dc7cb286475a1d6147187f500e0"
|
8778 |
+
integrity sha512-5KllfAOW02WS6hLRQ7cNvGOxvKW1BKuXELH4EtbWfyWgxQhROoMxEvuQ/3fTgkNjledR0J48F4HbapvYp1zWkQ==
|
8779 |
+
dependencies:
|
8780 |
+
ansi-escapes "^4.3.1"
|
8781 |
+
cardinal "^2.1.1"
|
8782 |
+
chalk "^4.0.0"
|
8783 |
+
cli-table "^0.3.1"
|
8784 |
+
node-emoji "^1.10.0"
|
8785 |
+
supports-hyperlinks "^2.1.0"
|
8786 |
+
|
8787 |
+
marked@^1.0.0:
|
8788 |
+
version "1.2.0"
|
8789 |
+
resolved "https://registry.yarnpkg.com/marked/-/marked-1.2.0.tgz#7221ce2395fa6cf6d722e6f2871a32d3513c85ca"
|
8790 |
+
integrity sha512-tiRxakgbNPBr301ihe/785NntvYyhxlqcL3YaC8CaxJQh7kiaEtrN9B/eK2I2943Yjkh5gw25chYFDQhOMCwMA==
|
8791 |
+
|
8792 |
+
mathml-tag-names@^2.1.3:
|
8793 |
+
version "2.1.3"
|
8794 |
+
resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3"
|
8795 |
+
integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==
|
8796 |
+
|
8797 |
+
md5.js@^1.3.4:
|
8798 |
+
version "1.3.5"
|
8799 |
+
resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
|
8800 |
+
integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
|
8801 |
+
dependencies:
|
8802 |
+
hash-base "^3.0.0"
|
8803 |
+
inherits "^2.0.1"
|
8804 |
+
safe-buffer "^5.1.2"
|
8805 |
+
|
8806 |
+
mdast-util-compact@^2.0.0:
|
8807 |
+
version "2.0.1"
|
8808 |
+
resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz#cabc69a2f43103628326f35b1acf735d55c99490"
|
8809 |
+
integrity sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==
|
8810 |
+
dependencies:
|
8811 |
+
unist-util-visit "^2.0.0"
|
8812 |
+
|
8813 |
+
mdn-data@2.0.4:
|
8814 |
+
version "2.0.4"
|
8815 |
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
|
8816 |
+
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
|
8817 |
+
|
8818 |
+
mdn-data@2.0.6:
|
8819 |
+
version "2.0.6"
|
8820 |
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978"
|
8821 |
+
integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==
|
8822 |
+
|
8823 |
+
mdurl@^1.0.1:
|
8824 |
+
version "1.0.1"
|
8825 |
+
resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
|
8826 |
+
integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=
|
8827 |
+
|
8828 |
+
meant@^1.0.2:
|
8829 |
+
version "1.0.2"
|
8830 |
+
resolved "https://registry.yarnpkg.com/meant/-/meant-1.0.2.tgz#5d0c78310a3d8ae1408a16be0fe0bd42a969f560"
|
8831 |
+
integrity sha512-KN+1uowN/NK+sT/Lzx7WSGIj2u+3xe5n2LbwObfjOhPZiA+cCfCm6idVl0RkEfjThkw5XJ96CyRcanq6GmKtUg==
|
8832 |
+
|
8833 |
+
media-typer@0.3.0:
|
8834 |
+
version "0.3.0"
|
8835 |
+
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
8836 |
+
integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
|
8837 |
+
|
8838 |
+
mem@^1.1.0:
|
8839 |
+
version "1.1.0"
|
8840 |
+
resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
|
8841 |
+
integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=
|
8842 |
+
dependencies:
|
8843 |
+
mimic-fn "^1.0.0"
|
8844 |
+
|
8845 |
+
memory-fs@^0.4.1:
|
8846 |
+
version "0.4.1"
|
8847 |
+
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
|
8848 |
+
integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
|
8849 |
+
dependencies:
|
8850 |
+
errno "^0.1.3"
|
8851 |
+
readable-stream "^2.0.1"
|
8852 |
+
|
8853 |
+
memory-fs@^0.5.0:
|
8854 |
+
version "0.5.0"
|
8855 |
+
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
|
8856 |
+
integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
|
8857 |
+
dependencies:
|
8858 |
+
errno "^0.1.3"
|
8859 |
+
readable-stream "^2.0.1"
|
8860 |
+
|
8861 |
+
memorystream@^0.3.1:
|
8862 |
+
version "0.3.1"
|
8863 |
+
resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2"
|
8864 |
+
integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI=
|
8865 |
+
|
8866 |
+
meow@^3.7.0:
|
8867 |
+
version "3.7.0"
|
8868 |
+
resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
|
8869 |
+
integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
|
8870 |
+
dependencies:
|
8871 |
+
camelcase-keys "^2.0.0"
|
8872 |
+
decamelize "^1.1.2"
|
8873 |
+
loud-rejection "^1.0.0"
|
8874 |
+
map-obj "^1.0.1"
|
8875 |
+
minimist "^1.1.3"
|
8876 |
+
normalize-package-data "^2.3.4"
|
8877 |
+
object-assign "^4.0.1"
|
8878 |
+
read-pkg-up "^1.0.1"
|
8879 |
+
redent "^1.0.0"
|
8880 |
+
trim-newlines "^1.0.0"
|
8881 |
+
|
8882 |
+
meow@^6.1.0:
|
8883 |
+
version "6.1.1"
|
8884 |
+
resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467"
|
8885 |
+
integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==
|
8886 |
+
dependencies:
|
8887 |
+
"@types/minimist" "^1.2.0"
|
8888 |
+
camelcase-keys "^6.2.2"
|
8889 |
+
decamelize-keys "^1.1.0"
|
8890 |
+
hard-rejection "^2.1.0"
|
8891 |
+
minimist-options "^4.0.2"
|
8892 |
+
normalize-package-data "^2.5.0"
|
8893 |
+
read-pkg-up "^7.0.1"
|
8894 |
+
redent "^3.0.0"
|
8895 |
+
trim-newlines "^3.0.0"
|
8896 |
+
type-fest "^0.13.1"
|
8897 |
+
yargs-parser "^18.1.3"
|
8898 |
+
|
8899 |
+
meow@^7.0.0, meow@^7.1.1:
|
8900 |
+
version "7.1.1"
|
8901 |
+
resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.1.tgz#7c01595e3d337fcb0ec4e8eed1666ea95903d306"
|
8902 |
+
integrity sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==
|
8903 |
+
dependencies:
|
8904 |
+
"@types/minimist" "^1.2.0"
|
8905 |
+
camelcase-keys "^6.2.2"
|
8906 |
+
decamelize-keys "^1.1.0"
|
8907 |
+
hard-rejection "^2.1.0"
|
8908 |
+
minimist-options "4.1.0"
|
8909 |
+
normalize-package-data "^2.5.0"
|
8910 |
+
read-pkg-up "^7.0.1"
|
8911 |
+
redent "^3.0.0"
|
8912 |
+
trim-newlines "^3.0.0"
|
8913 |
+
type-fest "^0.13.1"
|
8914 |
+
yargs-parser "^18.1.3"
|
8915 |
+
|
8916 |
+
merge-deep@^3.0.2:
|
8917 |
+
version "3.0.2"
|
8918 |
+
resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2"
|
8919 |
+
integrity sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==
|
8920 |
+
dependencies:
|
8921 |
+
arr-union "^3.1.0"
|
8922 |
+
clone-deep "^0.2.4"
|
8923 |
+
kind-of "^3.0.2"
|
8924 |
+
|
8925 |
+
merge-descriptors@1.0.1:
|
8926 |
+
version "1.0.1"
|
8927 |
+
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
|
8928 |
+
integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
|
8929 |
+
|
8930 |
+
merge-stream@^2.0.0:
|
8931 |
+
version "2.0.0"
|
8932 |
+
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
|
8933 |
+
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
|
8934 |
+
|
8935 |
+
merge2@^1.3.0:
|
8936 |
+
version "1.4.1"
|
8937 |
+
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
8938 |
+
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
8939 |
+
|
8940 |
+
methods@~1.1.2:
|
8941 |
+
version "1.1.2"
|
8942 |
+
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
|
8943 |
+
integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
|
8944 |
+
|
8945 |
+
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
8946 |
+
version "3.1.10"
|
8947 |
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
8948 |
+
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
|
8949 |
+
dependencies:
|
8950 |
+
arr-diff "^4.0.0"
|
8951 |
+
array-unique "^0.3.2"
|
8952 |
+
braces "^2.3.1"
|
8953 |
+
define-property "^2.0.2"
|
8954 |
+
extend-shallow "^3.0.2"
|
8955 |
+
extglob "^2.0.4"
|
8956 |
+
fragment-cache "^0.2.1"
|
8957 |
+
kind-of "^6.0.2"
|
8958 |
+
nanomatch "^1.2.9"
|
8959 |
+
object.pick "^1.3.0"
|
8960 |
+
regex-not "^1.0.0"
|
8961 |
+
snapdragon "^0.8.1"
|
8962 |
+
to-regex "^3.0.2"
|
8963 |
+
|
8964 |
+
micromatch@^4.0.0, micromatch@^4.0.2:
|
8965 |
+
version "4.0.2"
|
8966 |
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
|
8967 |
+
integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
|
8968 |
+
dependencies:
|
8969 |
+
braces "^3.0.1"
|
8970 |
+
picomatch "^2.0.5"
|
8971 |
+
|
8972 |
+
miller-rabin@^4.0.0:
|
8973 |
+
version "4.0.1"
|
8974 |
+
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
|
8975 |
+
integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
|
8976 |
+
dependencies:
|
8977 |
+
bn.js "^4.0.0"
|
8978 |
+
brorand "^1.0.1"
|
8979 |
+
|
8980 |
+
mime-db@1.44.0:
|
8981 |
+
version "1.44.0"
|
8982 |
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
|
8983 |
+
integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
|
8984 |
+
|
8985 |
+
mime-types@^2.1.12, mime-types@^2.1.25, mime-types@~2.1.19, mime-types@~2.1.24:
|
8986 |
+
version "2.1.27"
|
8987 |
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
|
8988 |
+
integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
|
8989 |
+
dependencies:
|
8990 |
+
mime-db "1.44.0"
|
8991 |
+
|
8992 |
+
mime@1.6.0:
|
8993 |
+
version "1.6.0"
|
8994 |
+
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
|
8995 |
+
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
|
8996 |
+
|
8997 |
+
mime@^2.0.3, mime@^2.4.3, mime@^2.4.4:
|
8998 |
+
version "2.4.6"
|
8999 |
+
resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1"
|
9000 |
+
integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==
|
9001 |
+
|
9002 |
+
mimic-fn@^1.0.0:
|
9003 |
+
version "1.2.0"
|
9004 |
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
|
9005 |
+
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
|
9006 |
+
|
9007 |
+
mimic-fn@^2.1.0:
|
9008 |
+
version "2.1.0"
|
9009 |
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
9010 |
+
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
9011 |
+
|
9012 |
+
min-indent@^1.0.0:
|
9013 |
+
version "1.0.1"
|
9014 |
+
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
|
9015 |
+
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
|
9016 |
+
|
9017 |
+
mini-css-extract-plugin@^0.9.0:
|
9018 |
+
version "0.9.0"
|
9019 |
+
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e"
|
9020 |
+
integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==
|
9021 |
+
dependencies:
|
9022 |
+
loader-utils "^1.1.0"
|
9023 |
+
normalize-url "1.9.1"
|
9024 |
+
schema-utils "^1.0.0"
|
9025 |
+
webpack-sources "^1.1.0"
|
9026 |
+
|
9027 |
+
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
|
9028 |
+
version "1.0.1"
|
9029 |
+
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
|
9030 |
+
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
|
9031 |
+
|
9032 |
+
minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
9033 |
+
version "1.0.1"
|
9034 |
+
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
9035 |
+
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
|
9036 |
+
|
9037 |
+
"minimatch@2 || 3", minimatch@^3.0.4, minimatch@~3.0.2, minimatch@~3.0.4:
|
9038 |
+
version "3.0.4"
|
9039 |
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
9040 |
+
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
|
9041 |
+
dependencies:
|
9042 |
+
brace-expansion "^1.1.7"
|
9043 |
+
|
9044 |
+
minimist-options@4.1.0, minimist-options@^4.0.2:
|
9045 |
+
version "4.1.0"
|
9046 |
+
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
|
9047 |
+
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
|
9048 |
+
dependencies:
|
9049 |
+
arrify "^1.0.1"
|
9050 |
+
is-plain-obj "^1.1.0"
|
9051 |
+
kind-of "^6.0.3"
|
9052 |
+
|
9053 |
+
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
|
9054 |
+
version "1.2.5"
|
9055 |
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
9056 |
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
9057 |
+
|
9058 |
+
minipass-collect@^1.0.2:
|
9059 |
+
version "1.0.2"
|
9060 |
+
resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
|
9061 |
+
integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
|
9062 |
+
dependencies:
|
9063 |
+
minipass "^3.0.0"
|
9064 |
+
|
9065 |
+
minipass-flush@^1.0.5:
|
9066 |
+
version "1.0.5"
|
9067 |
+
resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
|
9068 |
+
integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
|
9069 |
+
dependencies:
|
9070 |
+
minipass "^3.0.0"
|
9071 |
+
|
9072 |
+
minipass-pipeline@^1.2.2:
|
9073 |
+
version "1.2.4"
|
9074 |
+
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
|
9075 |
+
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
|
9076 |
+
dependencies:
|
9077 |
+
minipass "^3.0.0"
|
9078 |
+
|
9079 |
+
minipass@^2.3.5, minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
|
9080 |
+
version "2.9.0"
|
9081 |
+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
|
9082 |
+
integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
|
9083 |
+
dependencies:
|
9084 |
+
safe-buffer "^5.1.2"
|
9085 |
+
yallist "^3.0.0"
|
9086 |
+
|
9087 |
+
minipass@^3.0.0, minipass@^3.1.1:
|
9088 |
+
version "3.1.3"
|
9089 |
+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd"
|
9090 |
+
integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==
|
9091 |
+
dependencies:
|
9092 |
+
yallist "^4.0.0"
|
9093 |
+
|
9094 |
+
minizlib@^1.2.1:
|
9095 |
+
version "1.3.3"
|
9096 |
+
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
|
9097 |
+
integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==
|
9098 |
+
dependencies:
|
9099 |
+
minipass "^2.9.0"
|
9100 |
+
|
9101 |
+
minizlib@^2.1.1:
|
9102 |
+
version "2.1.2"
|
9103 |
+
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
|
9104 |
+
integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
|
9105 |
+
dependencies:
|
9106 |
+
minipass "^3.0.0"
|
9107 |
+
yallist "^4.0.0"
|
9108 |
+
|
9109 |
+
mississippi@^3.0.0:
|
9110 |
+
version "3.0.0"
|
9111 |
+
resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
|
9112 |
+
integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
|
9113 |
+
dependencies:
|
9114 |
+
concat-stream "^1.5.0"
|
9115 |
+
duplexify "^3.4.2"
|
9116 |
+
end-of-stream "^1.1.0"
|
9117 |
+
flush-write-stream "^1.0.0"
|
9118 |
+
from2 "^2.1.0"
|
9119 |
+
parallel-transform "^1.1.0"
|
9120 |
+
pump "^3.0.0"
|
9121 |
+
pumpify "^1.3.3"
|
9122 |
+
stream-each "^1.1.0"
|
9123 |
+
through2 "^2.0.0"
|
9124 |
+
|
9125 |
+
mixin-deep@^1.2.0:
|
9126 |
+
version "1.3.2"
|
9127 |
+
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
|
9128 |
+
integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
|
9129 |
+
dependencies:
|
9130 |
+
for-in "^1.0.2"
|
9131 |
+
is-extendable "^1.0.1"
|
9132 |
+
|
9133 |
+
mixin-object@^2.0.1:
|
9134 |
+
version "2.0.1"
|
9135 |
+
resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
|
9136 |
+
integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=
|
9137 |
+
dependencies:
|
9138 |
+
for-in "^0.1.3"
|
9139 |
+
is-extendable "^0.1.1"
|
9140 |
+
|
9141 |
+
mkdirp-classic@^0.5.2:
|
9142 |
+
version "0.5.3"
|
9143 |
+
resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
|
9144 |
+
integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
|
9145 |
+
|
9146 |
+
"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.4, mkdirp@^0.5.5, mkdirp@~0.5.0, mkdirp@~0.5.1:
|
9147 |
+
version "0.5.5"
|
9148 |
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
|
9149 |
+
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
|
9150 |
+
dependencies:
|
9151 |
+
minimist "^1.2.5"
|
9152 |
+
|
9153 |
+
mkdirp@^1.0.3, mkdirp@^1.0.4, mkdirp@~1.0.4:
|
9154 |
+
version "1.0.4"
|
9155 |
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
9156 |
+
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
9157 |
+
|
9158 |
+
modify-values@^1.0.0:
|
9159 |
+
version "1.0.1"
|
9160 |
+
resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
|
9161 |
+
integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
|
9162 |
+
|
9163 |
+
moment@^2.27.0:
|
9164 |
+
version "2.29.1"
|
9165 |
+
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
|
9166 |
+
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
|
9167 |
+
|
9168 |
+
moo@^0.5.0:
|
9169 |
+
version "0.5.1"
|
9170 |
+
resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4"
|
9171 |
+
integrity sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==
|
9172 |
+
|
9173 |
+
move-concurrently@^1.0.1:
|
9174 |
+
version "1.0.1"
|
9175 |
+
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
|
9176 |
+
integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
|
9177 |
+
dependencies:
|
9178 |
+
aproba "^1.1.1"
|
9179 |
+
copy-concurrently "^1.0.0"
|
9180 |
+
fs-write-stream-atomic "^1.0.8"
|
9181 |
+
mkdirp "^0.5.1"
|
9182 |
+
rimraf "^2.5.4"
|
9183 |
+
run-queue "^1.0.3"
|
9184 |
+
|
9185 |
+
ms@2.0.0:
|
9186 |
+
version "2.0.0"
|
9187 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
9188 |
+
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
9189 |
+
|
9190 |
+
ms@2.1.1:
|
9191 |
+
version "2.1.1"
|
9192 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
|
9193 |
+
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
|
9194 |
+
|
9195 |
+
ms@2.1.2, ms@^2.0.0, ms@^2.1.1:
|
9196 |
+
version "2.1.2"
|
9197 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
9198 |
+
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
9199 |
+
|
9200 |
+
mute-stream@~0.0.4:
|
9201 |
+
version "0.0.8"
|
9202 |
+
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
|
9203 |
+
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
|
9204 |
+
|
9205 |
+
nan@^2.12.1, nan@^2.13.2:
|
9206 |
+
version "2.14.1"
|
9207 |
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01"
|
9208 |
+
integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==
|
9209 |
+
|
9210 |
+
nanomatch@^1.2.9:
|
9211 |
+
version "1.2.13"
|
9212 |
+
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
|
9213 |
+
integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
|
9214 |
+
dependencies:
|
9215 |
+
arr-diff "^4.0.0"
|
9216 |
+
array-unique "^0.3.2"
|
9217 |
+
define-property "^2.0.2"
|
9218 |
+
extend-shallow "^3.0.2"
|
9219 |
+
fragment-cache "^0.2.1"
|
9220 |
+
is-windows "^1.0.2"
|
9221 |
+
kind-of "^6.0.2"
|
9222 |
+
object.pick "^1.3.0"
|
9223 |
+
regex-not "^1.0.0"
|
9224 |
+
snapdragon "^0.8.1"
|
9225 |
+
to-regex "^3.0.1"
|
9226 |
+
|
9227 |
+
natural-compare@^1.4.0:
|
9228 |
+
version "1.4.0"
|
9229 |
+
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
9230 |
+
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
|
9231 |
+
|
9232 |
+
nearley@^2.7.10:
|
9233 |
+
version "2.19.7"
|
9234 |
+
resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.7.tgz#eafbe3e2d8ccfe70adaa5c026ab1f9709c116218"
|
9235 |
+
integrity sha512-Y+KNwhBPcSJKeyQCFjn8B/MIe+DDlhaaDgjVldhy5xtFewIbiQgcbZV8k2gCVwkI1ZsKCnjIYZbR+0Fim5QYgg==
|
9236 |
+
dependencies:
|
9237 |
+
commander "^2.19.0"
|
9238 |
+
moo "^0.5.0"
|
9239 |
+
railroad-diagrams "^1.0.0"
|
9240 |
+
randexp "0.4.6"
|
9241 |
+
semver "^5.4.1"
|
9242 |
+
|
9243 |
+
negotiator@0.6.2:
|
9244 |
+
version "0.6.2"
|
9245 |
+
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
|
9246 |
+
integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
|
9247 |
+
|
9248 |
+
neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1:
|
9249 |
+
version "2.6.2"
|
9250 |
+
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
|
9251 |
+
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
9252 |
+
|
9253 |
+
nerf-dart@^1.0.0:
|
9254 |
+
version "1.0.0"
|
9255 |
+
resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a"
|
9256 |
+
integrity sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=
|
9257 |
+
|
9258 |
+
nice-try@^1.0.4:
|
9259 |
+
version "1.0.5"
|
9260 |
+
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
|
9261 |
+
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
|
9262 |
+
|
9263 |
+
node-emoji@^1.10.0:
|
9264 |
+
version "1.10.0"
|
9265 |
+
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da"
|
9266 |
+
integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==
|
9267 |
+
dependencies:
|
9268 |
+
lodash.toarray "^4.4.0"
|
9269 |
+
|
9270 |
+
node-fetch-npm@^2.0.2:
|
9271 |
+
version "2.0.4"
|
9272 |
+
resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4"
|
9273 |
+
integrity sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg==
|
9274 |
+
dependencies:
|
9275 |
+
encoding "^0.1.11"
|
9276 |
+
json-parse-better-errors "^1.0.0"
|
9277 |
+
safe-buffer "^5.1.1"
|
9278 |
+
|
9279 |
+
node-fetch@^2.6.1:
|
9280 |
+
version "2.6.1"
|
9281 |
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
|
9282 |
+
integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
|
9283 |
+
|
9284 |
+
node-gyp@^3.8.0:
|
9285 |
+
version "3.8.0"
|
9286 |
+
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c"
|
9287 |
+
integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==
|
9288 |
+
dependencies:
|
9289 |
+
fstream "^1.0.0"
|
9290 |
+
glob "^7.0.3"
|
9291 |
+
graceful-fs "^4.1.2"
|
9292 |
+
mkdirp "^0.5.0"
|
9293 |
+
nopt "2 || 3"
|
9294 |
+
npmlog "0 || 1 || 2 || 3 || 4"
|
9295 |
+
osenv "0"
|
9296 |
+
request "^2.87.0"
|
9297 |
+
rimraf "2"
|
9298 |
+
semver "~5.3.0"
|
9299 |
+
tar "^2.0.0"
|
9300 |
+
which "1"
|
9301 |
+
|
9302 |
+
node-gyp@^5.0.2, node-gyp@^5.1.0:
|
9303 |
+
version "5.1.1"
|
9304 |
+
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.1.1.tgz#eb915f7b631c937d282e33aed44cb7a025f62a3e"
|
9305 |
+
integrity sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw==
|
9306 |
+
dependencies:
|
9307 |
+
env-paths "^2.2.0"
|
9308 |
+
glob "^7.1.4"
|
9309 |
+
graceful-fs "^4.2.2"
|
9310 |
+
mkdirp "^0.5.1"
|
9311 |
+
nopt "^4.0.1"
|
9312 |
+
npmlog "^4.1.2"
|
9313 |
+
request "^2.88.0"
|
9314 |
+
rimraf "^2.6.3"
|
9315 |
+
semver "^5.7.1"
|
9316 |
+
tar "^4.4.12"
|
9317 |
+
which "^1.3.1"
|
9318 |
+
|
9319 |
+
node-int64@^0.4.0:
|
9320 |
+
version "0.4.0"
|
9321 |
+
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
|
9322 |
+
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
|
9323 |
+
|
9324 |
+
node-libs-browser@^2.2.1:
|
9325 |
+
version "2.2.1"
|
9326 |
+
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
|
9327 |
+
integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
|
9328 |
+
dependencies:
|
9329 |
+
assert "^1.1.1"
|
9330 |
+
browserify-zlib "^0.2.0"
|
9331 |
+
buffer "^4.3.0"
|
9332 |
+
console-browserify "^1.1.0"
|
9333 |
+
constants-browserify "^1.0.0"
|
9334 |
+
crypto-browserify "^3.11.0"
|
9335 |
+
domain-browser "^1.1.1"
|
9336 |
+
events "^3.0.0"
|
9337 |
+
https-browserify "^1.0.0"
|
9338 |
+
os-browserify "^0.3.0"
|
9339 |
+
path-browserify "0.0.1"
|
9340 |
+
process "^0.11.10"
|
9341 |
+
punycode "^1.2.4"
|
9342 |
+
querystring-es3 "^0.2.0"
|
9343 |
+
readable-stream "^2.3.3"
|
9344 |
+
stream-browserify "^2.0.1"
|
9345 |
+
stream-http "^2.7.2"
|
9346 |
+
string_decoder "^1.0.0"
|
9347 |
+
timers-browserify "^2.0.4"
|
9348 |
+
tty-browserify "0.0.0"
|
9349 |
+
url "^0.11.0"
|
9350 |
+
util "^0.11.0"
|
9351 |
+
vm-browserify "^1.0.1"
|
9352 |
+
|
9353 |
+
node-modules-regexp@^1.0.0:
|
9354 |
+
version "1.0.0"
|
9355 |
+
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
9356 |
+
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
9357 |
+
|
9358 |
+
node-notifier@^6.0.0:
|
9359 |
+
version "6.0.0"
|
9360 |
+
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12"
|
9361 |
+
integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==
|
9362 |
+
dependencies:
|
9363 |
+
growly "^1.3.0"
|
9364 |
+
is-wsl "^2.1.1"
|
9365 |
+
semver "^6.3.0"
|
9366 |
+
shellwords "^0.1.1"
|
9367 |
+
which "^1.3.1"
|
9368 |
+
|
9369 |
+
node-releases@^1.1.61:
|
9370 |
+
version "1.1.61"
|
9371 |
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e"
|
9372 |
+
integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g==
|
9373 |
+
|
9374 |
+
node-sass@^4.13.1:
|
9375 |
+
version "4.14.1"
|
9376 |
+
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5"
|
9377 |
+
integrity sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==
|
9378 |
+
dependencies:
|
9379 |
+
async-foreach "^0.1.3"
|
9380 |
+
chalk "^1.1.1"
|
9381 |
+
cross-spawn "^3.0.0"
|
9382 |
+
gaze "^1.0.0"
|
9383 |
+
get-stdin "^4.0.1"
|
9384 |
+
glob "^7.0.3"
|
9385 |
+
in-publish "^2.0.0"
|
9386 |
+
lodash "^4.17.15"
|
9387 |
+
meow "^3.7.0"
|
9388 |
+
mkdirp "^0.5.1"
|
9389 |
+
nan "^2.13.2"
|
9390 |
+
node-gyp "^3.8.0"
|
9391 |
+
npmlog "^4.0.0"
|
9392 |
+
request "^2.88.0"
|
9393 |
+
sass-graph "2.2.5"
|
9394 |
+
stdout-stream "^1.4.0"
|
9395 |
+
"true-case-path" "^1.0.2"
|
9396 |
+
|
9397 |
+
"nopt@2 || 3", nopt@~3.0.6:
|
9398 |
+
version "3.0.6"
|
9399 |
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
9400 |
+
integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
|
9401 |
+
dependencies:
|
9402 |
+
abbrev "1"
|
9403 |
+
|
9404 |
+
nopt@^4.0.1, nopt@^4.0.3, nopt@~4.0.1:
|
9405 |
+
version "4.0.3"
|
9406 |
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
|
9407 |
+
integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==
|
9408 |
+
dependencies:
|
9409 |
+
abbrev "1"
|
9410 |
+
osenv "^0.1.4"
|
9411 |
+
|
9412 |
+
normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0:
|
9413 |
+
version "2.5.0"
|
9414 |
+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
|
9415 |
+
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
|
9416 |
+
dependencies:
|
9417 |
+
hosted-git-info "^2.1.4"
|
9418 |
+
resolve "^1.10.0"
|
9419 |
+
semver "2 || 3 || 4 || 5"
|
9420 |
+
validate-npm-package-license "^3.0.1"
|
9421 |
+
|
9422 |
+
normalize-path@^2.1.1:
|
9423 |
+
version "2.1.1"
|
9424 |
+
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
|
9425 |
+
integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
|
9426 |
+
dependencies:
|
9427 |
+
remove-trailing-separator "^1.0.1"
|
9428 |
+
|
9429 |
+
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
9430 |
+
version "3.0.0"
|
9431 |
+
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
9432 |
+
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
9433 |
+
|
9434 |
+
normalize-range@^0.1.2:
|
9435 |
+
version "0.1.2"
|
9436 |
+
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
|
9437 |
+
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
|
9438 |
+
|
9439 |
+
normalize-selector@^0.2.0:
|
9440 |
+
version "0.2.0"
|
9441 |
+
resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03"
|
9442 |
+
integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=
|
9443 |
+
|
9444 |
+
normalize-url@1.9.1:
|
9445 |
+
version "1.9.1"
|
9446 |
+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
|
9447 |
+
integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
|
9448 |
+
dependencies:
|
9449 |
+
object-assign "^4.0.1"
|
9450 |
+
prepend-http "^1.0.0"
|
9451 |
+
query-string "^4.1.0"
|
9452 |
+
sort-keys "^1.0.0"
|
9453 |
+
|
9454 |
+
normalize-url@^5.0.0:
|
9455 |
+
version "5.2.1"
|
9456 |
+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-5.2.1.tgz#492a22a8443e604b13cef4b3a97983d66f08bf65"
|
9457 |
+
integrity sha512-bFT2ilr7p37ZPEQ9LO9HP/tdFIAE7Q4UoeojXNKeLjs0vXxZetM+C2K9jdbVS7b6ut66CflVLgk1yqHJVrXmiw==
|
9458 |
+
|
9459 |
+
npm-audit-report@^1.3.3:
|
9460 |
+
version "1.3.3"
|
9461 |
+
resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-1.3.3.tgz#8226deeb253b55176ed147592a3995442f2179ed"
|
9462 |
+
integrity sha512-8nH/JjsFfAWMvn474HB9mpmMjrnKb1Hx/oTAdjv4PT9iZBvBxiZ+wtDUapHCJwLqYGQVPaAfs+vL5+5k9QndXw==
|
9463 |
+
dependencies:
|
9464 |
+
cli-table3 "^0.5.0"
|
9465 |
+
console-control-strings "^1.1.0"
|
9466 |
+
|
9467 |
+
npm-bundled@^1.0.1:
|
9468 |
+
version "1.1.1"
|
9469 |
+
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b"
|
9470 |
+
integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==
|
9471 |
+
dependencies:
|
9472 |
+
npm-normalize-package-bin "^1.0.1"
|
9473 |
+
|
9474 |
+
npm-cache-filename@~1.0.2:
|
9475 |
+
version "1.0.2"
|
9476 |
+
resolved "https://registry.yarnpkg.com/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11"
|
9477 |
+
integrity sha1-3tMGxbC/yHCp6fr4I7xfKD4FrhE=
|
9478 |
+
|
9479 |
+
npm-install-checks@^3.0.2:
|
9480 |
+
version "3.0.2"
|
9481 |
+
resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-3.0.2.tgz#ab2e32ad27baa46720706908e5b14c1852de44d9"
|
9482 |
+
integrity sha512-E4kzkyZDIWoin6uT5howP8VDvkM+E8IQDcHAycaAxMbwkqhIg5eEYALnXOl3Hq9MrkdQB/2/g1xwBINXdKSRkg==
|
9483 |
+
dependencies:
|
9484 |
+
semver "^2.3.0 || 3.x || 4 || 5"
|
9485 |
+
|
9486 |
+
npm-lifecycle@^3.0.0, npm-lifecycle@^3.1.5:
|
9487 |
+
version "3.1.5"
|
9488 |
+
resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz#9882d3642b8c82c815782a12e6a1bfeed0026309"
|
9489 |
+
integrity sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==
|
9490 |
+
dependencies:
|
9491 |
+
byline "^5.0.0"
|
9492 |
+
graceful-fs "^4.1.15"
|
9493 |
+
node-gyp "^5.0.2"
|
9494 |
+
resolve-from "^4.0.0"
|
9495 |
+
slide "^1.1.6"
|
9496 |
+
uid-number "0.0.6"
|
9497 |
+
umask "^1.1.0"
|
9498 |
+
which "^1.3.1"
|
9499 |
+
|
9500 |
+
npm-logical-tree@^1.2.1:
|
9501 |
+
version "1.2.1"
|
9502 |
+
resolved "https://registry.yarnpkg.com/npm-logical-tree/-/npm-logical-tree-1.2.1.tgz#44610141ca24664cad35d1e607176193fd8f5b88"
|
9503 |
+
integrity sha512-AJI/qxDB2PWI4LG1CYN579AY1vCiNyWfkiquCsJWqntRu/WwimVrC8yXeILBFHDwxfOejxewlmnvW9XXjMlYIg==
|
9504 |
+
|
9505 |
+
npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
|
9506 |
+
version "1.0.1"
|
9507 |
+
resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
|
9508 |
+
integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
|
9509 |
+
|
9510 |
+
"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0, npm-package-arg@^6.1.1:
|
9511 |
+
version "6.1.1"
|
9512 |
+
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7"
|
9513 |
+
integrity sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==
|
9514 |
+
dependencies:
|
9515 |
+
hosted-git-info "^2.7.1"
|
9516 |
+
osenv "^0.1.5"
|
9517 |
+
semver "^5.6.0"
|
9518 |
+
validate-npm-package-name "^3.0.0"
|
9519 |
+
|
9520 |
+
npm-package-json-lint@^5.0.0:
|
9521 |
+
version "5.1.0"
|
9522 |
+
resolved "https://registry.yarnpkg.com/npm-package-json-lint/-/npm-package-json-lint-5.1.0.tgz#f5e198194d32e3e48e7d31b330b1f6a37ce4339c"
|
9523 |
+
integrity sha512-gPGpoFTbt0H4uPlubAKqHORg4+GObXqeYJh5ovkkSv76ua+t29vzRP4Qhm+9N/Q59Z3LT0tCmpoDlbTcNB7Jcg==
|
9524 |
+
dependencies:
|
9525 |
+
ajv "^6.12.2"
|
9526 |
+
ajv-errors "^1.0.1"
|
9527 |
+
chalk "^4.0.0"
|
9528 |
+
cosmiconfig "^6.0.0"
|
9529 |
+
debug "^4.1.1"
|
9530 |
+
globby "^11.0.0"
|
9531 |
+
ignore "^5.1.4"
|
9532 |
+
is-plain-obj "^2.1.0"
|
9533 |
+
jsonc-parser "^2.2.1"
|
9534 |
+
log-symbols "^4.0.0"
|
9535 |
+
meow "^6.1.0"
|
9536 |
+
plur "^4.0.0"
|
9537 |
+
semver "^7.3.2"
|
9538 |
+
slash "^3.0.0"
|
9539 |
+
strip-json-comments "^3.1.0"
|
9540 |
+
|
9541 |
+
npm-packlist@^1.1.12, npm-packlist@^1.4.8:
|
9542 |
+
version "1.4.8"
|
9543 |
+
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e"
|
9544 |
+
integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==
|
9545 |
+
dependencies:
|
9546 |
+
ignore-walk "^3.0.1"
|
9547 |
+
npm-bundled "^1.0.1"
|
9548 |
+
npm-normalize-package-bin "^1.0.1"
|
9549 |
+
|
9550 |
+
npm-pick-manifest@^3.0.0, npm-pick-manifest@^3.0.2:
|
9551 |
+
version "3.0.2"
|
9552 |
+
resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-3.0.2.tgz#f4d9e5fd4be2153e5f4e5f9b7be8dc419a99abb7"
|
9553 |
+
integrity sha512-wNprTNg+X5nf+tDi+hbjdHhM4bX+mKqv6XmPh7B5eG+QY9VARfQPfCEH013H5GqfNj6ee8Ij2fg8yk0mzps1Vw==
|
9554 |
+
dependencies:
|
9555 |
+
figgy-pudding "^3.5.1"
|
9556 |
+
npm-package-arg "^6.0.0"
|
9557 |
+
semver "^5.4.1"
|
9558 |
+
|
9559 |
+
npm-profile@^4.0.2, npm-profile@^4.0.4:
|
9560 |
+
version "4.0.4"
|
9561 |
+
resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-4.0.4.tgz#28ee94390e936df6d084263ee2061336a6a1581b"
|
9562 |
+
integrity sha512-Ta8xq8TLMpqssF0H60BXS1A90iMoM6GeKwsmravJ6wYjWwSzcYBTdyWa3DZCYqPutacBMEm7cxiOkiIeCUAHDQ==
|
9563 |
+
dependencies:
|
9564 |
+
aproba "^1.1.2 || 2"
|
9565 |
+
figgy-pudding "^3.4.1"
|
9566 |
+
npm-registry-fetch "^4.0.0"
|
9567 |
+
|
9568 |
+
npm-registry-fetch@^4.0.0, npm-registry-fetch@^4.0.7:
|
9569 |
+
version "4.0.7"
|
9570 |
+
resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.7.tgz#57951bf6541e0246b34c9f9a38ab73607c9449d7"
|
9571 |
+
integrity sha512-cny9v0+Mq6Tjz+e0erFAB+RYJ/AVGzkjnISiobqP8OWj9c9FLoZZu8/SPSKJWE17F1tk4018wfjV+ZbIbqC7fQ==
|
9572 |
+
dependencies:
|
9573 |
+
JSONStream "^1.3.4"
|
9574 |
+
bluebird "^3.5.1"
|
9575 |
+
figgy-pudding "^3.4.1"
|
9576 |
+
lru-cache "^5.1.1"
|
9577 |
+
make-fetch-happen "^5.0.0"
|
9578 |
+
npm-package-arg "^6.1.0"
|
9579 |
+
safe-buffer "^5.2.0"
|
9580 |
+
|
9581 |
+
npm-run-all@^4.1.5:
|
9582 |
+
version "4.1.5"
|
9583 |
+
resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba"
|
9584 |
+
integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
|
9585 |
+
dependencies:
|
9586 |
+
ansi-styles "^3.2.1"
|
9587 |
+
chalk "^2.4.1"
|
9588 |
+
cross-spawn "^6.0.5"
|
9589 |
+
memorystream "^0.3.1"
|
9590 |
+
minimatch "^3.0.4"
|
9591 |
+
pidtree "^0.3.0"
|
9592 |
+
read-pkg "^3.0.0"
|
9593 |
+
shell-quote "^1.6.1"
|
9594 |
+
string.prototype.padend "^3.0.0"
|
9595 |
+
|
9596 |
+
npm-run-path@^2.0.0:
|
9597 |
+
version "2.0.2"
|
9598 |
+
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
9599 |
+
integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
|
9600 |
+
dependencies:
|
9601 |
+
path-key "^2.0.0"
|
9602 |
+
|
9603 |
+
npm-run-path@^4.0.0:
|
9604 |
+
version "4.0.1"
|
9605 |
+
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
9606 |
+
integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
|
9607 |
+
dependencies:
|
9608 |
+
path-key "^3.0.0"
|
9609 |
+
|
9610 |
+
npm-user-validate@~1.0.0:
|
9611 |
+
version "1.0.0"
|
9612 |
+
resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-1.0.0.tgz#8ceca0f5cea04d4e93519ef72d0557a75122e951"
|
9613 |
+
integrity sha1-jOyg9c6gTU6TUZ73LQVXp1Ei6VE=
|
9614 |
+
|
9615 |
+
npm@^6.13.0:
|
9616 |
+
version "6.14.8"
|
9617 |
+
resolved "https://registry.yarnpkg.com/npm/-/npm-6.14.8.tgz#64ef754345639bc035982ec3f609353c8539033c"
|
9618 |
+
integrity sha512-HBZVBMYs5blsj94GTeQZel7s9odVuuSUHy1+AlZh7rPVux1os2ashvEGLy/STNK7vUjbrCg5Kq9/GXisJgdf6A==
|
9619 |
+
dependencies:
|
9620 |
+
JSONStream "^1.3.5"
|
9621 |
+
abbrev "~1.1.1"
|
9622 |
+
ansicolors "~0.3.2"
|
9623 |
+
ansistyles "~0.1.3"
|
9624 |
+
aproba "^2.0.0"
|
9625 |
+
archy "~1.0.0"
|
9626 |
+
bin-links "^1.1.8"
|
9627 |
+
bluebird "^3.5.5"
|
9628 |
+
byte-size "^5.0.1"
|
9629 |
+
cacache "^12.0.3"
|
9630 |
+
call-limit "^1.1.1"
|
9631 |
+
chownr "^1.1.4"
|
9632 |
+
ci-info "^2.0.0"
|
9633 |
+
cli-columns "^3.1.2"
|
9634 |
+
cli-table3 "^0.5.1"
|
9635 |
+
cmd-shim "^3.0.3"
|
9636 |
+
columnify "~1.5.4"
|
9637 |
+
config-chain "^1.1.12"
|
9638 |
+
detect-indent "~5.0.0"
|
9639 |
+
detect-newline "^2.1.0"
|
9640 |
+
dezalgo "~1.0.3"
|
9641 |
+
editor "~1.0.0"
|
9642 |
+
figgy-pudding "^3.5.1"
|
9643 |
+
find-npm-prefix "^1.0.2"
|
9644 |
+
fs-vacuum "~1.2.10"
|
9645 |
+
fs-write-stream-atomic "~1.0.10"
|
9646 |
+
gentle-fs "^2.3.1"
|
9647 |
+
glob "^7.1.6"
|
9648 |
+
graceful-fs "^4.2.4"
|
9649 |
+
has-unicode "~2.0.1"
|
9650 |
+
hosted-git-info "^2.8.8"
|
9651 |
+
iferr "^1.0.2"
|
9652 |
+
infer-owner "^1.0.4"
|
9653 |
+
inflight "~1.0.6"
|
9654 |
+
inherits "^2.0.4"
|
9655 |
+
ini "^1.3.5"
|
9656 |
+
init-package-json "^1.10.3"
|
9657 |
+
is-cidr "^3.0.0"
|
9658 |
+
json-parse-better-errors "^1.0.2"
|
9659 |
+
lazy-property "~1.0.0"
|
9660 |
+
libcipm "^4.0.8"
|
9661 |
+
libnpm "^3.0.1"
|
9662 |
+
libnpmaccess "^3.0.2"
|
9663 |
+
libnpmhook "^5.0.3"
|
9664 |
+
libnpmorg "^1.0.1"
|
9665 |
+
libnpmsearch "^2.0.2"
|
9666 |
+
libnpmteam "^1.0.2"
|
9667 |
+
libnpx "^10.2.4"
|
9668 |
+
lock-verify "^2.1.0"
|
9669 |
+
lockfile "^1.0.4"
|
9670 |
+
lodash._baseuniq "~4.6.0"
|
9671 |
+
lodash.clonedeep "~4.5.0"
|
9672 |
+
lodash.union "~4.6.0"
|
9673 |
+
lodash.uniq "~4.5.0"
|
9674 |
+
lodash.without "~4.4.0"
|
9675 |
+
lru-cache "^5.1.1"
|
9676 |
+
meant "^1.0.2"
|
9677 |
+
mississippi "^3.0.0"
|
9678 |
+
mkdirp "^0.5.5"
|
9679 |
+
move-concurrently "^1.0.1"
|
9680 |
+
node-gyp "^5.1.0"
|
9681 |
+
nopt "^4.0.3"
|
9682 |
+
normalize-package-data "^2.5.0"
|
9683 |
+
npm-audit-report "^1.3.3"
|
9684 |
+
npm-cache-filename "~1.0.2"
|
9685 |
+
npm-install-checks "^3.0.2"
|
9686 |
+
npm-lifecycle "^3.1.5"
|
9687 |
+
npm-package-arg "^6.1.1"
|
9688 |
+
npm-packlist "^1.4.8"
|
9689 |
+
npm-pick-manifest "^3.0.2"
|
9690 |
+
npm-profile "^4.0.4"
|
9691 |
+
npm-registry-fetch "^4.0.7"
|
9692 |
+
npm-user-validate "~1.0.0"
|
9693 |
+
npmlog "~4.1.2"
|
9694 |
+
once "~1.4.0"
|
9695 |
+
opener "^1.5.1"
|
9696 |
+
osenv "^0.1.5"
|
9697 |
+
pacote "^9.5.12"
|
9698 |
+
path-is-inside "~1.0.2"
|
9699 |
+
promise-inflight "~1.0.1"
|
9700 |
+
qrcode-terminal "^0.12.0"
|
9701 |
+
query-string "^6.8.2"
|
9702 |
+
qw "~1.0.1"
|
9703 |
+
read "~1.0.7"
|
9704 |
+
read-cmd-shim "^1.0.5"
|
9705 |
+
read-installed "~4.0.3"
|
9706 |
+
read-package-json "^2.1.1"
|
9707 |
+
read-package-tree "^5.3.1"
|
9708 |
+
readable-stream "^3.6.0"
|
9709 |
+
readdir-scoped-modules "^1.1.0"
|
9710 |
+
request "^2.88.0"
|
9711 |
+
retry "^0.12.0"
|
9712 |
+
rimraf "^2.7.1"
|
9713 |
+
safe-buffer "^5.1.2"
|
9714 |
+
semver "^5.7.1"
|
9715 |
+
sha "^3.0.0"
|
9716 |
+
slide "~1.1.6"
|
9717 |
+
sorted-object "~2.0.1"
|
9718 |
+
sorted-union-stream "~2.1.3"
|
9719 |
+
ssri "^6.0.1"
|
9720 |
+
stringify-package "^1.0.1"
|
9721 |
+
tar "^4.4.13"
|
9722 |
+
text-table "~0.2.0"
|
9723 |
+
tiny-relative-date "^1.3.0"
|
9724 |
+
uid-number "0.0.6"
|
9725 |
+
umask "~1.1.0"
|
9726 |
+
unique-filename "^1.1.1"
|
9727 |
+
unpipe "~1.0.0"
|
9728 |
+
update-notifier "^2.5.0"
|
9729 |
+
uuid "^3.3.3"
|
9730 |
+
validate-npm-package-license "^3.0.4"
|
9731 |
+
validate-npm-package-name "~3.0.0"
|
9732 |
+
which "^1.3.1"
|
9733 |
+
worker-farm "^1.7.0"
|
9734 |
+
write-file-atomic "^2.4.3"
|
9735 |
+
|
9736 |
+
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.1.2, npmlog@~4.1.2:
|
9737 |
+
version "4.1.2"
|
9738 |
+
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
9739 |
+
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
|
9740 |
+
dependencies:
|
9741 |
+
are-we-there-yet "~1.1.2"
|
9742 |
+
console-control-strings "~1.1.0"
|
9743 |
+
gauge "~2.7.3"
|
9744 |
+
set-blocking "~2.0.0"
|
9745 |
+
|
9746 |
+
nth-check@^1.0.2, nth-check@~1.0.1:
|
9747 |
+
version "1.0.2"
|
9748 |
+
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
|
9749 |
+
integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
|
9750 |
+
dependencies:
|
9751 |
+
boolbase "~1.0.0"
|
9752 |
+
|
9753 |
+
num2fraction@^1.2.2:
|
9754 |
+
version "1.2.2"
|
9755 |
+
resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
|
9756 |
+
integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
|
9757 |
+
|
9758 |
+
number-is-nan@^1.0.0:
|
9759 |
+
version "1.0.1"
|
9760 |
+
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
9761 |
+
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
|
9762 |
+
|
9763 |
+
nwsapi@^2.2.0:
|
9764 |
+
version "2.2.0"
|
9765 |
+
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
|
9766 |
+
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
|
9767 |
+
|
9768 |
+
oauth-sign@~0.9.0:
|
9769 |
+
version "0.9.0"
|
9770 |
+
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
|
9771 |
+
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
|
9772 |
+
|
9773 |
+
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
|
9774 |
+
version "4.1.1"
|
9775 |
+
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
9776 |
+
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
|
9777 |
+
|
9778 |
+
object-copy@^0.1.0:
|
9779 |
+
version "0.1.0"
|
9780 |
+
resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
|
9781 |
+
integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
|
9782 |
+
dependencies:
|
9783 |
+
copy-descriptor "^0.1.0"
|
9784 |
+
define-property "^0.2.5"
|
9785 |
+
kind-of "^3.0.3"
|
9786 |
+
|
9787 |
+
object-filter@^1.0.2:
|
9788 |
+
version "1.0.2"
|
9789 |
+
resolved "https://registry.yarnpkg.com/object-filter/-/object-filter-1.0.2.tgz#af0b797ffebeaf8a52c6637cedbe8816cfec1bc8"
|
9790 |
+
integrity sha1-rwt5f/6+r4pSxmN87b6IFs/sG8g=
|
9791 |
+
|
9792 |
+
object-inspect@^1.7.0, object-inspect@^1.8.0:
|
9793 |
+
version "1.8.0"
|
9794 |
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"
|
9795 |
+
integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
|
9796 |
+
|
9797 |
+
object-is@^1.0.2, object-is@^1.1.2:
|
9798 |
+
version "1.1.3"
|
9799 |
+
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.3.tgz#2e3b9e65560137455ee3bd62aec4d90a2ea1cc81"
|
9800 |
+
integrity sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==
|
9801 |
+
dependencies:
|
9802 |
+
define-properties "^1.1.3"
|
9803 |
+
es-abstract "^1.18.0-next.1"
|
9804 |
+
|
9805 |
+
object-keys@^1.0.12, object-keys@^1.1.1:
|
9806 |
+
version "1.1.1"
|
9807 |
+
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
9808 |
+
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
9809 |
+
|
9810 |
+
object-visit@^1.0.0:
|
9811 |
+
version "1.0.1"
|
9812 |
+
resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
|
9813 |
+
integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
|
9814 |
+
dependencies:
|
9815 |
+
isobject "^3.0.0"
|
9816 |
+
|
9817 |
+
object.assign@^4.0.4, object.assign@^4.1.0, object.assign@^4.1.1:
|
9818 |
+
version "4.1.1"
|
9819 |
+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd"
|
9820 |
+
integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==
|
9821 |
+
dependencies:
|
9822 |
+
define-properties "^1.1.3"
|
9823 |
+
es-abstract "^1.18.0-next.0"
|
9824 |
+
has-symbols "^1.0.1"
|
9825 |
+
object-keys "^1.1.1"
|
9826 |
+
|
9827 |
+
object.defaults@^1.1.0:
|
9828 |
+
version "1.1.0"
|
9829 |
+
resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf"
|
9830 |
+
integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=
|
9831 |
+
dependencies:
|
9832 |
+
array-each "^1.0.1"
|
9833 |
+
array-slice "^1.0.0"
|
9834 |
+
for-own "^1.0.0"
|
9835 |
+
isobject "^3.0.0"
|
9836 |
+
|
9837 |
+
object.entries@^1.1.1, object.entries@^1.1.2:
|
9838 |
+
version "1.1.2"
|
9839 |
+
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add"
|
9840 |
+
integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==
|
9841 |
+
dependencies:
|
9842 |
+
define-properties "^1.1.3"
|
9843 |
+
es-abstract "^1.17.5"
|
9844 |
+
has "^1.0.3"
|
9845 |
+
|
9846 |
+
object.fromentries@^2.0.2:
|
9847 |
+
version "2.0.2"
|
9848 |
+
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
|
9849 |
+
integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
|
9850 |
+
dependencies:
|
9851 |
+
define-properties "^1.1.3"
|
9852 |
+
es-abstract "^1.17.0-next.1"
|
9853 |
+
function-bind "^1.1.1"
|
9854 |
+
has "^1.0.3"
|
9855 |
+
|
9856 |
+
object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0:
|
9857 |
+
version "2.1.0"
|
9858 |
+
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
|
9859 |
+
integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
|
9860 |
+
dependencies:
|
9861 |
+
define-properties "^1.1.3"
|
9862 |
+
es-abstract "^1.17.0-next.1"
|
9863 |
+
|
9864 |
+
object.map@^1.0.0:
|
9865 |
+
version "1.0.1"
|
9866 |
+
resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"
|
9867 |
+
integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=
|
9868 |
+
dependencies:
|
9869 |
+
for-own "^1.0.0"
|
9870 |
+
make-iterator "^1.0.0"
|
9871 |
+
|
9872 |
+
object.pick@^1.2.0, object.pick@^1.3.0:
|
9873 |
+
version "1.3.0"
|
9874 |
+
resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
|
9875 |
+
integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
|
9876 |
+
dependencies:
|
9877 |
+
isobject "^3.0.1"
|
9878 |
+
|
9879 |
+
object.values@^1.1.0, object.values@^1.1.1:
|
9880 |
+
version "1.1.1"
|
9881 |
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
|
9882 |
+
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
|
9883 |
+
dependencies:
|
9884 |
+
define-properties "^1.1.3"
|
9885 |
+
es-abstract "^1.17.0-next.1"
|
9886 |
+
function-bind "^1.1.1"
|
9887 |
+
has "^1.0.3"
|
9888 |
+
|
9889 |
+
on-finished@~2.3.0:
|
9890 |
+
version "2.3.0"
|
9891 |
+
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
|
9892 |
+
integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
|
9893 |
+
dependencies:
|
9894 |
+
ee-first "1.1.1"
|
9895 |
+
|
9896 |
+
once@^1.3.0, once@^1.3.1, once@^1.4.0, once@~1.4.0:
|
9897 |
+
version "1.4.0"
|
9898 |
+
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
9899 |
+
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
|
9900 |
+
dependencies:
|
9901 |
+
wrappy "1"
|
9902 |
+
|
9903 |
+
onetime@^1.0.0:
|
9904 |
+
version "1.1.0"
|
9905 |
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
|
9906 |
+
integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=
|
9907 |
+
|
9908 |
+
onetime@^2.0.0:
|
9909 |
+
version "2.0.1"
|
9910 |
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
|
9911 |
+
integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
|
9912 |
+
dependencies:
|
9913 |
+
mimic-fn "^1.0.0"
|
9914 |
+
|
9915 |
+
onetime@^5.1.0:
|
9916 |
+
version "5.1.2"
|
9917 |
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
|
9918 |
+
integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
|
9919 |
+
dependencies:
|
9920 |
+
mimic-fn "^2.1.0"
|
9921 |
+
|
9922 |
+
opener@^1.5.1:
|
9923 |
+
version "1.5.2"
|
9924 |
+
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
|
9925 |
+
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
|
9926 |
+
|
9927 |
+
optionator@^0.8.1:
|
9928 |
+
version "0.8.3"
|
9929 |
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
9930 |
+
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
|
9931 |
+
dependencies:
|
9932 |
+
deep-is "~0.1.3"
|
9933 |
+
fast-levenshtein "~2.0.6"
|
9934 |
+
levn "~0.3.0"
|
9935 |
+
prelude-ls "~1.1.2"
|
9936 |
+
type-check "~0.3.2"
|
9937 |
+
word-wrap "~1.2.3"
|
9938 |
+
|
9939 |
+
optionator@^0.9.1:
|
9940 |
+
version "0.9.1"
|
9941 |
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
|
9942 |
+
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
|
9943 |
+
dependencies:
|
9944 |
+
deep-is "^0.1.3"
|
9945 |
+
fast-levenshtein "^2.0.6"
|
9946 |
+
levn "^0.4.1"
|
9947 |
+
prelude-ls "^1.2.1"
|
9948 |
+
type-check "^0.4.0"
|
9949 |
+
word-wrap "^1.2.3"
|
9950 |
+
|
9951 |
+
os-browserify@^0.3.0:
|
9952 |
+
version "0.3.0"
|
9953 |
+
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
|
9954 |
+
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
|
9955 |
+
|
9956 |
+
os-homedir@^1.0.0, os-homedir@^1.0.1:
|
9957 |
+
version "1.0.2"
|
9958 |
+
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
9959 |
+
integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
|
9960 |
+
|
9961 |
+
os-locale@^2.0.0:
|
9962 |
+
version "2.1.0"
|
9963 |
+
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
|
9964 |
+
integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==
|
9965 |
+
dependencies:
|
9966 |
+
execa "^0.7.0"
|
9967 |
+
lcid "^1.0.0"
|
9968 |
+
mem "^1.1.0"
|
9969 |
+
|
9970 |
+
os-name@^3.1.0:
|
9971 |
+
version "3.1.0"
|
9972 |
+
resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801"
|
9973 |
+
integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==
|
9974 |
+
dependencies:
|
9975 |
+
macos-release "^2.2.0"
|
9976 |
+
windows-release "^3.1.0"
|
9977 |
+
|
9978 |
+
os-tmpdir@^1.0.0:
|
9979 |
+
version "1.0.2"
|
9980 |
+
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
9981 |
+
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
|
9982 |
+
|
9983 |
+
osenv@0, osenv@^0.1.4, osenv@^0.1.5:
|
9984 |
+
version "0.1.5"
|
9985 |
+
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
|
9986 |
+
integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
|
9987 |
+
dependencies:
|
9988 |
+
os-homedir "^1.0.0"
|
9989 |
+
os-tmpdir "^1.0.0"
|
9990 |
+
|
9991 |
+
ospath@^1.2.2:
|
9992 |
+
version "1.2.2"
|
9993 |
+
resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b"
|
9994 |
+
integrity sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=
|
9995 |
+
|
9996 |
+
p-each-series@^2.1.0:
|
9997 |
+
version "2.1.0"
|
9998 |
+
resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48"
|
9999 |
+
integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
|
10000 |
+
|
10001 |
+
p-filter@^2.0.0:
|
10002 |
+
version "2.1.0"
|
10003 |
+
resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
|
10004 |
+
integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
|
10005 |
+
dependencies:
|
10006 |
+
p-map "^2.0.0"
|
10007 |
+
|
10008 |
+
p-finally@^1.0.0:
|
10009 |
+
version "1.0.0"
|
10010 |
+
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
10011 |
+
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
|
10012 |
+
|
10013 |
+
p-finally@^2.0.0:
|
10014 |
+
version "2.0.1"
|
10015 |
+
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
|
10016 |
+
integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==
|
10017 |
+
|
10018 |
+
p-is-promise@^3.0.0:
|
10019 |
+
version "3.0.0"
|
10020 |
+
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971"
|
10021 |
+
integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==
|
10022 |
+
|
10023 |
+
p-limit@^1.1.0:
|
10024 |
+
version "1.3.0"
|
10025 |
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
|
10026 |
+
integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
|
10027 |
+
dependencies:
|
10028 |
+
p-try "^1.0.0"
|
10029 |
+
|
10030 |
+
p-limit@^2.0.0, p-limit@^2.2.0:
|
10031 |
+
version "2.3.0"
|
10032 |
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
10033 |
+
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
10034 |
+
dependencies:
|
10035 |
+
p-try "^2.0.0"
|
10036 |
+
|
10037 |
+
p-limit@^3.0.2:
|
10038 |
+
version "3.0.2"
|
10039 |
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe"
|
10040 |
+
integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
|
10041 |
+
dependencies:
|
10042 |
+
p-try "^2.0.0"
|
10043 |
+
|
10044 |
+
p-locate@^2.0.0:
|
10045 |
+
version "2.0.0"
|
10046 |
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
10047 |
+
integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
|
10048 |
+
dependencies:
|
10049 |
+
p-limit "^1.1.0"
|
10050 |
+
|
10051 |
+
p-locate@^3.0.0:
|
10052 |
+
version "3.0.0"
|
10053 |
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
|
10054 |
+
integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
|
10055 |
+
dependencies:
|
10056 |
+
p-limit "^2.0.0"
|
10057 |
+
|
10058 |
+
p-locate@^4.1.0:
|
10059 |
+
version "4.1.0"
|
10060 |
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
|
10061 |
+
integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
|
10062 |
+
dependencies:
|
10063 |
+
p-limit "^2.2.0"
|
10064 |
+
|
10065 |
+
p-map@^2.0.0:
|
10066 |
+
version "2.1.0"
|
10067 |
+
resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
|
10068 |
+
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
|
10069 |
+
|
10070 |
+
p-map@^4.0.0:
|
10071 |
+
version "4.0.0"
|
10072 |
+
resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
|
10073 |
+
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
|
10074 |
+
dependencies:
|
10075 |
+
aggregate-error "^3.0.0"
|
10076 |
+
|
10077 |
+
p-reduce@^2.0.0:
|
10078 |
+
version "2.1.0"
|
10079 |
+
resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a"
|
10080 |
+
integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==
|
10081 |
+
|
10082 |
+
p-retry@^4.0.0:
|
10083 |
+
version "4.2.0"
|
10084 |
+
resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.2.0.tgz#ea9066c6b44f23cab4cd42f6147cdbbc6604da5d"
|
10085 |
+
integrity sha512-jPH38/MRh263KKcq0wBNOGFJbm+U6784RilTmHjB/HM9kH9V8WlCpVUcdOmip9cjXOh6MxZ5yk1z2SjDUJfWmA==
|
10086 |
+
dependencies:
|
10087 |
+
"@types/retry" "^0.12.0"
|
10088 |
+
retry "^0.12.0"
|
10089 |
+
|
10090 |
+
p-try@^1.0.0:
|
10091 |
+
version "1.0.0"
|
10092 |
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
10093 |
+
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
|
10094 |
+
|
10095 |
+
p-try@^2.0.0:
|
10096 |
+
version "2.2.0"
|
10097 |
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
10098 |
+
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
10099 |
+
|
10100 |
+
package-json@^4.0.0:
|
10101 |
+
version "4.0.1"
|
10102 |
+
resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
|
10103 |
+
integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=
|
10104 |
+
dependencies:
|
10105 |
+
got "^6.7.1"
|
10106 |
+
registry-auth-token "^3.0.1"
|
10107 |
+
registry-url "^3.0.3"
|
10108 |
+
semver "^5.1.0"
|
10109 |
+
|
10110 |
+
pacote@^9.1.0, pacote@^9.5.12, pacote@^9.5.3:
|
10111 |
+
version "9.5.12"
|
10112 |
+
resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.5.12.tgz#1e11dd7a8d736bcc36b375a9804d41bb0377bf66"
|
10113 |
+
integrity sha512-BUIj/4kKbwWg4RtnBncXPJd15piFSVNpTzY0rysSr3VnMowTYgkGKcaHrbReepAkjTr8lH2CVWRi58Spg2CicQ==
|
10114 |
+
dependencies:
|
10115 |
+
bluebird "^3.5.3"
|
10116 |
+
cacache "^12.0.2"
|
10117 |
+
chownr "^1.1.2"
|
10118 |
+
figgy-pudding "^3.5.1"
|
10119 |
+
get-stream "^4.1.0"
|
10120 |
+
glob "^7.1.3"
|
10121 |
+
infer-owner "^1.0.4"
|
10122 |
+
lru-cache "^5.1.1"
|
10123 |
+
make-fetch-happen "^5.0.0"
|
10124 |
+
minimatch "^3.0.4"
|
10125 |
+
minipass "^2.3.5"
|
10126 |
+
mississippi "^3.0.0"
|
10127 |
+
mkdirp "^0.5.1"
|
10128 |
+
normalize-package-data "^2.4.0"
|
10129 |
+
npm-normalize-package-bin "^1.0.0"
|
10130 |
+
npm-package-arg "^6.1.0"
|
10131 |
+
npm-packlist "^1.1.12"
|
10132 |
+
npm-pick-manifest "^3.0.0"
|
10133 |
+
npm-registry-fetch "^4.0.0"
|
10134 |
+
osenv "^0.1.5"
|
10135 |
+
promise-inflight "^1.0.1"
|
10136 |
+
promise-retry "^1.1.1"
|
10137 |
+
protoduck "^5.0.1"
|
10138 |
+
rimraf "^2.6.2"
|
10139 |
+
safe-buffer "^5.1.2"
|
10140 |
+
semver "^5.6.0"
|
10141 |
+
ssri "^6.0.1"
|
10142 |
+
tar "^4.4.10"
|
10143 |
+
unique-filename "^1.1.1"
|
10144 |
+
which "^1.3.1"
|
10145 |
+
|
10146 |
+
pako@~1.0.5:
|
10147 |
+
version "1.0.11"
|
10148 |
+
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
|
10149 |
+
integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
|
10150 |
+
|
10151 |
+
parallel-transform@^1.1.0:
|
10152 |
+
version "1.2.0"
|
10153 |
+
resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
|
10154 |
+
integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
|
10155 |
+
dependencies:
|
10156 |
+
cyclist "^1.0.1"
|
10157 |
+
inherits "^2.0.3"
|
10158 |
+
readable-stream "^2.1.5"
|
10159 |
+
|
10160 |
+
parent-module@^1.0.0:
|
10161 |
+
version "1.0.1"
|
10162 |
+
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
|
10163 |
+
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
|
10164 |
+
dependencies:
|
10165 |
+
callsites "^3.0.0"
|
10166 |
+
|
10167 |
+
parse-asn1@^5.0.0, parse-asn1@^5.1.5:
|
10168 |
+
version "5.1.6"
|
10169 |
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
|
10170 |
+
integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
|
10171 |
+
dependencies:
|
10172 |
+
asn1.js "^5.2.0"
|
10173 |
+
browserify-aes "^1.0.0"
|
10174 |
+
evp_bytestokey "^1.0.0"
|
10175 |
+
pbkdf2 "^3.0.3"
|
10176 |
+
safe-buffer "^5.1.1"
|
10177 |
+
|
10178 |
+
parse-entities@^1.1.0:
|
10179 |
+
version "1.2.2"
|
10180 |
+
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50"
|
10181 |
+
integrity sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==
|
10182 |
+
dependencies:
|
10183 |
+
character-entities "^1.0.0"
|
10184 |
+
character-entities-legacy "^1.0.0"
|
10185 |
+
character-reference-invalid "^1.0.0"
|
10186 |
+
is-alphanumerical "^1.0.0"
|
10187 |
+
is-decimal "^1.0.0"
|
10188 |
+
is-hexadecimal "^1.0.0"
|
10189 |
+
|
10190 |
+
parse-entities@^2.0.0:
|
10191 |
+
version "2.0.0"
|
10192 |
+
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
|
10193 |
+
integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
|
10194 |
+
dependencies:
|
10195 |
+
character-entities "^1.0.0"
|
10196 |
+
character-entities-legacy "^1.0.0"
|
10197 |
+
character-reference-invalid "^1.0.0"
|
10198 |
+
is-alphanumerical "^1.0.0"
|
10199 |
+
is-decimal "^1.0.0"
|
10200 |
+
is-hexadecimal "^1.0.0"
|
10201 |
+
|
10202 |
+
parse-filepath@^1.0.1:
|
10203 |
+
version "1.0.2"
|
10204 |
+
resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
|
10205 |
+
integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=
|
10206 |
+
dependencies:
|
10207 |
+
is-absolute "^1.0.0"
|
10208 |
+
map-cache "^0.2.0"
|
10209 |
+
path-root "^0.1.1"
|
10210 |
+
|
10211 |
+
parse-json@^2.2.0:
|
10212 |
+
version "2.2.0"
|
10213 |
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
|
10214 |
+
integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
|
10215 |
+
dependencies:
|
10216 |
+
error-ex "^1.2.0"
|
10217 |
+
|
10218 |
+
parse-json@^4.0.0:
|
10219 |
+
version "4.0.0"
|
10220 |
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
|
10221 |
+
integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
|
10222 |
+
dependencies:
|
10223 |
+
error-ex "^1.3.1"
|
10224 |
+
json-parse-better-errors "^1.0.1"
|
10225 |
+
|
10226 |
+
parse-json@^5.0.0:
|
10227 |
+
version "5.1.0"
|
10228 |
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646"
|
10229 |
+
integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
|
10230 |
+
dependencies:
|
10231 |
+
"@babel/code-frame" "^7.0.0"
|
10232 |
+
error-ex "^1.3.1"
|
10233 |
+
json-parse-even-better-errors "^2.3.0"
|
10234 |
+
lines-and-columns "^1.1.6"
|
10235 |
+
|
10236 |
+
parse-passwd@^1.0.0:
|
10237 |
+
version "1.0.0"
|
10238 |
+
resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
|
10239 |
+
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
|
10240 |
+
|
10241 |
+
parse5@5.1.0:
|
10242 |
+
version "5.1.0"
|
10243 |
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
|
10244 |
+
integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
|
10245 |
+
|
10246 |
+
parse5@^3.0.1:
|
10247 |
+
version "3.0.3"
|
10248 |
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c"
|
10249 |
+
integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==
|
10250 |
+
dependencies:
|
10251 |
+
"@types/node" "*"
|
10252 |
+
|
10253 |
+
parseurl@~1.3.3:
|
10254 |
+
version "1.3.3"
|
10255 |
+
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
|
10256 |
+
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
|
10257 |
+
|
10258 |
+
pascalcase@^0.1.1:
|
10259 |
+
version "0.1.1"
|
10260 |
+
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
10261 |
+
integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
|
10262 |
+
|
10263 |
+
path-browserify@0.0.1:
|
10264 |
+
version "0.0.1"
|
10265 |
+
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
|
10266 |
+
integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
|
10267 |
+
|
10268 |
+
path-dirname@^1.0.0:
|
10269 |
+
version "1.0.2"
|
10270 |
+
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
|
10271 |
+
integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
|
10272 |
+
|
10273 |
+
path-exists@^2.0.0:
|
10274 |
+
version "2.1.0"
|
10275 |
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
|
10276 |
+
integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
|
10277 |
+
dependencies:
|
10278 |
+
pinkie-promise "^2.0.0"
|
10279 |
+
|
10280 |
+
path-exists@^3.0.0:
|
10281 |
+
version "3.0.0"
|
10282 |
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
10283 |
+
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
|
10284 |
+
|
10285 |
+
path-exists@^4.0.0:
|
10286 |
+
version "4.0.0"
|
10287 |
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
|
10288 |
+
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
|
10289 |
+
|
10290 |
+
path-is-absolute@^1.0.0:
|
10291 |
+
version "1.0.1"
|
10292 |
+
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
10293 |
+
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
10294 |
+
|
10295 |
+
path-is-inside@^1.0.1, path-is-inside@^1.0.2, path-is-inside@~1.0.2:
|
10296 |
+
version "1.0.2"
|
10297 |
+
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
10298 |
+
integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
|
10299 |
+
|
10300 |
+
path-key@^2.0.0, path-key@^2.0.1:
|
10301 |
+
version "2.0.1"
|
10302 |
+
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
|
10303 |
+
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
|
10304 |
+
|
10305 |
+
path-key@^3.0.0, path-key@^3.1.0:
|
10306 |
+
version "3.1.1"
|
10307 |
+
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
10308 |
+
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
10309 |
+
|
10310 |
+
path-parse@^1.0.6:
|
10311 |
+
version "1.0.6"
|
10312 |
+
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
10313 |
+
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
10314 |
+
|
10315 |
+
path-root-regex@^0.1.0:
|
10316 |
+
version "0.1.2"
|
10317 |
+
resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
|
10318 |
+
integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=
|
10319 |
+
|
10320 |
+
path-root@^0.1.1:
|
10321 |
+
version "0.1.1"
|
10322 |
+
resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
|
10323 |
+
integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=
|
10324 |
+
dependencies:
|
10325 |
+
path-root-regex "^0.1.0"
|
10326 |
+
|
10327 |
+
path-to-regexp@0.1.7:
|
10328 |
+
version "0.1.7"
|
10329 |
+
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
10330 |
+
integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
|
10331 |
+
|
10332 |
+
path-type@^1.0.0:
|
10333 |
+
version "1.1.0"
|
10334 |
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
|
10335 |
+
integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=
|
10336 |
+
dependencies:
|
10337 |
+
graceful-fs "^4.1.2"
|
10338 |
+
pify "^2.0.0"
|
10339 |
+
pinkie-promise "^2.0.0"
|
10340 |
+
|
10341 |
+
path-type@^2.0.0:
|
10342 |
+
version "2.0.0"
|
10343 |
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
|
10344 |
+
integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
|
10345 |
+
dependencies:
|
10346 |
+
pify "^2.0.0"
|
10347 |
+
|
10348 |
+
path-type@^3.0.0:
|
10349 |
+
version "3.0.0"
|
10350 |
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
|
10351 |
+
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
|
10352 |
+
dependencies:
|
10353 |
+
pify "^3.0.0"
|
10354 |
+
|
10355 |
+
path-type@^4.0.0:
|
10356 |
+
version "4.0.0"
|
10357 |
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
10358 |
+
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
|
10359 |
+
|
10360 |
+
pbkdf2@^3.0.3:
|
10361 |
+
version "3.1.1"
|
10362 |
+
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94"
|
10363 |
+
integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==
|
10364 |
+
dependencies:
|
10365 |
+
create-hash "^1.1.2"
|
10366 |
+
create-hmac "^1.1.4"
|
10367 |
+
ripemd160 "^2.0.1"
|
10368 |
+
safe-buffer "^5.0.1"
|
10369 |
+
sha.js "^2.4.8"
|
10370 |
+
|
10371 |
+
pend@~1.2.0:
|
10372 |
+
version "1.2.0"
|
10373 |
+
resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
|
10374 |
+
integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA=
|
10375 |
+
|
10376 |
+
performance-now@^2.1.0:
|
10377 |
+
version "2.1.0"
|
10378 |
+
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
10379 |
+
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
10380 |
+
|
10381 |
+
picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
|
10382 |
+
version "2.2.2"
|
10383 |
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
|
10384 |
+
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
|
10385 |
+
|
10386 |
+
pidtree@^0.3.0:
|
10387 |
+
version "0.3.1"
|
10388 |
+
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a"
|
10389 |
+
integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
|
10390 |
+
|
10391 |
+
pify@^2.0.0, pify@^2.2.0:
|
10392 |
+
version "2.3.0"
|
10393 |
+
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
10394 |
+
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
|
10395 |
+
|
10396 |
+
pify@^3.0.0:
|
10397 |
+
version "3.0.0"
|
10398 |
+
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
10399 |
+
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
10400 |
+
|
10401 |
+
pify@^4.0.1:
|
10402 |
+
version "4.0.1"
|
10403 |
+
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
|
10404 |
+
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
|
10405 |
+
|
10406 |
+
pinkie-promise@^2.0.0:
|
10407 |
+
version "2.0.1"
|
10408 |
+
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
|
10409 |
+
integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
|
10410 |
+
dependencies:
|
10411 |
+
pinkie "^2.0.0"
|
10412 |
+
|
10413 |
+
pinkie@^2.0.0:
|
10414 |
+
version "2.0.4"
|
10415 |
+
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
10416 |
+
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
|
10417 |
+
|
10418 |
+
pirates@^4.0.1:
|
10419 |
+
version "4.0.1"
|
10420 |
+
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
|
10421 |
+
integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
|
10422 |
+
dependencies:
|
10423 |
+
node-modules-regexp "^1.0.0"
|
10424 |
+
|
10425 |
+
pkg-conf@^2.1.0:
|
10426 |
+
version "2.1.0"
|
10427 |
+
resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058"
|
10428 |
+
integrity sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=
|
10429 |
+
dependencies:
|
10430 |
+
find-up "^2.0.0"
|
10431 |
+
load-json-file "^4.0.0"
|
10432 |
+
|
10433 |
+
pkg-dir@^3.0.0:
|
10434 |
+
version "3.0.0"
|
10435 |
+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
|
10436 |
+
integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
|
10437 |
+
dependencies:
|
10438 |
+
find-up "^3.0.0"
|
10439 |
+
|
10440 |
+
pkg-dir@^4.1.0, pkg-dir@^4.2.0:
|
10441 |
+
version "4.2.0"
|
10442 |
+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
|
10443 |
+
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
|
10444 |
+
dependencies:
|
10445 |
+
find-up "^4.0.0"
|
10446 |
+
|
10447 |
+
plur@^4.0.0:
|
10448 |
+
version "4.0.0"
|
10449 |
+
resolved "https://registry.yarnpkg.com/plur/-/plur-4.0.0.tgz#729aedb08f452645fe8c58ef115bf16b0a73ef84"
|
10450 |
+
integrity sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==
|
10451 |
+
dependencies:
|
10452 |
+
irregular-plurals "^3.2.0"
|
10453 |
+
|
10454 |
+
pn@^1.1.0:
|
10455 |
+
version "1.1.0"
|
10456 |
+
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
|
10457 |
+
integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
|
10458 |
+
|
10459 |
+
portfinder@^1.0.17:
|
10460 |
+
version "1.0.28"
|
10461 |
+
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
|
10462 |
+
integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==
|
10463 |
+
dependencies:
|
10464 |
+
async "^2.6.2"
|
10465 |
+
debug "^3.1.1"
|
10466 |
+
mkdirp "^0.5.5"
|
10467 |
+
|
10468 |
+
posix-character-classes@^0.1.0:
|
10469 |
+
version "0.1.1"
|
10470 |
+
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
|
10471 |
+
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
10472 |
+
|
10473 |
+
postcss-custom-properties@^9.1.1:
|
10474 |
+
version "9.2.0"
|
10475 |
+
resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-9.2.0.tgz#80bae0d6e0c510245ace7ede95ac527712ea24e7"
|
10476 |
+
integrity sha512-IFRV7LwapFkNa3MtvFpw+MEhgyUpaVZ62VlR5EM0AbmnGbNhU9qIE8u02vgUbl1gLkHK6sterEavamVPOwdE8g==
|
10477 |
+
dependencies:
|
10478 |
+
postcss "^7.0.17"
|
10479 |
+
postcss-values-parser "^3.0.5"
|
10480 |
+
|
10481 |
+
postcss-html@^0.36.0:
|
10482 |
+
version "0.36.0"
|
10483 |
+
resolved "https://registry.yarnpkg.com/postcss-html/-/postcss-html-0.36.0.tgz#b40913f94eaacc2453fd30a1327ad6ee1f88b204"
|
10484 |
+
integrity sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==
|
10485 |
+
dependencies:
|
10486 |
+
htmlparser2 "^3.10.0"
|
10487 |
+
|
10488 |
+
postcss-less@^3.1.4:
|
10489 |
+
version "3.1.4"
|
10490 |
+
resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad"
|
10491 |
+
integrity sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA==
|
10492 |
+
dependencies:
|
10493 |
+
postcss "^7.0.14"
|
10494 |
+
|
10495 |
+
postcss-load-config@^2.0.0:
|
10496 |
+
version "2.1.2"
|
10497 |
+
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
|
10498 |
+
integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
|
10499 |
+
dependencies:
|
10500 |
+
cosmiconfig "^5.0.0"
|
10501 |
+
import-cwd "^2.0.0"
|
10502 |
+
|
10503 |
+
postcss-loader@^3.0.0:
|
10504 |
+
version "3.0.0"
|
10505 |
+
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
|
10506 |
+
integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
|
10507 |
+
dependencies:
|
10508 |
+
loader-utils "^1.1.0"
|
10509 |
+
postcss "^7.0.0"
|
10510 |
+
postcss-load-config "^2.0.0"
|
10511 |
+
schema-utils "^1.0.0"
|
10512 |
+
|
10513 |
+
postcss-media-query-parser@^0.2.3:
|
10514 |
+
version "0.2.3"
|
10515 |
+
resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
|
10516 |
+
integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=
|
10517 |
+
|
10518 |
+
postcss-modules-extract-imports@^2.0.0:
|
10519 |
+
version "2.0.0"
|
10520 |
+
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
|
10521 |
+
integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
|
10522 |
+
dependencies:
|
10523 |
+
postcss "^7.0.5"
|
10524 |
+
|
10525 |
+
postcss-modules-local-by-default@^3.0.2:
|
10526 |
+
version "3.0.3"
|
10527 |
+
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
|
10528 |
+
integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
|
10529 |
+
dependencies:
|
10530 |
+
icss-utils "^4.1.1"
|
10531 |
+
postcss "^7.0.32"
|
10532 |
+
postcss-selector-parser "^6.0.2"
|
10533 |
+
postcss-value-parser "^4.1.0"
|
10534 |
+
|
10535 |
+
postcss-modules-scope@^2.2.0:
|
10536 |
+
version "2.2.0"
|
10537 |
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
|
10538 |
+
integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
|
10539 |
+
dependencies:
|
10540 |
+
postcss "^7.0.6"
|
10541 |
+
postcss-selector-parser "^6.0.0"
|
10542 |
+
|
10543 |
+
postcss-modules-values@^3.0.0:
|
10544 |
+
version "3.0.0"
|
10545 |
+
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
|
10546 |
+
integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
|
10547 |
+
dependencies:
|
10548 |
+
icss-utils "^4.0.0"
|
10549 |
+
postcss "^7.0.6"
|
10550 |
+
|
10551 |
+
postcss-resolve-nested-selector@^0.1.1:
|
10552 |
+
version "0.1.1"
|
10553 |
+
resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e"
|
10554 |
+
integrity sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=
|
10555 |
+
|
10556 |
+
postcss-safe-parser@^4.0.2:
|
10557 |
+
version "4.0.2"
|
10558 |
+
resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96"
|
10559 |
+
integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g==
|
10560 |
+
dependencies:
|
10561 |
+
postcss "^7.0.26"
|
10562 |
+
|
10563 |
+
postcss-sass@^0.4.4:
|
10564 |
+
version "0.4.4"
|
10565 |
+
resolved "https://registry.yarnpkg.com/postcss-sass/-/postcss-sass-0.4.4.tgz#91f0f3447b45ce373227a98b61f8d8f0785285a3"
|
10566 |
+
integrity sha512-BYxnVYx4mQooOhr+zer0qWbSPYnarAy8ZT7hAQtbxtgVf8gy+LSLT/hHGe35h14/pZDTw1DsxdbrwxBN++H+fg==
|
10567 |
+
dependencies:
|
10568 |
+
gonzales-pe "^4.3.0"
|
10569 |
+
postcss "^7.0.21"
|
10570 |
+
|
10571 |
+
postcss-scss@^2.1.1:
|
10572 |
+
version "2.1.1"
|
10573 |
+
resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.1.1.tgz#ec3a75fa29a55e016b90bf3269026c53c1d2b383"
|
10574 |
+
integrity sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA==
|
10575 |
+
dependencies:
|
10576 |
+
postcss "^7.0.6"
|
10577 |
+
|
10578 |
+
postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
|
10579 |
+
version "6.0.4"
|
10580 |
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
|
10581 |
+
integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
|
10582 |
+
dependencies:
|
10583 |
+
cssesc "^3.0.0"
|
10584 |
+
indexes-of "^1.0.1"
|
10585 |
+
uniq "^1.0.1"
|
10586 |
+
util-deprecate "^1.0.2"
|
10587 |
+
|
10588 |
+
postcss-syntax@^0.36.2:
|
10589 |
+
version "0.36.2"
|
10590 |
+
resolved "https://registry.yarnpkg.com/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c"
|
10591 |
+
integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==
|
10592 |
+
|
10593 |
+
postcss-value-parser@^4.1.0:
|
10594 |
+
version "4.1.0"
|
10595 |
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
|
10596 |
+
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
|
10597 |
+
|
10598 |
+
postcss-values-parser@^3.0.5:
|
10599 |
+
version "3.2.1"
|
10600 |
+
resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-3.2.1.tgz#55114607de6631338ba8728d3e9c15785adcc027"
|
10601 |
+
integrity sha512-SQ7/88VE9LhJh9gc27/hqnSU/aZaREVJcRVccXBmajgP2RkjdJzNyH/a9GCVMI5nsRhT0jC5HpUMwfkz81DVVg==
|
10602 |
+
dependencies:
|
10603 |
+
color-name "^1.1.4"
|
10604 |
+
is-url-superb "^3.0.0"
|
10605 |
+
postcss "^7.0.5"
|
10606 |
+
url-regex "^5.0.0"
|
10607 |
+
|
10608 |
+
postcss@^6.0.23:
|
10609 |
+
version "6.0.23"
|
10610 |
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
|
10611 |
+
integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
|
10612 |
+
dependencies:
|
10613 |
+
chalk "^2.4.1"
|
10614 |
+
source-map "^0.6.1"
|
10615 |
+
supports-color "^5.4.0"
|
10616 |
+
|
10617 |
+
postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
|
10618 |
+
version "7.0.35"
|
10619 |
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
|
10620 |
+
integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
|
10621 |
+
dependencies:
|
10622 |
+
chalk "^2.4.2"
|
10623 |
+
source-map "^0.6.1"
|
10624 |
+
supports-color "^6.1.0"
|
10625 |
+
|
10626 |
+
prelude-ls@^1.2.1:
|
10627 |
+
version "1.2.1"
|
10628 |
+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
10629 |
+
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
|
10630 |
+
|
10631 |
+
prelude-ls@~1.1.2:
|
10632 |
+
version "1.1.2"
|
10633 |
+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
10634 |
+
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
|
10635 |
+
|
10636 |
+
prepend-http@^1.0.0, prepend-http@^1.0.1:
|
10637 |
+
version "1.0.4"
|
10638 |
+
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
|
10639 |
+
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
|
10640 |
+
|
10641 |
+
prettier-linter-helpers@^1.0.0:
|
10642 |
+
version "1.0.0"
|
10643 |
+
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
|
10644 |
+
integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
|
10645 |
+
dependencies:
|
10646 |
+
fast-diff "^1.1.2"
|
10647 |
+
|
10648 |
+
"prettier@npm:wp-prettier@2.0.5":
|
10649 |
+
version "2.0.5"
|
10650 |
+
resolved "https://registry.yarnpkg.com/wp-prettier/-/wp-prettier-2.0.5.tgz#1aeff6000142d61bfbd7cc35a3d561551b25399f"
|
10651 |
+
integrity sha512-5GCgdeevIXwR3cW4Qj5XWC5MO1iSCz8+IPn0mMw6awAt/PBiey8yyO7MhePRsaMqghJAhg6Q3QLYWSnUHWkG6A==
|
10652 |
+
|
10653 |
+
pretty-bytes@^5.3.0:
|
10654 |
+
version "5.4.1"
|
10655 |
+
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b"
|
10656 |
+
integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==
|
10657 |
+
|
10658 |
+
pretty-format@^25.5.0:
|
10659 |
+
version "25.5.0"
|
10660 |
+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a"
|
10661 |
+
integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==
|
10662 |
+
dependencies:
|
10663 |
+
"@jest/types" "^25.5.0"
|
10664 |
+
ansi-regex "^5.0.0"
|
10665 |
+
ansi-styles "^4.0.0"
|
10666 |
+
react-is "^16.12.0"
|
10667 |
+
|
10668 |
+
process-nextick-args@~2.0.0:
|
10669 |
+
version "2.0.1"
|
10670 |
+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
10671 |
+
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
|
10672 |
+
|
10673 |
+
process@^0.11.10:
|
10674 |
+
version "0.11.10"
|
10675 |
+
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
10676 |
+
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
|
10677 |
+
|
10678 |
+
progress@^2.0.0, progress@^2.0.1:
|
10679 |
+
version "2.0.3"
|
10680 |
+
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
|
10681 |
+
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
|
10682 |
+
|
10683 |
+
promise-inflight@^1.0.1, promise-inflight@~1.0.1:
|
10684 |
+
version "1.0.1"
|
10685 |
+
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
|
10686 |
+
integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
|
10687 |
+
|
10688 |
+
promise-retry@^1.1.1:
|
10689 |
+
version "1.1.1"
|
10690 |
+
resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d"
|
10691 |
+
integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=
|
10692 |
+
dependencies:
|
10693 |
+
err-code "^1.0.0"
|
10694 |
+
retry "^0.10.0"
|
10695 |
+
|
10696 |
+
prompts@^2.0.1, prompts@^2.3.0:
|
10697 |
+
version "2.3.2"
|
10698 |
+
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068"
|
10699 |
+
integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==
|
10700 |
+
dependencies:
|
10701 |
+
kleur "^3.0.3"
|
10702 |
+
sisteransi "^1.0.4"
|
10703 |
+
|
10704 |
+
promzard@^0.3.0:
|
10705 |
+
version "0.3.0"
|
10706 |
+
resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"
|
10707 |
+
integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=
|
10708 |
+
dependencies:
|
10709 |
+
read "1"
|
10710 |
+
|
10711 |
+
prop-types-exact@^1.2.0:
|
10712 |
+
version "1.2.0"
|
10713 |
+
resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869"
|
10714 |
+
integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==
|
10715 |
+
dependencies:
|
10716 |
+
has "^1.0.3"
|
10717 |
+
object.assign "^4.1.0"
|
10718 |
+
reflect.ownkeys "^0.2.0"
|
10719 |
+
|
10720 |
+
prop-types@^15.6.2, prop-types@^15.7.2:
|
10721 |
+
version "15.7.2"
|
10722 |
+
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
10723 |
+
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
10724 |
+
dependencies:
|
10725 |
+
loose-envify "^1.4.0"
|
10726 |
+
object-assign "^4.1.1"
|
10727 |
+
react-is "^16.8.1"
|
10728 |
+
|
10729 |
+
proto-list@~1.2.1:
|
10730 |
+
version "1.2.4"
|
10731 |
+
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
|
10732 |
+
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
|
10733 |
+
|
10734 |
+
protoduck@^5.0.1:
|
10735 |
+
version "5.0.1"
|
10736 |
+
resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f"
|
10737 |
+
integrity sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg==
|
10738 |
+
dependencies:
|
10739 |
+
genfun "^5.0.0"
|
10740 |
+
|
10741 |
+
proxy-addr@~2.0.5:
|
10742 |
+
version "2.0.6"
|
10743 |
+
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
|
10744 |
+
integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
|
10745 |
+
dependencies:
|
10746 |
+
forwarded "~0.1.2"
|
10747 |
+
ipaddr.js "1.9.1"
|
10748 |
+
|
10749 |
+
proxy-from-env@^1.0.0:
|
10750 |
+
version "1.1.0"
|
10751 |
+
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
|
10752 |
+
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
|
10753 |
+
|
10754 |
+
prr@~1.0.1:
|
10755 |
+
version "1.0.1"
|
10756 |
+
resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
|
10757 |
+
integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
|
10758 |
+
|
10759 |
+
pseudomap@^1.0.2:
|
10760 |
+
version "1.0.2"
|
10761 |
+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
10762 |
+
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
10763 |
+
|
10764 |
+
psl@^1.1.28:
|
10765 |
+
version "1.8.0"
|
10766 |
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
10767 |
+
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
|
10768 |
+
|
10769 |
+
public-encrypt@^4.0.0:
|
10770 |
+
version "4.0.3"
|
10771 |
+
resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
|
10772 |
+
integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
|
10773 |
+
dependencies:
|
10774 |
+
bn.js "^4.1.0"
|
10775 |
+
browserify-rsa "^4.0.0"
|
10776 |
+
create-hash "^1.1.0"
|
10777 |
+
parse-asn1 "^5.0.0"
|
10778 |
+
randombytes "^2.0.1"
|
10779 |
+
safe-buffer "^5.1.2"
|
10780 |
+
|
10781 |
+
pump@^2.0.0:
|
10782 |
+
version "2.0.1"
|
10783 |
+
resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
|
10784 |
+
integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
|
10785 |
+
dependencies:
|
10786 |
+
end-of-stream "^1.1.0"
|
10787 |
+
once "^1.3.1"
|
10788 |
+
|
10789 |
+
pump@^3.0.0:
|
10790 |
+
version "3.0.0"
|
10791 |
+
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
|
10792 |
+
integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
|
10793 |
+
dependencies:
|
10794 |
+
end-of-stream "^1.1.0"
|
10795 |
+
once "^1.3.1"
|
10796 |
+
|
10797 |
+
pumpify@^1.3.3:
|
10798 |
+
version "1.5.1"
|
10799 |
+
resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
|
10800 |
+
integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
|
10801 |
+
dependencies:
|
10802 |
+
duplexify "^3.6.0"
|
10803 |
+
inherits "^2.0.3"
|
10804 |
+
pump "^2.0.0"
|
10805 |
+
|
10806 |
+
punycode@1.3.2:
|
10807 |
+
version "1.3.2"
|
10808 |
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
10809 |
+
integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
|
10810 |
+
|
10811 |
+
punycode@^1.2.4:
|
10812 |
+
version "1.4.1"
|
10813 |
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
10814 |
+
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
|
10815 |
+
|
10816 |
+
punycode@^2.1.0, punycode@^2.1.1:
|
10817 |
+
version "2.1.1"
|
10818 |
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
10819 |
+
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
10820 |
+
|
10821 |
+
"puppeteer@npm:puppeteer-core@3.0.0":
|
10822 |
+
version "3.0.0"
|
10823 |
+
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-3.0.0.tgz#98d0f25b4295f26ab528b8949bd20f1308be1d8b"
|
10824 |
+
integrity sha512-oWjZFGMc0q2ak+8OxdmMffS79LIT0UEtmpV4h1/AARvESIqqKljf8mrfP+dQ2kas7XttsAZIxRBuWu7Y5JH8KQ==
|
10825 |
+
dependencies:
|
10826 |
+
"@types/mime-types" "^2.1.0"
|
10827 |
+
debug "^4.1.0"
|
10828 |
+
extract-zip "^2.0.0"
|
10829 |
+
https-proxy-agent "^4.0.0"
|
10830 |
+
mime "^2.0.3"
|
10831 |
+
mime-types "^2.1.25"
|
10832 |
+
progress "^2.0.1"
|
10833 |
+
proxy-from-env "^1.0.0"
|
10834 |
+
rimraf "^3.0.2"
|
10835 |
+
tar-fs "^2.0.0"
|
10836 |
+
unbzip2-stream "^1.3.3"
|
10837 |
+
ws "^7.2.3"
|
10838 |
+
|
10839 |
+
q@^1.1.2, q@^1.5.1:
|
10840 |
+
version "1.5.1"
|
10841 |
+
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
|
10842 |
+
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
|
10843 |
+
|
10844 |
+
qrcode-terminal@^0.12.0:
|
10845 |
+
version "0.12.0"
|
10846 |
+
resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819"
|
10847 |
+
integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==
|
10848 |
+
|
10849 |
+
qs@6.7.0:
|
10850 |
+
version "6.7.0"
|
10851 |
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
|
10852 |
+
integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
|
10853 |
+
|
10854 |
+
qs@^6.4.0:
|
10855 |
+
version "6.9.4"
|
10856 |
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687"
|
10857 |
+
integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==
|
10858 |
+
|
10859 |
+
qs@~6.5.2:
|
10860 |
+
version "6.5.2"
|
10861 |
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
|
10862 |
+
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
|
10863 |
+
|
10864 |
+
query-string@^4.1.0:
|
10865 |
+
version "4.3.4"
|
10866 |
+
resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
|
10867 |
+
integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
|
10868 |
+
dependencies:
|
10869 |
+
object-assign "^4.1.0"
|
10870 |
+
strict-uri-encode "^1.0.0"
|
10871 |
+
|
10872 |
+
query-string@^6.8.2:
|
10873 |
+
version "6.13.5"
|
10874 |
+
resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.13.5.tgz#99e95e2fb7021db90a6f373f990c0c814b3812d8"
|
10875 |
+
integrity sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==
|
10876 |
+
dependencies:
|
10877 |
+
decode-uri-component "^0.2.0"
|
10878 |
+
split-on-first "^1.0.0"
|
10879 |
+
strict-uri-encode "^2.0.0"
|
10880 |
+
|
10881 |
+
querystring-es3@^0.2.0:
|
10882 |
+
version "0.2.1"
|
10883 |
+
resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
|
10884 |
+
integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
|
10885 |
+
|
10886 |
+
querystring@0.2.0:
|
10887 |
+
version "0.2.0"
|
10888 |
+
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
10889 |
+
integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
|
10890 |
+
|
10891 |
+
quick-lru@^4.0.1:
|
10892 |
+
version "4.0.1"
|
10893 |
+
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
|
10894 |
+
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
|
10895 |
+
|
10896 |
+
qw@~1.0.1:
|
10897 |
+
version "1.0.1"
|
10898 |
+
resolved "https://registry.yarnpkg.com/qw/-/qw-1.0.1.tgz#efbfdc740f9ad054304426acb183412cc8b996d4"
|
10899 |
+
integrity sha1-77/cdA+a0FQwRCassYNBLMi5ltQ=
|
10900 |
+
|
10901 |
+
raf@^3.4.1:
|
10902 |
+
version "3.4.1"
|
10903 |
+
resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
|
10904 |
+
integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
|
10905 |
+
dependencies:
|
10906 |
+
performance-now "^2.1.0"
|
10907 |
+
|
10908 |
+
railroad-diagrams@^1.0.0:
|
10909 |
+
version "1.0.0"
|
10910 |
+
resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
|
10911 |
+
integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
|
10912 |
+
|
10913 |
+
ramda@~0.26.1:
|
10914 |
+
version "0.26.1"
|
10915 |
+
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06"
|
10916 |
+
integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==
|
10917 |
+
|
10918 |
+
randexp@0.4.6:
|
10919 |
+
version "0.4.6"
|
10920 |
+
resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
|
10921 |
+
integrity sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==
|
10922 |
+
dependencies:
|
10923 |
+
discontinuous-range "1.0.0"
|
10924 |
+
ret "~0.1.10"
|
10925 |
+
|
10926 |
+
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
|
10927 |
+
version "2.1.0"
|
10928 |
+
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
10929 |
+
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
|
10930 |
+
dependencies:
|
10931 |
+
safe-buffer "^5.1.0"
|
10932 |
+
|
10933 |
+
randomfill@^1.0.3:
|
10934 |
+
version "1.0.4"
|
10935 |
+
resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
|
10936 |
+
integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
|
10937 |
+
dependencies:
|
10938 |
+
randombytes "^2.0.5"
|
10939 |
+
safe-buffer "^5.1.0"
|
10940 |
+
|
10941 |
+
range-parser@~1.2.1:
|
10942 |
+
version "1.2.1"
|
10943 |
+
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
|
10944 |
+
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
|
10945 |
+
|
10946 |
+
raw-body@2.4.0:
|
10947 |
+
version "2.4.0"
|
10948 |
+
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
|
10949 |
+
integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
|
10950 |
+
dependencies:
|
10951 |
+
bytes "3.1.0"
|
10952 |
+
http-errors "1.7.2"
|
10953 |
+
iconv-lite "0.4.24"
|
10954 |
+
unpipe "1.0.0"
|
10955 |
+
|
10956 |
+
raw-body@~1.1.0:
|
10957 |
+
version "1.1.7"
|
10958 |
+
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425"
|
10959 |
+
integrity sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=
|
10960 |
+
dependencies:
|
10961 |
+
bytes "1"
|
10962 |
+
string_decoder "0.10"
|
10963 |
+
|
10964 |
+
rc@^1.0.1, rc@^1.1.6, rc@^1.2.8, rc@~1.2.7:
|
10965 |
+
version "1.2.8"
|
10966 |
+
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
|
10967 |
+
integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
|
10968 |
+
dependencies:
|
10969 |
+
deep-extend "^0.6.0"
|
10970 |
+
ini "~1.3.0"
|
10971 |
+
minimist "^1.2.0"
|
10972 |
+
strip-json-comments "~2.0.1"
|
10973 |
+
|
10974 |
+
react-dom@^16.13.1:
|
10975 |
+
version "16.13.1"
|
10976 |
+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
|
10977 |
+
integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==
|
10978 |
+
dependencies:
|
10979 |
+
loose-envify "^1.1.0"
|
10980 |
+
object-assign "^4.1.1"
|
10981 |
+
prop-types "^15.6.2"
|
10982 |
+
scheduler "^0.19.1"
|
10983 |
+
|
10984 |
+
react-is@^16.12.0, react-is@^16.13.1, react-is@^16.8.1, react-is@^16.8.6:
|
10985 |
+
version "16.13.1"
|
10986 |
+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
10987 |
+
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
10988 |
+
|
10989 |
+
react-test-renderer@^16.0.0-0:
|
10990 |
+
version "16.13.1"
|
10991 |
+
resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1"
|
10992 |
+
integrity sha512-Sn2VRyOK2YJJldOqoh8Tn/lWQ+ZiKhyZTPtaO0Q6yNj+QDbmRkVFap6pZPy3YQk8DScRDfyqm/KxKYP9gCMRiQ==
|
10993 |
+
dependencies:
|
10994 |
+
object-assign "^4.1.1"
|
10995 |
+
prop-types "^15.6.2"
|
10996 |
+
react-is "^16.8.6"
|
10997 |
+
scheduler "^0.19.1"
|
10998 |
+
|
10999 |
+
react-visibility-sensor@^5.1.1:
|
11000 |
+
version "5.1.1"
|
11001 |
+
resolved "https://registry.yarnpkg.com/react-visibility-sensor/-/react-visibility-sensor-5.1.1.tgz#5238380960d3a0b2be0b7faddff38541e337f5a9"
|
11002 |
+
integrity sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==
|
11003 |
+
dependencies:
|
11004 |
+
prop-types "^15.7.2"
|
11005 |
+
|
11006 |
+
react@^16.13.1:
|
11007 |
+
version "16.13.1"
|
11008 |
+
resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
|
11009 |
+
integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==
|
11010 |
+
dependencies:
|
11011 |
+
loose-envify "^1.1.0"
|
11012 |
+
object-assign "^4.1.1"
|
11013 |
+
prop-types "^15.6.2"
|
11014 |
+
|
11015 |
+
read-cmd-shim@^1.0.1, read-cmd-shim@^1.0.5:
|
11016 |
+
version "1.0.5"
|
11017 |
+
resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.5.tgz#87e43eba50098ba5a32d0ceb583ab8e43b961c16"
|
11018 |
+
integrity sha512-v5yCqQ/7okKoZZkBQUAfTsQ3sVJtXdNfbPnI5cceppoxEVLYA3k+VtV2omkeo8MS94JCy4fSiUwlRBAwCVRPUA==
|
11019 |
+
dependencies:
|
11020 |
+
graceful-fs "^4.1.2"
|
11021 |
+
|
11022 |
+
read-installed@~4.0.3:
|
11023 |
+
version "4.0.3"
|
11024 |
+
resolved "https://registry.yarnpkg.com/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067"
|
11025 |
+
integrity sha1-/5uLZ/GH0eTCm5/rMfayI6zRkGc=
|
11026 |
+
dependencies:
|
11027 |
+
debuglog "^1.0.1"
|
11028 |
+
read-package-json "^2.0.0"
|
11029 |
+
readdir-scoped-modules "^1.0.0"
|
11030 |
+
semver "2 || 3 || 4 || 5"
|
11031 |
+
slide "~1.1.3"
|
11032 |
+
util-extend "^1.0.1"
|
11033 |
+
optionalDependencies:
|
11034 |
+
graceful-fs "^4.1.2"
|
11035 |
+
|
11036 |
+
"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13, read-package-json@^2.1.1:
|
11037 |
+
version "2.1.2"
|
11038 |
+
resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a"
|
11039 |
+
integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==
|
11040 |
+
dependencies:
|
11041 |
+
glob "^7.1.1"
|
11042 |
+
json-parse-even-better-errors "^2.3.0"
|
11043 |
+
normalize-package-data "^2.0.0"
|
11044 |
+
npm-normalize-package-bin "^1.0.0"
|
11045 |
+
|
11046 |
+
read-package-tree@^5.3.1:
|
11047 |
+
version "5.3.1"
|
11048 |
+
resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.3.1.tgz#a32cb64c7f31eb8a6f31ef06f9cedf74068fe636"
|
11049 |
+
integrity sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==
|
11050 |
+
dependencies:
|
11051 |
+
read-package-json "^2.0.0"
|
11052 |
+
readdir-scoped-modules "^1.0.0"
|
11053 |
+
util-promisify "^2.1.0"
|
11054 |
+
|
11055 |
+
read-pkg-up@^1.0.1:
|
11056 |
+
version "1.0.1"
|
11057 |
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
|
11058 |
+
integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=
|
11059 |
+
dependencies:
|
11060 |
+
find-up "^1.0.0"
|
11061 |
+
read-pkg "^1.0.0"
|
11062 |
+
|
11063 |
+
read-pkg-up@^2.0.0:
|
11064 |
+
version "2.0.0"
|
11065 |
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
|
11066 |
+
integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
|
11067 |
+
dependencies:
|
11068 |
+
find-up "^2.0.0"
|
11069 |
+
read-pkg "^2.0.0"
|
11070 |
+
|
11071 |
+
read-pkg-up@^7.0.0, read-pkg-up@^7.0.1:
|
11072 |
+
version "7.0.1"
|
11073 |
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
|
11074 |
+
integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
|
11075 |
+
dependencies:
|
11076 |
+
find-up "^4.1.0"
|
11077 |
+
read-pkg "^5.2.0"
|
11078 |
+
type-fest "^0.8.1"
|
11079 |
+
|
11080 |
+
read-pkg@^1.0.0:
|
11081 |
+
version "1.1.0"
|
11082 |
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
|
11083 |
+
integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=
|
11084 |
+
dependencies:
|
11085 |
+
load-json-file "^1.0.0"
|
11086 |
+
normalize-package-data "^2.3.2"
|
11087 |
+
path-type "^1.0.0"
|
11088 |
+
|
11089 |
+
read-pkg@^2.0.0:
|
11090 |
+
version "2.0.0"
|
11091 |
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
|
11092 |
+
integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
|
11093 |
+
dependencies:
|
11094 |
+
load-json-file "^2.0.0"
|
11095 |
+
normalize-package-data "^2.3.2"
|
11096 |
+
path-type "^2.0.0"
|
11097 |
+
|
11098 |
+
read-pkg@^3.0.0:
|
11099 |
+
version "3.0.0"
|
11100 |
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
|
11101 |
+
integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
|
11102 |
+
dependencies:
|
11103 |
+
load-json-file "^4.0.0"
|
11104 |
+
normalize-package-data "^2.3.2"
|
11105 |
+
path-type "^3.0.0"
|
11106 |
+
|
11107 |
+
read-pkg@^5.0.0, read-pkg@^5.2.0:
|
11108 |
+
version "5.2.0"
|
11109 |
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
|
11110 |
+
integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
|
11111 |
+
dependencies:
|
11112 |
+
"@types/normalize-package-data" "^2.4.0"
|
11113 |
+
normalize-package-data "^2.5.0"
|
11114 |
+
parse-json "^5.0.0"
|
11115 |
+
type-fest "^0.6.0"
|
11116 |
+
|
11117 |
+
read@1, read@~1.0.1, read@~1.0.7:
|
11118 |
+
version "1.0.7"
|
11119 |
+
resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4"
|
11120 |
+
integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=
|
11121 |
+
dependencies:
|
11122 |
+
mute-stream "~0.0.4"
|
11123 |
+
|
11124 |
+
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
|
11125 |
+
version "2.3.7"
|
11126 |
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
|
11127 |
+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
|
11128 |
+
dependencies:
|
11129 |
+
core-util-is "~1.0.0"
|
11130 |
+
inherits "~2.0.3"
|
11131 |
+
isarray "~1.0.0"
|
11132 |
+
process-nextick-args "~2.0.0"
|
11133 |
+
safe-buffer "~5.1.1"
|
11134 |
+
string_decoder "~1.1.1"
|
11135 |
+
util-deprecate "~1.0.1"
|
11136 |
+
|
11137 |
+
"readable-stream@2 || 3", readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0:
|
11138 |
+
version "3.6.0"
|
11139 |
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
|
11140 |
+
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
|
11141 |
+
dependencies:
|
11142 |
+
inherits "^2.0.3"
|
11143 |
+
string_decoder "^1.1.1"
|
11144 |
+
util-deprecate "^1.0.1"
|
11145 |
+
|
11146 |
+
readable-stream@~1.1.10:
|
11147 |
+
version "1.1.14"
|
11148 |
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
|
11149 |
+
integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk=
|
11150 |
+
dependencies:
|
11151 |
+
core-util-is "~1.0.0"
|
11152 |
+
inherits "~2.0.1"
|
11153 |
+
isarray "0.0.1"
|
11154 |
+
string_decoder "~0.10.x"
|
11155 |
+
|
11156 |
+
readdir-scoped-modules@^1.0.0, readdir-scoped-modules@^1.1.0:
|
11157 |
+
version "1.1.0"
|
11158 |
+
resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309"
|
11159 |
+
integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==
|
11160 |
+
dependencies:
|
11161 |
+
debuglog "^1.0.1"
|
11162 |
+
dezalgo "^1.0.0"
|
11163 |
+
graceful-fs "^4.1.2"
|
11164 |
+
once "^1.3.0"
|
11165 |
+
|
11166 |
+
readdirp@^2.2.1:
|
11167 |
+
version "2.2.1"
|
11168 |
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
|
11169 |
+
integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
|
11170 |
+
dependencies:
|
11171 |
+
graceful-fs "^4.1.11"
|
11172 |
+
micromatch "^3.1.10"
|
11173 |
+
readable-stream "^2.0.2"
|
11174 |
+
|
11175 |
+
readdirp@~3.4.0:
|
11176 |
+
version "3.4.0"
|
11177 |
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada"
|
11178 |
+
integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==
|
11179 |
+
dependencies:
|
11180 |
+
picomatch "^2.2.1"
|
11181 |
+
|
11182 |
+
realpath-native@^2.0.0:
|
11183 |
+
version "2.0.0"
|
11184 |
+
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866"
|
11185 |
+
integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==
|
11186 |
+
|
11187 |
+
rechoir@^0.6.2:
|
11188 |
+
version "0.6.2"
|
11189 |
+
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
11190 |
+
integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
|
11191 |
+
dependencies:
|
11192 |
+
resolve "^1.1.6"
|
11193 |
+
|
11194 |
+
redent@^1.0.0:
|
11195 |
+
version "1.0.0"
|
11196 |
+
resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
|
11197 |
+
integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=
|
11198 |
+
dependencies:
|
11199 |
+
indent-string "^2.1.0"
|
11200 |
+
strip-indent "^1.0.1"
|
11201 |
+
|
11202 |
+
redent@^3.0.0:
|
11203 |
+
version "3.0.0"
|
11204 |
+
resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
|
11205 |
+
integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
|
11206 |
+
dependencies:
|
11207 |
+
indent-string "^4.0.0"
|
11208 |
+
strip-indent "^3.0.0"
|
11209 |
+
|
11210 |
+
redeyed@~2.1.0:
|
11211 |
+
version "2.1.1"
|
11212 |
+
resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b"
|
11213 |
+
integrity sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=
|
11214 |
+
dependencies:
|
11215 |
+
esprima "~4.0.0"
|
11216 |
+
|
11217 |
+
reflect.ownkeys@^0.2.0:
|
11218 |
+
version "0.2.0"
|
11219 |
+
resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
|
11220 |
+
integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
|
11221 |
+
|
11222 |
+
regenerate-unicode-properties@^8.2.0:
|
11223 |
+
version "8.2.0"
|
11224 |
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
|
11225 |
+
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
|
11226 |
+
dependencies:
|
11227 |
+
regenerate "^1.4.0"
|
11228 |
+
|
11229 |
+
regenerate@^1.4.0:
|
11230 |
+
version "1.4.1"
|
11231 |
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
|
11232 |
+
integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
|
11233 |
+
|
11234 |
+
regenerator-runtime@^0.13.4:
|
11235 |
+
version "0.13.7"
|
11236 |
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
|
11237 |
+
integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
|
11238 |
+
|
11239 |
+
regenerator-transform@^0.14.2:
|
11240 |
+
version "0.14.5"
|
11241 |
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
|
11242 |
+
integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
|
11243 |
+
dependencies:
|
11244 |
+
"@babel/runtime" "^7.8.4"
|
11245 |
+
|
11246 |
+
regex-not@^1.0.0, regex-not@^1.0.2:
|
11247 |
+
version "1.0.2"
|
11248 |
+
resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
|
11249 |
+
integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
|
11250 |
+
dependencies:
|
11251 |
+
extend-shallow "^3.0.2"
|
11252 |
+
safe-regex "^1.1.0"
|
11253 |
+
|
11254 |
+
regexp.prototype.flags@^1.3.0:
|
11255 |
+
version "1.3.0"
|
11256 |
+
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"
|
11257 |
+
integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==
|
11258 |
+
dependencies:
|
11259 |
+
define-properties "^1.1.3"
|
11260 |
+
es-abstract "^1.17.0-next.1"
|
11261 |
+
|
11262 |
+
regexpp@^3.1.0:
|
11263 |
+
version "3.1.0"
|
11264 |
+
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
|
11265 |
+
integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
|
11266 |
+
|
11267 |
+
regexpu-core@^4.7.0:
|
11268 |
+
version "4.7.1"
|
11269 |
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
|
11270 |
+
integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
|
11271 |
+
dependencies:
|
11272 |
+
regenerate "^1.4.0"
|
11273 |
+
regenerate-unicode-properties "^8.2.0"
|
11274 |
+
regjsgen "^0.5.1"
|
11275 |
+
regjsparser "^0.6.4"
|
11276 |
+
unicode-match-property-ecmascript "^1.0.4"
|
11277 |
+
unicode-match-property-value-ecmascript "^1.2.0"
|
11278 |
+
|
11279 |
+
regextras@^0.7.1:
|
11280 |
+
version "0.7.1"
|
11281 |
+
resolved "https://registry.yarnpkg.com/regextras/-/regextras-0.7.1.tgz#be95719d5f43f9ef0b9fa07ad89b7c606995a3b2"
|
11282 |
+
integrity sha512-9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w==
|
11283 |
+
|
11284 |
+
registry-auth-token@^3.0.1:
|
11285 |
+
version "3.4.0"
|
11286 |
+
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e"
|
11287 |
+
integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==
|
11288 |
+
dependencies:
|
11289 |
+
rc "^1.1.6"
|
11290 |
+
safe-buffer "^5.0.1"
|
11291 |
+
|
11292 |
+
registry-auth-token@^4.0.0:
|
11293 |
+
version "4.2.0"
|
11294 |
+
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.0.tgz#1d37dffda72bbecd0f581e4715540213a65eb7da"
|
11295 |
+
integrity sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==
|
11296 |
+
dependencies:
|
11297 |
+
rc "^1.2.8"
|
11298 |
+
|
11299 |
+
registry-url@^3.0.3:
|
11300 |
+
version "3.1.0"
|
11301 |
+
resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
|
11302 |
+
integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI=
|
11303 |
+
dependencies:
|
11304 |
+
rc "^1.0.1"
|
11305 |
+
|
11306 |
+
regjsgen@^0.5.1:
|
11307 |
+
version "0.5.2"
|
11308 |
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
|
11309 |
+
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
|
11310 |
+
|
11311 |
+
regjsparser@^0.6.4:
|
11312 |
+
version "0.6.4"
|
11313 |
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
|
11314 |
+
integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
|
11315 |
+
dependencies:
|
11316 |
+
jsesc "~0.5.0"
|
11317 |
+
|
11318 |
+
remark-parse@^5.0.0:
|
11319 |
+
version "5.0.0"
|
11320 |
+
resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95"
|
11321 |
+
integrity sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==
|
11322 |
+
dependencies:
|
11323 |
+
collapse-white-space "^1.0.2"
|
11324 |
+
is-alphabetical "^1.0.0"
|
11325 |
+
is-decimal "^1.0.0"
|
11326 |
+
is-whitespace-character "^1.0.0"
|
11327 |
+
is-word-character "^1.0.0"
|
11328 |
+
markdown-escapes "^1.0.0"
|
11329 |
+
parse-entities "^1.1.0"
|
11330 |
+
repeat-string "^1.5.4"
|
11331 |
+
state-toggle "^1.0.0"
|
11332 |
+
trim "0.0.1"
|
11333 |
+
trim-trailing-lines "^1.0.0"
|
11334 |
+
unherit "^1.0.4"
|
11335 |
+
unist-util-remove-position "^1.0.0"
|
11336 |
+
vfile-location "^2.0.0"
|
11337 |
+
xtend "^4.0.1"
|
11338 |
+
|
11339 |
+
remark-parse@^8.0.0:
|
11340 |
+
version "8.0.3"
|
11341 |
+
resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1"
|
11342 |
+
integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
|
11343 |
+
dependencies:
|
11344 |
+
ccount "^1.0.0"
|
11345 |
+
collapse-white-space "^1.0.2"
|
11346 |
+
is-alphabetical "^1.0.0"
|
11347 |
+
is-decimal "^1.0.0"
|
11348 |
+
is-whitespace-character "^1.0.0"
|
11349 |
+
is-word-character "^1.0.0"
|
11350 |
+
markdown-escapes "^1.0.0"
|
11351 |
+
parse-entities "^2.0.0"
|
11352 |
+
repeat-string "^1.5.4"
|
11353 |
+
state-toggle "^1.0.0"
|
11354 |
+
trim "0.0.1"
|
11355 |
+
trim-trailing-lines "^1.0.0"
|
11356 |
+
unherit "^1.0.4"
|
11357 |
+
unist-util-remove-position "^2.0.0"
|
11358 |
+
vfile-location "^3.0.0"
|
11359 |
+
xtend "^4.0.1"
|
11360 |
+
|
11361 |
+
remark-stringify@^8.0.0:
|
11362 |
+
version "8.1.1"
|
11363 |
+
resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-8.1.1.tgz#e2a9dc7a7bf44e46a155ec78996db896780d8ce5"
|
11364 |
+
integrity sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==
|
11365 |
+
dependencies:
|
11366 |
+
ccount "^1.0.0"
|
11367 |
+
is-alphanumeric "^1.0.0"
|
11368 |
+
is-decimal "^1.0.0"
|
11369 |
+
is-whitespace-character "^1.0.0"
|
11370 |
+
longest-streak "^2.0.1"
|
11371 |
+
markdown-escapes "^1.0.0"
|
11372 |
+
markdown-table "^2.0.0"
|
11373 |
+
mdast-util-compact "^2.0.0"
|
11374 |
+
parse-entities "^2.0.0"
|
11375 |
+
repeat-string "^1.5.4"
|
11376 |
+
state-toggle "^1.0.0"
|
11377 |
+
stringify-entities "^3.0.0"
|
11378 |
+
unherit "^1.0.4"
|
11379 |
+
xtend "^4.0.1"
|
11380 |
+
|
11381 |
+
remark@^12.0.0:
|
11382 |
+
version "12.0.1"
|
11383 |
+
resolved "https://registry.yarnpkg.com/remark/-/remark-12.0.1.tgz#f1ddf68db7be71ca2bad0a33cd3678b86b9c709f"
|
11384 |
+
integrity sha512-gS7HDonkdIaHmmP/+shCPejCEEW+liMp/t/QwmF0Xt47Rpuhl32lLtDV1uKWvGoq+kxr5jSgg5oAIpGuyULjUw==
|
11385 |
+
dependencies:
|
11386 |
+
remark-parse "^8.0.0"
|
11387 |
+
remark-stringify "^8.0.0"
|
11388 |
+
unified "^9.0.0"
|
11389 |
+
|
11390 |
+
remove-trailing-separator@^1.0.1:
|
11391 |
+
version "1.1.0"
|
11392 |
+
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
|
11393 |
+
integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
|
11394 |
+
|
11395 |
+
repeat-element@^1.1.2:
|
11396 |
+
version "1.1.3"
|
11397 |
+
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
|
11398 |
+
integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
|
11399 |
+
|
11400 |
+
repeat-string@^1.0.0, repeat-string@^1.5.4, repeat-string@^1.6.1:
|
11401 |
+
version "1.6.1"
|
11402 |
+
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
11403 |
+
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
11404 |
+
|
11405 |
+
repeating@^2.0.0:
|
11406 |
+
version "2.0.1"
|
11407 |
+
resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
|
11408 |
+
integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
|
11409 |
+
dependencies:
|
11410 |
+
is-finite "^1.0.0"
|
11411 |
+
|
11412 |
+
replace-ext@1.0.0:
|
11413 |
+
version "1.0.0"
|
11414 |
+
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
|
11415 |
+
integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
|
11416 |
+
|
11417 |
+
replace-in-file@^6.1.0:
|
11418 |
+
version "6.1.0"
|
11419 |
+
resolved "https://registry.yarnpkg.com/replace-in-file/-/replace-in-file-6.1.0.tgz#9f9ddd7bb70d6ad231d2ad692e1b646e73d06647"
|
11420 |
+
integrity sha512-URzjyF3nucvejuY13HFd7O+Q6tFJRLKGHLYVvSh+LiZj3gFXzSYGnIkQflnJJulCAI2/RTZaZkpOtdVdW0EhQA==
|
11421 |
+
dependencies:
|
11422 |
+
chalk "^4.0.0"
|
11423 |
+
glob "^7.1.6"
|
11424 |
+
yargs "^15.3.1"
|
11425 |
+
|
11426 |
+
request-progress@^3.0.0:
|
11427 |
+
version "3.0.0"
|
11428 |
+
resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe"
|
11429 |
+
integrity sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=
|
11430 |
+
dependencies:
|
11431 |
+
throttleit "^1.0.0"
|
11432 |
+
|
11433 |
+
request-promise-core@1.1.4:
|
11434 |
+
version "1.1.4"
|
11435 |
+
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
|
11436 |
+
integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
|
11437 |
+
dependencies:
|
11438 |
+
lodash "^4.17.19"
|
11439 |
+
|
11440 |
+
request-promise-native@^1.0.7:
|
11441 |
+
version "1.0.9"
|
11442 |
+
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
|
11443 |
+
integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
|
11444 |
+
dependencies:
|
11445 |
+
request-promise-core "1.1.4"
|
11446 |
+
stealthy-require "^1.1.1"
|
11447 |
+
tough-cookie "^2.3.3"
|
11448 |
+
|
11449 |
+
request@^2.87.0, request@^2.88.0:
|
11450 |
+
version "2.88.2"
|
11451 |
+
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
|
11452 |
+
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
|
11453 |
+
dependencies:
|
11454 |
+
aws-sign2 "~0.7.0"
|
11455 |
+
aws4 "^1.8.0"
|
11456 |
+
caseless "~0.12.0"
|
11457 |
+
combined-stream "~1.0.6"
|
11458 |
+
extend "~3.0.2"
|
11459 |
+
forever-agent "~0.6.1"
|
11460 |
+
form-data "~2.3.2"
|
11461 |
+
har-validator "~5.1.3"
|
11462 |
+
http-signature "~1.2.0"
|
11463 |
+
is-typedarray "~1.0.0"
|
11464 |
+
isstream "~0.1.2"
|
11465 |
+
json-stringify-safe "~5.0.1"
|
11466 |
+
mime-types "~2.1.19"
|
11467 |
+
oauth-sign "~0.9.0"
|
11468 |
+
performance-now "^2.1.0"
|
11469 |
+
qs "~6.5.2"
|
11470 |
+
safe-buffer "^5.1.2"
|
11471 |
+
tough-cookie "~2.5.0"
|
11472 |
+
tunnel-agent "^0.6.0"
|
11473 |
+
uuid "^3.3.2"
|
11474 |
+
|
11475 |
+
require-directory@^2.1.1:
|
11476 |
+
version "2.1.1"
|
11477 |
+
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
11478 |
+
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
11479 |
+
|
11480 |
+
require-main-filename@^1.0.1:
|
11481 |
+
version "1.0.1"
|
11482 |
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
11483 |
+
integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
|
11484 |
+
|
11485 |
+
require-main-filename@^2.0.0:
|
11486 |
+
version "2.0.0"
|
11487 |
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
11488 |
+
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
11489 |
+
|
11490 |
+
requireindex@^1.2.0:
|
11491 |
+
version "1.2.0"
|
11492 |
+
resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef"
|
11493 |
+
integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==
|
11494 |
+
|
11495 |
+
resolve-bin@^0.4.0:
|
11496 |
+
version "0.4.0"
|
11497 |
+
resolved "https://registry.yarnpkg.com/resolve-bin/-/resolve-bin-0.4.0.tgz#47132249891101afb19991fe937cb0a5f072e5d9"
|
11498 |
+
integrity sha1-RxMiSYkRAa+xmZH+k3ywpfBy5dk=
|
11499 |
+
dependencies:
|
11500 |
+
find-parent-dir "~0.3.0"
|
11501 |
+
|
11502 |
+
resolve-cwd@^2.0.0:
|
11503 |
+
version "2.0.0"
|
11504 |
+
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
|
11505 |
+
integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
|
11506 |
+
dependencies:
|
11507 |
+
resolve-from "^3.0.0"
|
11508 |
+
|
11509 |
+
resolve-cwd@^3.0.0:
|
11510 |
+
version "3.0.0"
|
11511 |
+
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
|
11512 |
+
integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
|
11513 |
+
dependencies:
|
11514 |
+
resolve-from "^5.0.0"
|
11515 |
+
|
11516 |
+
resolve-dir@^0.1.0:
|
11517 |
+
version "0.1.1"
|
11518 |
+
resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e"
|
11519 |
+
integrity sha1-shklmlYC+sXFxJatiUpujMQwJh4=
|
11520 |
+
dependencies:
|
11521 |
+
expand-tilde "^1.2.2"
|
11522 |
+
global-modules "^0.2.3"
|
11523 |
+
|
11524 |
+
resolve-dir@^1.0.0, resolve-dir@^1.0.1:
|
11525 |
+
version "1.0.1"
|
11526 |
+
resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
|
11527 |
+
integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=
|
11528 |
+
dependencies:
|
11529 |
+
expand-tilde "^2.0.0"
|
11530 |
+
global-modules "^1.0.0"
|
11531 |
+
|
11532 |
+
resolve-from@^3.0.0:
|
11533 |
+
version "3.0.0"
|
11534 |
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
|
11535 |
+
integrity sha1-six699nWiBvItuZTM17rywoYh0g=
|
11536 |
+
|
11537 |
+
resolve-from@^4.0.0:
|
11538 |
+
version "4.0.0"
|
11539 |
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
11540 |
+
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
11541 |
+
|
11542 |
+
resolve-from@^5.0.0:
|
11543 |
+
version "5.0.0"
|
11544 |
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
|
11545 |
+
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
|
11546 |
+
|
11547 |
+
resolve-url@^0.2.1:
|
11548 |
+
version "0.2.1"
|
11549 |
+
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
11550 |
+
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
11551 |
+
|
11552 |
+
resolve@1.1.7:
|
11553 |
+
version "1.1.7"
|
11554 |
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
11555 |
+
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
11556 |
+
|
11557 |
+
resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1:
|
11558 |
+
version "1.17.0"
|
11559 |
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
|
11560 |
+
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
|
11561 |
+
dependencies:
|
11562 |
+
path-parse "^1.0.6"
|
11563 |
+
|
11564 |
+
restore-cursor@^1.0.1:
|
11565 |
+
version "1.0.1"
|
11566 |
+
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
|
11567 |
+
integrity sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=
|
11568 |
+
dependencies:
|
11569 |
+
exit-hook "^1.0.0"
|
11570 |
+
onetime "^1.0.0"
|
11571 |
+
|
11572 |
+
restore-cursor@^2.0.0:
|
11573 |
+
version "2.0.0"
|
11574 |
+
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
11575 |
+
integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
|
11576 |
+
dependencies:
|
11577 |
+
onetime "^2.0.0"
|
11578 |
+
signal-exit "^3.0.2"
|
11579 |
+
|
11580 |
+
ret@~0.1.10:
|
11581 |
+
version "0.1.15"
|
11582 |
+
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
11583 |
+
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
|
11584 |
+
|
11585 |
+
retry@^0.10.0:
|
11586 |
+
version "0.10.1"
|
11587 |
+
resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
|
11588 |
+
integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=
|
11589 |
+
|
11590 |
+
retry@^0.12.0:
|
11591 |
+
version "0.12.0"
|
11592 |
+
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
|
11593 |
+
integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
|
11594 |
+
|
11595 |
+
reusify@^1.0.4:
|
11596 |
+
version "1.0.4"
|
11597 |
+
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
|
11598 |
+
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
|
11599 |
+
|
11600 |
+
rimraf@2, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
|
11601 |
+
version "2.7.1"
|
11602 |
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
|
11603 |
+
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
|
11604 |
+
dependencies:
|
11605 |
+
glob "^7.1.3"
|
11606 |
+
|
11607 |
+
rimraf@2.6.3:
|
11608 |
+
version "2.6.3"
|
11609 |
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
|
11610 |
+
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
|
11611 |
+
dependencies:
|
11612 |
+
glob "^7.1.3"
|
11613 |
+
|
11614 |
+
rimraf@^3.0.0, rimraf@^3.0.2, rimraf@~3.0.2:
|
11615 |
+
version "3.0.2"
|
11616 |
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
|
11617 |
+
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
|
11618 |
+
dependencies:
|
11619 |
+
glob "^7.1.3"
|
11620 |
+
|
11621 |
+
ripemd160@^2.0.0, ripemd160@^2.0.1:
|
11622 |
+
version "2.0.2"
|
11623 |
+
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
|
11624 |
+
integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
|
11625 |
+
dependencies:
|
11626 |
+
hash-base "^3.0.0"
|
11627 |
+
inherits "^2.0.1"
|
11628 |
+
|
11629 |
+
rst-selector-parser@^2.2.3:
|
11630 |
+
version "2.2.3"
|
11631 |
+
resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91"
|
11632 |
+
integrity sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=
|
11633 |
+
dependencies:
|
11634 |
+
lodash.flattendeep "^4.4.0"
|
11635 |
+
nearley "^2.7.10"
|
11636 |
+
|
11637 |
+
rsvp@^4.8.4:
|
11638 |
+
version "4.8.5"
|
11639 |
+
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
|
11640 |
+
integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
|
11641 |
+
|
11642 |
+
rtlcss@^2.6.0:
|
11643 |
+
version "2.6.0"
|
11644 |
+
resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-2.6.0.tgz#2c4fa65bb02d23479c291cad51fc07accd9242e5"
|
11645 |
+
integrity sha512-eRctJtYmVFgCUeGMm6uzrJE0P/1ipuaKHY9TaksDt+UZ7SLMVoatQZePPFAJeSNJ8eh3QJ/ROb44bl0wgaXksQ==
|
11646 |
+
dependencies:
|
11647 |
+
chalk "^2.4.2"
|
11648 |
+
findup "^0.1.5"
|
11649 |
+
mkdirp "^0.5.1"
|
11650 |
+
postcss "^6.0.23"
|
11651 |
+
strip-json-comments "^2.0.0"
|
11652 |
+
|
11653 |
+
run-parallel@^1.1.4, run-parallel@^1.1.9:
|
11654 |
+
version "1.1.9"
|
11655 |
+
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
|
11656 |
+
integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
|
11657 |
+
|
11658 |
+
run-queue@^1.0.0, run-queue@^1.0.3:
|
11659 |
+
version "1.0.3"
|
11660 |
+
resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
|
11661 |
+
integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
|
11662 |
+
dependencies:
|
11663 |
+
aproba "^1.1.1"
|
11664 |
+
|
11665 |
+
rx@^4.1.0:
|
11666 |
+
version "4.1.0"
|
11667 |
+
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
|
11668 |
+
integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=
|
11669 |
+
|
11670 |
+
rxjs@^6.3.3:
|
11671 |
+
version "6.6.3"
|
11672 |
+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
|
11673 |
+
integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
|
11674 |
+
dependencies:
|
11675 |
+
tslib "^1.9.0"
|
11676 |
+
|
11677 |
+
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
11678 |
+
version "5.1.2"
|
11679 |
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
11680 |
+
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
|
11681 |
+
|
11682 |
+
safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
|
11683 |
+
version "5.2.1"
|
11684 |
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
11685 |
+
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
11686 |
+
|
11687 |
+
safe-json-parse@~1.0.1:
|
11688 |
+
version "1.0.1"
|
11689 |
+
resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"
|
11690 |
+
integrity sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=
|
11691 |
+
|
11692 |
+
safe-regex@^1.1.0:
|
11693 |
+
version "1.1.0"
|
11694 |
+
resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
|
11695 |
+
integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
|
11696 |
+
dependencies:
|
11697 |
+
ret "~0.1.10"
|
11698 |
+
|
11699 |
+
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
|
11700 |
+
version "2.1.2"
|
11701 |
+
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
11702 |
+
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
11703 |
+
|
11704 |
+
sane@^4.0.3:
|
11705 |
+
version "4.1.0"
|
11706 |
+
resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
|
11707 |
+
integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
|
11708 |
+
dependencies:
|
11709 |
+
"@cnakazawa/watch" "^1.0.3"
|
11710 |
+
anymatch "^2.0.0"
|
11711 |
+
capture-exit "^2.0.0"
|
11712 |
+
exec-sh "^0.3.2"
|
11713 |
+
execa "^1.0.0"
|
11714 |
+
fb-watchman "^2.0.0"
|
11715 |
+
micromatch "^3.1.4"
|
11716 |
+
minimist "^1.1.1"
|
11717 |
+
walker "~1.0.5"
|
11718 |
+
|
11719 |
+
sass-graph@2.2.5:
|
11720 |
+
version "2.2.5"
|
11721 |
+
resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8"
|
11722 |
+
integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==
|
11723 |
+
dependencies:
|
11724 |
+
glob "^7.0.0"
|
11725 |
+
lodash "^4.0.0"
|
11726 |
+
scss-tokenizer "^0.2.3"
|
11727 |
+
yargs "^13.3.2"
|
11728 |
+
|
11729 |
+
sass-loader@^8.0.2:
|
11730 |
+
version "8.0.2"
|
11731 |
+
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d"
|
11732 |
+
integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
|
11733 |
+
dependencies:
|
11734 |
+
clone-deep "^4.0.1"
|
11735 |
+
loader-utils "^1.2.3"
|
11736 |
+
neo-async "^2.6.1"
|
11737 |
+
schema-utils "^2.6.1"
|
11738 |
+
semver "^6.3.0"
|
11739 |
+
|
11740 |
+
sax@~1.2.4:
|
11741 |
+
version "1.2.4"
|
11742 |
+
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
11743 |
+
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
11744 |
+
|
11745 |
+
saxes@^3.1.9:
|
11746 |
+
version "3.1.11"
|
11747 |
+
resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b"
|
11748 |
+
integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
|
11749 |
+
dependencies:
|
11750 |
+
xmlchars "^2.1.1"
|
11751 |
+
|
11752 |
+
scheduler@^0.19.1:
|
11753 |
+
version "0.19.1"
|
11754 |
+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
|
11755 |
+
integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
|
11756 |
+
dependencies:
|
11757 |
+
loose-envify "^1.1.0"
|
11758 |
+
object-assign "^4.1.1"
|
11759 |
+
|
11760 |
+
schema-utils@^1.0.0:
|
11761 |
+
version "1.0.0"
|
11762 |
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
|
11763 |
+
integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
|
11764 |
+
dependencies:
|
11765 |
+
ajv "^6.1.0"
|
11766 |
+
ajv-errors "^1.0.0"
|
11767 |
+
ajv-keywords "^3.1.0"
|
11768 |
+
|
11769 |
+
schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
|
11770 |
+
version "2.7.1"
|
11771 |
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
|
11772 |
+
integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
|
11773 |
+
dependencies:
|
11774 |
+
"@types/json-schema" "^7.0.5"
|
11775 |
+
ajv "^6.12.4"
|
11776 |
+
ajv-keywords "^3.5.2"
|
11777 |
+
|
11778 |
+
scss-tokenizer@^0.2.3:
|
11779 |
+
version "0.2.3"
|
11780 |
+
resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
|
11781 |
+
integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE=
|
11782 |
+
dependencies:
|
11783 |
+
js-base64 "^2.1.8"
|
11784 |
+
source-map "^0.4.2"
|
11785 |
+
|
11786 |
+
semantic-release@^17.0.8:
|
11787 |
+
version "17.1.2"
|
11788 |
+
resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-17.1.2.tgz#7d77555185722012b34e3ca74e4d13f813daf3cd"
|
11789 |
+
integrity sha512-szYBXm10QjQO5Tb1S2PSkvOBW3MajWJat5EWtx+MzaVT/jquuxf9o+Zn8FC1j157xvJ5p9r1d/MZGslgs7oQQg==
|
11790 |
+
dependencies:
|
11791 |
+
"@semantic-release/commit-analyzer" "^8.0.0"
|
11792 |
+
"@semantic-release/error" "^2.2.0"
|
11793 |
+
"@semantic-release/github" "^7.0.0"
|
11794 |
+
"@semantic-release/npm" "^7.0.0"
|
11795 |
+
"@semantic-release/release-notes-generator" "^9.0.0"
|
11796 |
+
aggregate-error "^3.0.0"
|
11797 |
+
cosmiconfig "^6.0.0"
|
11798 |
+
debug "^4.0.0"
|
11799 |
+
env-ci "^5.0.0"
|
11800 |
+
execa "^4.0.0"
|
11801 |
+
figures "^3.0.0"
|
11802 |
+
find-versions "^3.0.0"
|
11803 |
+
get-stream "^5.0.0"
|
11804 |
+
git-log-parser "^1.2.0"
|
11805 |
+
hook-std "^2.0.0"
|
11806 |
+
hosted-git-info "^3.0.0"
|
11807 |
+
lodash "^4.17.15"
|
11808 |
+
marked "^1.0.0"
|
11809 |
+
marked-terminal "^4.0.0"
|
11810 |
+
micromatch "^4.0.2"
|
11811 |
+
p-each-series "^2.1.0"
|
11812 |
+
p-reduce "^2.0.0"
|
11813 |
+
read-pkg-up "^7.0.0"
|
11814 |
+
resolve-from "^5.0.0"
|
11815 |
+
semver "^7.3.2"
|
11816 |
+
semver-diff "^3.1.1"
|
11817 |
+
signale "^1.2.1"
|
11818 |
+
yargs "^15.0.1"
|
11819 |
+
|
11820 |
+
semver-diff@^2.0.0:
|
11821 |
+
version "2.1.0"
|
11822 |
+
resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
|
11823 |
+
integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=
|
11824 |
+
dependencies:
|
11825 |
+
semver "^5.0.3"
|
11826 |
+
|
11827 |
+
semver-diff@^3.1.1:
|
11828 |
+
version "3.1.1"
|
11829 |
+
resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b"
|
11830 |
+
integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==
|
11831 |
+
dependencies:
|
11832 |
+
semver "^6.3.0"
|
11833 |
+
|
11834 |
+
semver-regex@^2.0.0:
|
11835 |
+
version "2.0.0"
|
11836 |
+
resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
|
11837 |
+
integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
|
11838 |
+
|
11839 |
+
"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
|
11840 |
+
version "5.7.1"
|
11841 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
11842 |
+
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
11843 |
+
|
11844 |
+
semver@7.0.0:
|
11845 |
+
version "7.0.0"
|
11846 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
11847 |
+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
11848 |
+
|
11849 |
+
semver@^6.0.0, semver@^6.3.0:
|
11850 |
+
version "6.3.0"
|
11851 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
11852 |
+
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
11853 |
+
|
11854 |
+
semver@^7.1.2, semver@^7.2.1, semver@^7.3.2:
|
11855 |
+
version "7.3.2"
|
11856 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
|
11857 |
+
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
|
11858 |
+
|
11859 |
+
semver@~5.3.0:
|
11860 |
+
version "5.3.0"
|
11861 |
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
11862 |
+
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
11863 |
+
|
11864 |
+
send@0.17.1:
|
11865 |
+
version "0.17.1"
|
11866 |
+
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
|
11867 |
+
integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
|
11868 |
+
dependencies:
|
11869 |
+
debug "2.6.9"
|
11870 |
+
depd "~1.1.2"
|
11871 |
+
destroy "~1.0.4"
|
11872 |
+
encodeurl "~1.0.2"
|
11873 |
+
escape-html "~1.0.3"
|
11874 |
+
etag "~1.8.1"
|
11875 |
+
fresh "0.5.2"
|
11876 |
+
http-errors "~1.7.2"
|
11877 |
+
mime "1.6.0"
|
11878 |
+
ms "2.1.1"
|
11879 |
+
on-finished "~2.3.0"
|
11880 |
+
range-parser "~1.2.1"
|
11881 |
+
statuses "~1.5.0"
|
11882 |
+
|
11883 |
+
serialize-javascript@^4.0.0:
|
11884 |
+
version "4.0.0"
|
11885 |
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
|
11886 |
+
integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
|
11887 |
+
dependencies:
|
11888 |
+
randombytes "^2.1.0"
|
11889 |
+
|
11890 |
+
serve-static@1.14.1:
|
11891 |
+
version "1.14.1"
|
11892 |
+
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
|
11893 |
+
integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
|
11894 |
+
dependencies:
|
11895 |
+
encodeurl "~1.0.2"
|
11896 |
+
escape-html "~1.0.3"
|
11897 |
+
parseurl "~1.3.3"
|
11898 |
+
send "0.17.1"
|
11899 |
+
|
11900 |
+
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
11901 |
+
version "2.0.0"
|
11902 |
+
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
11903 |
+
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
|
11904 |
+
|
11905 |
+
set-value@^2.0.0, set-value@^2.0.1:
|
11906 |
+
version "2.0.1"
|
11907 |
+
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
|
11908 |
+
integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
|
11909 |
+
dependencies:
|
11910 |
+
extend-shallow "^2.0.1"
|
11911 |
+
is-extendable "^0.1.1"
|
11912 |
+
is-plain-object "^2.0.3"
|
11913 |
+
split-string "^3.0.1"
|
11914 |
+
|
11915 |
+
setimmediate@^1.0.4:
|
11916 |
+
version "1.0.5"
|
11917 |
+
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
11918 |
+
integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
|
11919 |
+
|
11920 |
+
setprototypeof@1.1.1:
|
11921 |
+
version "1.1.1"
|
11922 |
+
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
|
11923 |
+
integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
|
11924 |
+
|
11925 |
+
sha.js@^2.4.0, sha.js@^2.4.8:
|
11926 |
+
version "2.4.11"
|
11927 |
+
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
|
11928 |
+
integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
|
11929 |
+
dependencies:
|
11930 |
+
inherits "^2.0.1"
|
11931 |
+
safe-buffer "^5.0.1"
|
11932 |
+
|
11933 |
+
sha@^3.0.0:
|
11934 |
+
version "3.0.0"
|
11935 |
+
resolved "https://registry.yarnpkg.com/sha/-/sha-3.0.0.tgz#b2f2f90af690c16a3a839a6a6c680ea51fedd1ae"
|
11936 |
+
integrity sha512-DOYnM37cNsLNSGIG/zZWch5CKIRNoLdYUQTQlcgkRkoYIUwDYjqDyye16YcDZg/OPdcbUgTKMjc4SY6TB7ZAPw==
|
11937 |
+
dependencies:
|
11938 |
+
graceful-fs "^4.1.2"
|
11939 |
+
|
11940 |
+
shallow-clone@^0.1.2:
|
11941 |
+
version "0.1.2"
|
11942 |
+
resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060"
|
11943 |
+
integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=
|
11944 |
+
dependencies:
|
11945 |
+
is-extendable "^0.1.1"
|
11946 |
+
kind-of "^2.0.1"
|
11947 |
+
lazy-cache "^0.2.3"
|
11948 |
+
mixin-object "^2.0.1"
|
11949 |
+
|
11950 |
+
shallow-clone@^3.0.0:
|
11951 |
+
version "3.0.1"
|
11952 |
+
resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
|
11953 |
+
integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
|
11954 |
+
dependencies:
|
11955 |
+
kind-of "^6.0.2"
|
11956 |
+
|
11957 |
+
shebang-command@^1.2.0:
|
11958 |
+
version "1.2.0"
|
11959 |
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
|
11960 |
+
integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
|
11961 |
+
dependencies:
|
11962 |
+
shebang-regex "^1.0.0"
|
11963 |
+
|
11964 |
+
shebang-command@^2.0.0:
|
11965 |
+
version "2.0.0"
|
11966 |
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
|
11967 |
+
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
|
11968 |
+
dependencies:
|
11969 |
+
shebang-regex "^3.0.0"
|
11970 |
+
|
11971 |
+
shebang-regex@^1.0.0:
|
11972 |
+
version "1.0.0"
|
11973 |
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
11974 |
+
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
11975 |
+
|
11976 |
+
shebang-regex@^3.0.0:
|
11977 |
+
version "3.0.0"
|
11978 |
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
11979 |
+
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
11980 |
+
|
11981 |
+
shell-quote@^1.6.1:
|
11982 |
+
version "1.7.2"
|
11983 |
+
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
|
11984 |
+
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
|
11985 |
+
|
11986 |
+
shellwords@^0.1.1:
|
11987 |
+
version "0.1.1"
|
11988 |
+
resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
|
11989 |
+
integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
|
11990 |
+
|
11991 |
+
side-channel@^1.0.2:
|
11992 |
+
version "1.0.3"
|
11993 |
+
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.3.tgz#cdc46b057550bbab63706210838df5d4c19519c3"
|
11994 |
+
integrity sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g==
|
11995 |
+
dependencies:
|
11996 |
+
es-abstract "^1.18.0-next.0"
|
11997 |
+
object-inspect "^1.8.0"
|
11998 |
+
|
11999 |
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
12000 |
+
version "3.0.3"
|
12001 |
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
12002 |
+
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
12003 |
+
|
12004 |
+
signale@^1.2.1:
|
12005 |
+
version "1.4.0"
|
12006 |
+
resolved "https://registry.yarnpkg.com/signale/-/signale-1.4.0.tgz#c4be58302fb0262ac00fc3d886a7c113759042f1"
|
12007 |
+
integrity sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==
|
12008 |
+
dependencies:
|
12009 |
+
chalk "^2.3.2"
|
12010 |
+
figures "^2.0.0"
|
12011 |
+
pkg-conf "^2.1.0"
|
12012 |
+
|
12013 |
+
sisteransi@^1.0.4:
|
12014 |
+
version "1.0.5"
|
12015 |
+
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
|
12016 |
+
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
|
12017 |
+
|
12018 |
+
slash@^3.0.0:
|
12019 |
+
version "3.0.0"
|
12020 |
+
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
|
12021 |
+
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
|
12022 |
+
|
12023 |
+
slice-ansi@0.0.4:
|
12024 |
+
version "0.0.4"
|
12025 |
+
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
|
12026 |
+
integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=
|
12027 |
+
|
12028 |
+
slice-ansi@^2.1.0:
|
12029 |
+
version "2.1.0"
|
12030 |
+
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
|
12031 |
+
integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
|
12032 |
+
dependencies:
|
12033 |
+
ansi-styles "^3.2.0"
|
12034 |
+
astral-regex "^1.0.0"
|
12035 |
+
is-fullwidth-code-point "^2.0.0"
|
12036 |
+
|
12037 |
+
slice-ansi@^4.0.0:
|
12038 |
+
version "4.0.0"
|
12039 |
+
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
|
12040 |
+
integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
|
12041 |
+
dependencies:
|
12042 |
+
ansi-styles "^4.0.0"
|
12043 |
+
astral-regex "^2.0.0"
|
12044 |
+
is-fullwidth-code-point "^3.0.0"
|
12045 |
+
|
12046 |
+
slide@^1.1.6, slide@~1.1.3, slide@~1.1.6:
|
12047 |
+
version "1.1.6"
|
12048 |
+
resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
|
12049 |
+
integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=
|
12050 |
+
|
12051 |
+
smart-buffer@^4.1.0:
|
12052 |
+
version "4.1.0"
|
12053 |
+
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba"
|
12054 |
+
integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==
|
12055 |
+
|
12056 |
+
snapdragon-node@^2.0.1:
|
12057 |
+
version "2.1.1"
|
12058 |
+
resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
|
12059 |
+
integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
|
12060 |
+
dependencies:
|
12061 |
+
define-property "^1.0.0"
|
12062 |
+
isobject "^3.0.0"
|
12063 |
+
snapdragon-util "^3.0.1"
|
12064 |
+
|
12065 |
+
snapdragon-util@^3.0.1:
|
12066 |
+
version "3.0.1"
|
12067 |
+
resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
|
12068 |
+
integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
|
12069 |
+
dependencies:
|
12070 |
+
kind-of "^3.2.0"
|
12071 |
+
|
12072 |
+
snapdragon@^0.8.1:
|
12073 |
+
version "0.8.2"
|
12074 |
+
resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
|
12075 |
+
integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
|
12076 |
+
dependencies:
|
12077 |
+
base "^0.11.1"
|
12078 |
+
debug "^2.2.0"
|
12079 |
+
define-property "^0.2.5"
|
12080 |
+
extend-shallow "^2.0.1"
|
12081 |
+
map-cache "^0.2.2"
|
12082 |
+
source-map "^0.5.6"
|
12083 |
+
source-map-resolve "^0.5.0"
|
12084 |
+
use "^3.1.0"
|
12085 |
+
|
12086 |
+
socks-proxy-agent@^4.0.0:
|
12087 |
+
version "4.0.2"
|
12088 |
+
resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386"
|
12089 |
+
integrity sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg==
|
12090 |
+
dependencies:
|
12091 |
+
agent-base "~4.2.1"
|
12092 |
+
socks "~2.3.2"
|
12093 |
+
|
12094 |
+
socks@~2.3.2:
|
12095 |
+
version "2.3.3"
|
12096 |
+
resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3"
|
12097 |
+
integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA==
|
12098 |
+
dependencies:
|
12099 |
+
ip "1.1.5"
|
12100 |
+
smart-buffer "^4.1.0"
|
12101 |
+
|
12102 |
+
sort-keys@^1.0.0:
|
12103 |
+
version "1.1.2"
|
12104 |
+
resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
|
12105 |
+
integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
|
12106 |
+
dependencies:
|
12107 |
+
is-plain-obj "^1.0.0"
|
12108 |
+
|
12109 |
+
sorted-object@~2.0.1:
|
12110 |
+
version "2.0.1"
|
12111 |
+
resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc"
|
12112 |
+
integrity sha1-fWMfS9OnmKJK8d/8+/6DM3pd9fw=
|
12113 |
+
|
12114 |
+
sorted-union-stream@~2.1.3:
|
12115 |
+
version "2.1.3"
|
12116 |
+
resolved "https://registry.yarnpkg.com/sorted-union-stream/-/sorted-union-stream-2.1.3.tgz#c7794c7e077880052ff71a8d4a2dbb4a9a638ac7"
|
12117 |
+
integrity sha1-x3lMfgd4gAUv9xqNSi27Sppjisc=
|
12118 |
+
dependencies:
|
12119 |
+
from2 "^1.3.0"
|
12120 |
+
stream-iterate "^1.1.0"
|
12121 |
+
|
12122 |
+
source-list-map@^2.0.0:
|
12123 |
+
version "2.0.1"
|
12124 |
+
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
|
12125 |
+
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
|
12126 |
+
|
12127 |
+
source-map-loader@^0.2.4:
|
12128 |
+
version "0.2.4"
|
12129 |
+
resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.2.4.tgz#c18b0dc6e23bf66f6792437557c569a11e072271"
|
12130 |
+
integrity sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==
|
12131 |
+
dependencies:
|
12132 |
+
async "^2.5.0"
|
12133 |
+
loader-utils "^1.1.0"
|
12134 |
+
|
12135 |
+
source-map-resolve@^0.5.0:
|
12136 |
+
version "0.5.3"
|
12137 |
+
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
|
12138 |
+
integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
|
12139 |
+
dependencies:
|
12140 |
+
atob "^2.1.2"
|
12141 |
+
decode-uri-component "^0.2.0"
|
12142 |
+
resolve-url "^0.2.1"
|
12143 |
+
source-map-url "^0.4.0"
|
12144 |
+
urix "^0.1.0"
|
12145 |
+
|
12146 |
+
source-map-support@^0.5.6, source-map-support@~0.5.12:
|
12147 |
+
version "0.5.19"
|
12148 |
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
12149 |
+
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
|
12150 |
+
dependencies:
|
12151 |
+
buffer-from "^1.0.0"
|
12152 |
+
source-map "^0.6.0"
|
12153 |
+
|
12154 |
+
source-map-url@^0.4.0:
|
12155 |
+
version "0.4.0"
|
12156 |
+
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
|
12157 |
+
integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
|
12158 |
+
|
12159 |
+
source-map@^0.4.2:
|
12160 |
+
version "0.4.4"
|
12161 |
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
|
12162 |
+
integrity sha1-66T12pwNyZneaAMti092FzZSA2s=
|
12163 |
+
dependencies:
|
12164 |
+
amdefine ">=0.0.4"
|
12165 |
+
|
12166 |
+
source-map@^0.5.0, source-map@^0.5.6:
|
12167 |
+
version "0.5.7"
|
12168 |
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
12169 |
+
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
12170 |
+
|
12171 |
+
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
|
12172 |
+
version "0.6.1"
|
12173 |
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
12174 |
+
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
12175 |
+
|
12176 |
+
source-map@^0.7.3:
|
12177 |
+
version "0.7.3"
|
12178 |
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
12179 |
+
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
|
12180 |
+
|
12181 |
+
spawn-error-forwarder@~1.0.0:
|
12182 |
+
version "1.0.0"
|
12183 |
+
resolved "https://registry.yarnpkg.com/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz#1afd94738e999b0346d7b9fc373be55e07577029"
|
12184 |
+
integrity sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=
|
12185 |
+
|
12186 |
+
spawnd@^4.4.0:
|
12187 |
+
version "4.4.0"
|
12188 |
+
resolved "https://registry.yarnpkg.com/spawnd/-/spawnd-4.4.0.tgz#bb52c5b34a22e3225ae1d3acb873b2cd58af0886"
|
12189 |
+
integrity sha512-jLPOfB6QOEgMOQY15Z6+lwZEhH3F5ncXxIaZ7WHPIapwNNLyjrs61okj3VJ3K6tmP5TZ6cO0VAu9rEY4MD4YQg==
|
12190 |
+
dependencies:
|
12191 |
+
exit "^0.1.2"
|
12192 |
+
signal-exit "^3.0.2"
|
12193 |
+
tree-kill "^1.2.2"
|
12194 |
+
wait-port "^0.2.7"
|
12195 |
+
|
12196 |
+
spdx-correct@^3.0.0:
|
12197 |
+
version "3.1.1"
|
12198 |
+
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
|
12199 |
+
integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
|
12200 |
+
dependencies:
|
12201 |
+
spdx-expression-parse "^3.0.0"
|
12202 |
+
spdx-license-ids "^3.0.0"
|
12203 |
+
|
12204 |
+
spdx-exceptions@^2.1.0:
|
12205 |
+
version "2.3.0"
|
12206 |
+
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
|
12207 |
+
integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
|
12208 |
+
|
12209 |
+
spdx-expression-parse@^3.0.0, spdx-expression-parse@^3.0.1:
|
12210 |
+
version "3.0.1"
|
12211 |
+
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
|
12212 |
+
integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
|
12213 |
+
dependencies:
|
12214 |
+
spdx-exceptions "^2.1.0"
|
12215 |
+
spdx-license-ids "^3.0.0"
|
12216 |
+
|
12217 |
+
spdx-license-ids@^3.0.0:
|
12218 |
+
version "3.0.6"
|
12219 |
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce"
|
12220 |
+
integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==
|
12221 |
+
|
12222 |
+
specificity@^0.4.1:
|
12223 |
+
version "0.4.1"
|
12224 |
+
resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019"
|
12225 |
+
integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==
|
12226 |
+
|
12227 |
+
split-on-first@^1.0.0:
|
12228 |
+
version "1.1.0"
|
12229 |
+
resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f"
|
12230 |
+
integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==
|
12231 |
+
|
12232 |
+
split-string@^3.0.1, split-string@^3.0.2:
|
12233 |
+
version "3.1.0"
|
12234 |
+
resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
|
12235 |
+
integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
|
12236 |
+
dependencies:
|
12237 |
+
extend-shallow "^3.0.0"
|
12238 |
+
|
12239 |
+
split2@^2.0.0:
|
12240 |
+
version "2.2.0"
|
12241 |
+
resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
|
12242 |
+
integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==
|
12243 |
+
dependencies:
|
12244 |
+
through2 "^2.0.2"
|
12245 |
+
|
12246 |
+
split2@~1.0.0:
|
12247 |
+
version "1.0.0"
|
12248 |
+
resolved "https://registry.yarnpkg.com/split2/-/split2-1.0.0.tgz#52e2e221d88c75f9a73f90556e263ff96772b314"
|
12249 |
+
integrity sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=
|
12250 |
+
dependencies:
|
12251 |
+
through2 "~2.0.0"
|
12252 |
+
|
12253 |
+
split@^1.0.0:
|
12254 |
+
version "1.0.1"
|
12255 |
+
resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
|
12256 |
+
integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
|
12257 |
+
dependencies:
|
12258 |
+
through "2"
|
12259 |
+
|
12260 |
+
sprintf-js@^1.0.3:
|
12261 |
+
version "1.1.2"
|
12262 |
+
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673"
|
12263 |
+
integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==
|
12264 |
+
|
12265 |
+
sprintf-js@~1.0.2:
|
12266 |
+
version "1.0.3"
|
12267 |
+
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
12268 |
+
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
12269 |
+
|
12270 |
+
sshpk@^1.7.0:
|
12271 |
+
version "1.16.1"
|
12272 |
+
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
|
12273 |
+
integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
|
12274 |
+
dependencies:
|
12275 |
+
asn1 "~0.2.3"
|
12276 |
+
assert-plus "^1.0.0"
|
12277 |
+
bcrypt-pbkdf "^1.0.0"
|
12278 |
+
dashdash "^1.12.0"
|
12279 |
+
ecc-jsbn "~0.1.1"
|
12280 |
+
getpass "^0.1.1"
|
12281 |
+
jsbn "~0.1.0"
|
12282 |
+
safer-buffer "^2.0.2"
|
12283 |
+
tweetnacl "~0.14.0"
|
12284 |
+
|
12285 |
+
ssri@^6.0.0, ssri@^6.0.1:
|
12286 |
+
version "6.0.1"
|
12287 |
+
resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8"
|
12288 |
+
integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
|
12289 |
+
dependencies:
|
12290 |
+
figgy-pudding "^3.5.1"
|
12291 |
+
|
12292 |
+
ssri@^8.0.0:
|
12293 |
+
version "8.0.0"
|
12294 |
+
resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808"
|
12295 |
+
integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==
|
12296 |
+
dependencies:
|
12297 |
+
minipass "^3.1.1"
|
12298 |
+
|
12299 |
+
stable@^0.1.8:
|
12300 |
+
version "0.1.8"
|
12301 |
+
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
|
12302 |
+
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
|
12303 |
+
|
12304 |
+
stack-utils@^1.0.1:
|
12305 |
+
version "1.0.2"
|
12306 |
+
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
|
12307 |
+
integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
|
12308 |
+
|
12309 |
+
state-toggle@^1.0.0:
|
12310 |
+
version "1.0.3"
|
12311 |
+
resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
|
12312 |
+
integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
|
12313 |
+
|
12314 |
+
static-extend@^0.1.1:
|
12315 |
+
version "0.1.2"
|
12316 |
+
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
|
12317 |
+
integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
|
12318 |
+
dependencies:
|
12319 |
+
define-property "^0.2.5"
|
12320 |
+
object-copy "^0.1.0"
|
12321 |
+
|
12322 |
+
"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
|
12323 |
+
version "1.5.0"
|
12324 |
+
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
|
12325 |
+
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
|
12326 |
+
|
12327 |
+
stdout-stream@^1.4.0:
|
12328 |
+
version "1.4.1"
|
12329 |
+
resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de"
|
12330 |
+
integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==
|
12331 |
+
dependencies:
|
12332 |
+
readable-stream "^2.0.1"
|
12333 |
+
|
12334 |
+
stealthy-require@^1.1.1:
|
12335 |
+
version "1.1.1"
|
12336 |
+
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
12337 |
+
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
|
12338 |
+
|
12339 |
+
stream-browserify@^2.0.1:
|
12340 |
+
version "2.0.2"
|
12341 |
+
resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
|
12342 |
+
integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
|
12343 |
+
dependencies:
|
12344 |
+
inherits "~2.0.1"
|
12345 |
+
readable-stream "^2.0.2"
|
12346 |
+
|
12347 |
+
stream-combiner2@~1.1.1:
|
12348 |
+
version "1.1.1"
|
12349 |
+
resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe"
|
12350 |
+
integrity sha1-+02KFCDqNidk4hrUeAOXvry0HL4=
|
12351 |
+
dependencies:
|
12352 |
+
duplexer2 "~0.1.0"
|
12353 |
+
readable-stream "^2.0.2"
|
12354 |
+
|
12355 |
+
stream-each@^1.1.0:
|
12356 |
+
version "1.2.3"
|
12357 |
+
resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
|
12358 |
+
integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
|
12359 |
+
dependencies:
|
12360 |
+
end-of-stream "^1.1.0"
|
12361 |
+
stream-shift "^1.0.0"
|
12362 |
+
|
12363 |
+
stream-http@^2.7.2:
|
12364 |
+
version "2.8.3"
|
12365 |
+
resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
|
12366 |
+
integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
|
12367 |
+
dependencies:
|
12368 |
+
builtin-status-codes "^3.0.0"
|
12369 |
+
inherits "^2.0.1"
|
12370 |
+
readable-stream "^2.3.6"
|
12371 |
+
to-arraybuffer "^1.0.0"
|
12372 |
+
xtend "^4.0.0"
|
12373 |
+
|
12374 |
+
stream-iterate@^1.1.0:
|
12375 |
+
version "1.2.0"
|
12376 |
+
resolved "https://registry.yarnpkg.com/stream-iterate/-/stream-iterate-1.2.0.tgz#2bd7c77296c1702a46488b8ad41f79865eecd4e1"
|
12377 |
+
integrity sha1-K9fHcpbBcCpGSIuK1B95hl7s1OE=
|
12378 |
+
dependencies:
|
12379 |
+
readable-stream "^2.1.5"
|
12380 |
+
stream-shift "^1.0.0"
|
12381 |
+
|
12382 |
+
stream-shift@^1.0.0:
|
12383 |
+
version "1.0.1"
|
12384 |
+
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
|
12385 |
+
integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
|
12386 |
+
|
12387 |
+
strict-uri-encode@^1.0.0:
|
12388 |
+
version "1.1.0"
|
12389 |
+
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
|
12390 |
+
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
|
12391 |
+
|
12392 |
+
strict-uri-encode@^2.0.0:
|
12393 |
+
version "2.0.0"
|
12394 |
+
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
|
12395 |
+
integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
|
12396 |
+
|
12397 |
+
string-length@^3.1.0:
|
12398 |
+
version "3.1.0"
|
12399 |
+
resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837"
|
12400 |
+
integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==
|
12401 |
+
dependencies:
|
12402 |
+
astral-regex "^1.0.0"
|
12403 |
+
strip-ansi "^5.2.0"
|
12404 |
+
|
12405 |
+
string-template@~0.2.1:
|
12406 |
+
version "0.2.1"
|
12407 |
+
resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
|
12408 |
+
integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=
|
12409 |
+
|
12410 |
+
string-width@^1.0.1:
|
12411 |
+
version "1.0.2"
|
12412 |
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
12413 |
+
integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
|
12414 |
+
dependencies:
|
12415 |
+
code-point-at "^1.0.0"
|
12416 |
+
is-fullwidth-code-point "^1.0.0"
|
12417 |
+
strip-ansi "^3.0.0"
|
12418 |
+
|
12419 |
+
"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1:
|
12420 |
+
version "2.1.1"
|
12421 |
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
12422 |
+
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
|
12423 |
+
dependencies:
|
12424 |
+
is-fullwidth-code-point "^2.0.0"
|
12425 |
+
strip-ansi "^4.0.0"
|
12426 |
+
|
12427 |
+
string-width@^3.0.0, string-width@^3.1.0:
|
12428 |
+
version "3.1.0"
|
12429 |
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
12430 |
+
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
|
12431 |
+
dependencies:
|
12432 |
+
emoji-regex "^7.0.1"
|
12433 |
+
is-fullwidth-code-point "^2.0.0"
|
12434 |
+
strip-ansi "^5.1.0"
|
12435 |
+
|
12436 |
+
string-width@^4.1.0, string-width@^4.2.0:
|
12437 |
+
version "4.2.0"
|
12438 |
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
|
12439 |
+
integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
|
12440 |
+
dependencies:
|
12441 |
+
emoji-regex "^8.0.0"
|
12442 |
+
is-fullwidth-code-point "^3.0.0"
|
12443 |
+
strip-ansi "^6.0.0"
|
12444 |
+
|
12445 |
+
string.prototype.matchall@^4.0.2:
|
12446 |
+
version "4.0.2"
|
12447 |
+
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"
|
12448 |
+
integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==
|
12449 |
+
dependencies:
|
12450 |
+
define-properties "^1.1.3"
|
12451 |
+
es-abstract "^1.17.0"
|
12452 |
+
has-symbols "^1.0.1"
|
12453 |
+
internal-slot "^1.0.2"
|
12454 |
+
regexp.prototype.flags "^1.3.0"
|
12455 |
+
side-channel "^1.0.2"
|
12456 |
+
|
12457 |
+
string.prototype.padend@^3.0.0:
|
12458 |
+
version "3.1.0"
|
12459 |
+
resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
|
12460 |
+
integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
|
12461 |
+
dependencies:
|
12462 |
+
define-properties "^1.1.3"
|
12463 |
+
es-abstract "^1.17.0-next.1"
|
12464 |
+
|
12465 |
+
string.prototype.trim@^1.2.1:
|
12466 |
+
version "1.2.2"
|
12467 |
+
resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.2.tgz#f538d0bacd98fc4297f0bef645226d5aaebf59f3"
|
12468 |
+
integrity sha512-b5yrbl3BXIjHau9Prk7U0RRYcUYdN4wGSVaqoBQS50CCE3KBuYU0TYRNPFCP7aVoNMX87HKThdMRVIP3giclKg==
|
12469 |
+
dependencies:
|
12470 |
+
define-properties "^1.1.3"
|
12471 |
+
es-abstract "^1.18.0-next.0"
|
12472 |
+
|
12473 |
+
string.prototype.trimend@^1.0.1:
|
12474 |
+
version "1.0.1"
|
12475 |
+
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
|
12476 |
+
integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
|
12477 |
+
dependencies:
|
12478 |
+
define-properties "^1.1.3"
|
12479 |
+
es-abstract "^1.17.5"
|
12480 |
+
|
12481 |
+
string.prototype.trimstart@^1.0.1:
|
12482 |
+
version "1.0.1"
|
12483 |
+
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"
|
12484 |
+
integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==
|
12485 |
+
dependencies:
|
12486 |
+
define-properties "^1.1.3"
|
12487 |
+
es-abstract "^1.17.5"
|
12488 |
+
|
12489 |
+
string_decoder@0.10, string_decoder@~0.10.x:
|
12490 |
+
version "0.10.31"
|
12491 |
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
|
12492 |
+
integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
|
12493 |
+
|
12494 |
+
string_decoder@^1.0.0, string_decoder@^1.1.1:
|
12495 |
+
version "1.3.0"
|
12496 |
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
|
12497 |
+
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
|
12498 |
+
dependencies:
|
12499 |
+
safe-buffer "~5.2.0"
|
12500 |
+
|
12501 |
+
string_decoder@~1.1.1:
|
12502 |
+
version "1.1.1"
|
12503 |
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
|
12504 |
+
integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
|
12505 |
+
dependencies:
|
12506 |
+
safe-buffer "~5.1.0"
|
12507 |
+
|
12508 |
+
stringify-entities@^3.0.0:
|
12509 |
+
version "3.0.1"
|
12510 |
+
resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.0.1.tgz#32154b91286ab0869ab2c07696223bd23b6dbfc0"
|
12511 |
+
integrity sha512-Lsk3ISA2++eJYqBMPKcr/8eby1I6L0gP0NlxF8Zja6c05yr/yCYyb2c9PwXjd08Ib3If1vn1rbs1H5ZtVuOfvQ==
|
12512 |
+
dependencies:
|
12513 |
+
character-entities-html4 "^1.0.0"
|
12514 |
+
character-entities-legacy "^1.0.0"
|
12515 |
+
is-alphanumerical "^1.0.0"
|
12516 |
+
is-decimal "^1.0.2"
|
12517 |
+
is-hexadecimal "^1.0.0"
|
12518 |
+
|
12519 |
+
stringify-package@^1.0.0, stringify-package@^1.0.1:
|
12520 |
+
version "1.0.1"
|
12521 |
+
resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85"
|
12522 |
+
integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==
|
12523 |
+
|
12524 |
+
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
12525 |
+
version "3.0.1"
|
12526 |
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
12527 |
+
integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
|
12528 |
+
dependencies:
|
12529 |
+
ansi-regex "^2.0.0"
|
12530 |
+
|
12531 |
+
strip-ansi@^4.0.0:
|
12532 |
+
version "4.0.0"
|
12533 |
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
12534 |
+
integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
|
12535 |
+
dependencies:
|
12536 |
+
ansi-regex "^3.0.0"
|
12537 |
+
|
12538 |
+
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
12539 |
+
version "5.2.0"
|
12540 |
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
12541 |
+
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
12542 |
+
dependencies:
|
12543 |
+
ansi-regex "^4.1.0"
|
12544 |
+
|
12545 |
+
strip-ansi@^6.0.0:
|
12546 |
+
version "6.0.0"
|
12547 |
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
|
12548 |
+
integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
|
12549 |
+
dependencies:
|
12550 |
+
ansi-regex "^5.0.0"
|
12551 |
+
|
12552 |
+
strip-bom@^2.0.0:
|
12553 |
+
version "2.0.0"
|
12554 |
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
|
12555 |
+
integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
|
12556 |
+
dependencies:
|
12557 |
+
is-utf8 "^0.2.0"
|
12558 |
+
|
12559 |
+
strip-bom@^3.0.0:
|
12560 |
+
version "3.0.0"
|
12561 |
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
12562 |
+
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
|
12563 |
+
|
12564 |
+
strip-bom@^4.0.0:
|
12565 |
+
version "4.0.0"
|
12566 |
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
|
12567 |
+
integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
|
12568 |
+
|
12569 |
+
strip-eof@^1.0.0:
|
12570 |
+
version "1.0.0"
|
12571 |
+
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
|
12572 |
+
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
|
12573 |
+
|
12574 |
+
strip-final-newline@^2.0.0:
|
12575 |
+
version "2.0.0"
|
12576 |
+
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
|
12577 |
+
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
|
12578 |
+
|
12579 |
+
strip-indent@^1.0.1:
|
12580 |
+
version "1.0.1"
|
12581 |
+
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
|
12582 |
+
integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=
|
12583 |
+
dependencies:
|
12584 |
+
get-stdin "^4.0.1"
|
12585 |
+
|
12586 |
+
strip-indent@^3.0.0:
|
12587 |
+
version "3.0.0"
|
12588 |
+
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
|
12589 |
+
integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
|
12590 |
+
dependencies:
|
12591 |
+
min-indent "^1.0.0"
|
12592 |
+
|
12593 |
+
strip-json-comments@^2.0.0, strip-json-comments@~2.0.1:
|
12594 |
+
version "2.0.1"
|
12595 |
+
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
12596 |
+
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
12597 |
+
|
12598 |
+
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
|
12599 |
+
version "3.1.1"
|
12600 |
+
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
|
12601 |
+
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
|
12602 |
+
|
12603 |
+
style-search@^0.1.0:
|
12604 |
+
version "0.1.0"
|
12605 |
+
resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
|
12606 |
+
integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=
|
12607 |
+
|
12608 |
+
stylelint-config-recommended-scss@^4.2.0:
|
12609 |
+
version "4.2.0"
|
12610 |
+
resolved "https://registry.yarnpkg.com/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-4.2.0.tgz#3ad3fc858215cfd16a0f90aecf1ac0ea8a3e6971"
|
12611 |
+
integrity sha512-4bI5BYbabo/GCQ6LbRZx/ZlVkK65a1jivNNsD+ix/Lw0U3iAch+jQcvliGnnAX8SUPaZ0UqzNVNNAF3urswa7g==
|
12612 |
+
dependencies:
|
12613 |
+
stylelint-config-recommended "^3.0.0"
|
12614 |
+
|
12615 |
+
stylelint-config-recommended@^3.0.0:
|
12616 |
+
version "3.0.0"
|
12617 |
+
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-3.0.0.tgz#e0e547434016c5539fe2650afd58049a2fd1d657"
|
12618 |
+
integrity sha512-F6yTRuc06xr1h5Qw/ykb2LuFynJ2IxkKfCMf+1xqPffkxh0S09Zc902XCffcsw/XMFq/OzQ1w54fLIDtmRNHnQ==
|
12619 |
+
|
12620 |
+
stylelint-config-wordpress@^17.0.0:
|
12621 |
+
version "17.0.0"
|
12622 |
+
resolved "https://registry.yarnpkg.com/stylelint-config-wordpress/-/stylelint-config-wordpress-17.0.0.tgz#26014da588b8e8f60e11af841ee16ec28490ae97"
|
12623 |
+
integrity sha512-qUU2kVMd2ezIV9AzRdgietIfnavRRENt4180A1OMoVXIowRjjhohZgBiyVPV5EtNKo3GTO63l8g/QGNG27/h9g==
|
12624 |
+
dependencies:
|
12625 |
+
stylelint-config-recommended "^3.0.0"
|
12626 |
+
stylelint-config-recommended-scss "^4.2.0"
|
12627 |
+
stylelint-scss "^3.17.2"
|
12628 |
+
|
12629 |
+
stylelint-scss@^3.17.2:
|
12630 |
+
version "3.18.0"
|
12631 |
+
resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-3.18.0.tgz#8f06371c223909bf3f62e839548af1badeed31e9"
|
12632 |
+
integrity sha512-LD7+hv/6/ApNGt7+nR/50ft7cezKP2HM5rI8avIdGaUWre3xlHfV4jKO/DRZhscfuN+Ewy9FMhcTq0CcS0C/SA==
|
12633 |
+
dependencies:
|
12634 |
+
lodash "^4.17.15"
|
12635 |
+
postcss-media-query-parser "^0.2.3"
|
12636 |
+
postcss-resolve-nested-selector "^0.1.1"
|
12637 |
+
postcss-selector-parser "^6.0.2"
|
12638 |
+
postcss-value-parser "^4.1.0"
|
12639 |
+
|
12640 |
+
stylelint@^13.6.0:
|
12641 |
+
version "13.7.2"
|
12642 |
+
resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-13.7.2.tgz#6f3c58eea4077680ed0ceb0d064b22b100970486"
|
12643 |
+
integrity sha512-mmieorkfmO+ZA6CNDu1ic9qpt4tFvH2QUB7vqXgrMVHe5ENU69q7YDq0YUg/UHLuCsZOWhUAvcMcLzLDIERzSg==
|
12644 |
+
dependencies:
|
12645 |
+
"@stylelint/postcss-css-in-js" "^0.37.2"
|
12646 |
+
"@stylelint/postcss-markdown" "^0.36.1"
|
12647 |
+
autoprefixer "^9.8.6"
|
12648 |
+
balanced-match "^1.0.0"
|
12649 |
+
chalk "^4.1.0"
|
12650 |
+
cosmiconfig "^7.0.0"
|
12651 |
+
debug "^4.1.1"
|
12652 |
+
execall "^2.0.0"
|
12653 |
+
fast-glob "^3.2.4"
|
12654 |
+
fastest-levenshtein "^1.0.12"
|
12655 |
+
file-entry-cache "^5.0.1"
|
12656 |
+
get-stdin "^8.0.0"
|
12657 |
+
global-modules "^2.0.0"
|
12658 |
+
globby "^11.0.1"
|
12659 |
+
globjoin "^0.1.4"
|
12660 |
+
html-tags "^3.1.0"
|
12661 |
+
ignore "^5.1.8"
|
12662 |
+
import-lazy "^4.0.0"
|
12663 |
+
imurmurhash "^0.1.4"
|
12664 |
+
known-css-properties "^0.19.0"
|
12665 |
+
lodash "^4.17.20"
|
12666 |
+
log-symbols "^4.0.0"
|
12667 |
+
mathml-tag-names "^2.1.3"
|
12668 |
+
meow "^7.1.1"
|
12669 |
+
micromatch "^4.0.2"
|
12670 |
+
normalize-selector "^0.2.0"
|
12671 |
+
postcss "^7.0.32"
|
12672 |
+
postcss-html "^0.36.0"
|
12673 |
+
postcss-less "^3.1.4"
|
12674 |
+
postcss-media-query-parser "^0.2.3"
|
12675 |
+
postcss-resolve-nested-selector "^0.1.1"
|
12676 |
+
postcss-safe-parser "^4.0.2"
|
12677 |
+
postcss-sass "^0.4.4"
|
12678 |
+
postcss-scss "^2.1.1"
|
12679 |
+
postcss-selector-parser "^6.0.2"
|
12680 |
+
postcss-syntax "^0.36.2"
|
12681 |
+
postcss-value-parser "^4.1.0"
|
12682 |
+
resolve-from "^5.0.0"
|
12683 |
+
slash "^3.0.0"
|
12684 |
+
specificity "^0.4.1"
|
12685 |
+
string-width "^4.2.0"
|
12686 |
+
strip-ansi "^6.0.0"
|
12687 |
+
style-search "^0.1.0"
|
12688 |
+
sugarss "^2.0.0"
|
12689 |
+
svg-tags "^1.0.0"
|
12690 |
+
table "^6.0.1"
|
12691 |
+
v8-compile-cache "^2.1.1"
|
12692 |
+
write-file-atomic "^3.0.3"
|
12693 |
+
|
12694 |
+
sugarss@^2.0.0:
|
12695 |
+
version "2.0.0"
|
12696 |
+
resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-2.0.0.tgz#ddd76e0124b297d40bf3cca31c8b22ecb43bc61d"
|
12697 |
+
integrity sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ==
|
12698 |
+
dependencies:
|
12699 |
+
postcss "^7.0.2"
|
12700 |
+
|
12701 |
+
supports-color@^2.0.0:
|
12702 |
+
version "2.0.0"
|
12703 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
12704 |
+
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
|
12705 |
+
|
12706 |
+
supports-color@^5.3.0, supports-color@^5.4.0:
|
12707 |
+
version "5.5.0"
|
12708 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
12709 |
+
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
12710 |
+
dependencies:
|
12711 |
+
has-flag "^3.0.0"
|
12712 |
+
|
12713 |
+
supports-color@^6.1.0:
|
12714 |
+
version "6.1.0"
|
12715 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
|
12716 |
+
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
|
12717 |
+
dependencies:
|
12718 |
+
has-flag "^3.0.0"
|
12719 |
+
|
12720 |
+
supports-color@^7.0.0, supports-color@^7.1.0:
|
12721 |
+
version "7.2.0"
|
12722 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
12723 |
+
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
12724 |
+
dependencies:
|
12725 |
+
has-flag "^4.0.0"
|
12726 |
+
|
12727 |
+
supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.1.0:
|
12728 |
+
version "2.1.0"
|
12729 |
+
resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47"
|
12730 |
+
integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
|
12731 |
+
dependencies:
|
12732 |
+
has-flag "^4.0.0"
|
12733 |
+
supports-color "^7.0.0"
|
12734 |
+
|
12735 |
+
svg-parser@^2.0.2:
|
12736 |
+
version "2.0.4"
|
12737 |
+
resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
|
12738 |
+
integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
|
12739 |
+
|
12740 |
+
svg-tags@^1.0.0:
|
12741 |
+
version "1.0.0"
|
12742 |
+
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
|
12743 |
+
integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=
|
12744 |
+
|
12745 |
+
svgo@^1.2.2:
|
12746 |
+
version "1.3.2"
|
12747 |
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
12748 |
+
integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
|
12749 |
+
dependencies:
|
12750 |
+
chalk "^2.4.1"
|
12751 |
+
coa "^2.0.2"
|
12752 |
+
css-select "^2.0.0"
|
12753 |
+
css-select-base-adapter "^0.1.1"
|
12754 |
+
css-tree "1.0.0-alpha.37"
|
12755 |
+
csso "^4.0.2"
|
12756 |
+
js-yaml "^3.13.1"
|
12757 |
+
mkdirp "~0.5.1"
|
12758 |
+
object.values "^1.1.0"
|
12759 |
+
sax "~1.2.4"
|
12760 |
+
stable "^0.1.8"
|
12761 |
+
unquote "~1.1.1"
|
12762 |
+
util.promisify "~1.0.0"
|
12763 |
+
|
12764 |
+
symbol-observable@^1.1.0:
|
12765 |
+
version "1.2.0"
|
12766 |
+
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
|
12767 |
+
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
|
12768 |
+
|
12769 |
+
symbol-tree@^3.2.2:
|
12770 |
+
version "3.2.4"
|
12771 |
+
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
|
12772 |
+
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
|
12773 |
+
|
12774 |
+
table@^5.2.3:
|
12775 |
+
version "5.4.6"
|
12776 |
+
resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
|
12777 |
+
integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
|
12778 |
+
dependencies:
|
12779 |
+
ajv "^6.10.2"
|
12780 |
+
lodash "^4.17.14"
|
12781 |
+
slice-ansi "^2.1.0"
|
12782 |
+
string-width "^3.0.0"
|
12783 |
+
|
12784 |
+
table@^6.0.1:
|
12785 |
+
version "6.0.3"
|
12786 |
+
resolved "https://registry.yarnpkg.com/table/-/table-6.0.3.tgz#e5b8a834e37e27ad06de2e0fda42b55cfd8a0123"
|
12787 |
+
integrity sha512-8321ZMcf1B9HvVX/btKv8mMZahCjn2aYrDlpqHaBFCfnox64edeH9kEid0vTLTRR8gWR2A20aDgeuTTea4sVtw==
|
12788 |
+
dependencies:
|
12789 |
+
ajv "^6.12.4"
|
12790 |
+
lodash "^4.17.20"
|
12791 |
+
slice-ansi "^4.0.0"
|
12792 |
+
string-width "^4.2.0"
|
12793 |
+
|
12794 |
+
tapable@^1.0.0, tapable@^1.1.3:
|
12795 |
+
version "1.1.3"
|
12796 |
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
|
12797 |
+
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
|
12798 |
+
|
12799 |
+
tar-fs@^2.0.0:
|
12800 |
+
version "2.1.0"
|
12801 |
+
resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.0.tgz#d1cdd121ab465ee0eb9ccde2d35049d3f3daf0d5"
|
12802 |
+
integrity sha512-9uW5iDvrIMCVpvasdFHW0wJPez0K4JnMZtsuIeDI7HyMGJNxmDZDOCQROr7lXyS+iL/QMpj07qcjGYTSdRFXUg==
|
12803 |
+
dependencies:
|
12804 |
+
chownr "^1.1.1"
|
12805 |
+
mkdirp-classic "^0.5.2"
|
12806 |
+
pump "^3.0.0"
|
12807 |
+
tar-stream "^2.0.0"
|
12808 |
+
|
12809 |
+
tar-stream@^2.0.0:
|
12810 |
+
version "2.1.4"
|
12811 |
+
resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa"
|
12812 |
+
integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw==
|
12813 |
+
dependencies:
|
12814 |
+
bl "^4.0.3"
|
12815 |
+
end-of-stream "^1.4.1"
|
12816 |
+
fs-constants "^1.0.0"
|
12817 |
+
inherits "^2.0.3"
|
12818 |
+
readable-stream "^3.1.1"
|
12819 |
+
|
12820 |
+
tar@^2.0.0:
|
12821 |
+
version "2.2.2"
|
12822 |
+
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40"
|
12823 |
+
integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==
|
12824 |
+
dependencies:
|
12825 |
+
block-stream "*"
|
12826 |
+
fstream "^1.0.12"
|
12827 |
+
inherits "2"
|
12828 |
+
|
12829 |
+
tar@^4.4.10, tar@^4.4.12, tar@^4.4.13:
|
12830 |
+
version "4.4.13"
|
12831 |
+
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
|
12832 |
+
integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==
|
12833 |
+
dependencies:
|
12834 |
+
chownr "^1.1.1"
|
12835 |
+
fs-minipass "^1.2.5"
|
12836 |
+
minipass "^2.8.6"
|
12837 |
+
minizlib "^1.2.1"
|
12838 |
+
mkdirp "^0.5.0"
|
12839 |
+
safe-buffer "^5.1.2"
|
12840 |
+
yallist "^3.0.3"
|
12841 |
+
|
12842 |
+
tar@^6.0.2:
|
12843 |
+
version "6.0.5"
|
12844 |
+
resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f"
|
12845 |
+
integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==
|
12846 |
+
dependencies:
|
12847 |
+
chownr "^2.0.0"
|
12848 |
+
fs-minipass "^2.0.0"
|
12849 |
+
minipass "^3.0.0"
|
12850 |
+
minizlib "^2.1.1"
|
12851 |
+
mkdirp "^1.0.3"
|
12852 |
+
yallist "^4.0.0"
|
12853 |
+
|
12854 |
+
temp-dir@^2.0.0:
|
12855 |
+
version "2.0.0"
|
12856 |
+
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
|
12857 |
+
integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
|
12858 |
+
|
12859 |
+
tempy@^0.5.0:
|
12860 |
+
version "0.5.0"
|
12861 |
+
resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.5.0.tgz#2785c89df39fcc4d1714fc554813225e1581d70b"
|
12862 |
+
integrity sha512-VEY96x7gbIRfsxqsafy2l5yVxxp3PhwAGoWMyC2D2Zt5DmEv+2tGiPOrquNRpf21hhGnKLVEsuqleqiZmKG/qw==
|
12863 |
+
dependencies:
|
12864 |
+
is-stream "^2.0.0"
|
12865 |
+
temp-dir "^2.0.0"
|
12866 |
+
type-fest "^0.12.0"
|
12867 |
+
unique-string "^2.0.0"
|
12868 |
+
|
12869 |
+
term-size@^1.2.0:
|
12870 |
+
version "1.2.0"
|
12871 |
+
resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
|
12872 |
+
integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=
|
12873 |
+
dependencies:
|
12874 |
+
execa "^0.7.0"
|
12875 |
+
|
12876 |
+
terminal-link@^2.0.0:
|
12877 |
+
version "2.1.1"
|
12878 |
+
resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
|
12879 |
+
integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
|
12880 |
+
dependencies:
|
12881 |
+
ansi-escapes "^4.2.1"
|
12882 |
+
supports-hyperlinks "^2.0.0"
|
12883 |
+
|
12884 |
+
terser-webpack-plugin@^1.4.3:
|
12885 |
+
version "1.4.5"
|
12886 |
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
|
12887 |
+
integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
|
12888 |
+
dependencies:
|
12889 |
+
cacache "^12.0.2"
|
12890 |
+
find-cache-dir "^2.1.0"
|
12891 |
+
is-wsl "^1.1.0"
|
12892 |
+
schema-utils "^1.0.0"
|
12893 |
+
serialize-javascript "^4.0.0"
|
12894 |
+
source-map "^0.6.1"
|
12895 |
+
terser "^4.1.2"
|
12896 |
+
webpack-sources "^1.4.0"
|
12897 |
+
worker-farm "^1.7.0"
|
12898 |
+
|
12899 |
+
terser-webpack-plugin@^3.0.3:
|
12900 |
+
version "3.1.0"
|
12901 |
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb"
|
12902 |
+
integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==
|
12903 |
+
dependencies:
|
12904 |
+
cacache "^15.0.5"
|
12905 |
+
find-cache-dir "^3.3.1"
|
12906 |
+
jest-worker "^26.2.1"
|
12907 |
+
p-limit "^3.0.2"
|
12908 |
+
schema-utils "^2.6.6"
|
12909 |
+
serialize-javascript "^4.0.0"
|
12910 |
+
source-map "^0.6.1"
|
12911 |
+
terser "^4.8.0"
|
12912 |
+
webpack-sources "^1.4.3"
|
12913 |
+
|
12914 |
+
terser@^4.1.2, terser@^4.8.0:
|
12915 |
+
version "4.8.0"
|
12916 |
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
|
12917 |
+
integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
|
12918 |
+
dependencies:
|
12919 |
+
commander "^2.20.0"
|
12920 |
+
source-map "~0.6.1"
|
12921 |
+
source-map-support "~0.5.12"
|
12922 |
+
|
12923 |
+
test-exclude@^6.0.0:
|
12924 |
+
version "6.0.0"
|
12925 |
+
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
|
12926 |
+
integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
|
12927 |
+
dependencies:
|
12928 |
+
"@istanbuljs/schema" "^0.1.2"
|
12929 |
+
glob "^7.1.4"
|
12930 |
+
minimatch "^3.0.4"
|
12931 |
+
|
12932 |
+
text-extensions@^1.0.0:
|
12933 |
+
version "1.9.0"
|
12934 |
+
resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
|
12935 |
+
integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
|
12936 |
+
|
12937 |
+
text-table@^0.2.0, text-table@~0.2.0:
|
12938 |
+
version "0.2.0"
|
12939 |
+
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
12940 |
+
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
12941 |
+
|
12942 |
+
thread-loader@^2.1.3:
|
12943 |
+
version "2.1.3"
|
12944 |
+
resolved "https://registry.yarnpkg.com/thread-loader/-/thread-loader-2.1.3.tgz#cbd2c139fc2b2de6e9d28f62286ab770c1acbdda"
|
12945 |
+
integrity sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==
|
12946 |
+
dependencies:
|
12947 |
+
loader-runner "^2.3.1"
|
12948 |
+
loader-utils "^1.1.0"
|
12949 |
+
neo-async "^2.6.0"
|
12950 |
+
|
12951 |
+
throat@^5.0.0:
|
12952 |
+
version "5.0.0"
|
12953 |
+
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
|
12954 |
+
integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
|
12955 |
+
|
12956 |
+
throttleit@^1.0.0:
|
12957 |
+
version "1.0.0"
|
12958 |
+
resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c"
|
12959 |
+
integrity sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=
|
12960 |
+
|
12961 |
+
through2@^2.0.0, through2@^2.0.2, through2@~2.0.0:
|
12962 |
+
version "2.0.5"
|
12963 |
+
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
|
12964 |
+
integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
|
12965 |
+
dependencies:
|
12966 |
+
readable-stream "~2.3.6"
|
12967 |
+
xtend "~4.0.1"
|
12968 |
+
|
12969 |
+
through2@^3.0.0:
|
12970 |
+
version "3.0.2"
|
12971 |
+
resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4"
|
12972 |
+
integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==
|
12973 |
+
dependencies:
|
12974 |
+
inherits "^2.0.4"
|
12975 |
+
readable-stream "2 || 3"
|
12976 |
+
|
12977 |
+
through@2, "through@>=2.2.7 <3", through@^2.3.8:
|
12978 |
+
version "2.3.8"
|
12979 |
+
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
12980 |
+
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
|
12981 |
+
|
12982 |
+
timed-out@^4.0.0:
|
12983 |
+
version "4.0.1"
|
12984 |
+
resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
|
12985 |
+
integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
|
12986 |
+
|
12987 |
+
timers-browserify@^2.0.4:
|
12988 |
+
version "2.0.11"
|
12989 |
+
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f"
|
12990 |
+
integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
|
12991 |
+
dependencies:
|
12992 |
+
setimmediate "^1.0.4"
|
12993 |
+
|
12994 |
+
tiny-lr@^1.1.1:
|
12995 |
+
version "1.1.1"
|
12996 |
+
resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab"
|
12997 |
+
integrity sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==
|
12998 |
+
dependencies:
|
12999 |
+
body "^5.1.0"
|
13000 |
+
debug "^3.1.0"
|
13001 |
+
faye-websocket "~0.10.0"
|
13002 |
+
livereload-js "^2.3.0"
|
13003 |
+
object-assign "^4.1.0"
|
13004 |
+
qs "^6.4.0"
|
13005 |
+
|
13006 |
+
tiny-relative-date@^1.3.0:
|
13007 |
+
version "1.3.0"
|
13008 |
+
resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07"
|
13009 |
+
integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A==
|
13010 |
+
|
13011 |
+
tlds@^1.203.0:
|
13012 |
+
version "1.210.0"
|
13013 |
+
resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.210.0.tgz#bf9a73cd0c16720e48158abc542311c511ac6fe8"
|
13014 |
+
integrity sha512-5bzt4JE+NlnwiKpVW9yzWxuc44m+t2opmPG+eSKDp5V5qdyGvjMngKgBb5ZK8GiheQMbRTCKpRwFJeIEO6pV7Q==
|
13015 |
+
|
13016 |
+
tmp@~0.2.1:
|
13017 |
+
version "0.2.1"
|
13018 |
+
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14"
|
13019 |
+
integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==
|
13020 |
+
dependencies:
|
13021 |
+
rimraf "^3.0.0"
|
13022 |
+
|
13023 |
+
tmpl@1.0.x:
|
13024 |
+
version "1.0.4"
|
13025 |
+
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
|
13026 |
+
integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
|
13027 |
+
|
13028 |
+
to-arraybuffer@^1.0.0:
|
13029 |
+
version "1.0.1"
|
13030 |
+
resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
|
13031 |
+
integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
|
13032 |
+
|
13033 |
+
to-fast-properties@^2.0.0:
|
13034 |
+
version "2.0.0"
|
13035 |
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
13036 |
+
integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
|
13037 |
+
|
13038 |
+
to-object-path@^0.3.0:
|
13039 |
+
version "0.3.0"
|
13040 |
+
resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
|
13041 |
+
integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
|
13042 |
+
dependencies:
|
13043 |
+
kind-of "^3.0.2"
|
13044 |
+
|
13045 |
+
to-regex-range@^2.1.0:
|
13046 |
+
version "2.1.1"
|
13047 |
+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
|
13048 |
+
integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
|
13049 |
+
dependencies:
|
13050 |
+
is-number "^3.0.0"
|
13051 |
+
repeat-string "^1.6.1"
|
13052 |
+
|
13053 |
+
to-regex-range@^5.0.1:
|
13054 |
+
version "5.0.1"
|
13055 |
+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
13056 |
+
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
13057 |
+
dependencies:
|
13058 |
+
is-number "^7.0.0"
|
13059 |
+
|
13060 |
+
to-regex@^3.0.1, to-regex@^3.0.2:
|
13061 |
+
version "3.0.2"
|
13062 |
+
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
|
13063 |
+
integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
|
13064 |
+
dependencies:
|
13065 |
+
define-property "^2.0.2"
|
13066 |
+
extend-shallow "^3.0.2"
|
13067 |
+
regex-not "^1.0.2"
|
13068 |
+
safe-regex "^1.1.0"
|
13069 |
+
|
13070 |
+
toidentifier@1.0.0:
|
13071 |
+
version "1.0.0"
|
13072 |
+
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
|
13073 |
+
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
|
13074 |
+
|
13075 |
+
tough-cookie@^2.3.3, tough-cookie@~2.5.0:
|
13076 |
+
version "2.5.0"
|
13077 |
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
13078 |
+
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
13079 |
+
dependencies:
|
13080 |
+
psl "^1.1.28"
|
13081 |
+
punycode "^2.1.1"
|
13082 |
+
|
13083 |
+
tough-cookie@^3.0.1:
|
13084 |
+
version "3.0.1"
|
13085 |
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
|
13086 |
+
integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
|
13087 |
+
dependencies:
|
13088 |
+
ip-regex "^2.1.0"
|
13089 |
+
psl "^1.1.28"
|
13090 |
+
punycode "^2.1.1"
|
13091 |
+
|
13092 |
+
tr46@^1.0.1:
|
13093 |
+
version "1.0.1"
|
13094 |
+
resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
|
13095 |
+
integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
|
13096 |
+
dependencies:
|
13097 |
+
punycode "^2.1.0"
|
13098 |
+
|
13099 |
+
traverse@~0.6.6:
|
13100 |
+
version "0.6.6"
|
13101 |
+
resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
|
13102 |
+
integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
|
13103 |
+
|
13104 |
+
tree-kill@^1.2.2:
|
13105 |
+
version "1.2.2"
|
13106 |
+
resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
|
13107 |
+
integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
|
13108 |
+
|
13109 |
+
trim-newlines@^1.0.0:
|
13110 |
+
version "1.0.0"
|
13111 |
+
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
|
13112 |
+
integrity sha1-WIeWa7WCpFA6QetST301ARgVphM=
|
13113 |
+
|
13114 |
+
trim-newlines@^3.0.0:
|
13115 |
+
version "3.0.0"
|
13116 |
+
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30"
|
13117 |
+
integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==
|
13118 |
+
|
13119 |
+
trim-off-newlines@^1.0.0:
|
13120 |
+
version "1.0.1"
|
13121 |
+
resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
|
13122 |
+
integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM=
|
13123 |
+
|
13124 |
+
trim-trailing-lines@^1.0.0:
|
13125 |
+
version "1.1.3"
|
13126 |
+
resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz#7f0739881ff76657b7776e10874128004b625a94"
|
13127 |
+
integrity sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==
|
13128 |
+
|
13129 |
+
trim@0.0.1:
|
13130 |
+
version "0.0.1"
|
13131 |
+
resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
|
13132 |
+
integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
|
13133 |
+
|
13134 |
+
trough@^1.0.0:
|
13135 |
+
version "1.0.5"
|
13136 |
+
resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
|
13137 |
+
integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
|
13138 |
+
|
13139 |
+
"true-case-path@^1.0.2":
|
13140 |
+
version "1.0.3"
|
13141 |
+
resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d"
|
13142 |
+
integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==
|
13143 |
+
dependencies:
|
13144 |
+
glob "^7.1.2"
|
13145 |
+
|
13146 |
+
tryer@^1.0.1:
|
13147 |
+
version "1.0.1"
|
13148 |
+
resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
|
13149 |
+
integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
|
13150 |
+
|
13151 |
+
tslib@^1.8.1, tslib@^1.9.0:
|
13152 |
+
version "1.14.0"
|
13153 |
+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.0.tgz#d624983f3e2c5e0b55307c3dd6c86acd737622c6"
|
13154 |
+
integrity sha512-+Zw5lu0D9tvBMjGP8LpvMb0u2WW2QV3y+D8mO6J+cNzCYIN4sVy43Bf9vl92nqFahutN0I8zHa7cc4vihIshnw==
|
13155 |
+
|
13156 |
+
tsutils@^3.17.1:
|
13157 |
+
version "3.17.1"
|
13158 |
+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
|
13159 |
+
integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
|
13160 |
+
dependencies:
|
13161 |
+
tslib "^1.8.1"
|
13162 |
+
|
13163 |
+
tty-browserify@0.0.0:
|
13164 |
+
version "0.0.0"
|
13165 |
+
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
13166 |
+
integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
|
13167 |
+
|
13168 |
+
tunnel-agent@^0.6.0:
|
13169 |
+
version "0.6.0"
|
13170 |
+
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
|
13171 |
+
integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
|
13172 |
+
dependencies:
|
13173 |
+
safe-buffer "^5.0.1"
|
13174 |
+
|
13175 |
+
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
|
13176 |
+
version "0.14.5"
|
13177 |
+
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
|
13178 |
+
integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
|
13179 |
+
|
13180 |
+
type-check@^0.4.0, type-check@~0.4.0:
|
13181 |
+
version "0.4.0"
|
13182 |
+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
|
13183 |
+
integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
|
13184 |
+
dependencies:
|
13185 |
+
prelude-ls "^1.2.1"
|
13186 |
+
|
13187 |
+
type-check@~0.3.2:
|
13188 |
+
version "0.3.2"
|
13189 |
+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
|
13190 |
+
integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
|
13191 |
+
dependencies:
|
13192 |
+
prelude-ls "~1.1.2"
|
13193 |
+
|
13194 |
+
type-detect@4.0.8:
|
13195 |
+
version "4.0.8"
|
13196 |
+
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
|
13197 |
+
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
|
13198 |
+
|
13199 |
+
type-fest@^0.11.0:
|
13200 |
+
version "0.11.0"
|
13201 |
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
|
13202 |
+
integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
|
13203 |
+
|
13204 |
+
type-fest@^0.12.0:
|
13205 |
+
version "0.12.0"
|
13206 |
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.12.0.tgz#f57a27ab81c68d136a51fd71467eff94157fa1ee"
|
13207 |
+
integrity sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==
|
13208 |
+
|
13209 |
+
type-fest@^0.13.1:
|
13210 |
+
version "0.13.1"
|
13211 |
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
|
13212 |
+
integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
|
13213 |
+
|
13214 |
+
type-fest@^0.6.0:
|
13215 |
+
version "0.6.0"
|
13216 |
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
|
13217 |
+
integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
|
13218 |
+
|
13219 |
+
type-fest@^0.8.1:
|
13220 |
+
version "0.8.1"
|
13221 |
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
13222 |
+
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
|
13223 |
+
|
13224 |
+
type-is@~1.6.17, type-is@~1.6.18:
|
13225 |
+
version "1.6.18"
|
13226 |
+
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
|
13227 |
+
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
|
13228 |
+
dependencies:
|
13229 |
+
media-typer "0.3.0"
|
13230 |
+
mime-types "~2.1.24"
|
13231 |
+
|
13232 |
+
typedarray-to-buffer@^3.1.5:
|
13233 |
+
version "3.1.5"
|
13234 |
+
resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
|
13235 |
+
integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
|
13236 |
+
dependencies:
|
13237 |
+
is-typedarray "^1.0.0"
|
13238 |
+
|
13239 |
+
typedarray@^0.0.6:
|
13240 |
+
version "0.0.6"
|
13241 |
+
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
13242 |
+
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
13243 |
+
|
13244 |
+
uc.micro@^1.0.1, uc.micro@^1.0.5:
|
13245 |
+
version "1.0.6"
|
13246 |
+
resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac"
|
13247 |
+
integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
|
13248 |
+
|
13249 |
+
uglify-js@^3.1.4:
|
13250 |
+
version "3.11.1"
|
13251 |
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.11.1.tgz#32d274fea8aac333293044afd7f81409d5040d38"
|
13252 |
+
integrity sha512-OApPSuJcxcnewwjSGGfWOjx3oix5XpmrK9Z2j0fTRlHGoZ49IU6kExfZTM0++fCArOOCet+vIfWwFHbvWqwp6g==
|
13253 |
+
|
13254 |
+
uid-number@0.0.6:
|
13255 |
+
version "0.0.6"
|
13256 |
+
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
|
13257 |
+
integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=
|
13258 |
+
|
13259 |
+
umask@^1.1.0, umask@~1.1.0:
|
13260 |
+
version "1.1.0"
|
13261 |
+
resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d"
|
13262 |
+
integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=
|
13263 |
+
|
13264 |
+
unbzip2-stream@^1.3.3:
|
13265 |
+
version "1.4.3"
|
13266 |
+
resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7"
|
13267 |
+
integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==
|
13268 |
+
dependencies:
|
13269 |
+
buffer "^5.2.1"
|
13270 |
+
through "^2.3.8"
|
13271 |
+
|
13272 |
+
unc-path-regex@^0.1.2:
|
13273 |
+
version "0.1.2"
|
13274 |
+
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
|
13275 |
+
integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo=
|
13276 |
+
|
13277 |
+
underscore.string@~3.3.5:
|
13278 |
+
version "3.3.5"
|
13279 |
+
resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.5.tgz#fc2ad255b8bd309e239cbc5816fd23a9b7ea4023"
|
13280 |
+
integrity sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==
|
13281 |
+
dependencies:
|
13282 |
+
sprintf-js "^1.0.3"
|
13283 |
+
util-deprecate "^1.0.2"
|
13284 |
+
|
13285 |
+
unherit@^1.0.4:
|
13286 |
+
version "1.1.3"
|
13287 |
+
resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
|
13288 |
+
integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==
|
13289 |
+
dependencies:
|
13290 |
+
inherits "^2.0.0"
|
13291 |
+
xtend "^4.0.0"
|
13292 |
+
|
13293 |
+
unicode-canonical-property-names-ecmascript@^1.0.4:
|
13294 |
+
version "1.0.4"
|
13295 |
+
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
|
13296 |
+
integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
|
13297 |
+
|
13298 |
+
unicode-match-property-ecmascript@^1.0.4:
|
13299 |
+
version "1.0.4"
|
13300 |
+
resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
|
13301 |
+
integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
|
13302 |
+
dependencies:
|
13303 |
+
unicode-canonical-property-names-ecmascript "^1.0.4"
|
13304 |
+
unicode-property-aliases-ecmascript "^1.0.4"
|
13305 |
+
|
13306 |
+
unicode-match-property-value-ecmascript@^1.2.0:
|
13307 |
+
version "1.2.0"
|
13308 |
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
|
13309 |
+
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
|
13310 |
+
|
13311 |
+
unicode-property-aliases-ecmascript@^1.0.4:
|
13312 |
+
version "1.1.0"
|
13313 |
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
|
13314 |
+
integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
|
13315 |
+
|
13316 |
+
unified@^6.1.2:
|
13317 |
+
version "6.2.0"
|
13318 |
+
resolved "https://registry.yarnpkg.com/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba"
|
13319 |
+
integrity sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==
|
13320 |
+
dependencies:
|
13321 |
+
bail "^1.0.0"
|
13322 |
+
extend "^3.0.0"
|
13323 |
+
is-plain-obj "^1.1.0"
|
13324 |
+
trough "^1.0.0"
|
13325 |
+
vfile "^2.0.0"
|
13326 |
+
x-is-string "^0.1.0"
|
13327 |
+
|
13328 |
+
unified@^9.0.0:
|
13329 |
+
version "9.2.0"
|
13330 |
+
resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
|
13331 |
+
integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
|
13332 |
+
dependencies:
|
13333 |
+
bail "^1.0.0"
|
13334 |
+
extend "^3.0.0"
|
13335 |
+
is-buffer "^2.0.0"
|
13336 |
+
is-plain-obj "^2.0.0"
|
13337 |
+
trough "^1.0.0"
|
13338 |
+
vfile "^4.0.0"
|
13339 |
+
|
13340 |
+
union-value@^1.0.0:
|
13341 |
+
version "1.0.1"
|
13342 |
+
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
|
13343 |
+
integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
|
13344 |
+
dependencies:
|
13345 |
+
arr-union "^3.1.0"
|
13346 |
+
get-value "^2.0.6"
|
13347 |
+
is-extendable "^0.1.1"
|
13348 |
+
set-value "^2.0.1"
|
13349 |
+
|
13350 |
+
uniq@^1.0.1:
|
13351 |
+
version "1.0.1"
|
13352 |
+
resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
|
13353 |
+
integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
|
13354 |
+
|
13355 |
+
unique-filename@^1.1.1:
|
13356 |
+
version "1.1.1"
|
13357 |
+
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
|
13358 |
+
integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
|
13359 |
+
dependencies:
|
13360 |
+
unique-slug "^2.0.0"
|
13361 |
+
|
13362 |
+
unique-slug@^2.0.0:
|
13363 |
+
version "2.0.2"
|
13364 |
+
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
|
13365 |
+
integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
|
13366 |
+
dependencies:
|
13367 |
+
imurmurhash "^0.1.4"
|
13368 |
+
|
13369 |
+
unique-string@^1.0.0:
|
13370 |
+
version "1.0.0"
|
13371 |
+
resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
|
13372 |
+
integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=
|
13373 |
+
dependencies:
|
13374 |
+
crypto-random-string "^1.0.0"
|
13375 |
+
|
13376 |
+
unique-string@^2.0.0:
|
13377 |
+
version "2.0.0"
|
13378 |
+
resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
|
13379 |
+
integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
|
13380 |
+
dependencies:
|
13381 |
+
crypto-random-string "^2.0.0"
|
13382 |
+
|
13383 |
+
unist-util-find-all-after@^3.0.1:
|
13384 |
+
version "3.0.1"
|
13385 |
+
resolved "https://registry.yarnpkg.com/unist-util-find-all-after/-/unist-util-find-all-after-3.0.1.tgz#95cc62f48812d879b4685a0512bf1b838da50e9a"
|
13386 |
+
integrity sha512-0GICgc++sRJesLwEYDjFVJPJttBpVQaTNgc6Jw0Jhzvfs+jtKePEMu+uD+PqkRUrAvGQqwhpDwLGWo1PK8PDEw==
|
13387 |
+
dependencies:
|
13388 |
+
unist-util-is "^4.0.0"
|
13389 |
+
|
13390 |
+
unist-util-is@^3.0.0:
|
13391 |
+
version "3.0.0"
|
13392 |
+
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
|
13393 |
+
integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==
|
13394 |
+
|
13395 |
+
unist-util-is@^4.0.0:
|
13396 |
+
version "4.0.2"
|
13397 |
+
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.2.tgz#c7d1341188aa9ce5b3cff538958de9895f14a5de"
|
13398 |
+
integrity sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ==
|
13399 |
+
|
13400 |
+
unist-util-remove-position@^1.0.0:
|
13401 |
+
version "1.1.4"
|
13402 |
+
resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz#ec037348b6102c897703eee6d0294ca4755a2020"
|
13403 |
+
integrity sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==
|
13404 |
+
dependencies:
|
13405 |
+
unist-util-visit "^1.1.0"
|
13406 |
+
|
13407 |
+
unist-util-remove-position@^2.0.0:
|
13408 |
+
version "2.0.1"
|
13409 |
+
resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc"
|
13410 |
+
integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
|
13411 |
+
dependencies:
|
13412 |
+
unist-util-visit "^2.0.0"
|
13413 |
+
|
13414 |
+
unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1:
|
13415 |
+
version "1.1.2"
|
13416 |
+
resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6"
|
13417 |
+
integrity sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==
|
13418 |
+
|
13419 |
+
unist-util-stringify-position@^2.0.0:
|
13420 |
+
version "2.0.3"
|
13421 |
+
resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
|
13422 |
+
integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
|
13423 |
+
dependencies:
|
13424 |
+
"@types/unist" "^2.0.2"
|
13425 |
+
|
13426 |
+
unist-util-visit-parents@^2.0.0:
|
13427 |
+
version "2.1.2"
|
13428 |
+
resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9"
|
13429 |
+
integrity sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==
|
13430 |
+
dependencies:
|
13431 |
+
unist-util-is "^3.0.0"
|
13432 |
+
|
13433 |
+
unist-util-visit-parents@^3.0.0:
|
13434 |
+
version "3.1.0"
|
13435 |
+
resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.0.tgz#4dd262fb9dcfe44f297d53e882fc6ff3421173d5"
|
13436 |
+
integrity sha512-0g4wbluTF93npyPrp/ymd3tCDTMnP0yo2akFD2FIBAYXq/Sga3lwaU1D8OYKbtpioaI6CkDcQ6fsMnmtzt7htw==
|
13437 |
+
dependencies:
|
13438 |
+
"@types/unist" "^2.0.0"
|
13439 |
+
unist-util-is "^4.0.0"
|
13440 |
+
|
13441 |
+
unist-util-visit@^1.1.0:
|
13442 |
+
version "1.4.1"
|
13443 |
+
resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3"
|
13444 |
+
integrity sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==
|
13445 |
+
dependencies:
|
13446 |
+
unist-util-visit-parents "^2.0.0"
|
13447 |
+
|
13448 |
+
unist-util-visit@^2.0.0:
|
13449 |
+
version "2.0.3"
|
13450 |
+
resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
|
13451 |
+
integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
|
13452 |
+
dependencies:
|
13453 |
+
"@types/unist" "^2.0.0"
|
13454 |
+
unist-util-is "^4.0.0"
|
13455 |
+
unist-util-visit-parents "^3.0.0"
|
13456 |
+
|
13457 |
+
universal-user-agent@^5.0.0:
|
13458 |
+
version "5.0.0"
|
13459 |
+
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9"
|
13460 |
+
integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==
|
13461 |
+
dependencies:
|
13462 |
+
os-name "^3.1.0"
|
13463 |
+
|
13464 |
+
universal-user-agent@^6.0.0:
|
13465 |
+
version "6.0.0"
|
13466 |
+
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"
|
13467 |
+
integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
|
13468 |
+
|
13469 |
+
universalify@^1.0.0:
|
13470 |
+
version "1.0.0"
|
13471 |
+
resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
|
13472 |
+
integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
|
13473 |
+
|
13474 |
+
unpipe@1.0.0, unpipe@~1.0.0:
|
13475 |
+
version "1.0.0"
|
13476 |
+
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
|
13477 |
+
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
|
13478 |
+
|
13479 |
+
unquote@~1.1.1:
|
13480 |
+
version "1.1.1"
|
13481 |
+
resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
|
13482 |
+
integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
|
13483 |
+
|
13484 |
+
unset-value@^1.0.0:
|
13485 |
+
version "1.0.0"
|
13486 |
+
resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
|
13487 |
+
integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
|
13488 |
+
dependencies:
|
13489 |
+
has-value "^0.3.1"
|
13490 |
+
isobject "^3.0.0"
|
13491 |
+
|
13492 |
+
untildify@^4.0.0:
|
13493 |
+
version "4.0.0"
|
13494 |
+
resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
|
13495 |
+
integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
|
13496 |
+
|
13497 |
+
unzip-response@^2.0.1:
|
13498 |
+
version "2.0.1"
|
13499 |
+
resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
|
13500 |
+
integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=
|
13501 |
+
|
13502 |
+
upath@^1.1.1:
|
13503 |
+
version "1.2.0"
|
13504 |
+
resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
|
13505 |
+
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
|
13506 |
+
|
13507 |
+
update-notifier@^2.2.0, update-notifier@^2.3.0, update-notifier@^2.5.0:
|
13508 |
+
version "2.5.0"
|
13509 |
+
resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6"
|
13510 |
+
integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==
|
13511 |
+
dependencies:
|
13512 |
+
boxen "^1.2.1"
|
13513 |
+
chalk "^2.0.1"
|
13514 |
+
configstore "^3.0.0"
|
13515 |
+
import-lazy "^2.1.0"
|
13516 |
+
is-ci "^1.0.10"
|
13517 |
+
is-installed-globally "^0.1.0"
|
13518 |
+
is-npm "^1.0.0"
|
13519 |
+
latest-version "^3.0.0"
|
13520 |
+
semver-diff "^2.0.0"
|
13521 |
+
xdg-basedir "^3.0.0"
|
13522 |
+
|
13523 |
+
uri-js@^4.2.2:
|
13524 |
+
version "4.4.0"
|
13525 |
+
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
|
13526 |
+
integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
|
13527 |
+
dependencies:
|
13528 |
+
punycode "^2.1.0"
|
13529 |
+
|
13530 |
+
urix@^0.1.0:
|
13531 |
+
version "0.1.0"
|
13532 |
+
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
|
13533 |
+
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
|
13534 |
+
|
13535 |
+
url-join@^4.0.0:
|
13536 |
+
version "4.0.1"
|
13537 |
+
resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7"
|
13538 |
+
integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
|
13539 |
+
|
13540 |
+
url-loader@^3.0.0:
|
13541 |
+
version "3.0.0"
|
13542 |
+
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-3.0.0.tgz#9f1f11b371acf6e51ed15a50db635e02eec18368"
|
13543 |
+
integrity sha512-a84JJbIA5xTFTWyjjcPdnsu+41o/SNE8SpXMdUvXs6Q+LuhCD9E2+0VCiuDWqgo3GGXVlFHzArDmBpj9PgWn4A==
|
13544 |
+
dependencies:
|
13545 |
+
loader-utils "^1.2.3"
|
13546 |
+
mime "^2.4.4"
|
13547 |
+
schema-utils "^2.5.0"
|
13548 |
+
|
13549 |
+
url-parse-lax@^1.0.0:
|
13550 |
+
version "1.0.0"
|
13551 |
+
resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
|
13552 |
+
integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
|
13553 |
+
dependencies:
|
13554 |
+
prepend-http "^1.0.1"
|
13555 |
+
|
13556 |
+
url-regex@^5.0.0:
|
13557 |
+
version "5.0.0"
|
13558 |
+
resolved "https://registry.yarnpkg.com/url-regex/-/url-regex-5.0.0.tgz#8f5456ab83d898d18b2f91753a702649b873273a"
|
13559 |
+
integrity sha512-O08GjTiAFNsSlrUWfqF1jH0H1W3m35ZyadHrGv5krdnmPPoxP27oDTqux/579PtaroiSGm5yma6KT1mHFH6Y/g==
|
13560 |
+
dependencies:
|
13561 |
+
ip-regex "^4.1.0"
|
13562 |
+
tlds "^1.203.0"
|
13563 |
+
|
13564 |
+
url@^0.11.0:
|
13565 |
+
version "0.11.0"
|
13566 |
+
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
|
13567 |
+
integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
|
13568 |
+
dependencies:
|
13569 |
+
punycode "1.3.2"
|
13570 |
+
querystring "0.2.0"
|
13571 |
+
|
13572 |
+
use@^3.1.0:
|
13573 |
+
version "3.1.1"
|
13574 |
+
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
|
13575 |
+
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
|
13576 |
+
|
13577 |
+
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
|
13578 |
+
version "1.0.2"
|
13579 |
+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
13580 |
+
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
13581 |
+
|
13582 |
+
util-extend@^1.0.1:
|
13583 |
+
version "1.0.3"
|
13584 |
+
resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f"
|
13585 |
+
integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8=
|
13586 |
+
|
13587 |
+
util-promisify@^2.1.0:
|
13588 |
+
version "2.1.0"
|
13589 |
+
resolved "https://registry.yarnpkg.com/util-promisify/-/util-promisify-2.1.0.tgz#3c2236476c4d32c5ff3c47002add7c13b9a82a53"
|
13590 |
+
integrity sha1-PCI2R2xNMsX/PEcAKt18E7moKlM=
|
13591 |
+
dependencies:
|
13592 |
+
object.getownpropertydescriptors "^2.0.3"
|
13593 |
+
|
13594 |
+
util.promisify@~1.0.0:
|
13595 |
+
version "1.0.1"
|
13596 |
+
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
|
13597 |
+
integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
|
13598 |
+
dependencies:
|
13599 |
+
define-properties "^1.1.3"
|
13600 |
+
es-abstract "^1.17.2"
|
13601 |
+
has-symbols "^1.0.1"
|
13602 |
+
object.getownpropertydescriptors "^2.1.0"
|
13603 |
+
|
13604 |
+
util@0.10.3:
|
13605 |
+
version "0.10.3"
|
13606 |
+
resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
|
13607 |
+
integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
|
13608 |
+
dependencies:
|
13609 |
+
inherits "2.0.1"
|
13610 |
+
|
13611 |
+
util@^0.11.0:
|
13612 |
+
version "0.11.1"
|
13613 |
+
resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
|
13614 |
+
integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
|
13615 |
+
dependencies:
|
13616 |
+
inherits "2.0.3"
|
13617 |
+
|
13618 |
+
utils-merge@1.0.1:
|
13619 |
+
version "1.0.1"
|
13620 |
+
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
|
13621 |
+
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
|
13622 |
+
|
13623 |
+
uuid@^3.3.2, uuid@^3.3.3:
|
13624 |
+
version "3.4.0"
|
13625 |
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
13626 |
+
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
13627 |
+
|
13628 |
+
v8-compile-cache@^2.0.3, v8-compile-cache@^2.1.1:
|
13629 |
+
version "2.1.1"
|
13630 |
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"
|
13631 |
+
integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==
|
13632 |
+
|
13633 |
+
v8-to-istanbul@^4.1.3:
|
13634 |
+
version "4.1.4"
|
13635 |
+
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"
|
13636 |
+
integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==
|
13637 |
+
dependencies:
|
13638 |
+
"@types/istanbul-lib-coverage" "^2.0.1"
|
13639 |
+
convert-source-map "^1.6.0"
|
13640 |
+
source-map "^0.7.3"
|
13641 |
+
|
13642 |
+
v8flags@~3.1.1:
|
13643 |
+
version "3.1.3"
|
13644 |
+
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8"
|
13645 |
+
integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==
|
13646 |
+
dependencies:
|
13647 |
+
homedir-polyfill "^1.0.1"
|
13648 |
+
|
13649 |
+
validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
|
13650 |
+
version "3.0.4"
|
13651 |
+
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
|
13652 |
+
integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
|
13653 |
+
dependencies:
|
13654 |
+
spdx-correct "^3.0.0"
|
13655 |
+
spdx-expression-parse "^3.0.0"
|
13656 |
+
|
13657 |
+
validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0:
|
13658 |
+
version "3.0.0"
|
13659 |
+
resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
|
13660 |
+
integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34=
|
13661 |
+
dependencies:
|
13662 |
+
builtins "^1.0.3"
|
13663 |
+
|
13664 |
+
vary@~1.1.2:
|
13665 |
+
version "1.1.2"
|
13666 |
+
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
13667 |
+
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
|
13668 |
+
|
13669 |
+
verror@1.10.0:
|
13670 |
+
version "1.10.0"
|
13671 |
+
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
|
13672 |
+
integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
|
13673 |
+
dependencies:
|
13674 |
+
assert-plus "^1.0.0"
|
13675 |
+
core-util-is "1.0.2"
|
13676 |
+
extsprintf "^1.2.0"
|
13677 |
+
|
13678 |
+
vfile-location@^2.0.0:
|
13679 |
+
version "2.0.6"
|
13680 |
+
resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e"
|
13681 |
+
integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==
|
13682 |
+
|
13683 |
+
vfile-location@^3.0.0:
|
13684 |
+
version "3.1.0"
|
13685 |
+
resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.1.0.tgz#81cd8a04b0ac935185f4fce16f270503fc2f692f"
|
13686 |
+
integrity sha512-FCZ4AN9xMcjFIG1oGmZKo61PjwJHRVA+0/tPUP2ul4uIwjGGndIxavEMRpWn5p4xwm/ZsdXp9YNygf1ZyE4x8g==
|
13687 |
+
|
13688 |
+
vfile-message@^1.0.0:
|
13689 |
+
version "1.1.1"
|
13690 |
+
resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1"
|
13691 |
+
integrity sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==
|
13692 |
+
dependencies:
|
13693 |
+
unist-util-stringify-position "^1.1.1"
|
13694 |
+
|
13695 |
+
vfile-message@^2.0.0:
|
13696 |
+
version "2.0.4"
|
13697 |
+
resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
|
13698 |
+
integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
|
13699 |
+
dependencies:
|
13700 |
+
"@types/unist" "^2.0.0"
|
13701 |
+
unist-util-stringify-position "^2.0.0"
|
13702 |
+
|
13703 |
+
vfile@^2.0.0:
|
13704 |
+
version "2.3.0"
|
13705 |
+
resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a"
|
13706 |
+
integrity sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==
|
13707 |
+
dependencies:
|
13708 |
+
is-buffer "^1.1.4"
|
13709 |
+
replace-ext "1.0.0"
|
13710 |
+
unist-util-stringify-position "^1.0.0"
|
13711 |
+
vfile-message "^1.0.0"
|
13712 |
+
|
13713 |
+
vfile@^4.0.0:
|
13714 |
+
version "4.2.0"
|
13715 |
+
resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.0.tgz#26c78ac92eb70816b01d4565e003b7e65a2a0e01"
|
13716 |
+
integrity sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==
|
13717 |
+
dependencies:
|
13718 |
+
"@types/unist" "^2.0.0"
|
13719 |
+
is-buffer "^2.0.0"
|
13720 |
+
replace-ext "1.0.0"
|
13721 |
+
unist-util-stringify-position "^2.0.0"
|
13722 |
+
vfile-message "^2.0.0"
|
13723 |
+
|
13724 |
+
vm-browserify@^1.0.1:
|
13725 |
+
version "1.1.2"
|
13726 |
+
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
|
13727 |
+
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
|
13728 |
+
|
13729 |
+
w3c-hr-time@^1.0.1:
|
13730 |
+
version "1.0.2"
|
13731 |
+
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
|
13732 |
+
integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
|
13733 |
+
dependencies:
|
13734 |
+
browser-process-hrtime "^1.0.0"
|
13735 |
+
|
13736 |
+
w3c-xmlserializer@^1.1.2:
|
13737 |
+
version "1.1.2"
|
13738 |
+
resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794"
|
13739 |
+
integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==
|
13740 |
+
dependencies:
|
13741 |
+
domexception "^1.0.1"
|
13742 |
+
webidl-conversions "^4.0.2"
|
13743 |
+
xml-name-validator "^3.0.0"
|
13744 |
+
|
13745 |
+
wait-on@^3.3.0:
|
13746 |
+
version "3.3.0"
|
13747 |
+
resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-3.3.0.tgz#9940981d047a72a9544a97b8b5fca45b2170a082"
|
13748 |
+
integrity sha512-97dEuUapx4+Y12aknWZn7D25kkjMk16PbWoYzpSdA8bYpVfS6hpl2a2pOWZ3c+Tyt3/i4/pglyZctG3J4V1hWQ==
|
13749 |
+
dependencies:
|
13750 |
+
"@hapi/joi" "^15.0.3"
|
13751 |
+
core-js "^2.6.5"
|
13752 |
+
minimist "^1.2.0"
|
13753 |
+
request "^2.88.0"
|
13754 |
+
rx "^4.1.0"
|
13755 |
+
|
13756 |
+
wait-port@^0.2.7:
|
13757 |
+
version "0.2.9"
|
13758 |
+
resolved "https://registry.yarnpkg.com/wait-port/-/wait-port-0.2.9.tgz#3905cf271b5dbe37a85c03b85b418b81cb24ee55"
|
13759 |
+
integrity sha512-hQ/cVKsNqGZ/UbZB/oakOGFqic00YAMM5/PEj3Bt4vKarv2jWIWzDbqlwT94qMs/exAQAsvMOq99sZblV92zxQ==
|
13760 |
+
dependencies:
|
13761 |
+
chalk "^2.4.2"
|
13762 |
+
commander "^3.0.2"
|
13763 |
+
debug "^4.1.1"
|
13764 |
+
|
13765 |
+
walker@^1.0.7, walker@~1.0.5:
|
13766 |
+
version "1.0.7"
|
13767 |
+
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
|
13768 |
+
integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
|
13769 |
+
dependencies:
|
13770 |
+
makeerror "1.0.x"
|
13771 |
+
|
13772 |
+
watchpack-chokidar2@^2.0.0:
|
13773 |
+
version "2.0.0"
|
13774 |
+
resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0"
|
13775 |
+
integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==
|
13776 |
+
dependencies:
|
13777 |
+
chokidar "^2.1.8"
|
13778 |
+
|
13779 |
+
watchpack@^1.7.4:
|
13780 |
+
version "1.7.4"
|
13781 |
+
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.4.tgz#6e9da53b3c80bb2d6508188f5b200410866cd30b"
|
13782 |
+
integrity sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==
|
13783 |
+
dependencies:
|
13784 |
+
graceful-fs "^4.1.2"
|
13785 |
+
neo-async "^2.5.0"
|
13786 |
+
optionalDependencies:
|
13787 |
+
chokidar "^3.4.1"
|
13788 |
+
watchpack-chokidar2 "^2.0.0"
|
13789 |
+
|
13790 |
+
wcwidth@^1.0.0:
|
13791 |
+
version "1.0.1"
|
13792 |
+
resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
|
13793 |
+
integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
|
13794 |
+
dependencies:
|
13795 |
+
defaults "^1.0.3"
|
13796 |
+
|
13797 |
+
webidl-conversions@^4.0.2:
|
13798 |
+
version "4.0.2"
|
13799 |
+
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
|
13800 |
+
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
|
13801 |
+
|
13802 |
+
webpack-bundle-analyzer@^3.6.1:
|
13803 |
+
version "3.9.0"
|
13804 |
+
resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz#f6f94db108fb574e415ad313de41a2707d33ef3c"
|
13805 |
+
integrity sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==
|
13806 |
+
dependencies:
|
13807 |
+
acorn "^7.1.1"
|
13808 |
+
acorn-walk "^7.1.1"
|
13809 |
+
bfj "^6.1.1"
|
13810 |
+
chalk "^2.4.1"
|
13811 |
+
commander "^2.18.0"
|
13812 |
+
ejs "^2.6.1"
|
13813 |
+
express "^4.16.3"
|
13814 |
+
filesize "^3.6.1"
|
13815 |
+
gzip-size "^5.0.0"
|
13816 |
+
lodash "^4.17.19"
|
13817 |
+
mkdirp "^0.5.1"
|
13818 |
+
opener "^1.5.1"
|
13819 |
+
ws "^6.0.0"
|
13820 |
+
|
13821 |
+
webpack-cli@^3.3.11:
|
13822 |
+
version "3.3.12"
|
13823 |
+
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a"
|
13824 |
+
integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==
|
13825 |
+
dependencies:
|
13826 |
+
chalk "^2.4.2"
|
13827 |
+
cross-spawn "^6.0.5"
|
13828 |
+
enhanced-resolve "^4.1.1"
|
13829 |
+
findup-sync "^3.0.0"
|
13830 |
+
global-modules "^2.0.0"
|
13831 |
+
import-local "^2.0.0"
|
13832 |
+
interpret "^1.4.0"
|
13833 |
+
loader-utils "^1.4.0"
|
13834 |
+
supports-color "^6.1.0"
|
13835 |
+
v8-compile-cache "^2.1.1"
|
13836 |
+
yargs "^13.3.2"
|
13837 |
+
|
13838 |
+
webpack-livereload-plugin@^2.3.0:
|
13839 |
+
version "2.3.0"
|
13840 |
+
resolved "https://registry.yarnpkg.com/webpack-livereload-plugin/-/webpack-livereload-plugin-2.3.0.tgz#61994e0500a0c1e27355ff753a9642641bef5d6a"
|
13841 |
+
integrity sha512-vVBLQLlNpElt2sfsBG+XLDeVbQFS4RrniVU8Hi1/hX5ycSfx6mtW8MEEITr2g0Cvo36kuPWShFFDuy+DS7KFMA==
|
13842 |
+
dependencies:
|
13843 |
+
anymatch "^3.1.1"
|
13844 |
+
portfinder "^1.0.17"
|
13845 |
+
tiny-lr "^1.1.1"
|
13846 |
+
|
13847 |
+
webpack-sources@^1.1.0, webpack-sources@^1.3.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
|
13848 |
+
version "1.4.3"
|
13849 |
+
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
|
13850 |
+
integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
|
13851 |
+
dependencies:
|
13852 |
+
source-list-map "^2.0.0"
|
13853 |
+
source-map "~0.6.1"
|
13854 |
+
|
13855 |
+
webpack@^4.42.0, webpack@^4.8.3:
|
13856 |
+
version "4.44.2"
|
13857 |
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72"
|
13858 |
+
integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==
|
13859 |
+
dependencies:
|
13860 |
+
"@webassemblyjs/ast" "1.9.0"
|
13861 |
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
13862 |
+
"@webassemblyjs/wasm-edit" "1.9.0"
|
13863 |
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
13864 |
+
acorn "^6.4.1"
|
13865 |
+
ajv "^6.10.2"
|
13866 |
+
ajv-keywords "^3.4.1"
|
13867 |
+
chrome-trace-event "^1.0.2"
|
13868 |
+
enhanced-resolve "^4.3.0"
|
13869 |
+
eslint-scope "^4.0.3"
|
13870 |
+
json-parse-better-errors "^1.0.2"
|
13871 |
+
loader-runner "^2.4.0"
|
13872 |
+
loader-utils "^1.2.3"
|
13873 |
+
memory-fs "^0.4.1"
|
13874 |
+
micromatch "^3.1.10"
|
13875 |
+
mkdirp "^0.5.3"
|
13876 |
+
neo-async "^2.6.1"
|
13877 |
+
node-libs-browser "^2.2.1"
|
13878 |
+
schema-utils "^1.0.0"
|
13879 |
+
tapable "^1.1.3"
|
13880 |
+
terser-webpack-plugin "^1.4.3"
|
13881 |
+
watchpack "^1.7.4"
|
13882 |
+
webpack-sources "^1.4.1"
|
13883 |
+
|
13884 |
+
websocket-driver@>=0.5.1:
|
13885 |
+
version "0.7.4"
|
13886 |
+
resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
|
13887 |
+
integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
|
13888 |
+
dependencies:
|
13889 |
+
http-parser-js ">=0.5.1"
|
13890 |
+
safe-buffer ">=5.1.0"
|
13891 |
+
websocket-extensions ">=0.1.1"
|
13892 |
+
|
13893 |
+
websocket-extensions@>=0.1.1:
|
13894 |
+
version "0.1.4"
|
13895 |
+
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
|
13896 |
+
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
|
13897 |
+
|
13898 |
+
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5:
|
13899 |
+
version "1.0.5"
|
13900 |
+
resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
|
13901 |
+
integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
|
13902 |
+
dependencies:
|
13903 |
+
iconv-lite "0.4.24"
|
13904 |
+
|
13905 |
+
whatwg-fetch@^3.4.1:
|
13906 |
+
version "3.4.1"
|
13907 |
+
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.4.1.tgz#e5f871572d6879663fa5674c8f833f15a8425ab3"
|
13908 |
+
integrity sha512-sofZVzE1wKwO+EYPbWfiwzaKovWiZXf4coEzjGP9b2GBVgQRLQUZ2QcuPpQExGDAW5GItpEm6Tl4OU5mywnAoQ==
|
13909 |
+
|
13910 |
+
whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0:
|
13911 |
+
version "2.3.0"
|
13912 |
+
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
|
13913 |
+
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
|
13914 |
+
|
13915 |
+
whatwg-url@^7.0.0:
|
13916 |
+
version "7.1.0"
|
13917 |
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
|
13918 |
+
integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
|
13919 |
+
dependencies:
|
13920 |
+
lodash.sortby "^4.7.0"
|
13921 |
+
tr46 "^1.0.1"
|
13922 |
+
webidl-conversions "^4.0.2"
|
13923 |
+
|
13924 |
+
which-module@^2.0.0:
|
13925 |
+
version "2.0.0"
|
13926 |
+
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
13927 |
+
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
13928 |
+
|
13929 |
+
which@1, which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0, which@^1.3.1, which@~1.3.0:
|
13930 |
+
version "1.3.1"
|
13931 |
+
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
13932 |
+
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
13933 |
+
dependencies:
|
13934 |
+
isexe "^2.0.0"
|
13935 |
+
|
13936 |
+
which@^2.0.1, which@^2.0.2:
|
13937 |
+
version "2.0.2"
|
13938 |
+
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
13939 |
+
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
|
13940 |
+
dependencies:
|
13941 |
+
isexe "^2.0.0"
|
13942 |
+
|
13943 |
+
wide-align@^1.1.0:
|
13944 |
+
version "1.1.3"
|
13945 |
+
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
|
13946 |
+
integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
|
13947 |
+
dependencies:
|
13948 |
+
string-width "^1.0.2 || 2"
|
13949 |
+
|
13950 |
+
widest-line@^2.0.0:
|
13951 |
+
version "2.0.1"
|
13952 |
+
resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
|
13953 |
+
integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==
|
13954 |
+
dependencies:
|
13955 |
+
string-width "^2.1.1"
|
13956 |
+
|
13957 |
+
windows-release@^3.1.0:
|
13958 |
+
version "3.3.3"
|
13959 |
+
resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.3.tgz#1c10027c7225743eec6b89df160d64c2e0293999"
|
13960 |
+
integrity sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==
|
13961 |
+
dependencies:
|
13962 |
+
execa "^1.0.0"
|
13963 |
+
|
13964 |
+
word-wrap@^1.2.3, word-wrap@~1.2.3:
|
13965 |
+
version "1.2.3"
|
13966 |
+
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
13967 |
+
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
13968 |
+
|
13969 |
+
wordwrap@^1.0.0:
|
13970 |
+
version "1.0.0"
|
13971 |
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
13972 |
+
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
|
13973 |
+
|
13974 |
+
worker-farm@^1.6.0, worker-farm@^1.7.0:
|
13975 |
+
version "1.7.0"
|
13976 |
+
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
|
13977 |
+
integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
|
13978 |
+
dependencies:
|
13979 |
+
errno "~0.1.7"
|
13980 |
+
|
13981 |
+
wrap-ansi@^2.0.0:
|
13982 |
+
version "2.1.0"
|
13983 |
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
|
13984 |
+
integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
|
13985 |
+
dependencies:
|
13986 |
+
string-width "^1.0.1"
|
13987 |
+
strip-ansi "^3.0.1"
|
13988 |
+
|
13989 |
+
wrap-ansi@^3.0.1:
|
13990 |
+
version "3.0.1"
|
13991 |
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba"
|
13992 |
+
integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=
|
13993 |
+
dependencies:
|
13994 |
+
string-width "^2.1.1"
|
13995 |
+
strip-ansi "^4.0.0"
|
13996 |
+
|
13997 |
+
wrap-ansi@^5.1.0:
|
13998 |
+
version "5.1.0"
|
13999 |
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
|
14000 |
+
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
|
14001 |
+
dependencies:
|
14002 |
+
ansi-styles "^3.2.0"
|
14003 |
+
string-width "^3.0.0"
|
14004 |
+
strip-ansi "^5.0.0"
|
14005 |
+
|
14006 |
+
wrap-ansi@^6.2.0:
|
14007 |
+
version "6.2.0"
|
14008 |
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
14009 |
+
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
|
14010 |
+
dependencies:
|
14011 |
+
ansi-styles "^4.0.0"
|
14012 |
+
string-width "^4.1.0"
|
14013 |
+
strip-ansi "^6.0.0"
|
14014 |
+
|
14015 |
+
wrappy@1:
|
14016 |
+
version "1.0.2"
|
14017 |
+
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
14018 |
+
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
14019 |
+
|
14020 |
+
write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.3:
|
14021 |
+
version "2.4.3"
|
14022 |
+
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
|
14023 |
+
integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
|
14024 |
+
dependencies:
|
14025 |
+
graceful-fs "^4.1.11"
|
14026 |
+
imurmurhash "^0.1.4"
|
14027 |
+
signal-exit "^3.0.2"
|
14028 |
+
|
14029 |
+
write-file-atomic@^3.0.0, write-file-atomic@^3.0.3:
|
14030 |
+
version "3.0.3"
|
14031 |
+
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
|
14032 |
+
integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
|
14033 |
+
dependencies:
|
14034 |
+
imurmurhash "^0.1.4"
|
14035 |
+
is-typedarray "^1.0.0"
|
14036 |
+
signal-exit "^3.0.2"
|
14037 |
+
typedarray-to-buffer "^3.1.5"
|
14038 |
+
|
14039 |
+
write@1.0.3:
|
14040 |
+
version "1.0.3"
|
14041 |
+
resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
|
14042 |
+
integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
|
14043 |
+
dependencies:
|
14044 |
+
mkdirp "^0.5.1"
|
14045 |
+
|
14046 |
+
ws@^6.0.0:
|
14047 |
+
version "6.2.1"
|
14048 |
+
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"
|
14049 |
+
integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
|
14050 |
+
dependencies:
|
14051 |
+
async-limiter "~1.0.0"
|
14052 |
+
|
14053 |
+
ws@^7.0.0, ws@^7.2.3:
|
14054 |
+
version "7.3.1"
|
14055 |
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8"
|
14056 |
+
integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==
|
14057 |
+
|
14058 |
+
x-is-string@^0.1.0:
|
14059 |
+
version "0.1.0"
|
14060 |
+
resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82"
|
14061 |
+
integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=
|
14062 |
+
|
14063 |
+
xdg-basedir@^3.0.0:
|
14064 |
+
version "3.0.0"
|
14065 |
+
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
|
14066 |
+
integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
|
14067 |
+
|
14068 |
+
xml-name-validator@^3.0.0:
|
14069 |
+
version "3.0.0"
|
14070 |
+
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
|
14071 |
+
integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
|
14072 |
+
|
14073 |
+
xmlchars@^2.1.1:
|
14074 |
+
version "2.2.0"
|
14075 |
+
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
|
14076 |
+
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
|
14077 |
+
|
14078 |
+
xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
|
14079 |
+
version "4.0.2"
|
14080 |
+
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
14081 |
+
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
14082 |
+
|
14083 |
+
y18n@^3.2.1:
|
14084 |
+
version "3.2.1"
|
14085 |
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
|
14086 |
+
integrity sha1-bRX7qITAhnnA136I53WegR4H+kE=
|
14087 |
+
|
14088 |
+
y18n@^4.0.0:
|
14089 |
+
version "4.0.0"
|
14090 |
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
|
14091 |
+
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
|
14092 |
+
|
14093 |
+
yallist@^2.1.2:
|
14094 |
+
version "2.1.2"
|
14095 |
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
14096 |
+
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
|
14097 |
+
|
14098 |
+
yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
|
14099 |
+
version "3.1.1"
|
14100 |
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
|
14101 |
+
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
|
14102 |
+
|
14103 |
+
yallist@^4.0.0:
|
14104 |
+
version "4.0.0"
|
14105 |
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
14106 |
+
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
14107 |
+
|
14108 |
+
yaml@^1.10.0, yaml@^1.7.2:
|
14109 |
+
version "1.10.0"
|
14110 |
+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
|
14111 |
+
integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
|
14112 |
+
|
14113 |
+
yargs-parser@^13.1.2:
|
14114 |
+
version "13.1.2"
|
14115 |
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
|
14116 |
+
integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
|
14117 |
+
dependencies:
|
14118 |
+
camelcase "^5.0.0"
|
14119 |
+
decamelize "^1.2.0"
|
14120 |
+
|
14121 |
+
yargs-parser@^15.0.1:
|
14122 |
+
version "15.0.1"
|
14123 |
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3"
|
14124 |
+
integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==
|
14125 |
+
dependencies:
|
14126 |
+
camelcase "^5.0.0"
|
14127 |
+
decamelize "^1.2.0"
|
14128 |
+
|
14129 |
+
yargs-parser@^18.1.2, yargs-parser@^18.1.3:
|
14130 |
+
version "18.1.3"
|
14131 |
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
|
14132 |
+
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
|
14133 |
+
dependencies:
|
14134 |
+
camelcase "^5.0.0"
|
14135 |
+
decamelize "^1.2.0"
|
14136 |
+
|
14137 |
+
yargs-parser@^7.0.0:
|
14138 |
+
version "7.0.0"
|
14139 |
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
|
14140 |
+
integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k=
|
14141 |
+
dependencies:
|
14142 |
+
camelcase "^4.1.0"
|
14143 |
+
|
14144 |
+
yargs@^13.3.2:
|
14145 |
+
version "13.3.2"
|
14146 |
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
|
14147 |
+
integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
|
14148 |
+
dependencies:
|
14149 |
+
cliui "^5.0.0"
|
14150 |
+
find-up "^3.0.0"
|
14151 |
+
get-caller-file "^2.0.1"
|
14152 |
+
require-directory "^2.1.1"
|
14153 |
+
require-main-filename "^2.0.0"
|
14154 |
+
set-blocking "^2.0.0"
|
14155 |
+
string-width "^3.0.0"
|
14156 |
+
which-module "^2.0.0"
|
14157 |
+
y18n "^4.0.0"
|
14158 |
+
yargs-parser "^13.1.2"
|
14159 |
+
|
14160 |
+
yargs@^14.2.3:
|
14161 |
+
version "14.2.3"
|
14162 |
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414"
|
14163 |
+
integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==
|
14164 |
+
dependencies:
|
14165 |
+
cliui "^5.0.0"
|
14166 |
+
decamelize "^1.2.0"
|
14167 |
+
find-up "^3.0.0"
|
14168 |
+
get-caller-file "^2.0.1"
|
14169 |
+
require-directory "^2.1.1"
|
14170 |
+
require-main-filename "^2.0.0"
|
14171 |
+
set-blocking "^2.0.0"
|
14172 |
+
string-width "^3.0.0"
|
14173 |
+
which-module "^2.0.0"
|
14174 |
+
y18n "^4.0.0"
|
14175 |
+
yargs-parser "^15.0.1"
|
14176 |
+
|
14177 |
+
yargs@^15.0.1, yargs@^15.3.1:
|
14178 |
+
version "15.4.1"
|
14179 |
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
|
14180 |
+
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
|
14181 |
+
dependencies:
|
14182 |
+
cliui "^6.0.0"
|
14183 |
+
decamelize "^1.2.0"
|
14184 |
+
find-up "^4.1.0"
|
14185 |
+
get-caller-file "^2.0.1"
|
14186 |
+
require-directory "^2.1.1"
|
14187 |
+
require-main-filename "^2.0.0"
|
14188 |
+
set-blocking "^2.0.0"
|
14189 |
+
string-width "^4.2.0"
|
14190 |
+
which-module "^2.0.0"
|
14191 |
+
y18n "^4.0.0"
|
14192 |
+
yargs-parser "^18.1.2"
|
14193 |
+
|
14194 |
+
yargs@^8.0.2:
|
14195 |
+
version "8.0.2"
|
14196 |
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
|
14197 |
+
integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A=
|
14198 |
+
dependencies:
|
14199 |
+
camelcase "^4.1.0"
|
14200 |
+
cliui "^3.2.0"
|
14201 |
+
decamelize "^1.1.1"
|
14202 |
+
get-caller-file "^1.0.1"
|
14203 |
+
os-locale "^2.0.0"
|
14204 |
+
read-pkg-up "^2.0.0"
|
14205 |
+
require-directory "^2.1.1"
|
14206 |
+
require-main-filename "^1.0.1"
|
14207 |
+
set-blocking "^2.0.0"
|
14208 |
+
string-width "^2.0.0"
|
14209 |
+
which-module "^2.0.0"
|
14210 |
+
y18n "^3.2.1"
|
14211 |
+
yargs-parser "^7.0.0"
|
14212 |
+
|
14213 |
+
yauzl@^2.10.0:
|
14214 |
+
version "2.10.0"
|
14215 |
+
resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"
|
14216 |
+
integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=
|
14217 |
+
dependencies:
|
14218 |
+
buffer-crc32 "~0.2.3"
|
14219 |
+
fd-slicer "~1.1.0"
|