├── .gitignore ├── .github └── workflows │ └── pages.yml ├── LICENSE ├── README.md ├── examples ├── index.html ├── leaflet-marker-highlight.css ├── beautify-marker.html └── leaflet-marker-highlight.min.js ├── README_CN.md ├── package.json ├── index.css ├── index.js └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | dist -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- 1 | name: github-pages 2 | 3 | on: push 4 | 5 | jobs: 6 | pages: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | 11 | - name: Setup Node 12 | uses: actions/setup-node@v2.1.2 13 | with: 14 | node-version: '14.x' 15 | 16 | - name: Cache .pnpm-store 17 | uses: actions/cache@v2 18 | with: 19 | path: ~/.pnpm-store 20 | key: ${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} 21 | restore-keys: | 22 | ${{ runner.os }}-${{ matrix.node-version }} 23 | - name: install pnpm and npm 24 | run: | 25 | curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm@dev npm@6 26 | - name: pnpm install 27 | run: pnpm install 28 | - name: build pages 29 | run: npm run build 30 | 31 | - name: GitHub Pages action 32 | uses: peaceiris/actions-gh-pages@v3 33 | with: 34 | github_token: ${{ secrets.GITHUB_TOKEN }} 35 | publish_dir: ./examples -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Brandon XIANG 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # leaflet.marker.highlight 2 | 3 | Highlight effects for L.marker. 4 | 5 | ## Demo 6 | 7 | [DEMO](https://brandonxiang.github.io/leaflet.marker.highlight/) 8 | 9 | ## Installation 10 | 11 | ```javascript 12 | npm install leaflet.marker.highlight --save 13 | ``` 14 | 15 | ## Usage 16 | 17 | ### Temporarily Highlight 18 | 19 | Highlight effects will occur in the situation that you put your mouse over the marker. 20 | 21 | You can set it when initializing a marker. 22 | 23 | ```javascript 24 | var marker1 = L.marker([51.5, -0.09], {highlight: 'temporary'}).addTo(map); 25 | ``` 26 | 27 | Or you can use a method to enable the highlight effects. 28 | 29 | ```javascript 30 | marker1.enableTemporaryHighlight(); 31 | ``` 32 | 33 | ```javascript 34 | marker1.disableTemporaryHighlight(); 35 | ``` 36 | 37 | ### Permanently Highlight 38 | 39 | Highlight effects are always on. 40 | 41 | ```javascript 42 | var marker1 = L.marker([51.5, -0.09], {highlight: 'permanent'}).addTo(map); 43 | ``` 44 | 45 | or 46 | 47 | ```javascript 48 | marker1.enablePermanentHighlight(); 49 | ``` 50 | 51 | Cancel the marker highlight effects by 52 | 53 | ```javascript 54 | marker1.disablePermanentHighlight(); 55 | ``` 56 | 57 | ## License 58 | 59 | [MIT](LICENSE) 60 | 61 | 62 | ## Chinese Version 63 | 64 | [README](README_CN.md) 65 | -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Map 7 | 8 | 9 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | # Leaflet 笔记八:marker高亮显示 2 | 3 | 这个plugin主要是为了方便实现marker的高亮显示。 4 | 5 | ## 安装 6 | 7 | 该库已经发布到npmjs上,所以安装非常简单。 8 | 9 | ``` 10 | npm install leaflet.marker.highlight --save 11 | ``` 12 | 13 | ## 原理 14 | 15 | 突出marker的原理非常简单,在marker附近突出动态显示放大的圆形。只需将一个新的`div`插入到marker的底下,用css3实现marker的高亮特效。 16 | 17 | 整个使用的过程分为两种情况,一种是临时高亮显示,另一种是永久高亮显示。临时高亮即是当你鼠标移到marker附近才出现高亮,永久高亮就是你鼠标不需要与marker交互,它也能完成高亮显示。 18 | 19 | ### 临时高亮显示 20 | 21 | 在鼠标移动到marker上时显示。在初始化时,可以针对某个该marker设置`highlight`的属性。 22 | 23 | ``` 24 | var marker1 = L.marker([51.5, -0.09], {highlight: 'temporary'}).addTo(map); 25 | ``` 26 | 27 | #### 使用方法 28 | 29 | 使用`enableTemporaryHighlight`设置打开针对某个marker临时高亮,使用`disbaleTemporaryHighlight`设置取消临时高亮。 30 | 31 | ``` 32 | marker1.enableTemporaryHighlight(); 33 | ``` 34 | 35 | ``` 36 | marker1.disableTemporaryHighlight(); 37 | ``` 38 | 39 | ### 永久高亮显示 40 | 41 | 在初始化时,固定显示marker的位置,设置`highlight`的属性。 42 | 43 | ``` 44 | var marker1 = L.marker([51.5, -0.09], {highlight: 'permanent'}).addTo(map); 45 | ``` 46 | 47 | #### 使用方法 48 | 49 | 或者你也可以不在初始化的情况下设置,通过`enablePermanentHighlight`去设置其永久高亮特效,或者通过`disablePermanentHighlight`去取消高亮特效。 50 | ``` 51 | marker1.enablePermanentHighlight(); 52 | ``` 53 | 54 | ``` 55 | marker1.disablePermanentHighlight(); 56 | ``` 57 | 58 | 59 | ## 例子 60 | 61 | [DEMO](https://brandonxiang.github.io/leaflet.marker.highlight/examples/) 62 | 63 | ## License 64 | 65 | License [MIT](https://github.com/brandonxiang/leaflet.marker.highlight/blob/master/LICENSE),欢迎来fork和contribute。 66 | 67 | 转载,请表明出处。[总目录Awesome GIS](http://www.jianshu.com/p/3b3efa92dd6d) 68 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "leaflet.marker.highlight", 3 | "version": "0.0.4", 4 | "description": "Highlight performance for L.marker", 5 | "main": "dist/leaflet-marker-highlight.js", 6 | "unpkg": "dist/leaflet-marker-highlight.min.js", 7 | "module": "dist/leaflet-marker-highlight.mjs", 8 | "exports": { 9 | "require": "./dist/leaflet-marker-highlight.js", 10 | "default": "./dist/leaflet-marker-highlight.modern.js" 11 | }, 12 | "files": [ 13 | "dist" 14 | ], 15 | "scripts": { 16 | "dev": "sirv examples --port 3000 --dev", 17 | "build": "npm run build-js && npm run build-css && npm run build-demo", 18 | "build-demo": "cp dist/leaflet-marker-highlight.min.js examples && cp dist/leaflet-marker-highlight.css examples", 19 | "build-js": "microbundle --globals leaflet=L --sourcemap false", 20 | "build-css": "uglifycss ./index.css > ./dist/leaflet-marker-highlight.css" 21 | }, 22 | "repository": { 23 | "type": "git", 24 | "url": "git+https://github.com/brandonxiang/leaflet.marker.hightlight.git" 25 | }, 26 | "keywords": [ 27 | "leaflet", 28 | "highlight", 29 | "marker" 30 | ], 31 | "author": "brandonxiang", 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/brandonxiang/leaflet.marker.hightlight/issues" 35 | }, 36 | "homepage": "https://github.com/brandonxiang/leaflet.marker.hightlight#readme", 37 | "dependencies": { 38 | "leaflet": "^1.0.0" 39 | }, 40 | "devDependencies": { 41 | "sirv-cli": "^1.0.14", 42 | "microbundle": "^0.14.2", 43 | "uglifycss": "^0.0.29" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /examples/leaflet-marker-highlight.css: -------------------------------------------------------------------------------- 1 | :root{--radis-glow:200px;--opacity-glow:.4;--radis-flare:50px;--opacity-flare:.8;--color-permanent:rgba(66,186,255,1);--color-temporary:rgba(254,211,0,1)}.leaflet-marker-pane .light{width:200px !important;height:200px !important;margin-top:-100px !important;margin-left:-100px !important;background:transparent !important;border:transparent !important}.leaflet-marker-pane .light .glow{width:0;height:0;border-radius:50%;opacity:0;background:-webkit-radial-gradient(rgba(254,211,0,1),rgba(255,223,67,0) 70%);position:absolute;display:block;top:50%;left:50%;transform:translate(-50%,-50%);transition:all 1000ms cubic-bezier(0.68,-0.55,0.265,1.55)}.leaflet-marker-pane .light .flare{width:0;height:0;border-radius:50%;opacity:0;background:rgba(255,223,67,0);position:absolute;display:block;top:50%;left:50%;transform:translate(-50%,-50%);transition:all 1000ms cubic-bezier(0.68,-0.55,0.265,1.55)}@keyframes highlight-glow{0%{width:0;height:0;opacity:0}100%{width:var(--radis-glow);height:var(--radis-glow);opacity:var(--opacity-glow)}}@keyframes highlight-flare{0%{width:0;height:0;opacity:0}100%{width:var(--radis-flare);height:var(--radis-flare);opacity:var(--opacity-flare)}}.permanent .glow{background:-webkit-radial-gradient(var(--color-permanent),rgba(255,223,67,0) 70%) !important;animation:highlight-glow 2s infinite cubic-bezier(0.68,-0.55,0.265,1.55)}.permanent .flare{background:var(--color-permanent) !important;animation:highlight-flare 2s infinite cubic-bezier(0.68,-0.55,0.265,1.55)}img:hover+.light.temporary .glow{background:-webkit-radial-gradient(var(--color-temporary),rgba(255,223,67,0) 70%);transition:all 800ms cubic-bezier(0.68,-0.55,0.265,1.55)}img:hover+.light.temporary .flare{background:var(--color-temporary);transition:all 600ms cubic-bezier(0.68,-0.55,0.265,1.55)} 2 | -------------------------------------------------------------------------------- /examples/beautify-marker.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Map 7 | 8 | 9 | 10 | 12 | 13 | 14 | 27 | 28 | 29 | 30 |
31 | 32 | 33 | 34 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /examples/leaflet-marker-highlight.min.js: -------------------------------------------------------------------------------- 1 | !function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(require("leaflet")):"function"==typeof define&&define.amd?define(["leaflet"],i):i((t||self).L)}(this,function(t){function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var e=/*#__PURE__*/i(t);e.default.Marker.include({_initIcon:function(){this._initIconOrigin(),this._light=e.default.DivIcon.prototype.createIcon();var t=this._light;e.default.DomUtil.addClass(t,"light"),e.default.DomUtil.create("span","glow",t),e.default.DomUtil.create("span","flare",t),"permanent"===this.options.highlight?e.default.DomUtil.addClass(t,"permanent"):"temporary"===this.options.highlight&&e.default.DomUtil.addClass(t,"temporary"),this.getPane().appendChild(t),this.on("remove",function(){t.remove()})},_setPos:function(t){this._setPosOrigin(t),e.default.DomUtil.setPosition(this._light,t)},enableTemporaryHighlight:function(){this.options.highlight="temporary",e.default.DomUtil.addClass(this._light,"temporary")},disableTemporaryHighlight:function(t){delete this.options.highlight,e.default.DomUtil.removeClass(this._light,"temporary")},enablePermanentHighlight:function(){this.options.highlight="permanent",e.default.DomUtil.addClass(this._light,"permanent")},disablePermanentHighlight:function(t){delete this.options.highlight,e.default.DomUtil.removeClass(this._light,"permanent")},enableDynamicHighlight:function(t){delete this.options.highlight,e.default.DomUtil.addClass(this._light,t)},disableDynamicHighlight:function(t){delete this.options.highlight,e.default.DomUtil.removeClass(this._light,t)},showTimerHighlight:function(t,i){var e=this;void 0===i&&(i=12e3),this.enableDynamicHighlight(t),setTimeout(function(){e.disableDynamicHighlight(t)},i)},_initIconOrigin:function(){var t=this.options,i="leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"),o=t.icon.createIcon(this._icon),n=!1;o!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(o.title=t.title),t.alt&&(o.alt=t.alt)),e.default.DomUtil.addClass(o,i),t.keyboard&&(o.tabIndex="0"),this._icon=o,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex});var s=t.icon.createShadow(this._shadow),h=!1;s!==this._shadow&&(this._removeShadow(),h=!0),s&&e.default.DomUtil.addClass(s,i),this._shadow=s,t.opacity<1&&this._updateOpacity(),n&&this.getPane().appendChild(this._icon),this._initInteraction(),s&&h&&this.getPane("shadowPane").appendChild(this._shadow)},_setPosOrigin:function(t){e.default.DomUtil.setPosition(this._icon,t),this._shadow&&e.default.DomUtil.setPosition(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()}})}); 2 | -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --radis-glow: 200px; 3 | --opacity-glow: 0.4; 4 | --radis-flare: 50px; 5 | --opacity-flare: 0.8; 6 | /* --color-permanent: rgba(66, 186, 255, 1); */ 7 | --color-permanent: rgba(66, 186, 255, 1); 8 | /* --color-temporary: rgba(254, 211, 0, 1); */ 9 | --color-temporary: rgba(254, 211, 0, 1);; 10 | 11 | } 12 | 13 | .leaflet-marker-pane .light { 14 | width: 200px!important; 15 | height: 200px!important; 16 | margin-top: -100px!important; 17 | margin-left: -100px!important; 18 | background: transparent!important; 19 | border: transparent!important; 20 | } 21 | 22 | .leaflet-marker-pane .light .glow { 23 | width: 0px; 24 | height: 0px; 25 | border-radius: 50%; 26 | opacity: 0; 27 | background: -webkit-radial-gradient(rgba(254, 211, 0, 1), rgba(255, 223, 67, 0) 70%); 28 | position: absolute; 29 | display: block; 30 | top: 50%; 31 | left: 50%; 32 | transform: translate(-50%, -50%); 33 | transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55); 34 | } 35 | 36 | .leaflet-marker-pane .light .flare { 37 | width: 0px; 38 | height: 0px; 39 | border-radius: 50%; 40 | opacity: 0; 41 | background: rgba(255, 223, 67, 0); 42 | position: absolute; 43 | display: block; 44 | top: 50%; 45 | left: 50%; 46 | transform: translate(-50%, -50%); 47 | transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55); 48 | } 49 | 50 | 51 | @keyframes highlight-glow { 52 | 0% { 53 | width: 0px; 54 | height: 0px; 55 | opacity: 0; 56 | } 57 | 100% { 58 | width: var(--radis-glow); 59 | height: var(--radis-glow); 60 | opacity: var(--opacity-glow); 61 | } 62 | } 63 | 64 | @keyframes highlight-flare { 65 | 0% { 66 | width: 0px; 67 | height: 0px; 68 | opacity: 0; 69 | } 70 | 100% { 71 | width: var(--radis-flare); 72 | height: var(--radis-flare); 73 | opacity: var(--opacity-flare); 74 | } 75 | } 76 | 77 | .permanent .glow { 78 | background: -webkit-radial-gradient(var(--color-permanent), rgba(255, 223, 67, 0) 70%)!important; 79 | animation: highlight-glow 2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55); 80 | } 81 | 82 | .permanent .flare { 83 | background: var(--color-permanent) !important; 84 | animation: highlight-flare 2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55); 85 | } 86 | 87 | img:hover+.light.temporary .glow { 88 | background: -webkit-radial-gradient(var(--color-temporary), rgba(255, 223, 67, 0) 70%); 89 | transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55); 90 | } 91 | 92 | img:hover+.light.temporary .flare { 93 | background: var(--color-temporary); 94 | transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55); 95 | } 96 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import L from 'leaflet'; 2 | 3 | L.Marker.include({ 4 | _initIcon: function() { 5 | this._initIconOrigin(); 6 | 7 | this._light = L.DivIcon.prototype.createIcon(); 8 | var light = this._light; 9 | L.DomUtil.addClass(light, "light"); 10 | L.DomUtil.create('span', 'glow', light); 11 | L.DomUtil.create('span', 'flare', light); 12 | if (this.options.highlight === "permanent") { 13 | L.DomUtil.addClass(light, "permanent"); 14 | } else if (this.options.highlight === "temporary") { 15 | L.DomUtil.addClass(light, "temporary"); 16 | } 17 | this.getPane().appendChild(light); 18 | this.on('remove', function(){ 19 | light.remove(); 20 | }) 21 | }, 22 | 23 | _setPos: function(pos) { 24 | this._setPosOrigin(pos) 25 | L.DomUtil.setPosition(this._light, pos); 26 | }, 27 | 28 | enableTemporaryHighlight: function() { 29 | this.options.highlight = "temporary"; 30 | L.DomUtil.addClass(this._light, "temporary"); 31 | }, 32 | 33 | disableTemporaryHighlight: function(value) { 34 | delete this.options.highlight; 35 | L.DomUtil.removeClass(this._light, "temporary") 36 | }, 37 | 38 | enablePermanentHighlight: function() { 39 | this.options.highlight = "permanent"; 40 | L.DomUtil.addClass(this._light, "permanent"); 41 | }, 42 | 43 | disablePermanentHighlight: function(value) { 44 | delete this.options.highlight; 45 | L.DomUtil.removeClass(this._light, "permanent") 46 | }, 47 | 48 | enableDynamicHighlight: function (value) { 49 | delete this.options.highlight; 50 | L.DomUtil.addClass(this._light, value) 51 | }, 52 | 53 | disableDynamicHighlight: function (value) { 54 | delete this.options.highlight; 55 | L.DomUtil.removeClass(this._light, value); 56 | }, 57 | 58 | showTimerHighlight: function (value, time=12000) { 59 | this.enableDynamicHighlight(value); 60 | setTimeout(() => { 61 | this.disableDynamicHighlight(value); 62 | }, time); 63 | }, 64 | 65 | _initIconOrigin: function() { 66 | //The same as _ininIcon 67 | var options = this.options, 68 | classToAdd = 'leaflet-zoom-' + (this._zoomAnimated ? 'animated' : 'hide'); 69 | 70 | var icon = options.icon.createIcon(this._icon), 71 | addIcon = false; 72 | 73 | // if we're not reusing the icon, remove the old one and init new one 74 | if (icon !== this._icon) { 75 | if (this._icon) { 76 | this._removeIcon(); 77 | } 78 | addIcon = true; 79 | 80 | if (options.title) { 81 | icon.title = options.title; 82 | } 83 | if (options.alt) { 84 | icon.alt = options.alt; 85 | } 86 | } 87 | 88 | L.DomUtil.addClass(icon, classToAdd); 89 | 90 | if (options.keyboard) { 91 | icon.tabIndex = '0'; 92 | } 93 | 94 | this._icon = icon; 95 | 96 | if (options.riseOnHover) { 97 | this.on({ 98 | mouseover: this._bringToFront, 99 | mouseout: this._resetZIndex 100 | }); 101 | } 102 | 103 | var newShadow = options.icon.createShadow(this._shadow), 104 | addShadow = false; 105 | 106 | if (newShadow !== this._shadow) { 107 | this._removeShadow(); 108 | addShadow = true; 109 | } 110 | 111 | if (newShadow) { 112 | L.DomUtil.addClass(newShadow, classToAdd); 113 | } 114 | this._shadow = newShadow; 115 | 116 | 117 | if (options.opacity < 1) { 118 | this._updateOpacity(); 119 | } 120 | 121 | 122 | if (addIcon) { 123 | this.getPane().appendChild(this._icon); 124 | } 125 | this._initInteraction(); 126 | if (newShadow && addShadow) { 127 | this.getPane('shadowPane').appendChild(this._shadow); 128 | } 129 | }, 130 | 131 | _setPosOrigin: function(pos) { 132 | L.DomUtil.setPosition(this._icon, pos); 133 | 134 | if (this._shadow) { 135 | L.DomUtil.setPosition(this._shadow, pos); 136 | } 137 | 138 | this._zIndex = pos.y + this.options.zIndexOffset; 139 | 140 | this._resetZIndex(); 141 | } 142 | }) 143 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | leaflet: 1.7.1 3 | devDependencies: 4 | microbundle: 0.14.2 5 | sirv-cli: 1.0.14 6 | uglifycss: 0.0.29 7 | lockfileVersion: 5.2 8 | packages: 9 | /@babel/code-frame/7.16.0: 10 | dependencies: 11 | '@babel/highlight': 7.16.0 12 | dev: true 13 | engines: 14 | node: '>=6.9.0' 15 | resolution: 16 | integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== 17 | /@babel/compat-data/7.16.4: 18 | dev: true 19 | engines: 20 | node: '>=6.9.0' 21 | resolution: 22 | integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== 23 | /@babel/core/7.16.5: 24 | dependencies: 25 | '@babel/code-frame': 7.16.0 26 | '@babel/generator': 7.16.5 27 | '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 28 | '@babel/helper-module-transforms': 7.16.5 29 | '@babel/helpers': 7.16.5 30 | '@babel/parser': 7.16.6 31 | '@babel/template': 7.16.0 32 | '@babel/traverse': 7.16.5 33 | '@babel/types': 7.16.0 34 | convert-source-map: 1.8.0 35 | debug: 4.3.3 36 | gensync: 1.0.0-beta.2 37 | json5: 2.2.0 38 | semver: 6.3.0 39 | source-map: 0.5.7 40 | dev: true 41 | engines: 42 | node: '>=6.9.0' 43 | resolution: 44 | integrity: sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ== 45 | /@babel/generator/7.16.5: 46 | dependencies: 47 | '@babel/types': 7.16.0 48 | jsesc: 2.5.2 49 | source-map: 0.5.7 50 | dev: true 51 | engines: 52 | node: '>=6.9.0' 53 | resolution: 54 | integrity: sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA== 55 | /@babel/helper-annotate-as-pure/7.16.0: 56 | dependencies: 57 | '@babel/types': 7.16.0 58 | dev: true 59 | engines: 60 | node: '>=6.9.0' 61 | resolution: 62 | integrity: sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== 63 | /@babel/helper-builder-binary-assignment-operator-visitor/7.16.5: 64 | dependencies: 65 | '@babel/helper-explode-assignable-expression': 7.16.0 66 | '@babel/types': 7.16.0 67 | dev: true 68 | engines: 69 | node: '>=6.9.0' 70 | resolution: 71 | integrity: sha512-3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA== 72 | /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.5: 73 | dependencies: 74 | '@babel/compat-data': 7.16.4 75 | '@babel/core': 7.16.5 76 | '@babel/helper-validator-option': 7.14.5 77 | browserslist: 4.19.1 78 | semver: 6.3.0 79 | dev: true 80 | engines: 81 | node: '>=6.9.0' 82 | peerDependencies: 83 | '@babel/core': ^7.0.0 84 | resolution: 85 | integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA== 86 | /@babel/helper-create-class-features-plugin/7.16.5_@babel+core@7.16.5: 87 | dependencies: 88 | '@babel/core': 7.16.5 89 | '@babel/helper-annotate-as-pure': 7.16.0 90 | '@babel/helper-environment-visitor': 7.16.5 91 | '@babel/helper-function-name': 7.16.0 92 | '@babel/helper-member-expression-to-functions': 7.16.5 93 | '@babel/helper-optimise-call-expression': 7.16.0 94 | '@babel/helper-replace-supers': 7.16.5 95 | '@babel/helper-split-export-declaration': 7.16.0 96 | dev: true 97 | engines: 98 | node: '>=6.9.0' 99 | peerDependencies: 100 | '@babel/core': ^7.0.0 101 | resolution: 102 | integrity: sha512-NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg== 103 | /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.5: 104 | dependencies: 105 | '@babel/core': 7.16.5 106 | '@babel/helper-annotate-as-pure': 7.16.0 107 | regexpu-core: 4.8.0 108 | dev: true 109 | engines: 110 | node: '>=6.9.0' 111 | peerDependencies: 112 | '@babel/core': ^7.0.0 113 | resolution: 114 | integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA== 115 | /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.5: 116 | dependencies: 117 | '@babel/core': 7.16.5 118 | '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 119 | '@babel/helper-module-imports': 7.16.0 120 | '@babel/helper-plugin-utils': 7.16.5 121 | '@babel/traverse': 7.16.5 122 | debug: 4.3.3 123 | lodash.debounce: 4.0.8 124 | resolve: 1.20.0 125 | semver: 6.3.0 126 | dev: true 127 | peerDependencies: 128 | '@babel/core': ^7.4.0-0 129 | resolution: 130 | integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg== 131 | /@babel/helper-environment-visitor/7.16.5: 132 | dependencies: 133 | '@babel/types': 7.16.0 134 | dev: true 135 | engines: 136 | node: '>=6.9.0' 137 | resolution: 138 | integrity: sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg== 139 | /@babel/helper-explode-assignable-expression/7.16.0: 140 | dependencies: 141 | '@babel/types': 7.16.0 142 | dev: true 143 | engines: 144 | node: '>=6.9.0' 145 | resolution: 146 | integrity: sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ== 147 | /@babel/helper-function-name/7.16.0: 148 | dependencies: 149 | '@babel/helper-get-function-arity': 7.16.0 150 | '@babel/template': 7.16.0 151 | '@babel/types': 7.16.0 152 | dev: true 153 | engines: 154 | node: '>=6.9.0' 155 | resolution: 156 | integrity: sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== 157 | /@babel/helper-get-function-arity/7.16.0: 158 | dependencies: 159 | '@babel/types': 7.16.0 160 | dev: true 161 | engines: 162 | node: '>=6.9.0' 163 | resolution: 164 | integrity: sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== 165 | /@babel/helper-hoist-variables/7.16.0: 166 | dependencies: 167 | '@babel/types': 7.16.0 168 | dev: true 169 | engines: 170 | node: '>=6.9.0' 171 | resolution: 172 | integrity: sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== 173 | /@babel/helper-member-expression-to-functions/7.16.5: 174 | dependencies: 175 | '@babel/types': 7.16.0 176 | dev: true 177 | engines: 178 | node: '>=6.9.0' 179 | resolution: 180 | integrity: sha512-7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw== 181 | /@babel/helper-module-imports/7.16.0: 182 | dependencies: 183 | '@babel/types': 7.16.0 184 | dev: true 185 | engines: 186 | node: '>=6.9.0' 187 | resolution: 188 | integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== 189 | /@babel/helper-module-transforms/7.16.5: 190 | dependencies: 191 | '@babel/helper-environment-visitor': 7.16.5 192 | '@babel/helper-module-imports': 7.16.0 193 | '@babel/helper-simple-access': 7.16.0 194 | '@babel/helper-split-export-declaration': 7.16.0 195 | '@babel/helper-validator-identifier': 7.15.7 196 | '@babel/template': 7.16.0 197 | '@babel/traverse': 7.16.5 198 | '@babel/types': 7.16.0 199 | dev: true 200 | engines: 201 | node: '>=6.9.0' 202 | resolution: 203 | integrity: sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ== 204 | /@babel/helper-optimise-call-expression/7.16.0: 205 | dependencies: 206 | '@babel/types': 7.16.0 207 | dev: true 208 | engines: 209 | node: '>=6.9.0' 210 | resolution: 211 | integrity: sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw== 212 | /@babel/helper-plugin-utils/7.16.5: 213 | dev: true 214 | engines: 215 | node: '>=6.9.0' 216 | resolution: 217 | integrity: sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ== 218 | /@babel/helper-remap-async-to-generator/7.16.5: 219 | dependencies: 220 | '@babel/helper-annotate-as-pure': 7.16.0 221 | '@babel/helper-wrap-function': 7.16.5 222 | '@babel/types': 7.16.0 223 | dev: true 224 | engines: 225 | node: '>=6.9.0' 226 | resolution: 227 | integrity: sha512-X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw== 228 | /@babel/helper-replace-supers/7.16.5: 229 | dependencies: 230 | '@babel/helper-environment-visitor': 7.16.5 231 | '@babel/helper-member-expression-to-functions': 7.16.5 232 | '@babel/helper-optimise-call-expression': 7.16.0 233 | '@babel/traverse': 7.16.5 234 | '@babel/types': 7.16.0 235 | dev: true 236 | engines: 237 | node: '>=6.9.0' 238 | resolution: 239 | integrity: sha512-ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ== 240 | /@babel/helper-simple-access/7.16.0: 241 | dependencies: 242 | '@babel/types': 7.16.0 243 | dev: true 244 | engines: 245 | node: '>=6.9.0' 246 | resolution: 247 | integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw== 248 | /@babel/helper-skip-transparent-expression-wrappers/7.16.0: 249 | dependencies: 250 | '@babel/types': 7.16.0 251 | dev: true 252 | engines: 253 | node: '>=6.9.0' 254 | resolution: 255 | integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== 256 | /@babel/helper-split-export-declaration/7.16.0: 257 | dependencies: 258 | '@babel/types': 7.16.0 259 | dev: true 260 | engines: 261 | node: '>=6.9.0' 262 | resolution: 263 | integrity: sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== 264 | /@babel/helper-validator-identifier/7.15.7: 265 | dev: true 266 | engines: 267 | node: '>=6.9.0' 268 | resolution: 269 | integrity: sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 270 | /@babel/helper-validator-option/7.14.5: 271 | dev: true 272 | engines: 273 | node: '>=6.9.0' 274 | resolution: 275 | integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 276 | /@babel/helper-wrap-function/7.16.5: 277 | dependencies: 278 | '@babel/helper-function-name': 7.16.0 279 | '@babel/template': 7.16.0 280 | '@babel/traverse': 7.16.5 281 | '@babel/types': 7.16.0 282 | dev: true 283 | engines: 284 | node: '>=6.9.0' 285 | resolution: 286 | integrity: sha512-2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA== 287 | /@babel/helpers/7.16.5: 288 | dependencies: 289 | '@babel/template': 7.16.0 290 | '@babel/traverse': 7.16.5 291 | '@babel/types': 7.16.0 292 | dev: true 293 | engines: 294 | node: '>=6.9.0' 295 | resolution: 296 | integrity: sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw== 297 | /@babel/highlight/7.16.0: 298 | dependencies: 299 | '@babel/helper-validator-identifier': 7.15.7 300 | chalk: 2.4.2 301 | js-tokens: 4.0.0 302 | dev: true 303 | engines: 304 | node: '>=6.9.0' 305 | resolution: 306 | integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== 307 | /@babel/parser/7.16.6: 308 | dev: true 309 | engines: 310 | node: '>=6.0.0' 311 | hasBin: true 312 | resolution: 313 | integrity: sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ== 314 | /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.5: 315 | dependencies: 316 | '@babel/core': 7.16.5 317 | '@babel/helper-plugin-utils': 7.16.5 318 | dev: true 319 | engines: 320 | node: '>=6.9.0' 321 | peerDependencies: 322 | '@babel/core': ^7.0.0 323 | resolution: 324 | integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg== 325 | /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.5: 326 | dependencies: 327 | '@babel/core': 7.16.5 328 | '@babel/helper-plugin-utils': 7.16.5 329 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 330 | '@babel/plugin-proposal-optional-chaining': 7.16.5_@babel+core@7.16.5 331 | dev: true 332 | engines: 333 | node: '>=6.9.0' 334 | peerDependencies: 335 | '@babel/core': ^7.13.0 336 | resolution: 337 | integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA== 338 | /@babel/plugin-proposal-async-generator-functions/7.16.5_@babel+core@7.16.5: 339 | dependencies: 340 | '@babel/core': 7.16.5 341 | '@babel/helper-plugin-utils': 7.16.5 342 | '@babel/helper-remap-async-to-generator': 7.16.5 343 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.5 344 | dev: true 345 | engines: 346 | node: '>=6.9.0' 347 | peerDependencies: 348 | '@babel/core': ^7.0.0-0 349 | resolution: 350 | integrity: sha512-C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA== 351 | /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.16.5: 352 | dependencies: 353 | '@babel/core': 7.16.5 354 | '@babel/helper-create-class-features-plugin': 7.16.5_@babel+core@7.16.5 355 | '@babel/helper-plugin-utils': 7.16.5 356 | dev: true 357 | peerDependencies: 358 | '@babel/core': ^7.0.0-0 359 | resolution: 360 | integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== 361 | /@babel/plugin-proposal-class-properties/7.16.5_@babel+core@7.16.5: 362 | dependencies: 363 | '@babel/core': 7.16.5 364 | '@babel/helper-create-class-features-plugin': 7.16.5_@babel+core@7.16.5 365 | '@babel/helper-plugin-utils': 7.16.5 366 | dev: true 367 | engines: 368 | node: '>=6.9.0' 369 | peerDependencies: 370 | '@babel/core': ^7.0.0-0 371 | resolution: 372 | integrity: sha512-pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A== 373 | /@babel/plugin-proposal-class-static-block/7.16.5_@babel+core@7.16.5: 374 | dependencies: 375 | '@babel/core': 7.16.5 376 | '@babel/helper-create-class-features-plugin': 7.16.5_@babel+core@7.16.5 377 | '@babel/helper-plugin-utils': 7.16.5 378 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.5 379 | dev: true 380 | engines: 381 | node: '>=6.9.0' 382 | peerDependencies: 383 | '@babel/core': ^7.12.0 384 | resolution: 385 | integrity: sha512-EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ== 386 | /@babel/plugin-proposal-dynamic-import/7.16.5_@babel+core@7.16.5: 387 | dependencies: 388 | '@babel/core': 7.16.5 389 | '@babel/helper-plugin-utils': 7.16.5 390 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.5 391 | dev: true 392 | engines: 393 | node: '>=6.9.0' 394 | peerDependencies: 395 | '@babel/core': ^7.0.0-0 396 | resolution: 397 | integrity: sha512-P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ== 398 | /@babel/plugin-proposal-export-namespace-from/7.16.5_@babel+core@7.16.5: 399 | dependencies: 400 | '@babel/core': 7.16.5 401 | '@babel/helper-plugin-utils': 7.16.5 402 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.5 403 | dev: true 404 | engines: 405 | node: '>=6.9.0' 406 | peerDependencies: 407 | '@babel/core': ^7.0.0-0 408 | resolution: 409 | integrity: sha512-i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw== 410 | /@babel/plugin-proposal-json-strings/7.16.5_@babel+core@7.16.5: 411 | dependencies: 412 | '@babel/core': 7.16.5 413 | '@babel/helper-plugin-utils': 7.16.5 414 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.5 415 | dev: true 416 | engines: 417 | node: '>=6.9.0' 418 | peerDependencies: 419 | '@babel/core': ^7.0.0-0 420 | resolution: 421 | integrity: sha512-QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ== 422 | /@babel/plugin-proposal-logical-assignment-operators/7.16.5_@babel+core@7.16.5: 423 | dependencies: 424 | '@babel/core': 7.16.5 425 | '@babel/helper-plugin-utils': 7.16.5 426 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.5 427 | dev: true 428 | engines: 429 | node: '>=6.9.0' 430 | peerDependencies: 431 | '@babel/core': ^7.0.0-0 432 | resolution: 433 | integrity: sha512-xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA== 434 | /@babel/plugin-proposal-nullish-coalescing-operator/7.16.5_@babel+core@7.16.5: 435 | dependencies: 436 | '@babel/core': 7.16.5 437 | '@babel/helper-plugin-utils': 7.16.5 438 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.5 439 | dev: true 440 | engines: 441 | node: '>=6.9.0' 442 | peerDependencies: 443 | '@babel/core': ^7.0.0-0 444 | resolution: 445 | integrity: sha512-YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg== 446 | /@babel/plugin-proposal-numeric-separator/7.16.5_@babel+core@7.16.5: 447 | dependencies: 448 | '@babel/core': 7.16.5 449 | '@babel/helper-plugin-utils': 7.16.5 450 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.5 451 | dev: true 452 | engines: 453 | node: '>=6.9.0' 454 | peerDependencies: 455 | '@babel/core': ^7.0.0-0 456 | resolution: 457 | integrity: sha512-DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw== 458 | /@babel/plugin-proposal-object-rest-spread/7.16.5_@babel+core@7.16.5: 459 | dependencies: 460 | '@babel/compat-data': 7.16.4 461 | '@babel/core': 7.16.5 462 | '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 463 | '@babel/helper-plugin-utils': 7.16.5 464 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.5 465 | '@babel/plugin-transform-parameters': 7.16.5_@babel+core@7.16.5 466 | dev: true 467 | engines: 468 | node: '>=6.9.0' 469 | peerDependencies: 470 | '@babel/core': ^7.0.0-0 471 | resolution: 472 | integrity: sha512-UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw== 473 | /@babel/plugin-proposal-optional-catch-binding/7.16.5_@babel+core@7.16.5: 474 | dependencies: 475 | '@babel/core': 7.16.5 476 | '@babel/helper-plugin-utils': 7.16.5 477 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.5 478 | dev: true 479 | engines: 480 | node: '>=6.9.0' 481 | peerDependencies: 482 | '@babel/core': ^7.0.0-0 483 | resolution: 484 | integrity: sha512-ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ== 485 | /@babel/plugin-proposal-optional-chaining/7.16.5_@babel+core@7.16.5: 486 | dependencies: 487 | '@babel/core': 7.16.5 488 | '@babel/helper-plugin-utils': 7.16.5 489 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 490 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.5 491 | dev: true 492 | engines: 493 | node: '>=6.9.0' 494 | peerDependencies: 495 | '@babel/core': ^7.0.0-0 496 | resolution: 497 | integrity: sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A== 498 | /@babel/plugin-proposal-private-methods/7.16.5_@babel+core@7.16.5: 499 | dependencies: 500 | '@babel/core': 7.16.5 501 | '@babel/helper-create-class-features-plugin': 7.16.5_@babel+core@7.16.5 502 | '@babel/helper-plugin-utils': 7.16.5 503 | dev: true 504 | engines: 505 | node: '>=6.9.0' 506 | peerDependencies: 507 | '@babel/core': ^7.0.0-0 508 | resolution: 509 | integrity: sha512-+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA== 510 | /@babel/plugin-proposal-private-property-in-object/7.16.5_@babel+core@7.16.5: 511 | dependencies: 512 | '@babel/core': 7.16.5 513 | '@babel/helper-annotate-as-pure': 7.16.0 514 | '@babel/helper-create-class-features-plugin': 7.16.5_@babel+core@7.16.5 515 | '@babel/helper-plugin-utils': 7.16.5 516 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.5 517 | dev: true 518 | engines: 519 | node: '>=6.9.0' 520 | peerDependencies: 521 | '@babel/core': ^7.0.0-0 522 | resolution: 523 | integrity: sha512-+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA== 524 | /@babel/plugin-proposal-unicode-property-regex/7.16.5_@babel+core@7.16.5: 525 | dependencies: 526 | '@babel/core': 7.16.5 527 | '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 528 | '@babel/helper-plugin-utils': 7.16.5 529 | dev: true 530 | engines: 531 | node: '>=4' 532 | peerDependencies: 533 | '@babel/core': ^7.0.0-0 534 | resolution: 535 | integrity: sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg== 536 | /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.5: 537 | dependencies: 538 | '@babel/core': 7.16.5 539 | '@babel/helper-plugin-utils': 7.16.5 540 | dev: true 541 | peerDependencies: 542 | '@babel/core': ^7.0.0-0 543 | resolution: 544 | integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 545 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.5: 546 | dependencies: 547 | '@babel/core': 7.16.5 548 | '@babel/helper-plugin-utils': 7.16.5 549 | dev: true 550 | peerDependencies: 551 | '@babel/core': ^7.0.0-0 552 | resolution: 553 | integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 554 | /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.5: 555 | dependencies: 556 | '@babel/core': 7.16.5 557 | '@babel/helper-plugin-utils': 7.16.5 558 | dev: true 559 | engines: 560 | node: '>=6.9.0' 561 | peerDependencies: 562 | '@babel/core': ^7.0.0-0 563 | resolution: 564 | integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== 565 | /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.5: 566 | dependencies: 567 | '@babel/core': 7.16.5 568 | '@babel/helper-plugin-utils': 7.16.5 569 | dev: true 570 | peerDependencies: 571 | '@babel/core': ^7.0.0-0 572 | resolution: 573 | integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 574 | /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.5: 575 | dependencies: 576 | '@babel/core': 7.16.5 577 | '@babel/helper-plugin-utils': 7.16.5 578 | dev: true 579 | peerDependencies: 580 | '@babel/core': ^7.0.0-0 581 | resolution: 582 | integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 583 | /@babel/plugin-syntax-flow/7.16.5_@babel+core@7.16.5: 584 | dependencies: 585 | '@babel/core': 7.16.5 586 | '@babel/helper-plugin-utils': 7.16.5 587 | dev: true 588 | engines: 589 | node: '>=6.9.0' 590 | peerDependencies: 591 | '@babel/core': ^7.0.0-0 592 | resolution: 593 | integrity: sha512-Nrx+7EAJx1BieBQseZa2pavVH2Rp7hADK2xn7coYqVbWRu9C2OFizYcsKo6TrrqJkJl+qF/+Qqzrk/+XDu4GnA== 594 | /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.5: 595 | dependencies: 596 | '@babel/core': 7.16.5 597 | '@babel/helper-plugin-utils': 7.16.5 598 | dev: true 599 | peerDependencies: 600 | '@babel/core': ^7.0.0-0 601 | resolution: 602 | integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 603 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.5: 604 | dependencies: 605 | '@babel/core': 7.16.5 606 | '@babel/helper-plugin-utils': 7.16.5 607 | dev: true 608 | peerDependencies: 609 | '@babel/core': ^7.0.0-0 610 | resolution: 611 | integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 612 | /@babel/plugin-syntax-jsx/7.16.5_@babel+core@7.16.5: 613 | dependencies: 614 | '@babel/core': 7.16.5 615 | '@babel/helper-plugin-utils': 7.16.5 616 | dev: true 617 | engines: 618 | node: '>=6.9.0' 619 | peerDependencies: 620 | '@babel/core': ^7.0.0-0 621 | resolution: 622 | integrity: sha512-42OGssv9NPk4QHKVgIHlzeLgPOW5rGgfV5jzG90AhcXXIv6hu/eqj63w4VgvRxdvZY3AlYeDgPiSJ3BqAd1Y6Q== 623 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.5: 624 | dependencies: 625 | '@babel/core': 7.16.5 626 | '@babel/helper-plugin-utils': 7.16.5 627 | dev: true 628 | peerDependencies: 629 | '@babel/core': ^7.0.0-0 630 | resolution: 631 | integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 632 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.5: 633 | dependencies: 634 | '@babel/core': 7.16.5 635 | '@babel/helper-plugin-utils': 7.16.5 636 | dev: true 637 | peerDependencies: 638 | '@babel/core': ^7.0.0-0 639 | resolution: 640 | integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 641 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.5: 642 | dependencies: 643 | '@babel/core': 7.16.5 644 | '@babel/helper-plugin-utils': 7.16.5 645 | dev: true 646 | peerDependencies: 647 | '@babel/core': ^7.0.0-0 648 | resolution: 649 | integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 650 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.5: 651 | dependencies: 652 | '@babel/core': 7.16.5 653 | '@babel/helper-plugin-utils': 7.16.5 654 | dev: true 655 | peerDependencies: 656 | '@babel/core': ^7.0.0-0 657 | resolution: 658 | integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 659 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.5: 660 | dependencies: 661 | '@babel/core': 7.16.5 662 | '@babel/helper-plugin-utils': 7.16.5 663 | dev: true 664 | peerDependencies: 665 | '@babel/core': ^7.0.0-0 666 | resolution: 667 | integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 668 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.5: 669 | dependencies: 670 | '@babel/core': 7.16.5 671 | '@babel/helper-plugin-utils': 7.16.5 672 | dev: true 673 | peerDependencies: 674 | '@babel/core': ^7.0.0-0 675 | resolution: 676 | integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 677 | /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.5: 678 | dependencies: 679 | '@babel/core': 7.16.5 680 | '@babel/helper-plugin-utils': 7.16.5 681 | dev: true 682 | engines: 683 | node: '>=6.9.0' 684 | peerDependencies: 685 | '@babel/core': ^7.0.0-0 686 | resolution: 687 | integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== 688 | /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.5: 689 | dependencies: 690 | '@babel/core': 7.16.5 691 | '@babel/helper-plugin-utils': 7.16.5 692 | dev: true 693 | engines: 694 | node: '>=6.9.0' 695 | peerDependencies: 696 | '@babel/core': ^7.0.0-0 697 | resolution: 698 | integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 699 | /@babel/plugin-transform-arrow-functions/7.16.5_@babel+core@7.16.5: 700 | dependencies: 701 | '@babel/core': 7.16.5 702 | '@babel/helper-plugin-utils': 7.16.5 703 | dev: true 704 | engines: 705 | node: '>=6.9.0' 706 | peerDependencies: 707 | '@babel/core': ^7.0.0-0 708 | resolution: 709 | integrity: sha512-8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ== 710 | /@babel/plugin-transform-async-to-generator/7.16.5_@babel+core@7.16.5: 711 | dependencies: 712 | '@babel/core': 7.16.5 713 | '@babel/helper-module-imports': 7.16.0 714 | '@babel/helper-plugin-utils': 7.16.5 715 | '@babel/helper-remap-async-to-generator': 7.16.5 716 | dev: true 717 | engines: 718 | node: '>=6.9.0' 719 | peerDependencies: 720 | '@babel/core': ^7.0.0-0 721 | resolution: 722 | integrity: sha512-TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w== 723 | /@babel/plugin-transform-block-scoped-functions/7.16.5_@babel+core@7.16.5: 724 | dependencies: 725 | '@babel/core': 7.16.5 726 | '@babel/helper-plugin-utils': 7.16.5 727 | dev: true 728 | engines: 729 | node: '>=6.9.0' 730 | peerDependencies: 731 | '@babel/core': ^7.0.0-0 732 | resolution: 733 | integrity: sha512-BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw== 734 | /@babel/plugin-transform-block-scoping/7.16.5_@babel+core@7.16.5: 735 | dependencies: 736 | '@babel/core': 7.16.5 737 | '@babel/helper-plugin-utils': 7.16.5 738 | dev: true 739 | engines: 740 | node: '>=6.9.0' 741 | peerDependencies: 742 | '@babel/core': ^7.0.0-0 743 | resolution: 744 | integrity: sha512-JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ== 745 | /@babel/plugin-transform-classes/7.16.5_@babel+core@7.16.5: 746 | dependencies: 747 | '@babel/core': 7.16.5 748 | '@babel/helper-annotate-as-pure': 7.16.0 749 | '@babel/helper-environment-visitor': 7.16.5 750 | '@babel/helper-function-name': 7.16.0 751 | '@babel/helper-optimise-call-expression': 7.16.0 752 | '@babel/helper-plugin-utils': 7.16.5 753 | '@babel/helper-replace-supers': 7.16.5 754 | '@babel/helper-split-export-declaration': 7.16.0 755 | globals: 11.12.0 756 | dev: true 757 | engines: 758 | node: '>=6.9.0' 759 | peerDependencies: 760 | '@babel/core': ^7.0.0-0 761 | resolution: 762 | integrity: sha512-DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA== 763 | /@babel/plugin-transform-computed-properties/7.16.5_@babel+core@7.16.5: 764 | dependencies: 765 | '@babel/core': 7.16.5 766 | '@babel/helper-plugin-utils': 7.16.5 767 | dev: true 768 | engines: 769 | node: '>=6.9.0' 770 | peerDependencies: 771 | '@babel/core': ^7.0.0-0 772 | resolution: 773 | integrity: sha512-n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg== 774 | /@babel/plugin-transform-destructuring/7.16.5_@babel+core@7.16.5: 775 | dependencies: 776 | '@babel/core': 7.16.5 777 | '@babel/helper-plugin-utils': 7.16.5 778 | dev: true 779 | engines: 780 | node: '>=6.9.0' 781 | peerDependencies: 782 | '@babel/core': ^7.0.0-0 783 | resolution: 784 | integrity: sha512-GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg== 785 | /@babel/plugin-transform-dotall-regex/7.16.5_@babel+core@7.16.5: 786 | dependencies: 787 | '@babel/core': 7.16.5 788 | '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 789 | '@babel/helper-plugin-utils': 7.16.5 790 | dev: true 791 | engines: 792 | node: '>=6.9.0' 793 | peerDependencies: 794 | '@babel/core': ^7.0.0-0 795 | resolution: 796 | integrity: sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw== 797 | /@babel/plugin-transform-duplicate-keys/7.16.5_@babel+core@7.16.5: 798 | dependencies: 799 | '@babel/core': 7.16.5 800 | '@babel/helper-plugin-utils': 7.16.5 801 | dev: true 802 | engines: 803 | node: '>=6.9.0' 804 | peerDependencies: 805 | '@babel/core': ^7.0.0-0 806 | resolution: 807 | integrity: sha512-81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg== 808 | /@babel/plugin-transform-exponentiation-operator/7.16.5_@babel+core@7.16.5: 809 | dependencies: 810 | '@babel/core': 7.16.5 811 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.5 812 | '@babel/helper-plugin-utils': 7.16.5 813 | dev: true 814 | engines: 815 | node: '>=6.9.0' 816 | peerDependencies: 817 | '@babel/core': ^7.0.0-0 818 | resolution: 819 | integrity: sha512-12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA== 820 | /@babel/plugin-transform-flow-strip-types/7.16.5_@babel+core@7.16.5: 821 | dependencies: 822 | '@babel/core': 7.16.5 823 | '@babel/helper-plugin-utils': 7.16.5 824 | '@babel/plugin-syntax-flow': 7.16.5_@babel+core@7.16.5 825 | dev: true 826 | engines: 827 | node: '>=6.9.0' 828 | peerDependencies: 829 | '@babel/core': ^7.0.0-0 830 | resolution: 831 | integrity: sha512-skE02E/MptkZdBS4HwoRhjWXqeKQj0BWKEAPfPC+8R4/f6bjQqQ9Nftv/+HkxWwnVxh/E2NV9TNfzLN5H/oiBw== 832 | /@babel/plugin-transform-for-of/7.16.5_@babel+core@7.16.5: 833 | dependencies: 834 | '@babel/core': 7.16.5 835 | '@babel/helper-plugin-utils': 7.16.5 836 | dev: true 837 | engines: 838 | node: '>=6.9.0' 839 | peerDependencies: 840 | '@babel/core': ^7.0.0-0 841 | resolution: 842 | integrity: sha512-+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw== 843 | /@babel/plugin-transform-function-name/7.16.5_@babel+core@7.16.5: 844 | dependencies: 845 | '@babel/core': 7.16.5 846 | '@babel/helper-function-name': 7.16.0 847 | '@babel/helper-plugin-utils': 7.16.5 848 | dev: true 849 | engines: 850 | node: '>=6.9.0' 851 | peerDependencies: 852 | '@babel/core': ^7.0.0-0 853 | resolution: 854 | integrity: sha512-Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ== 855 | /@babel/plugin-transform-literals/7.16.5_@babel+core@7.16.5: 856 | dependencies: 857 | '@babel/core': 7.16.5 858 | '@babel/helper-plugin-utils': 7.16.5 859 | dev: true 860 | engines: 861 | node: '>=6.9.0' 862 | peerDependencies: 863 | '@babel/core': ^7.0.0-0 864 | resolution: 865 | integrity: sha512-B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw== 866 | /@babel/plugin-transform-member-expression-literals/7.16.5_@babel+core@7.16.5: 867 | dependencies: 868 | '@babel/core': 7.16.5 869 | '@babel/helper-plugin-utils': 7.16.5 870 | dev: true 871 | engines: 872 | node: '>=6.9.0' 873 | peerDependencies: 874 | '@babel/core': ^7.0.0-0 875 | resolution: 876 | integrity: sha512-d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ== 877 | /@babel/plugin-transform-modules-amd/7.16.5_@babel+core@7.16.5: 878 | dependencies: 879 | '@babel/core': 7.16.5 880 | '@babel/helper-module-transforms': 7.16.5 881 | '@babel/helper-plugin-utils': 7.16.5 882 | babel-plugin-dynamic-import-node: 2.3.3 883 | dev: true 884 | engines: 885 | node: '>=6.9.0' 886 | peerDependencies: 887 | '@babel/core': ^7.0.0-0 888 | resolution: 889 | integrity: sha512-oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ== 890 | /@babel/plugin-transform-modules-commonjs/7.16.5_@babel+core@7.16.5: 891 | dependencies: 892 | '@babel/core': 7.16.5 893 | '@babel/helper-module-transforms': 7.16.5 894 | '@babel/helper-plugin-utils': 7.16.5 895 | '@babel/helper-simple-access': 7.16.0 896 | babel-plugin-dynamic-import-node: 2.3.3 897 | dev: true 898 | engines: 899 | node: '>=6.9.0' 900 | peerDependencies: 901 | '@babel/core': ^7.0.0-0 902 | resolution: 903 | integrity: sha512-ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ== 904 | /@babel/plugin-transform-modules-systemjs/7.16.5_@babel+core@7.16.5: 905 | dependencies: 906 | '@babel/core': 7.16.5 907 | '@babel/helper-hoist-variables': 7.16.0 908 | '@babel/helper-module-transforms': 7.16.5 909 | '@babel/helper-plugin-utils': 7.16.5 910 | '@babel/helper-validator-identifier': 7.15.7 911 | babel-plugin-dynamic-import-node: 2.3.3 912 | dev: true 913 | engines: 914 | node: '>=6.9.0' 915 | peerDependencies: 916 | '@babel/core': ^7.0.0-0 917 | resolution: 918 | integrity: sha512-53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA== 919 | /@babel/plugin-transform-modules-umd/7.16.5_@babel+core@7.16.5: 920 | dependencies: 921 | '@babel/core': 7.16.5 922 | '@babel/helper-module-transforms': 7.16.5 923 | '@babel/helper-plugin-utils': 7.16.5 924 | dev: true 925 | engines: 926 | node: '>=6.9.0' 927 | peerDependencies: 928 | '@babel/core': ^7.0.0-0 929 | resolution: 930 | integrity: sha512-qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw== 931 | /@babel/plugin-transform-named-capturing-groups-regex/7.16.5_@babel+core@7.16.5: 932 | dependencies: 933 | '@babel/core': 7.16.5 934 | '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 935 | dev: true 936 | engines: 937 | node: '>=6.9.0' 938 | peerDependencies: 939 | '@babel/core': ^7.0.0 940 | resolution: 941 | integrity: sha512-/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA== 942 | /@babel/plugin-transform-new-target/7.16.5_@babel+core@7.16.5: 943 | dependencies: 944 | '@babel/core': 7.16.5 945 | '@babel/helper-plugin-utils': 7.16.5 946 | dev: true 947 | engines: 948 | node: '>=6.9.0' 949 | peerDependencies: 950 | '@babel/core': ^7.0.0-0 951 | resolution: 952 | integrity: sha512-ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg== 953 | /@babel/plugin-transform-object-super/7.16.5_@babel+core@7.16.5: 954 | dependencies: 955 | '@babel/core': 7.16.5 956 | '@babel/helper-plugin-utils': 7.16.5 957 | '@babel/helper-replace-supers': 7.16.5 958 | dev: true 959 | engines: 960 | node: '>=6.9.0' 961 | peerDependencies: 962 | '@babel/core': ^7.0.0-0 963 | resolution: 964 | integrity: sha512-tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg== 965 | /@babel/plugin-transform-parameters/7.16.5_@babel+core@7.16.5: 966 | dependencies: 967 | '@babel/core': 7.16.5 968 | '@babel/helper-plugin-utils': 7.16.5 969 | dev: true 970 | engines: 971 | node: '>=6.9.0' 972 | peerDependencies: 973 | '@babel/core': ^7.0.0-0 974 | resolution: 975 | integrity: sha512-B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA== 976 | /@babel/plugin-transform-property-literals/7.16.5_@babel+core@7.16.5: 977 | dependencies: 978 | '@babel/core': 7.16.5 979 | '@babel/helper-plugin-utils': 7.16.5 980 | dev: true 981 | engines: 982 | node: '>=6.9.0' 983 | peerDependencies: 984 | '@babel/core': ^7.0.0-0 985 | resolution: 986 | integrity: sha512-+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg== 987 | /@babel/plugin-transform-react-display-name/7.16.5_@babel+core@7.16.5: 988 | dependencies: 989 | '@babel/core': 7.16.5 990 | '@babel/helper-plugin-utils': 7.16.5 991 | dev: true 992 | engines: 993 | node: '>=6.9.0' 994 | peerDependencies: 995 | '@babel/core': ^7.0.0-0 996 | resolution: 997 | integrity: sha512-dHYCOnzSsXFz8UcdNQIHGvg94qPL/teF7CCiCEMRxmA1G2p5Mq4JnKVowCDxYfiQ9D7RstaAp9kwaSI+sXbnhw== 998 | /@babel/plugin-transform-react-jsx-development/7.16.5_@babel+core@7.16.5: 999 | dependencies: 1000 | '@babel/core': 7.16.5 1001 | '@babel/plugin-transform-react-jsx': 7.16.5_@babel+core@7.16.5 1002 | dev: true 1003 | engines: 1004 | node: '>=6.9.0' 1005 | peerDependencies: 1006 | '@babel/core': ^7.0.0-0 1007 | resolution: 1008 | integrity: sha512-uQSLacMZSGLCxOw20dzo1dmLlKkd+DsayoV54q3MHXhbqgPzoiGerZQgNPl/Ro8/OcXV2ugfnkx+rxdS0sN5Uw== 1009 | /@babel/plugin-transform-react-jsx/7.16.5_@babel+core@7.16.5: 1010 | dependencies: 1011 | '@babel/core': 7.16.5 1012 | '@babel/helper-annotate-as-pure': 7.16.0 1013 | '@babel/helper-module-imports': 7.16.0 1014 | '@babel/helper-plugin-utils': 7.16.5 1015 | '@babel/plugin-syntax-jsx': 7.16.5_@babel+core@7.16.5 1016 | '@babel/types': 7.16.0 1017 | dev: true 1018 | engines: 1019 | node: '>=6.9.0' 1020 | peerDependencies: 1021 | '@babel/core': ^7.0.0-0 1022 | resolution: 1023 | integrity: sha512-+arLIz1d7kmwX0fKxTxbnoeG85ONSnLpvdODa4P3pc1sS7CV1hfmtYWufkW/oYsPnkDrEeQFxhUWcFnrXW7jQQ== 1024 | /@babel/plugin-transform-react-pure-annotations/7.16.5_@babel+core@7.16.5: 1025 | dependencies: 1026 | '@babel/core': 7.16.5 1027 | '@babel/helper-annotate-as-pure': 7.16.0 1028 | '@babel/helper-plugin-utils': 7.16.5 1029 | dev: true 1030 | engines: 1031 | node: '>=6.9.0' 1032 | peerDependencies: 1033 | '@babel/core': ^7.0.0-0 1034 | resolution: 1035 | integrity: sha512-0nYU30hCxnCVCbRjSy9ahlhWZ2Sn6khbY4FqR91W+2RbSqkWEbVu2gXh45EqNy4Bq7sRU+H4i0/6YKwOSzh16A== 1036 | /@babel/plugin-transform-regenerator/7.16.5_@babel+core@7.16.5: 1037 | dependencies: 1038 | '@babel/core': 7.16.5 1039 | regenerator-transform: 0.14.5 1040 | dev: true 1041 | engines: 1042 | node: '>=6.9.0' 1043 | peerDependencies: 1044 | '@babel/core': ^7.0.0-0 1045 | resolution: 1046 | integrity: sha512-2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg== 1047 | /@babel/plugin-transform-reserved-words/7.16.5_@babel+core@7.16.5: 1048 | dependencies: 1049 | '@babel/core': 7.16.5 1050 | '@babel/helper-plugin-utils': 7.16.5 1051 | dev: true 1052 | engines: 1053 | node: '>=6.9.0' 1054 | peerDependencies: 1055 | '@babel/core': ^7.0.0-0 1056 | resolution: 1057 | integrity: sha512-aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw== 1058 | /@babel/plugin-transform-shorthand-properties/7.16.5_@babel+core@7.16.5: 1059 | dependencies: 1060 | '@babel/core': 7.16.5 1061 | '@babel/helper-plugin-utils': 7.16.5 1062 | dev: true 1063 | engines: 1064 | node: '>=6.9.0' 1065 | peerDependencies: 1066 | '@babel/core': ^7.0.0-0 1067 | resolution: 1068 | integrity: sha512-ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg== 1069 | /@babel/plugin-transform-spread/7.16.5_@babel+core@7.16.5: 1070 | dependencies: 1071 | '@babel/core': 7.16.5 1072 | '@babel/helper-plugin-utils': 7.16.5 1073 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 1074 | dev: true 1075 | engines: 1076 | node: '>=6.9.0' 1077 | peerDependencies: 1078 | '@babel/core': ^7.0.0-0 1079 | resolution: 1080 | integrity: sha512-5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw== 1081 | /@babel/plugin-transform-sticky-regex/7.16.5_@babel+core@7.16.5: 1082 | dependencies: 1083 | '@babel/core': 7.16.5 1084 | '@babel/helper-plugin-utils': 7.16.5 1085 | dev: true 1086 | engines: 1087 | node: '>=6.9.0' 1088 | peerDependencies: 1089 | '@babel/core': ^7.0.0-0 1090 | resolution: 1091 | integrity: sha512-usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg== 1092 | /@babel/plugin-transform-template-literals/7.16.5_@babel+core@7.16.5: 1093 | dependencies: 1094 | '@babel/core': 7.16.5 1095 | '@babel/helper-plugin-utils': 7.16.5 1096 | dev: true 1097 | engines: 1098 | node: '>=6.9.0' 1099 | peerDependencies: 1100 | '@babel/core': ^7.0.0-0 1101 | resolution: 1102 | integrity: sha512-gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ== 1103 | /@babel/plugin-transform-typeof-symbol/7.16.5_@babel+core@7.16.5: 1104 | dependencies: 1105 | '@babel/core': 7.16.5 1106 | '@babel/helper-plugin-utils': 7.16.5 1107 | dev: true 1108 | engines: 1109 | node: '>=6.9.0' 1110 | peerDependencies: 1111 | '@babel/core': ^7.0.0-0 1112 | resolution: 1113 | integrity: sha512-ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ== 1114 | /@babel/plugin-transform-unicode-escapes/7.16.5_@babel+core@7.16.5: 1115 | dependencies: 1116 | '@babel/core': 7.16.5 1117 | '@babel/helper-plugin-utils': 7.16.5 1118 | dev: true 1119 | engines: 1120 | node: '>=6.9.0' 1121 | peerDependencies: 1122 | '@babel/core': ^7.0.0-0 1123 | resolution: 1124 | integrity: sha512-shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q== 1125 | /@babel/plugin-transform-unicode-regex/7.16.5_@babel+core@7.16.5: 1126 | dependencies: 1127 | '@babel/core': 7.16.5 1128 | '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 1129 | '@babel/helper-plugin-utils': 7.16.5 1130 | dev: true 1131 | engines: 1132 | node: '>=6.9.0' 1133 | peerDependencies: 1134 | '@babel/core': ^7.0.0-0 1135 | resolution: 1136 | integrity: sha512-GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw== 1137 | /@babel/preset-env/7.16.5_@babel+core@7.16.5: 1138 | dependencies: 1139 | '@babel/compat-data': 7.16.4 1140 | '@babel/core': 7.16.5 1141 | '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 1142 | '@babel/helper-plugin-utils': 7.16.5 1143 | '@babel/helper-validator-option': 7.14.5 1144 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.5 1145 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.5 1146 | '@babel/plugin-proposal-async-generator-functions': 7.16.5_@babel+core@7.16.5 1147 | '@babel/plugin-proposal-class-properties': 7.16.5_@babel+core@7.16.5 1148 | '@babel/plugin-proposal-class-static-block': 7.16.5_@babel+core@7.16.5 1149 | '@babel/plugin-proposal-dynamic-import': 7.16.5_@babel+core@7.16.5 1150 | '@babel/plugin-proposal-export-namespace-from': 7.16.5_@babel+core@7.16.5 1151 | '@babel/plugin-proposal-json-strings': 7.16.5_@babel+core@7.16.5 1152 | '@babel/plugin-proposal-logical-assignment-operators': 7.16.5_@babel+core@7.16.5 1153 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.5_@babel+core@7.16.5 1154 | '@babel/plugin-proposal-numeric-separator': 7.16.5_@babel+core@7.16.5 1155 | '@babel/plugin-proposal-object-rest-spread': 7.16.5_@babel+core@7.16.5 1156 | '@babel/plugin-proposal-optional-catch-binding': 7.16.5_@babel+core@7.16.5 1157 | '@babel/plugin-proposal-optional-chaining': 7.16.5_@babel+core@7.16.5 1158 | '@babel/plugin-proposal-private-methods': 7.16.5_@babel+core@7.16.5 1159 | '@babel/plugin-proposal-private-property-in-object': 7.16.5_@babel+core@7.16.5 1160 | '@babel/plugin-proposal-unicode-property-regex': 7.16.5_@babel+core@7.16.5 1161 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.5 1162 | '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.5 1163 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.5 1164 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.5 1165 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.5 1166 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.5 1167 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.5 1168 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.5 1169 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.5 1170 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.5 1171 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.5 1172 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.5 1173 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.5 1174 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.5 1175 | '@babel/plugin-transform-arrow-functions': 7.16.5_@babel+core@7.16.5 1176 | '@babel/plugin-transform-async-to-generator': 7.16.5_@babel+core@7.16.5 1177 | '@babel/plugin-transform-block-scoped-functions': 7.16.5_@babel+core@7.16.5 1178 | '@babel/plugin-transform-block-scoping': 7.16.5_@babel+core@7.16.5 1179 | '@babel/plugin-transform-classes': 7.16.5_@babel+core@7.16.5 1180 | '@babel/plugin-transform-computed-properties': 7.16.5_@babel+core@7.16.5 1181 | '@babel/plugin-transform-destructuring': 7.16.5_@babel+core@7.16.5 1182 | '@babel/plugin-transform-dotall-regex': 7.16.5_@babel+core@7.16.5 1183 | '@babel/plugin-transform-duplicate-keys': 7.16.5_@babel+core@7.16.5 1184 | '@babel/plugin-transform-exponentiation-operator': 7.16.5_@babel+core@7.16.5 1185 | '@babel/plugin-transform-for-of': 7.16.5_@babel+core@7.16.5 1186 | '@babel/plugin-transform-function-name': 7.16.5_@babel+core@7.16.5 1187 | '@babel/plugin-transform-literals': 7.16.5_@babel+core@7.16.5 1188 | '@babel/plugin-transform-member-expression-literals': 7.16.5_@babel+core@7.16.5 1189 | '@babel/plugin-transform-modules-amd': 7.16.5_@babel+core@7.16.5 1190 | '@babel/plugin-transform-modules-commonjs': 7.16.5_@babel+core@7.16.5 1191 | '@babel/plugin-transform-modules-systemjs': 7.16.5_@babel+core@7.16.5 1192 | '@babel/plugin-transform-modules-umd': 7.16.5_@babel+core@7.16.5 1193 | '@babel/plugin-transform-named-capturing-groups-regex': 7.16.5_@babel+core@7.16.5 1194 | '@babel/plugin-transform-new-target': 7.16.5_@babel+core@7.16.5 1195 | '@babel/plugin-transform-object-super': 7.16.5_@babel+core@7.16.5 1196 | '@babel/plugin-transform-parameters': 7.16.5_@babel+core@7.16.5 1197 | '@babel/plugin-transform-property-literals': 7.16.5_@babel+core@7.16.5 1198 | '@babel/plugin-transform-regenerator': 7.16.5_@babel+core@7.16.5 1199 | '@babel/plugin-transform-reserved-words': 7.16.5_@babel+core@7.16.5 1200 | '@babel/plugin-transform-shorthand-properties': 7.16.5_@babel+core@7.16.5 1201 | '@babel/plugin-transform-spread': 7.16.5_@babel+core@7.16.5 1202 | '@babel/plugin-transform-sticky-regex': 7.16.5_@babel+core@7.16.5 1203 | '@babel/plugin-transform-template-literals': 7.16.5_@babel+core@7.16.5 1204 | '@babel/plugin-transform-typeof-symbol': 7.16.5_@babel+core@7.16.5 1205 | '@babel/plugin-transform-unicode-escapes': 7.16.5_@babel+core@7.16.5 1206 | '@babel/plugin-transform-unicode-regex': 7.16.5_@babel+core@7.16.5 1207 | '@babel/preset-modules': 0.1.5_@babel+core@7.16.5 1208 | '@babel/types': 7.16.0 1209 | babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.5 1210 | babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.5 1211 | babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.5 1212 | core-js-compat: 3.20.1 1213 | semver: 6.3.0 1214 | dev: true 1215 | engines: 1216 | node: '>=6.9.0' 1217 | peerDependencies: 1218 | '@babel/core': ^7.0.0-0 1219 | resolution: 1220 | integrity: sha512-MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ== 1221 | /@babel/preset-flow/7.16.5_@babel+core@7.16.5: 1222 | dependencies: 1223 | '@babel/core': 7.16.5 1224 | '@babel/helper-plugin-utils': 7.16.5 1225 | '@babel/helper-validator-option': 7.14.5 1226 | '@babel/plugin-transform-flow-strip-types': 7.16.5_@babel+core@7.16.5 1227 | dev: true 1228 | engines: 1229 | node: '>=6.9.0' 1230 | peerDependencies: 1231 | '@babel/core': ^7.0.0-0 1232 | resolution: 1233 | integrity: sha512-rmC6Nznp4V55N4Zfec87jwd14TdREqwKVJFM/6Z2wTwoeZQr56czjaPRCezqzqc8TsHF7aLP1oczjadIQ058gw== 1234 | /@babel/preset-modules/0.1.5_@babel+core@7.16.5: 1235 | dependencies: 1236 | '@babel/core': 7.16.5 1237 | '@babel/helper-plugin-utils': 7.16.5 1238 | '@babel/plugin-proposal-unicode-property-regex': 7.16.5_@babel+core@7.16.5 1239 | '@babel/plugin-transform-dotall-regex': 7.16.5_@babel+core@7.16.5 1240 | '@babel/types': 7.16.0 1241 | esutils: 2.0.3 1242 | dev: true 1243 | peerDependencies: 1244 | '@babel/core': ^7.0.0-0 1245 | resolution: 1246 | integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== 1247 | /@babel/preset-react/7.16.5_@babel+core@7.16.5: 1248 | dependencies: 1249 | '@babel/core': 7.16.5 1250 | '@babel/helper-plugin-utils': 7.16.5 1251 | '@babel/helper-validator-option': 7.14.5 1252 | '@babel/plugin-transform-react-display-name': 7.16.5_@babel+core@7.16.5 1253 | '@babel/plugin-transform-react-jsx': 7.16.5_@babel+core@7.16.5 1254 | '@babel/plugin-transform-react-jsx-development': 7.16.5_@babel+core@7.16.5 1255 | '@babel/plugin-transform-react-pure-annotations': 7.16.5_@babel+core@7.16.5 1256 | dev: true 1257 | engines: 1258 | node: '>=6.9.0' 1259 | peerDependencies: 1260 | '@babel/core': ^7.0.0-0 1261 | resolution: 1262 | integrity: sha512-3kzUOQeaxY/2vhPDS7CX/KGEGu/1bOYGvdRDJ2U5yjEz5o5jmIeTPLoiQBPGjfhPascLuW5OlMiPzwOOuB6txg== 1263 | /@babel/runtime/7.16.5: 1264 | dependencies: 1265 | regenerator-runtime: 0.13.9 1266 | dev: true 1267 | engines: 1268 | node: '>=6.9.0' 1269 | resolution: 1270 | integrity: sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA== 1271 | /@babel/template/7.16.0: 1272 | dependencies: 1273 | '@babel/code-frame': 7.16.0 1274 | '@babel/parser': 7.16.6 1275 | '@babel/types': 7.16.0 1276 | dev: true 1277 | engines: 1278 | node: '>=6.9.0' 1279 | resolution: 1280 | integrity: sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== 1281 | /@babel/traverse/7.16.5: 1282 | dependencies: 1283 | '@babel/code-frame': 7.16.0 1284 | '@babel/generator': 7.16.5 1285 | '@babel/helper-environment-visitor': 7.16.5 1286 | '@babel/helper-function-name': 7.16.0 1287 | '@babel/helper-hoist-variables': 7.16.0 1288 | '@babel/helper-split-export-declaration': 7.16.0 1289 | '@babel/parser': 7.16.6 1290 | '@babel/types': 7.16.0 1291 | debug: 4.3.3 1292 | globals: 11.12.0 1293 | dev: true 1294 | engines: 1295 | node: '>=6.9.0' 1296 | resolution: 1297 | integrity: sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ== 1298 | /@babel/types/7.16.0: 1299 | dependencies: 1300 | '@babel/helper-validator-identifier': 7.15.7 1301 | to-fast-properties: 2.0.0 1302 | dev: true 1303 | engines: 1304 | node: '>=6.9.0' 1305 | resolution: 1306 | integrity: sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== 1307 | /@polka/url/1.0.0-next.21: 1308 | dev: true 1309 | resolution: 1310 | integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== 1311 | /@rollup/plugin-alias/3.1.8_rollup@2.62.0: 1312 | dependencies: 1313 | rollup: 2.62.0 1314 | slash: 3.0.0 1315 | dev: true 1316 | engines: 1317 | node: '>=8.0.0' 1318 | peerDependencies: 1319 | rollup: ^1.20.0||^2.0.0 1320 | resolution: 1321 | integrity: sha512-tf7HeSs/06wO2LPqKNY3Ckbvy0JRe7Jyn98bXnt/gfrxbe+AJucoNJlsEVi9sdgbQtXemjbakCpO/76JVgnHpA== 1322 | /@rollup/plugin-babel/5.3.0_@babel+core@7.16.5+rollup@2.62.0: 1323 | dependencies: 1324 | '@babel/core': 7.16.5 1325 | '@babel/helper-module-imports': 7.16.0 1326 | '@rollup/pluginutils': 3.1.0_rollup@2.62.0 1327 | rollup: 2.62.0 1328 | dev: true 1329 | engines: 1330 | node: '>= 10.0.0' 1331 | peerDependencies: 1332 | '@babel/core': ^7.0.0 1333 | '@types/babel__core': ^7.1.9 1334 | rollup: ^1.20.0||^2.0.0 1335 | peerDependenciesMeta: 1336 | '@types/babel__core': 1337 | optional: true 1338 | resolution: 1339 | integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw== 1340 | /@rollup/plugin-commonjs/17.1.0_rollup@2.62.0: 1341 | dependencies: 1342 | '@rollup/pluginutils': 3.1.0_rollup@2.62.0 1343 | commondir: 1.0.1 1344 | estree-walker: 2.0.2 1345 | glob: 7.2.0 1346 | is-reference: 1.2.1 1347 | magic-string: 0.25.7 1348 | resolve: 1.20.0 1349 | rollup: 2.62.0 1350 | dev: true 1351 | engines: 1352 | node: '>= 8.0.0' 1353 | peerDependencies: 1354 | rollup: ^2.30.0 1355 | resolution: 1356 | integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew== 1357 | /@rollup/plugin-json/4.1.0_rollup@2.62.0: 1358 | dependencies: 1359 | '@rollup/pluginutils': 3.1.0_rollup@2.62.0 1360 | rollup: 2.62.0 1361 | dev: true 1362 | peerDependencies: 1363 | rollup: ^1.20.0 || ^2.0.0 1364 | resolution: 1365 | integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== 1366 | /@rollup/plugin-node-resolve/11.2.1_rollup@2.62.0: 1367 | dependencies: 1368 | '@rollup/pluginutils': 3.1.0_rollup@2.62.0 1369 | '@types/resolve': 1.17.1 1370 | builtin-modules: 3.2.0 1371 | deepmerge: 4.2.2 1372 | is-module: 1.0.0 1373 | resolve: 1.20.0 1374 | rollup: 2.62.0 1375 | dev: true 1376 | engines: 1377 | node: '>= 10.0.0' 1378 | peerDependencies: 1379 | rollup: ^1.20.0||^2.0.0 1380 | resolution: 1381 | integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== 1382 | /@rollup/pluginutils/3.1.0_rollup@2.62.0: 1383 | dependencies: 1384 | '@types/estree': 0.0.39 1385 | estree-walker: 1.0.1 1386 | picomatch: 2.3.0 1387 | rollup: 2.62.0 1388 | dev: true 1389 | engines: 1390 | node: '>= 8.0.0' 1391 | peerDependencies: 1392 | rollup: ^1.20.0||^2.0.0 1393 | resolution: 1394 | integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 1395 | /@surma/rollup-plugin-off-main-thread/2.2.3: 1396 | dependencies: 1397 | ejs: 3.1.6 1398 | json5: 2.2.0 1399 | magic-string: 0.25.7 1400 | string.prototype.matchall: 4.0.6 1401 | dev: true 1402 | resolution: 1403 | integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ== 1404 | /@trysound/sax/0.2.0: 1405 | dev: true 1406 | engines: 1407 | node: '>=10.13.0' 1408 | resolution: 1409 | integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== 1410 | /@types/estree/0.0.39: 1411 | dev: true 1412 | resolution: 1413 | integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1414 | /@types/estree/0.0.50: 1415 | dev: true 1416 | resolution: 1417 | integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== 1418 | /@types/node/17.0.5: 1419 | dev: true 1420 | resolution: 1421 | integrity: sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw== 1422 | /@types/parse-json/4.0.0: 1423 | dev: true 1424 | resolution: 1425 | integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 1426 | /@types/resolve/1.17.1: 1427 | dependencies: 1428 | '@types/node': 17.0.5 1429 | dev: true 1430 | resolution: 1431 | integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 1432 | /alphanum-sort/1.0.2: 1433 | dev: true 1434 | resolution: 1435 | integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 1436 | /ansi-regex/2.1.1: 1437 | dev: true 1438 | engines: 1439 | node: '>=0.10.0' 1440 | resolution: 1441 | integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 1442 | /ansi-styles/2.2.1: 1443 | dev: true 1444 | engines: 1445 | node: '>=0.10.0' 1446 | resolution: 1447 | integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 1448 | /ansi-styles/3.2.1: 1449 | dependencies: 1450 | color-convert: 1.9.3 1451 | dev: true 1452 | engines: 1453 | node: '>=4' 1454 | resolution: 1455 | integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1456 | /ansi-styles/4.3.0: 1457 | dependencies: 1458 | color-convert: 2.0.1 1459 | dev: true 1460 | engines: 1461 | node: '>=8' 1462 | resolution: 1463 | integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1464 | /async/0.9.2: 1465 | dev: true 1466 | resolution: 1467 | integrity: sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 1468 | /asyncro/3.0.0: 1469 | dev: true 1470 | resolution: 1471 | integrity: sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg== 1472 | /autoprefixer/10.4.1_postcss@8.4.5: 1473 | dependencies: 1474 | browserslist: 4.19.1 1475 | caniuse-lite: 1.0.30001294 1476 | fraction.js: 4.1.2 1477 | normalize-range: 0.1.2 1478 | picocolors: 1.0.0 1479 | postcss: 8.4.5 1480 | postcss-value-parser: 4.2.0 1481 | dev: true 1482 | engines: 1483 | node: ^10 || ^12 || >=14 1484 | hasBin: true 1485 | peerDependencies: 1486 | postcss: ^8.1.0 1487 | resolution: 1488 | integrity: sha512-B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A== 1489 | /babel-plugin-dynamic-import-node/2.3.3: 1490 | dependencies: 1491 | object.assign: 4.1.2 1492 | dev: true 1493 | resolution: 1494 | integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1495 | /babel-plugin-macros/3.1.0: 1496 | dependencies: 1497 | '@babel/runtime': 7.16.5 1498 | cosmiconfig: 7.0.1 1499 | resolve: 1.20.0 1500 | dev: true 1501 | engines: 1502 | node: '>=10' 1503 | npm: '>=6' 1504 | resolution: 1505 | integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== 1506 | /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.5: 1507 | dependencies: 1508 | '@babel/compat-data': 7.16.4 1509 | '@babel/core': 7.16.5 1510 | '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 1511 | semver: 6.3.0 1512 | dev: true 1513 | peerDependencies: 1514 | '@babel/core': ^7.0.0-0 1515 | resolution: 1516 | integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA== 1517 | /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.5: 1518 | dependencies: 1519 | '@babel/core': 7.16.5 1520 | '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 1521 | core-js-compat: 3.20.1 1522 | dev: true 1523 | peerDependencies: 1524 | '@babel/core': ^7.0.0-0 1525 | resolution: 1526 | integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw== 1527 | /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.5: 1528 | dependencies: 1529 | '@babel/core': 7.16.5 1530 | '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 1531 | dev: true 1532 | peerDependencies: 1533 | '@babel/core': ^7.0.0-0 1534 | resolution: 1535 | integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg== 1536 | /babel-plugin-transform-async-to-promises/0.8.18: 1537 | dev: true 1538 | resolution: 1539 | integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw== 1540 | /babel-plugin-transform-replace-expressions/0.2.0_@babel+core@7.16.5: 1541 | dependencies: 1542 | '@babel/core': 7.16.5 1543 | '@babel/parser': 7.16.6 1544 | dev: true 1545 | peerDependencies: 1546 | '@babel/core': ^7.0.0-0 1547 | resolution: 1548 | integrity: sha512-Eh1rRd9hWEYgkgoA3D0kGp7xJ/wgVshgsqmq60iC4HVWD+Lux+fNHSHBa2v1Hsv+dHflShC71qKhiH40OiPtDA== 1549 | /balanced-match/1.0.2: 1550 | dev: true 1551 | resolution: 1552 | integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1553 | /boolbase/1.0.0: 1554 | dev: true 1555 | resolution: 1556 | integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24= 1557 | /brace-expansion/1.1.11: 1558 | dependencies: 1559 | balanced-match: 1.0.2 1560 | concat-map: 0.0.1 1561 | dev: true 1562 | resolution: 1563 | integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1564 | /brotli-size/4.0.0: 1565 | dependencies: 1566 | duplexer: 0.1.1 1567 | dev: true 1568 | engines: 1569 | node: '>= 10.16.0' 1570 | resolution: 1571 | integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA== 1572 | /browserslist/4.19.1: 1573 | dependencies: 1574 | caniuse-lite: 1.0.30001294 1575 | electron-to-chromium: 1.4.30 1576 | escalade: 3.1.1 1577 | node-releases: 2.0.1 1578 | picocolors: 1.0.0 1579 | dev: true 1580 | engines: 1581 | node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 1582 | hasBin: true 1583 | resolution: 1584 | integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== 1585 | /buffer-from/1.1.2: 1586 | dev: true 1587 | resolution: 1588 | integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1589 | /builtin-modules/3.2.0: 1590 | dev: true 1591 | engines: 1592 | node: '>=6' 1593 | resolution: 1594 | integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== 1595 | /call-bind/1.0.2: 1596 | dependencies: 1597 | function-bind: 1.1.1 1598 | get-intrinsic: 1.1.1 1599 | dev: true 1600 | resolution: 1601 | integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1602 | /callsites/3.1.0: 1603 | dev: true 1604 | engines: 1605 | node: '>=6' 1606 | resolution: 1607 | integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1608 | /camelcase/6.2.1: 1609 | dev: true 1610 | engines: 1611 | node: '>=10' 1612 | resolution: 1613 | integrity: sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA== 1614 | /caniuse-api/3.0.0: 1615 | dependencies: 1616 | browserslist: 4.19.1 1617 | caniuse-lite: 1.0.30001294 1618 | lodash.memoize: 4.1.2 1619 | lodash.uniq: 4.5.0 1620 | dev: true 1621 | resolution: 1622 | integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== 1623 | /caniuse-lite/1.0.30001294: 1624 | dev: true 1625 | resolution: 1626 | integrity: sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g== 1627 | /chalk/1.1.3: 1628 | dependencies: 1629 | ansi-styles: 2.2.1 1630 | escape-string-regexp: 1.0.5 1631 | has-ansi: 2.0.0 1632 | strip-ansi: 3.0.1 1633 | supports-color: 2.0.0 1634 | dev: true 1635 | engines: 1636 | node: '>=0.10.0' 1637 | resolution: 1638 | integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 1639 | /chalk/2.4.2: 1640 | dependencies: 1641 | ansi-styles: 3.2.1 1642 | escape-string-regexp: 1.0.5 1643 | supports-color: 5.5.0 1644 | dev: true 1645 | engines: 1646 | node: '>=4' 1647 | resolution: 1648 | integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1649 | /chalk/4.1.2: 1650 | dependencies: 1651 | ansi-styles: 4.3.0 1652 | supports-color: 7.2.0 1653 | dev: true 1654 | engines: 1655 | node: '>=10' 1656 | resolution: 1657 | integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1658 | /color-convert/1.9.3: 1659 | dependencies: 1660 | color-name: 1.1.3 1661 | dev: true 1662 | resolution: 1663 | integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1664 | /color-convert/2.0.1: 1665 | dependencies: 1666 | color-name: 1.1.4 1667 | dev: true 1668 | engines: 1669 | node: '>=7.0.0' 1670 | resolution: 1671 | integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1672 | /color-name/1.1.3: 1673 | dev: true 1674 | resolution: 1675 | integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1676 | /color-name/1.1.4: 1677 | dev: true 1678 | resolution: 1679 | integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1680 | /colord/2.9.2: 1681 | dev: true 1682 | resolution: 1683 | integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ== 1684 | /commander/2.20.3: 1685 | dev: true 1686 | resolution: 1687 | integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1688 | /commander/7.2.0: 1689 | dev: true 1690 | engines: 1691 | node: '>= 10' 1692 | resolution: 1693 | integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 1694 | /commondir/1.0.1: 1695 | dev: true 1696 | resolution: 1697 | integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1698 | /concat-map/0.0.1: 1699 | dev: true 1700 | resolution: 1701 | integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1702 | /concat-with-sourcemaps/1.1.0: 1703 | dependencies: 1704 | source-map: 0.6.1 1705 | dev: true 1706 | resolution: 1707 | integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== 1708 | /console-clear/1.1.1: 1709 | dev: true 1710 | engines: 1711 | node: '>=4' 1712 | resolution: 1713 | integrity: sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ== 1714 | /convert-source-map/1.8.0: 1715 | dependencies: 1716 | safe-buffer: 5.1.2 1717 | dev: true 1718 | resolution: 1719 | integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1720 | /core-js-compat/3.20.1: 1721 | dependencies: 1722 | browserslist: 4.19.1 1723 | semver: 7.0.0 1724 | dev: true 1725 | resolution: 1726 | integrity: sha512-AVhKZNpqMV3Jz8hU0YEXXE06qoxtQGsAqU0u1neUngz5IusDJRX/ZJ6t3i7mS7QxNyEONbCo14GprkBrxPlTZA== 1727 | /cosmiconfig/7.0.1: 1728 | dependencies: 1729 | '@types/parse-json': 4.0.0 1730 | import-fresh: 3.3.0 1731 | parse-json: 5.2.0 1732 | path-type: 4.0.0 1733 | yaml: 1.10.2 1734 | dev: true 1735 | engines: 1736 | node: '>=10' 1737 | resolution: 1738 | integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== 1739 | /css-declaration-sorter/6.1.3_postcss@8.4.5: 1740 | dependencies: 1741 | postcss: 8.4.5 1742 | timsort: 0.3.0 1743 | dev: true 1744 | engines: 1745 | node: '>= 10' 1746 | peerDependencies: 1747 | postcss: ^8.0.9 1748 | resolution: 1749 | integrity: sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA== 1750 | /css-select/4.2.1: 1751 | dependencies: 1752 | boolbase: 1.0.0 1753 | css-what: 5.1.0 1754 | domhandler: 4.3.0 1755 | domutils: 2.8.0 1756 | nth-check: 2.0.1 1757 | dev: true 1758 | resolution: 1759 | integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ== 1760 | /css-tree/1.1.3: 1761 | dependencies: 1762 | mdn-data: 2.0.14 1763 | source-map: 0.6.1 1764 | dev: true 1765 | engines: 1766 | node: '>=8.0.0' 1767 | resolution: 1768 | integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 1769 | /css-what/5.1.0: 1770 | dev: true 1771 | engines: 1772 | node: '>= 6' 1773 | resolution: 1774 | integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== 1775 | /cssesc/3.0.0: 1776 | dev: true 1777 | engines: 1778 | node: '>=4' 1779 | hasBin: true 1780 | resolution: 1781 | integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 1782 | /cssnano-preset-default/5.1.9_postcss@8.4.5: 1783 | dependencies: 1784 | css-declaration-sorter: 6.1.3_postcss@8.4.5 1785 | cssnano-utils: 2.0.1_postcss@8.4.5 1786 | postcss: 8.4.5 1787 | postcss-calc: 8.0.0_postcss@8.4.5 1788 | postcss-colormin: 5.2.2_postcss@8.4.5 1789 | postcss-convert-values: 5.0.2_postcss@8.4.5 1790 | postcss-discard-comments: 5.0.1_postcss@8.4.5 1791 | postcss-discard-duplicates: 5.0.1_postcss@8.4.5 1792 | postcss-discard-empty: 5.0.1_postcss@8.4.5 1793 | postcss-discard-overridden: 5.0.1_postcss@8.4.5 1794 | postcss-merge-longhand: 5.0.4_postcss@8.4.5 1795 | postcss-merge-rules: 5.0.3_postcss@8.4.5 1796 | postcss-minify-font-values: 5.0.1_postcss@8.4.5 1797 | postcss-minify-gradients: 5.0.3_postcss@8.4.5 1798 | postcss-minify-params: 5.0.2_postcss@8.4.5 1799 | postcss-minify-selectors: 5.1.0_postcss@8.4.5 1800 | postcss-normalize-charset: 5.0.1_postcss@8.4.5 1801 | postcss-normalize-display-values: 5.0.1_postcss@8.4.5 1802 | postcss-normalize-positions: 5.0.1_postcss@8.4.5 1803 | postcss-normalize-repeat-style: 5.0.1_postcss@8.4.5 1804 | postcss-normalize-string: 5.0.1_postcss@8.4.5 1805 | postcss-normalize-timing-functions: 5.0.1_postcss@8.4.5 1806 | postcss-normalize-unicode: 5.0.1_postcss@8.4.5 1807 | postcss-normalize-url: 5.0.4_postcss@8.4.5 1808 | postcss-normalize-whitespace: 5.0.1_postcss@8.4.5 1809 | postcss-ordered-values: 5.0.2_postcss@8.4.5 1810 | postcss-reduce-initial: 5.0.2_postcss@8.4.5 1811 | postcss-reduce-transforms: 5.0.1_postcss@8.4.5 1812 | postcss-svgo: 5.0.3_postcss@8.4.5 1813 | postcss-unique-selectors: 5.0.2_postcss@8.4.5 1814 | dev: true 1815 | engines: 1816 | node: ^10 || ^12 || >=14.0 1817 | peerDependencies: 1818 | postcss: ^8.2.15 1819 | resolution: 1820 | integrity: sha512-RhkEucqlQ+OxEi14K1p8gdXcMQy1mSpo7P1oC44oRls7BYIj8p+cht4IFBFV3W4iOjTP8EUB33XV1fX9KhDzyA== 1821 | /cssnano-utils/2.0.1_postcss@8.4.5: 1822 | dependencies: 1823 | postcss: 8.4.5 1824 | dev: true 1825 | engines: 1826 | node: ^10 || ^12 || >=14.0 1827 | peerDependencies: 1828 | postcss: ^8.2.15 1829 | resolution: 1830 | integrity: sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ== 1831 | /cssnano/5.0.14_postcss@8.4.5: 1832 | dependencies: 1833 | cssnano-preset-default: 5.1.9_postcss@8.4.5 1834 | lilconfig: 2.0.4 1835 | postcss: 8.4.5 1836 | yaml: 1.10.2 1837 | dev: true 1838 | engines: 1839 | node: ^10 || ^12 || >=14.0 1840 | peerDependencies: 1841 | postcss: ^8.2.15 1842 | resolution: 1843 | integrity: sha512-qzhRkFvBhv08tbyKCIfWbxBXmkIpLl1uNblt8SpTHkgLfON5OCPX/CCnkdNmEosvo8bANQYmTTMEgcVBlisHaw== 1844 | /csso/4.2.0: 1845 | dependencies: 1846 | css-tree: 1.1.3 1847 | dev: true 1848 | engines: 1849 | node: '>=8.0.0' 1850 | resolution: 1851 | integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 1852 | /debug/4.3.3: 1853 | dependencies: 1854 | ms: 2.1.2 1855 | dev: true 1856 | engines: 1857 | node: '>=6.0' 1858 | peerDependencies: 1859 | supports-color: '*' 1860 | peerDependenciesMeta: 1861 | supports-color: 1862 | optional: true 1863 | resolution: 1864 | integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 1865 | /deepmerge/4.2.2: 1866 | dev: true 1867 | engines: 1868 | node: '>=0.10.0' 1869 | resolution: 1870 | integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1871 | /define-properties/1.1.3: 1872 | dependencies: 1873 | object-keys: 1.1.1 1874 | dev: true 1875 | engines: 1876 | node: '>= 0.4' 1877 | resolution: 1878 | integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1879 | /dom-serializer/1.3.2: 1880 | dependencies: 1881 | domelementtype: 2.2.0 1882 | domhandler: 4.3.0 1883 | entities: 2.2.0 1884 | dev: true 1885 | resolution: 1886 | integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== 1887 | /domelementtype/2.2.0: 1888 | dev: true 1889 | resolution: 1890 | integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 1891 | /domhandler/4.3.0: 1892 | dependencies: 1893 | domelementtype: 2.2.0 1894 | dev: true 1895 | engines: 1896 | node: '>= 4' 1897 | resolution: 1898 | integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g== 1899 | /domutils/2.8.0: 1900 | dependencies: 1901 | dom-serializer: 1.3.2 1902 | domelementtype: 2.2.0 1903 | domhandler: 4.3.0 1904 | dev: true 1905 | resolution: 1906 | integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== 1907 | /duplexer/0.1.1: 1908 | dev: true 1909 | resolution: 1910 | integrity: sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 1911 | /duplexer/0.1.2: 1912 | dev: true 1913 | resolution: 1914 | integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== 1915 | /ejs/3.1.6: 1916 | dependencies: 1917 | jake: 10.8.2 1918 | dev: true 1919 | engines: 1920 | node: '>=0.10.0' 1921 | hasBin: true 1922 | resolution: 1923 | integrity: sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== 1924 | /electron-to-chromium/1.4.30: 1925 | dev: true 1926 | resolution: 1927 | integrity: sha512-609z9sIMxDHg+TcR/VB3MXwH+uwtrYyeAwWc/orhnr90ixs6WVGSrt85CDLGUdNnLqCA7liv426V20EecjvflQ== 1928 | /entities/2.2.0: 1929 | dev: true 1930 | resolution: 1931 | integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 1932 | /error-ex/1.3.2: 1933 | dependencies: 1934 | is-arrayish: 0.2.1 1935 | dev: true 1936 | resolution: 1937 | integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1938 | /es-abstract/1.19.1: 1939 | dependencies: 1940 | call-bind: 1.0.2 1941 | es-to-primitive: 1.2.1 1942 | function-bind: 1.1.1 1943 | get-intrinsic: 1.1.1 1944 | get-symbol-description: 1.0.0 1945 | has: 1.0.3 1946 | has-symbols: 1.0.2 1947 | internal-slot: 1.0.3 1948 | is-callable: 1.2.4 1949 | is-negative-zero: 2.0.2 1950 | is-regex: 1.1.4 1951 | is-shared-array-buffer: 1.0.1 1952 | is-string: 1.0.7 1953 | is-weakref: 1.0.2 1954 | object-inspect: 1.12.0 1955 | object-keys: 1.1.1 1956 | object.assign: 4.1.2 1957 | string.prototype.trimend: 1.0.4 1958 | string.prototype.trimstart: 1.0.4 1959 | unbox-primitive: 1.0.1 1960 | dev: true 1961 | engines: 1962 | node: '>= 0.4' 1963 | resolution: 1964 | integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== 1965 | /es-to-primitive/1.2.1: 1966 | dependencies: 1967 | is-callable: 1.2.4 1968 | is-date-object: 1.0.5 1969 | is-symbol: 1.0.4 1970 | dev: true 1971 | engines: 1972 | node: '>= 0.4' 1973 | resolution: 1974 | integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1975 | /escalade/3.1.1: 1976 | dev: true 1977 | engines: 1978 | node: '>=6' 1979 | resolution: 1980 | integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1981 | /escape-string-regexp/1.0.5: 1982 | dev: true 1983 | engines: 1984 | node: '>=0.8.0' 1985 | resolution: 1986 | integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1987 | /escape-string-regexp/4.0.0: 1988 | dev: true 1989 | engines: 1990 | node: '>=10' 1991 | resolution: 1992 | integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1993 | /estree-walker/0.6.1: 1994 | dev: true 1995 | resolution: 1996 | integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 1997 | /estree-walker/1.0.1: 1998 | dev: true 1999 | resolution: 2000 | integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 2001 | /estree-walker/2.0.2: 2002 | dev: true 2003 | resolution: 2004 | integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 2005 | /esutils/2.0.3: 2006 | dev: true 2007 | engines: 2008 | node: '>=0.10.0' 2009 | resolution: 2010 | integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 2011 | /eventemitter3/4.0.7: 2012 | dev: true 2013 | resolution: 2014 | integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== 2015 | /figures/1.7.0: 2016 | dependencies: 2017 | escape-string-regexp: 1.0.5 2018 | object-assign: 4.1.1 2019 | dev: true 2020 | engines: 2021 | node: '>=0.10.0' 2022 | resolution: 2023 | integrity: sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= 2024 | /filelist/1.0.2: 2025 | dependencies: 2026 | minimatch: 3.0.4 2027 | dev: true 2028 | resolution: 2029 | integrity: sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== 2030 | /filesize/6.4.0: 2031 | dev: true 2032 | engines: 2033 | node: '>= 0.4.0' 2034 | resolution: 2035 | integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== 2036 | /find-cache-dir/3.3.2: 2037 | dependencies: 2038 | commondir: 1.0.1 2039 | make-dir: 3.1.0 2040 | pkg-dir: 4.2.0 2041 | dev: true 2042 | engines: 2043 | node: '>=8' 2044 | resolution: 2045 | integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== 2046 | /find-up/4.1.0: 2047 | dependencies: 2048 | locate-path: 5.0.0 2049 | path-exists: 4.0.0 2050 | dev: true 2051 | engines: 2052 | node: '>=8' 2053 | resolution: 2054 | integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 2055 | /fraction.js/4.1.2: 2056 | dev: true 2057 | resolution: 2058 | integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA== 2059 | /fs-extra/8.1.0: 2060 | dependencies: 2061 | graceful-fs: 4.2.8 2062 | jsonfile: 4.0.0 2063 | universalify: 0.1.2 2064 | dev: true 2065 | engines: 2066 | node: '>=6 <7 || >=8' 2067 | resolution: 2068 | integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 2069 | /fs.realpath/1.0.0: 2070 | dev: true 2071 | resolution: 2072 | integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 2073 | /fsevents/2.3.2: 2074 | dev: true 2075 | engines: 2076 | node: ^8.16.0 || ^10.6.0 || >=11.0.0 2077 | optional: true 2078 | os: 2079 | - darwin 2080 | resolution: 2081 | integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 2082 | /function-bind/1.1.1: 2083 | dev: true 2084 | resolution: 2085 | integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 2086 | /generic-names/4.0.0: 2087 | dependencies: 2088 | loader-utils: 3.2.0 2089 | dev: true 2090 | resolution: 2091 | integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== 2092 | /gensync/1.0.0-beta.2: 2093 | dev: true 2094 | engines: 2095 | node: '>=6.9.0' 2096 | resolution: 2097 | integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 2098 | /get-intrinsic/1.1.1: 2099 | dependencies: 2100 | function-bind: 1.1.1 2101 | has: 1.0.3 2102 | has-symbols: 1.0.2 2103 | dev: true 2104 | resolution: 2105 | integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 2106 | /get-port/3.2.0: 2107 | dev: true 2108 | engines: 2109 | node: '>=4' 2110 | resolution: 2111 | integrity: sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= 2112 | /get-symbol-description/1.0.0: 2113 | dependencies: 2114 | call-bind: 1.0.2 2115 | get-intrinsic: 1.1.1 2116 | dev: true 2117 | engines: 2118 | node: '>= 0.4' 2119 | resolution: 2120 | integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 2121 | /glob/7.2.0: 2122 | dependencies: 2123 | fs.realpath: 1.0.0 2124 | inflight: 1.0.6 2125 | inherits: 2.0.4 2126 | minimatch: 3.0.4 2127 | once: 1.4.0 2128 | path-is-absolute: 1.0.1 2129 | dev: true 2130 | resolution: 2131 | integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 2132 | /globals/11.12.0: 2133 | dev: true 2134 | engines: 2135 | node: '>=4' 2136 | resolution: 2137 | integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 2138 | /globalyzer/0.1.0: 2139 | dev: true 2140 | resolution: 2141 | integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 2142 | /globrex/0.1.2: 2143 | dev: true 2144 | resolution: 2145 | integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 2146 | /graceful-fs/4.2.8: 2147 | dev: true 2148 | resolution: 2149 | integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 2150 | /gzip-size/3.0.0: 2151 | dependencies: 2152 | duplexer: 0.1.2 2153 | dev: true 2154 | engines: 2155 | node: '>=0.12.0' 2156 | resolution: 2157 | integrity: sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA= 2158 | /gzip-size/6.0.0: 2159 | dependencies: 2160 | duplexer: 0.1.2 2161 | dev: true 2162 | engines: 2163 | node: '>=10' 2164 | resolution: 2165 | integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== 2166 | /has-ansi/2.0.0: 2167 | dependencies: 2168 | ansi-regex: 2.1.1 2169 | dev: true 2170 | engines: 2171 | node: '>=0.10.0' 2172 | resolution: 2173 | integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 2174 | /has-bigints/1.0.1: 2175 | dev: true 2176 | resolution: 2177 | integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 2178 | /has-flag/3.0.0: 2179 | dev: true 2180 | engines: 2181 | node: '>=4' 2182 | resolution: 2183 | integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 2184 | /has-flag/4.0.0: 2185 | dev: true 2186 | engines: 2187 | node: '>=8' 2188 | resolution: 2189 | integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 2190 | /has-symbols/1.0.2: 2191 | dev: true 2192 | engines: 2193 | node: '>= 0.4' 2194 | resolution: 2195 | integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 2196 | /has-tostringtag/1.0.0: 2197 | dependencies: 2198 | has-symbols: 1.0.2 2199 | dev: true 2200 | engines: 2201 | node: '>= 0.4' 2202 | resolution: 2203 | integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 2204 | /has/1.0.3: 2205 | dependencies: 2206 | function-bind: 1.1.1 2207 | dev: true 2208 | engines: 2209 | node: '>= 0.4.0' 2210 | resolution: 2211 | integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 2212 | /icss-replace-symbols/1.1.0: 2213 | dev: true 2214 | resolution: 2215 | integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= 2216 | /icss-utils/5.1.0_postcss@8.4.5: 2217 | dependencies: 2218 | postcss: 8.4.5 2219 | dev: true 2220 | engines: 2221 | node: ^10 || ^12 || >= 14 2222 | peerDependencies: 2223 | postcss: ^8.1.0 2224 | resolution: 2225 | integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== 2226 | /import-cwd/3.0.0: 2227 | dependencies: 2228 | import-from: 3.0.0 2229 | dev: true 2230 | engines: 2231 | node: '>=8' 2232 | resolution: 2233 | integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== 2234 | /import-fresh/3.3.0: 2235 | dependencies: 2236 | parent-module: 1.0.1 2237 | resolve-from: 4.0.0 2238 | dev: true 2239 | engines: 2240 | node: '>=6' 2241 | resolution: 2242 | integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 2243 | /import-from/3.0.0: 2244 | dependencies: 2245 | resolve-from: 5.0.0 2246 | dev: true 2247 | engines: 2248 | node: '>=8' 2249 | resolution: 2250 | integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== 2251 | /inflight/1.0.6: 2252 | dependencies: 2253 | once: 1.4.0 2254 | wrappy: 1.0.2 2255 | dev: true 2256 | resolution: 2257 | integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 2258 | /inherits/2.0.4: 2259 | dev: true 2260 | resolution: 2261 | integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2262 | /internal-slot/1.0.3: 2263 | dependencies: 2264 | get-intrinsic: 1.1.1 2265 | has: 1.0.3 2266 | side-channel: 1.0.4 2267 | dev: true 2268 | engines: 2269 | node: '>= 0.4' 2270 | resolution: 2271 | integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 2272 | /is-arrayish/0.2.1: 2273 | dev: true 2274 | resolution: 2275 | integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2276 | /is-bigint/1.0.4: 2277 | dependencies: 2278 | has-bigints: 1.0.1 2279 | dev: true 2280 | resolution: 2281 | integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 2282 | /is-boolean-object/1.1.2: 2283 | dependencies: 2284 | call-bind: 1.0.2 2285 | has-tostringtag: 1.0.0 2286 | dev: true 2287 | engines: 2288 | node: '>= 0.4' 2289 | resolution: 2290 | integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 2291 | /is-callable/1.2.4: 2292 | dev: true 2293 | engines: 2294 | node: '>= 0.4' 2295 | resolution: 2296 | integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 2297 | /is-core-module/2.8.0: 2298 | dependencies: 2299 | has: 1.0.3 2300 | dev: true 2301 | resolution: 2302 | integrity: sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== 2303 | /is-date-object/1.0.5: 2304 | dependencies: 2305 | has-tostringtag: 1.0.0 2306 | dev: true 2307 | engines: 2308 | node: '>= 0.4' 2309 | resolution: 2310 | integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 2311 | /is-module/1.0.0: 2312 | dev: true 2313 | resolution: 2314 | integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 2315 | /is-negative-zero/2.0.2: 2316 | dev: true 2317 | engines: 2318 | node: '>= 0.4' 2319 | resolution: 2320 | integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 2321 | /is-number-object/1.0.6: 2322 | dependencies: 2323 | has-tostringtag: 1.0.0 2324 | dev: true 2325 | engines: 2326 | node: '>= 0.4' 2327 | resolution: 2328 | integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== 2329 | /is-reference/1.2.1: 2330 | dependencies: 2331 | '@types/estree': 0.0.50 2332 | dev: true 2333 | resolution: 2334 | integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 2335 | /is-regex/1.1.4: 2336 | dependencies: 2337 | call-bind: 1.0.2 2338 | has-tostringtag: 1.0.0 2339 | dev: true 2340 | engines: 2341 | node: '>= 0.4' 2342 | resolution: 2343 | integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 2344 | /is-shared-array-buffer/1.0.1: 2345 | dev: true 2346 | resolution: 2347 | integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== 2348 | /is-string/1.0.7: 2349 | dependencies: 2350 | has-tostringtag: 1.0.0 2351 | dev: true 2352 | engines: 2353 | node: '>= 0.4' 2354 | resolution: 2355 | integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 2356 | /is-symbol/1.0.4: 2357 | dependencies: 2358 | has-symbols: 1.0.2 2359 | dev: true 2360 | engines: 2361 | node: '>= 0.4' 2362 | resolution: 2363 | integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 2364 | /is-weakref/1.0.2: 2365 | dependencies: 2366 | call-bind: 1.0.2 2367 | dev: true 2368 | resolution: 2369 | integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 2370 | /jake/10.8.2: 2371 | dependencies: 2372 | async: 0.9.2 2373 | chalk: 2.4.2 2374 | filelist: 1.0.2 2375 | minimatch: 3.0.4 2376 | dev: true 2377 | hasBin: true 2378 | resolution: 2379 | integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 2380 | /jest-worker/26.6.2: 2381 | dependencies: 2382 | '@types/node': 17.0.5 2383 | merge-stream: 2.0.0 2384 | supports-color: 7.2.0 2385 | dev: true 2386 | engines: 2387 | node: '>= 10.13.0' 2388 | resolution: 2389 | integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 2390 | /js-tokens/4.0.0: 2391 | dev: true 2392 | resolution: 2393 | integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2394 | /jsesc/0.5.0: 2395 | dev: true 2396 | hasBin: true 2397 | resolution: 2398 | integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2399 | /jsesc/2.5.2: 2400 | dev: true 2401 | engines: 2402 | node: '>=4' 2403 | hasBin: true 2404 | resolution: 2405 | integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2406 | /json-parse-even-better-errors/2.3.1: 2407 | dev: true 2408 | resolution: 2409 | integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2410 | /json5/2.2.0: 2411 | dependencies: 2412 | minimist: 1.2.5 2413 | dev: true 2414 | engines: 2415 | node: '>=6' 2416 | hasBin: true 2417 | resolution: 2418 | integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 2419 | /jsonfile/4.0.0: 2420 | dev: true 2421 | optionalDependencies: 2422 | graceful-fs: 4.2.8 2423 | resolution: 2424 | integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 2425 | /kleur/3.0.3: 2426 | dev: true 2427 | engines: 2428 | node: '>=6' 2429 | resolution: 2430 | integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2431 | /kleur/4.1.4: 2432 | dev: true 2433 | engines: 2434 | node: '>=6' 2435 | resolution: 2436 | integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA== 2437 | /leaflet/1.7.1: 2438 | dev: false 2439 | resolution: 2440 | integrity: sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw== 2441 | /lilconfig/2.0.4: 2442 | dev: true 2443 | engines: 2444 | node: '>=10' 2445 | resolution: 2446 | integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA== 2447 | /lines-and-columns/1.2.4: 2448 | dev: true 2449 | resolution: 2450 | integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2451 | /loader-utils/3.2.0: 2452 | dev: true 2453 | engines: 2454 | node: '>= 12.13.0' 2455 | resolution: 2456 | integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ== 2457 | /local-access/1.1.0: 2458 | dev: true 2459 | engines: 2460 | node: '>=6' 2461 | resolution: 2462 | integrity: sha512-XfegD5pyTAfb+GY6chk283Ox5z8WexG56OvM06RWLpAc/UHozO8X6xAxEkIitZOtsSMM1Yr3DkHgW5W+onLhCw== 2463 | /locate-path/5.0.0: 2464 | dependencies: 2465 | p-locate: 4.1.0 2466 | dev: true 2467 | engines: 2468 | node: '>=8' 2469 | resolution: 2470 | integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2471 | /lodash.camelcase/4.3.0: 2472 | dev: true 2473 | resolution: 2474 | integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 2475 | /lodash.debounce/4.0.8: 2476 | dev: true 2477 | resolution: 2478 | integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2479 | /lodash.memoize/4.1.2: 2480 | dev: true 2481 | resolution: 2482 | integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 2483 | /lodash.merge/4.6.2: 2484 | dev: true 2485 | resolution: 2486 | integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2487 | /lodash.uniq/4.5.0: 2488 | dev: true 2489 | resolution: 2490 | integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 2491 | /magic-string/0.25.7: 2492 | dependencies: 2493 | sourcemap-codec: 1.4.8 2494 | dev: true 2495 | resolution: 2496 | integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 2497 | /make-dir/3.1.0: 2498 | dependencies: 2499 | semver: 6.3.0 2500 | dev: true 2501 | engines: 2502 | node: '>=8' 2503 | resolution: 2504 | integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2505 | /maxmin/2.1.0: 2506 | dependencies: 2507 | chalk: 1.1.3 2508 | figures: 1.7.0 2509 | gzip-size: 3.0.0 2510 | pretty-bytes: 3.0.1 2511 | dev: true 2512 | engines: 2513 | node: '>=0.12' 2514 | resolution: 2515 | integrity: sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY= 2516 | /mdn-data/2.0.14: 2517 | dev: true 2518 | resolution: 2519 | integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 2520 | /merge-stream/2.0.0: 2521 | dev: true 2522 | resolution: 2523 | integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2524 | /microbundle/0.14.2: 2525 | dependencies: 2526 | '@babel/core': 7.16.5 2527 | '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.16.5 2528 | '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.5 2529 | '@babel/plugin-syntax-jsx': 7.16.5_@babel+core@7.16.5 2530 | '@babel/plugin-transform-flow-strip-types': 7.16.5_@babel+core@7.16.5 2531 | '@babel/plugin-transform-react-jsx': 7.16.5_@babel+core@7.16.5 2532 | '@babel/plugin-transform-regenerator': 7.16.5_@babel+core@7.16.5 2533 | '@babel/preset-env': 7.16.5_@babel+core@7.16.5 2534 | '@babel/preset-flow': 7.16.5_@babel+core@7.16.5 2535 | '@babel/preset-react': 7.16.5_@babel+core@7.16.5 2536 | '@rollup/plugin-alias': 3.1.8_rollup@2.62.0 2537 | '@rollup/plugin-babel': 5.3.0_@babel+core@7.16.5+rollup@2.62.0 2538 | '@rollup/plugin-commonjs': 17.1.0_rollup@2.62.0 2539 | '@rollup/plugin-json': 4.1.0_rollup@2.62.0 2540 | '@rollup/plugin-node-resolve': 11.2.1_rollup@2.62.0 2541 | '@surma/rollup-plugin-off-main-thread': 2.2.3 2542 | asyncro: 3.0.0 2543 | autoprefixer: 10.4.1_postcss@8.4.5 2544 | babel-plugin-macros: 3.1.0 2545 | babel-plugin-transform-async-to-promises: 0.8.18 2546 | babel-plugin-transform-replace-expressions: 0.2.0_@babel+core@7.16.5 2547 | brotli-size: 4.0.0 2548 | builtin-modules: 3.2.0 2549 | camelcase: 6.2.1 2550 | escape-string-regexp: 4.0.0 2551 | filesize: 6.4.0 2552 | gzip-size: 6.0.0 2553 | kleur: 4.1.4 2554 | lodash.merge: 4.6.2 2555 | postcss: 8.4.5 2556 | pretty-bytes: 5.6.0 2557 | rollup: 2.62.0 2558 | rollup-plugin-bundle-size: 1.0.3 2559 | rollup-plugin-postcss: 4.0.2_postcss@8.4.5 2560 | rollup-plugin-terser: 7.0.2_rollup@2.62.0 2561 | rollup-plugin-typescript2: 0.29.0_rollup@2.62.0+typescript@4.5.4 2562 | sade: 1.7.4 2563 | terser: 5.10.0 2564 | tiny-glob: 0.2.9 2565 | tslib: 2.3.1 2566 | typescript: 4.5.4 2567 | dev: true 2568 | hasBin: true 2569 | resolution: 2570 | integrity: sha512-jODALfU3w7jnJAqw7Tou9uU8e8zH0GRVWzOd/V7eAvD1fsfb9pyMbmzhFZqnX6SCb54eP1EF5oRyNlSxBAxoag== 2571 | /minimatch/3.0.4: 2572 | dependencies: 2573 | brace-expansion: 1.1.11 2574 | dev: true 2575 | resolution: 2576 | integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2577 | /minimist/1.2.5: 2578 | dev: true 2579 | resolution: 2580 | integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2581 | /mri/1.2.0: 2582 | dev: true 2583 | engines: 2584 | node: '>=4' 2585 | resolution: 2586 | integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== 2587 | /mrmime/1.0.0: 2588 | dev: true 2589 | engines: 2590 | node: '>=10' 2591 | resolution: 2592 | integrity: sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ== 2593 | /ms/2.1.2: 2594 | dev: true 2595 | resolution: 2596 | integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2597 | /nanoid/3.1.30: 2598 | dev: true 2599 | engines: 2600 | node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 2601 | hasBin: true 2602 | resolution: 2603 | integrity: sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== 2604 | /node-releases/2.0.1: 2605 | dev: true 2606 | resolution: 2607 | integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== 2608 | /normalize-range/0.1.2: 2609 | dev: true 2610 | engines: 2611 | node: '>=0.10.0' 2612 | resolution: 2613 | integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 2614 | /normalize-url/6.1.0: 2615 | dev: true 2616 | engines: 2617 | node: '>=10' 2618 | resolution: 2619 | integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== 2620 | /nth-check/2.0.1: 2621 | dependencies: 2622 | boolbase: 1.0.0 2623 | dev: true 2624 | resolution: 2625 | integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w== 2626 | /number-is-nan/1.0.1: 2627 | dev: true 2628 | engines: 2629 | node: '>=0.10.0' 2630 | resolution: 2631 | integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2632 | /object-assign/4.1.1: 2633 | dev: true 2634 | engines: 2635 | node: '>=0.10.0' 2636 | resolution: 2637 | integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2638 | /object-inspect/1.12.0: 2639 | dev: true 2640 | resolution: 2641 | integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== 2642 | /object-keys/1.1.1: 2643 | dev: true 2644 | engines: 2645 | node: '>= 0.4' 2646 | resolution: 2647 | integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2648 | /object.assign/4.1.2: 2649 | dependencies: 2650 | call-bind: 1.0.2 2651 | define-properties: 1.1.3 2652 | has-symbols: 1.0.2 2653 | object-keys: 1.1.1 2654 | dev: true 2655 | engines: 2656 | node: '>= 0.4' 2657 | resolution: 2658 | integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2659 | /once/1.4.0: 2660 | dependencies: 2661 | wrappy: 1.0.2 2662 | dev: true 2663 | resolution: 2664 | integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2665 | /p-finally/1.0.0: 2666 | dev: true 2667 | engines: 2668 | node: '>=4' 2669 | resolution: 2670 | integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2671 | /p-limit/2.3.0: 2672 | dependencies: 2673 | p-try: 2.2.0 2674 | dev: true 2675 | engines: 2676 | node: '>=6' 2677 | resolution: 2678 | integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2679 | /p-locate/4.1.0: 2680 | dependencies: 2681 | p-limit: 2.3.0 2682 | dev: true 2683 | engines: 2684 | node: '>=8' 2685 | resolution: 2686 | integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2687 | /p-queue/6.6.2: 2688 | dependencies: 2689 | eventemitter3: 4.0.7 2690 | p-timeout: 3.2.0 2691 | dev: true 2692 | engines: 2693 | node: '>=8' 2694 | resolution: 2695 | integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== 2696 | /p-timeout/3.2.0: 2697 | dependencies: 2698 | p-finally: 1.0.0 2699 | dev: true 2700 | engines: 2701 | node: '>=8' 2702 | resolution: 2703 | integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== 2704 | /p-try/2.2.0: 2705 | dev: true 2706 | engines: 2707 | node: '>=6' 2708 | resolution: 2709 | integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2710 | /parent-module/1.0.1: 2711 | dependencies: 2712 | callsites: 3.1.0 2713 | dev: true 2714 | engines: 2715 | node: '>=6' 2716 | resolution: 2717 | integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2718 | /parse-json/5.2.0: 2719 | dependencies: 2720 | '@babel/code-frame': 7.16.0 2721 | error-ex: 1.3.2 2722 | json-parse-even-better-errors: 2.3.1 2723 | lines-and-columns: 1.2.4 2724 | dev: true 2725 | engines: 2726 | node: '>=8' 2727 | resolution: 2728 | integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2729 | /path-exists/4.0.0: 2730 | dev: true 2731 | engines: 2732 | node: '>=8' 2733 | resolution: 2734 | integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2735 | /path-is-absolute/1.0.1: 2736 | dev: true 2737 | engines: 2738 | node: '>=0.10.0' 2739 | resolution: 2740 | integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2741 | /path-parse/1.0.7: 2742 | dev: true 2743 | resolution: 2744 | integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2745 | /path-type/4.0.0: 2746 | dev: true 2747 | engines: 2748 | node: '>=8' 2749 | resolution: 2750 | integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2751 | /picocolors/1.0.0: 2752 | dev: true 2753 | resolution: 2754 | integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2755 | /picomatch/2.3.0: 2756 | dev: true 2757 | engines: 2758 | node: '>=8.6' 2759 | resolution: 2760 | integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2761 | /pify/5.0.0: 2762 | dev: true 2763 | engines: 2764 | node: '>=10' 2765 | resolution: 2766 | integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== 2767 | /pkg-dir/4.2.0: 2768 | dependencies: 2769 | find-up: 4.1.0 2770 | dev: true 2771 | engines: 2772 | node: '>=8' 2773 | resolution: 2774 | integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2775 | /postcss-calc/8.0.0_postcss@8.4.5: 2776 | dependencies: 2777 | postcss: 8.4.5 2778 | postcss-selector-parser: 6.0.8 2779 | postcss-value-parser: 4.2.0 2780 | dev: true 2781 | peerDependencies: 2782 | postcss: ^8.2.2 2783 | resolution: 2784 | integrity: sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g== 2785 | /postcss-colormin/5.2.2_postcss@8.4.5: 2786 | dependencies: 2787 | browserslist: 4.19.1 2788 | caniuse-api: 3.0.0 2789 | colord: 2.9.2 2790 | postcss: 8.4.5 2791 | postcss-value-parser: 4.2.0 2792 | dev: true 2793 | engines: 2794 | node: ^10 || ^12 || >=14.0 2795 | peerDependencies: 2796 | postcss: ^8.2.15 2797 | resolution: 2798 | integrity: sha512-tSEe3NpqWARUTidDlF0LntPkdlhXqfDFuA1yslqpvvGAfpZ7oBaw+/QXd935NKm2U9p4PED0HDZlzmMk7fVC6g== 2799 | /postcss-convert-values/5.0.2_postcss@8.4.5: 2800 | dependencies: 2801 | postcss: 8.4.5 2802 | postcss-value-parser: 4.2.0 2803 | dev: true 2804 | engines: 2805 | node: ^10 || ^12 || >=14.0 2806 | peerDependencies: 2807 | postcss: ^8.2.15 2808 | resolution: 2809 | integrity: sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg== 2810 | /postcss-discard-comments/5.0.1_postcss@8.4.5: 2811 | dependencies: 2812 | postcss: 8.4.5 2813 | dev: true 2814 | engines: 2815 | node: ^10 || ^12 || >=14.0 2816 | peerDependencies: 2817 | postcss: ^8.2.15 2818 | resolution: 2819 | integrity: sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg== 2820 | /postcss-discard-duplicates/5.0.1_postcss@8.4.5: 2821 | dependencies: 2822 | postcss: 8.4.5 2823 | dev: true 2824 | engines: 2825 | node: ^10 || ^12 || >=14.0 2826 | peerDependencies: 2827 | postcss: ^8.2.15 2828 | resolution: 2829 | integrity: sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA== 2830 | /postcss-discard-empty/5.0.1_postcss@8.4.5: 2831 | dependencies: 2832 | postcss: 8.4.5 2833 | dev: true 2834 | engines: 2835 | node: ^10 || ^12 || >=14.0 2836 | peerDependencies: 2837 | postcss: ^8.2.15 2838 | resolution: 2839 | integrity: sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw== 2840 | /postcss-discard-overridden/5.0.1_postcss@8.4.5: 2841 | dependencies: 2842 | postcss: 8.4.5 2843 | dev: true 2844 | engines: 2845 | node: ^10 || ^12 || >=14.0 2846 | peerDependencies: 2847 | postcss: ^8.2.15 2848 | resolution: 2849 | integrity: sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q== 2850 | /postcss-load-config/3.1.0: 2851 | dependencies: 2852 | import-cwd: 3.0.0 2853 | lilconfig: 2.0.4 2854 | yaml: 1.10.2 2855 | dev: true 2856 | engines: 2857 | node: '>= 10' 2858 | peerDependencies: 2859 | ts-node: '>=9.0.0' 2860 | peerDependenciesMeta: 2861 | ts-node: 2862 | optional: true 2863 | resolution: 2864 | integrity: sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g== 2865 | /postcss-merge-longhand/5.0.4_postcss@8.4.5: 2866 | dependencies: 2867 | postcss: 8.4.5 2868 | postcss-value-parser: 4.2.0 2869 | stylehacks: 5.0.1_postcss@8.4.5 2870 | dev: true 2871 | engines: 2872 | node: ^10 || ^12 || >=14.0 2873 | peerDependencies: 2874 | postcss: ^8.2.15 2875 | resolution: 2876 | integrity: sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw== 2877 | /postcss-merge-rules/5.0.3_postcss@8.4.5: 2878 | dependencies: 2879 | browserslist: 4.19.1 2880 | caniuse-api: 3.0.0 2881 | cssnano-utils: 2.0.1_postcss@8.4.5 2882 | postcss: 8.4.5 2883 | postcss-selector-parser: 6.0.8 2884 | dev: true 2885 | engines: 2886 | node: ^10 || ^12 || >=14.0 2887 | peerDependencies: 2888 | postcss: ^8.2.15 2889 | resolution: 2890 | integrity: sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg== 2891 | /postcss-minify-font-values/5.0.1_postcss@8.4.5: 2892 | dependencies: 2893 | postcss: 8.4.5 2894 | postcss-value-parser: 4.2.0 2895 | dev: true 2896 | engines: 2897 | node: ^10 || ^12 || >=14.0 2898 | peerDependencies: 2899 | postcss: ^8.2.15 2900 | resolution: 2901 | integrity: sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA== 2902 | /postcss-minify-gradients/5.0.3_postcss@8.4.5: 2903 | dependencies: 2904 | colord: 2.9.2 2905 | cssnano-utils: 2.0.1_postcss@8.4.5 2906 | postcss: 8.4.5 2907 | postcss-value-parser: 4.2.0 2908 | dev: true 2909 | engines: 2910 | node: ^10 || ^12 || >=14.0 2911 | peerDependencies: 2912 | postcss: ^8.2.15 2913 | resolution: 2914 | integrity: sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q== 2915 | /postcss-minify-params/5.0.2_postcss@8.4.5: 2916 | dependencies: 2917 | alphanum-sort: 1.0.2 2918 | browserslist: 4.19.1 2919 | cssnano-utils: 2.0.1_postcss@8.4.5 2920 | postcss: 8.4.5 2921 | postcss-value-parser: 4.2.0 2922 | dev: true 2923 | engines: 2924 | node: ^10 || ^12 || >=14.0 2925 | peerDependencies: 2926 | postcss: ^8.2.15 2927 | resolution: 2928 | integrity: sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg== 2929 | /postcss-minify-selectors/5.1.0_postcss@8.4.5: 2930 | dependencies: 2931 | alphanum-sort: 1.0.2 2932 | postcss: 8.4.5 2933 | postcss-selector-parser: 6.0.8 2934 | dev: true 2935 | engines: 2936 | node: ^10 || ^12 || >=14.0 2937 | peerDependencies: 2938 | postcss: ^8.2.15 2939 | resolution: 2940 | integrity: sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og== 2941 | /postcss-modules-extract-imports/3.0.0_postcss@8.4.5: 2942 | dependencies: 2943 | postcss: 8.4.5 2944 | dev: true 2945 | engines: 2946 | node: ^10 || ^12 || >= 14 2947 | peerDependencies: 2948 | postcss: ^8.1.0 2949 | resolution: 2950 | integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== 2951 | /postcss-modules-local-by-default/4.0.0_postcss@8.4.5: 2952 | dependencies: 2953 | icss-utils: 5.1.0_postcss@8.4.5 2954 | postcss: 8.4.5 2955 | postcss-selector-parser: 6.0.8 2956 | postcss-value-parser: 4.2.0 2957 | dev: true 2958 | engines: 2959 | node: ^10 || ^12 || >= 14 2960 | peerDependencies: 2961 | postcss: ^8.1.0 2962 | resolution: 2963 | integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== 2964 | /postcss-modules-scope/3.0.0_postcss@8.4.5: 2965 | dependencies: 2966 | postcss: 8.4.5 2967 | postcss-selector-parser: 6.0.8 2968 | dev: true 2969 | engines: 2970 | node: ^10 || ^12 || >= 14 2971 | peerDependencies: 2972 | postcss: ^8.1.0 2973 | resolution: 2974 | integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== 2975 | /postcss-modules-values/4.0.0_postcss@8.4.5: 2976 | dependencies: 2977 | icss-utils: 5.1.0_postcss@8.4.5 2978 | postcss: 8.4.5 2979 | dev: true 2980 | engines: 2981 | node: ^10 || ^12 || >= 14 2982 | peerDependencies: 2983 | postcss: ^8.1.0 2984 | resolution: 2985 | integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== 2986 | /postcss-modules/4.3.0_postcss@8.4.5: 2987 | dependencies: 2988 | generic-names: 4.0.0 2989 | icss-replace-symbols: 1.1.0 2990 | lodash.camelcase: 4.3.0 2991 | postcss: 8.4.5 2992 | postcss-modules-extract-imports: 3.0.0_postcss@8.4.5 2993 | postcss-modules-local-by-default: 4.0.0_postcss@8.4.5 2994 | postcss-modules-scope: 3.0.0_postcss@8.4.5 2995 | postcss-modules-values: 4.0.0_postcss@8.4.5 2996 | string-hash: 1.1.3 2997 | dev: true 2998 | peerDependencies: 2999 | postcss: ^8.0.0 3000 | resolution: 3001 | integrity: sha512-zoUttLDSsbWDinJM9jH37o7hulLRyEgH6fZm2PchxN7AZ8rkdWiALyNhnQ7+jg7cX9f10m6y5VhHsrjO0Mf/DA== 3002 | /postcss-normalize-charset/5.0.1_postcss@8.4.5: 3003 | dependencies: 3004 | postcss: 8.4.5 3005 | dev: true 3006 | engines: 3007 | node: ^10 || ^12 || >=14.0 3008 | peerDependencies: 3009 | postcss: ^8.2.15 3010 | resolution: 3011 | integrity: sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg== 3012 | /postcss-normalize-display-values/5.0.1_postcss@8.4.5: 3013 | dependencies: 3014 | cssnano-utils: 2.0.1_postcss@8.4.5 3015 | postcss: 8.4.5 3016 | postcss-value-parser: 4.2.0 3017 | dev: true 3018 | engines: 3019 | node: ^10 || ^12 || >=14.0 3020 | peerDependencies: 3021 | postcss: ^8.2.15 3022 | resolution: 3023 | integrity: sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ== 3024 | /postcss-normalize-positions/5.0.1_postcss@8.4.5: 3025 | dependencies: 3026 | postcss: 8.4.5 3027 | postcss-value-parser: 4.2.0 3028 | dev: true 3029 | engines: 3030 | node: ^10 || ^12 || >=14.0 3031 | peerDependencies: 3032 | postcss: ^8.2.15 3033 | resolution: 3034 | integrity: sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg== 3035 | /postcss-normalize-repeat-style/5.0.1_postcss@8.4.5: 3036 | dependencies: 3037 | cssnano-utils: 2.0.1_postcss@8.4.5 3038 | postcss: 8.4.5 3039 | postcss-value-parser: 4.2.0 3040 | dev: true 3041 | engines: 3042 | node: ^10 || ^12 || >=14.0 3043 | peerDependencies: 3044 | postcss: ^8.2.15 3045 | resolution: 3046 | integrity: sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w== 3047 | /postcss-normalize-string/5.0.1_postcss@8.4.5: 3048 | dependencies: 3049 | postcss: 8.4.5 3050 | postcss-value-parser: 4.2.0 3051 | dev: true 3052 | engines: 3053 | node: ^10 || ^12 || >=14.0 3054 | peerDependencies: 3055 | postcss: ^8.2.15 3056 | resolution: 3057 | integrity: sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA== 3058 | /postcss-normalize-timing-functions/5.0.1_postcss@8.4.5: 3059 | dependencies: 3060 | cssnano-utils: 2.0.1_postcss@8.4.5 3061 | postcss: 8.4.5 3062 | postcss-value-parser: 4.2.0 3063 | dev: true 3064 | engines: 3065 | node: ^10 || ^12 || >=14.0 3066 | peerDependencies: 3067 | postcss: ^8.2.15 3068 | resolution: 3069 | integrity: sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q== 3070 | /postcss-normalize-unicode/5.0.1_postcss@8.4.5: 3071 | dependencies: 3072 | browserslist: 4.19.1 3073 | postcss: 8.4.5 3074 | postcss-value-parser: 4.2.0 3075 | dev: true 3076 | engines: 3077 | node: ^10 || ^12 || >=14.0 3078 | peerDependencies: 3079 | postcss: ^8.2.15 3080 | resolution: 3081 | integrity: sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA== 3082 | /postcss-normalize-url/5.0.4_postcss@8.4.5: 3083 | dependencies: 3084 | normalize-url: 6.1.0 3085 | postcss: 8.4.5 3086 | postcss-value-parser: 4.2.0 3087 | dev: true 3088 | engines: 3089 | node: ^10 || ^12 || >=14.0 3090 | peerDependencies: 3091 | postcss: ^8.2.15 3092 | resolution: 3093 | integrity: sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg== 3094 | /postcss-normalize-whitespace/5.0.1_postcss@8.4.5: 3095 | dependencies: 3096 | postcss: 8.4.5 3097 | postcss-value-parser: 4.2.0 3098 | dev: true 3099 | engines: 3100 | node: ^10 || ^12 || >=14.0 3101 | peerDependencies: 3102 | postcss: ^8.2.15 3103 | resolution: 3104 | integrity: sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA== 3105 | /postcss-ordered-values/5.0.2_postcss@8.4.5: 3106 | dependencies: 3107 | cssnano-utils: 2.0.1_postcss@8.4.5 3108 | postcss: 8.4.5 3109 | postcss-value-parser: 4.2.0 3110 | dev: true 3111 | engines: 3112 | node: ^10 || ^12 || >=14.0 3113 | peerDependencies: 3114 | postcss: ^8.2.15 3115 | resolution: 3116 | integrity: sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ== 3117 | /postcss-reduce-initial/5.0.2_postcss@8.4.5: 3118 | dependencies: 3119 | browserslist: 4.19.1 3120 | caniuse-api: 3.0.0 3121 | postcss: 8.4.5 3122 | dev: true 3123 | engines: 3124 | node: ^10 || ^12 || >=14.0 3125 | peerDependencies: 3126 | postcss: ^8.2.15 3127 | resolution: 3128 | integrity: sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw== 3129 | /postcss-reduce-transforms/5.0.1_postcss@8.4.5: 3130 | dependencies: 3131 | cssnano-utils: 2.0.1_postcss@8.4.5 3132 | postcss: 8.4.5 3133 | postcss-value-parser: 4.2.0 3134 | dev: true 3135 | engines: 3136 | node: ^10 || ^12 || >=14.0 3137 | peerDependencies: 3138 | postcss: ^8.2.15 3139 | resolution: 3140 | integrity: sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA== 3141 | /postcss-selector-parser/6.0.8: 3142 | dependencies: 3143 | cssesc: 3.0.0 3144 | util-deprecate: 1.0.2 3145 | dev: true 3146 | engines: 3147 | node: '>=4' 3148 | resolution: 3149 | integrity: sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ== 3150 | /postcss-svgo/5.0.3_postcss@8.4.5: 3151 | dependencies: 3152 | postcss: 8.4.5 3153 | postcss-value-parser: 4.2.0 3154 | svgo: 2.8.0 3155 | dev: true 3156 | engines: 3157 | node: ^10 || ^12 || >=14.0 3158 | peerDependencies: 3159 | postcss: ^8.2.15 3160 | resolution: 3161 | integrity: sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA== 3162 | /postcss-unique-selectors/5.0.2_postcss@8.4.5: 3163 | dependencies: 3164 | alphanum-sort: 1.0.2 3165 | postcss: 8.4.5 3166 | postcss-selector-parser: 6.0.8 3167 | dev: true 3168 | engines: 3169 | node: ^10 || ^12 || >=14.0 3170 | peerDependencies: 3171 | postcss: ^8.2.15 3172 | resolution: 3173 | integrity: sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA== 3174 | /postcss-value-parser/4.2.0: 3175 | dev: true 3176 | resolution: 3177 | integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 3178 | /postcss/8.4.5: 3179 | dependencies: 3180 | nanoid: 3.1.30 3181 | picocolors: 1.0.0 3182 | source-map-js: 1.0.1 3183 | dev: true 3184 | engines: 3185 | node: ^10 || ^12 || >=14 3186 | resolution: 3187 | integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 3188 | /pretty-bytes/3.0.1: 3189 | dependencies: 3190 | number-is-nan: 1.0.1 3191 | dev: true 3192 | engines: 3193 | node: '>=0.10.0' 3194 | resolution: 3195 | integrity: sha1-J9AAjXeAY6C0gRuzXHnxvV1fvM8= 3196 | /pretty-bytes/5.6.0: 3197 | dev: true 3198 | engines: 3199 | node: '>=6' 3200 | resolution: 3201 | integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== 3202 | /promise.series/0.2.0: 3203 | dev: true 3204 | engines: 3205 | node: '>=0.12' 3206 | resolution: 3207 | integrity: sha1-LMfr6Vn8OmYZwEq029yeRS2GS70= 3208 | /randombytes/2.1.0: 3209 | dependencies: 3210 | safe-buffer: 5.2.1 3211 | dev: true 3212 | resolution: 3213 | integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 3214 | /regenerate-unicode-properties/9.0.0: 3215 | dependencies: 3216 | regenerate: 1.4.2 3217 | dev: true 3218 | engines: 3219 | node: '>=4' 3220 | resolution: 3221 | integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== 3222 | /regenerate/1.4.2: 3223 | dev: true 3224 | resolution: 3225 | integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 3226 | /regenerator-runtime/0.13.9: 3227 | dev: true 3228 | resolution: 3229 | integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 3230 | /regenerator-transform/0.14.5: 3231 | dependencies: 3232 | '@babel/runtime': 7.16.5 3233 | dev: true 3234 | resolution: 3235 | integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 3236 | /regexp.prototype.flags/1.3.1: 3237 | dependencies: 3238 | call-bind: 1.0.2 3239 | define-properties: 1.1.3 3240 | dev: true 3241 | engines: 3242 | node: '>= 0.4' 3243 | resolution: 3244 | integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== 3245 | /regexpu-core/4.8.0: 3246 | dependencies: 3247 | regenerate: 1.4.2 3248 | regenerate-unicode-properties: 9.0.0 3249 | regjsgen: 0.5.2 3250 | regjsparser: 0.7.0 3251 | unicode-match-property-ecmascript: 2.0.0 3252 | unicode-match-property-value-ecmascript: 2.0.0 3253 | dev: true 3254 | engines: 3255 | node: '>=4' 3256 | resolution: 3257 | integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== 3258 | /regjsgen/0.5.2: 3259 | dev: true 3260 | resolution: 3261 | integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 3262 | /regjsparser/0.7.0: 3263 | dependencies: 3264 | jsesc: 0.5.0 3265 | dev: true 3266 | hasBin: true 3267 | resolution: 3268 | integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== 3269 | /resolve-from/4.0.0: 3270 | dev: true 3271 | engines: 3272 | node: '>=4' 3273 | resolution: 3274 | integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 3275 | /resolve-from/5.0.0: 3276 | dev: true 3277 | engines: 3278 | node: '>=8' 3279 | resolution: 3280 | integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 3281 | /resolve/1.17.0: 3282 | dependencies: 3283 | path-parse: 1.0.7 3284 | dev: true 3285 | resolution: 3286 | integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 3287 | /resolve/1.20.0: 3288 | dependencies: 3289 | is-core-module: 2.8.0 3290 | path-parse: 1.0.7 3291 | dev: true 3292 | resolution: 3293 | integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 3294 | /rollup-plugin-bundle-size/1.0.3: 3295 | dependencies: 3296 | chalk: 1.1.3 3297 | maxmin: 2.1.0 3298 | dev: true 3299 | resolution: 3300 | integrity: sha512-aWj0Pvzq90fqbI5vN1IvUrlf4utOqy+AERYxwWjegH1G8PzheMnrRIgQ5tkwKVtQMDP0bHZEACW/zLDF+XgfXQ== 3301 | /rollup-plugin-postcss/4.0.2_postcss@8.4.5: 3302 | dependencies: 3303 | chalk: 4.1.2 3304 | concat-with-sourcemaps: 1.1.0 3305 | cssnano: 5.0.14_postcss@8.4.5 3306 | import-cwd: 3.0.0 3307 | p-queue: 6.6.2 3308 | pify: 5.0.0 3309 | postcss: 8.4.5 3310 | postcss-load-config: 3.1.0 3311 | postcss-modules: 4.3.0_postcss@8.4.5 3312 | promise.series: 0.2.0 3313 | resolve: 1.20.0 3314 | rollup-pluginutils: 2.8.2 3315 | safe-identifier: 0.4.2 3316 | style-inject: 0.3.0 3317 | dev: true 3318 | engines: 3319 | node: '>=10' 3320 | peerDependencies: 3321 | postcss: 8.x 3322 | resolution: 3323 | integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w== 3324 | /rollup-plugin-terser/7.0.2_rollup@2.62.0: 3325 | dependencies: 3326 | '@babel/code-frame': 7.16.0 3327 | jest-worker: 26.6.2 3328 | rollup: 2.62.0 3329 | serialize-javascript: 4.0.0 3330 | terser: 5.10.0 3331 | dev: true 3332 | peerDependencies: 3333 | rollup: ^2.0.0 3334 | resolution: 3335 | integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== 3336 | /rollup-plugin-typescript2/0.29.0_rollup@2.62.0+typescript@4.5.4: 3337 | dependencies: 3338 | '@rollup/pluginutils': 3.1.0_rollup@2.62.0 3339 | find-cache-dir: 3.3.2 3340 | fs-extra: 8.1.0 3341 | resolve: 1.17.0 3342 | rollup: 2.62.0 3343 | tslib: 2.0.1 3344 | typescript: 4.5.4 3345 | dev: true 3346 | peerDependencies: 3347 | rollup: '>=1.26.3' 3348 | typescript: '>=2.4.0' 3349 | resolution: 3350 | integrity: sha512-YytahBSZCIjn/elFugEGQR5qTsVhxhUwGZIsA9TmrSsC88qroGo65O5HZP/TTArH2dm0vUmYWhKchhwi2wL9bw== 3351 | /rollup-pluginutils/2.8.2: 3352 | dependencies: 3353 | estree-walker: 0.6.1 3354 | dev: true 3355 | resolution: 3356 | integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 3357 | /rollup/2.62.0: 3358 | dev: true 3359 | engines: 3360 | node: '>=10.0.0' 3361 | hasBin: true 3362 | optionalDependencies: 3363 | fsevents: 2.3.2 3364 | resolution: 3365 | integrity: sha512-cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw== 3366 | /sade/1.7.4: 3367 | dependencies: 3368 | mri: 1.2.0 3369 | dev: true 3370 | engines: 3371 | node: '>= 6' 3372 | resolution: 3373 | integrity: sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== 3374 | /safe-buffer/5.1.2: 3375 | dev: true 3376 | resolution: 3377 | integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3378 | /safe-buffer/5.2.1: 3379 | dev: true 3380 | resolution: 3381 | integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 3382 | /safe-identifier/0.4.2: 3383 | dev: true 3384 | resolution: 3385 | integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w== 3386 | /semiver/1.1.0: 3387 | dev: true 3388 | engines: 3389 | node: '>=6' 3390 | resolution: 3391 | integrity: sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg== 3392 | /semver/6.3.0: 3393 | dev: true 3394 | hasBin: true 3395 | resolution: 3396 | integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3397 | /semver/7.0.0: 3398 | dev: true 3399 | hasBin: true 3400 | resolution: 3401 | integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 3402 | /serialize-javascript/4.0.0: 3403 | dependencies: 3404 | randombytes: 2.1.0 3405 | dev: true 3406 | resolution: 3407 | integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 3408 | /side-channel/1.0.4: 3409 | dependencies: 3410 | call-bind: 1.0.2 3411 | get-intrinsic: 1.1.1 3412 | object-inspect: 1.12.0 3413 | dev: true 3414 | resolution: 3415 | integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 3416 | /sirv-cli/1.0.14: 3417 | dependencies: 3418 | console-clear: 1.1.1 3419 | get-port: 3.2.0 3420 | kleur: 3.0.3 3421 | local-access: 1.1.0 3422 | sade: 1.7.4 3423 | semiver: 1.1.0 3424 | sirv: 1.0.19 3425 | tinydate: 1.3.0 3426 | dev: true 3427 | engines: 3428 | node: '>= 10' 3429 | hasBin: true 3430 | resolution: 3431 | integrity: sha512-yyUTNr984ANKDloqepkYbBSqvx3buwYg2sQKPWjSU+IBia5loaoka2If8N9CMwt8AfP179cdEl7kYJ//iWJHjQ== 3432 | /sirv/1.0.19: 3433 | dependencies: 3434 | '@polka/url': 1.0.0-next.21 3435 | mrmime: 1.0.0 3436 | totalist: 1.1.0 3437 | dev: true 3438 | engines: 3439 | node: '>= 10' 3440 | resolution: 3441 | integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ== 3442 | /slash/3.0.0: 3443 | dev: true 3444 | engines: 3445 | node: '>=8' 3446 | resolution: 3447 | integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3448 | /source-map-js/1.0.1: 3449 | dev: true 3450 | engines: 3451 | node: '>=0.10.0' 3452 | resolution: 3453 | integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== 3454 | /source-map-support/0.5.21: 3455 | dependencies: 3456 | buffer-from: 1.1.2 3457 | source-map: 0.6.1 3458 | dev: true 3459 | resolution: 3460 | integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 3461 | /source-map/0.5.7: 3462 | dev: true 3463 | engines: 3464 | node: '>=0.10.0' 3465 | resolution: 3466 | integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3467 | /source-map/0.6.1: 3468 | dev: true 3469 | engines: 3470 | node: '>=0.10.0' 3471 | resolution: 3472 | integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3473 | /source-map/0.7.3: 3474 | dev: true 3475 | engines: 3476 | node: '>= 8' 3477 | resolution: 3478 | integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3479 | /sourcemap-codec/1.4.8: 3480 | dev: true 3481 | resolution: 3482 | integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 3483 | /stable/0.1.8: 3484 | dev: true 3485 | resolution: 3486 | integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 3487 | /string-hash/1.1.3: 3488 | dev: true 3489 | resolution: 3490 | integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= 3491 | /string.prototype.matchall/4.0.6: 3492 | dependencies: 3493 | call-bind: 1.0.2 3494 | define-properties: 1.1.3 3495 | es-abstract: 1.19.1 3496 | get-intrinsic: 1.1.1 3497 | has-symbols: 1.0.2 3498 | internal-slot: 1.0.3 3499 | regexp.prototype.flags: 1.3.1 3500 | side-channel: 1.0.4 3501 | dev: true 3502 | resolution: 3503 | integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg== 3504 | /string.prototype.trimend/1.0.4: 3505 | dependencies: 3506 | call-bind: 1.0.2 3507 | define-properties: 1.1.3 3508 | dev: true 3509 | resolution: 3510 | integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 3511 | /string.prototype.trimstart/1.0.4: 3512 | dependencies: 3513 | call-bind: 1.0.2 3514 | define-properties: 1.1.3 3515 | dev: true 3516 | resolution: 3517 | integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 3518 | /strip-ansi/3.0.1: 3519 | dependencies: 3520 | ansi-regex: 2.1.1 3521 | dev: true 3522 | engines: 3523 | node: '>=0.10.0' 3524 | resolution: 3525 | integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3526 | /style-inject/0.3.0: 3527 | dev: true 3528 | resolution: 3529 | integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw== 3530 | /stylehacks/5.0.1_postcss@8.4.5: 3531 | dependencies: 3532 | browserslist: 4.19.1 3533 | postcss: 8.4.5 3534 | postcss-selector-parser: 6.0.8 3535 | dev: true 3536 | engines: 3537 | node: ^10 || ^12 || >=14.0 3538 | peerDependencies: 3539 | postcss: ^8.2.15 3540 | resolution: 3541 | integrity: sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA== 3542 | /supports-color/2.0.0: 3543 | dev: true 3544 | engines: 3545 | node: '>=0.8.0' 3546 | resolution: 3547 | integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3548 | /supports-color/5.5.0: 3549 | dependencies: 3550 | has-flag: 3.0.0 3551 | dev: true 3552 | engines: 3553 | node: '>=4' 3554 | resolution: 3555 | integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3556 | /supports-color/7.2.0: 3557 | dependencies: 3558 | has-flag: 4.0.0 3559 | dev: true 3560 | engines: 3561 | node: '>=8' 3562 | resolution: 3563 | integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3564 | /svgo/2.8.0: 3565 | dependencies: 3566 | '@trysound/sax': 0.2.0 3567 | commander: 7.2.0 3568 | css-select: 4.2.1 3569 | css-tree: 1.1.3 3570 | csso: 4.2.0 3571 | picocolors: 1.0.0 3572 | stable: 0.1.8 3573 | dev: true 3574 | engines: 3575 | node: '>=10.13.0' 3576 | hasBin: true 3577 | resolution: 3578 | integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== 3579 | /terser/5.10.0: 3580 | dependencies: 3581 | commander: 2.20.3 3582 | source-map: 0.7.3 3583 | source-map-support: 0.5.21 3584 | dev: true 3585 | engines: 3586 | node: '>=10' 3587 | hasBin: true 3588 | peerDependencies: 3589 | acorn: ^8.5.0 3590 | peerDependenciesMeta: 3591 | acorn: 3592 | optional: true 3593 | resolution: 3594 | integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA== 3595 | /timsort/0.3.0: 3596 | dev: true 3597 | resolution: 3598 | integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 3599 | /tiny-glob/0.2.9: 3600 | dependencies: 3601 | globalyzer: 0.1.0 3602 | globrex: 0.1.2 3603 | dev: true 3604 | resolution: 3605 | integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 3606 | /tinydate/1.3.0: 3607 | dev: true 3608 | engines: 3609 | node: '>=4' 3610 | resolution: 3611 | integrity: sha512-7cR8rLy2QhYHpsBDBVYnnWXm8uRTr38RoZakFSW7Bs7PzfMPNZthuMLkwqZv7MTu8lhQ91cOFYS5a7iFj2oR3w== 3612 | /to-fast-properties/2.0.0: 3613 | dev: true 3614 | engines: 3615 | node: '>=4' 3616 | resolution: 3617 | integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3618 | /totalist/1.1.0: 3619 | dev: true 3620 | engines: 3621 | node: '>=6' 3622 | resolution: 3623 | integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== 3624 | /tslib/2.0.1: 3625 | dev: true 3626 | resolution: 3627 | integrity: sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== 3628 | /tslib/2.3.1: 3629 | dev: true 3630 | resolution: 3631 | integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 3632 | /typescript/4.5.4: 3633 | dev: true 3634 | engines: 3635 | node: '>=4.2.0' 3636 | hasBin: true 3637 | resolution: 3638 | integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg== 3639 | /uglifycss/0.0.29: 3640 | dev: true 3641 | engines: 3642 | node: '>=6.4.0' 3643 | hasBin: true 3644 | resolution: 3645 | integrity: sha512-J2SQ2QLjiknNGbNdScaNZsXgmMGI0kYNrXaDlr4obnPW9ni1jljb1NeEVWAiTgZ8z+EBWP2ozfT9vpy03rjlMQ== 3646 | /unbox-primitive/1.0.1: 3647 | dependencies: 3648 | function-bind: 1.1.1 3649 | has-bigints: 1.0.1 3650 | has-symbols: 1.0.2 3651 | which-boxed-primitive: 1.0.2 3652 | dev: true 3653 | resolution: 3654 | integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 3655 | /unicode-canonical-property-names-ecmascript/2.0.0: 3656 | dev: true 3657 | engines: 3658 | node: '>=4' 3659 | resolution: 3660 | integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== 3661 | /unicode-match-property-ecmascript/2.0.0: 3662 | dependencies: 3663 | unicode-canonical-property-names-ecmascript: 2.0.0 3664 | unicode-property-aliases-ecmascript: 2.0.0 3665 | dev: true 3666 | engines: 3667 | node: '>=4' 3668 | resolution: 3669 | integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== 3670 | /unicode-match-property-value-ecmascript/2.0.0: 3671 | dev: true 3672 | engines: 3673 | node: '>=4' 3674 | resolution: 3675 | integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== 3676 | /unicode-property-aliases-ecmascript/2.0.0: 3677 | dev: true 3678 | engines: 3679 | node: '>=4' 3680 | resolution: 3681 | integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== 3682 | /universalify/0.1.2: 3683 | dev: true 3684 | engines: 3685 | node: '>= 4.0.0' 3686 | resolution: 3687 | integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3688 | /util-deprecate/1.0.2: 3689 | dev: true 3690 | resolution: 3691 | integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3692 | /which-boxed-primitive/1.0.2: 3693 | dependencies: 3694 | is-bigint: 1.0.4 3695 | is-boolean-object: 1.1.2 3696 | is-number-object: 1.0.6 3697 | is-string: 1.0.7 3698 | is-symbol: 1.0.4 3699 | dev: true 3700 | resolution: 3701 | integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 3702 | /wrappy/1.0.2: 3703 | dev: true 3704 | resolution: 3705 | integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3706 | /yaml/1.10.2: 3707 | dev: true 3708 | engines: 3709 | node: '>= 6' 3710 | resolution: 3711 | integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 3712 | specifiers: 3713 | leaflet: ^1.0.0 3714 | microbundle: ^0.14.2 3715 | sirv-cli: ^1.0.14 3716 | uglifycss: ^0.0.29 3717 | --------------------------------------------------------------------------------