├── .lintstagedrc ├── .npmrc ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── public ├── favicon.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── mstile-150x150.png ├── apple-launch-image.png ├── apple-touch-icon.png ├── splash │ ├── ipad_splash.png │ ├── ipadpro1_splash.png │ ├── ipadpro2_splash.png │ ├── ipadpro3_splash.png │ ├── iphone5_splash.png │ ├── iphone6_splash.png │ ├── iphonex_splash.png │ ├── iphonexr_splash.png │ ├── iphoneplus_splash.png │ └── iphonexsmax_splash.png ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── android-chrome-512x512.png ├── browserconfig.xml ├── site.webmanifest └── safari-pinned-tab.svg ├── src ├── assets │ ├── bgm │ │ ├── rain.mp3 │ │ ├── sea.mp3 │ │ ├── juggle.mp3 │ │ ├── night.wind.mp3 │ │ ├── forest.bird.mp3 │ │ └── grass.night.mp3 │ └── img │ │ ├── icon.png │ │ ├── reward.jpg │ │ ├── info.svg │ │ ├── play.svg │ │ ├── refresh.svg │ │ ├── share.svg │ │ ├── sound-off.svg │ │ ├── sound.svg │ │ ├── close.svg │ │ ├── fullscreen.svg │ │ └── fullscreen.exit.svg ├── langs │ ├── zh.js │ ├── en.js │ └── index.js ├── main.jsx ├── components │ ├── Header.jsx │ ├── StyledButton.jsx │ ├── HideWhenIdle.jsx │ ├── StartBtn.jsx │ ├── FullscreenBtn.jsx │ ├── Animates.js │ ├── LangSwitch.jsx │ ├── Share.jsx │ ├── Loading.jsx │ ├── InfoModal.jsx │ ├── Background.jsx │ └── RelaxCircle.jsx ├── utils.js ├── Global.style.jsx └── App.jsx ├── vite.config.js ├── README.zh.md ├── README.md ├── package.json ├── index.html └── yarn.lock /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "src/**/*.{js,jsx}": ["eslint --fix"] 3 | } 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | registry=https://registry.npm.taobao.org 2 | engine-strict=true 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | build 4 | dist 5 | dist-ssr 6 | *.local 7 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | commitlint -E HUSKY_GIT_PARAMS -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | node_modules/.bin/lint-staged 5 | -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/assets/bgm/rain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/rain.mp3 -------------------------------------------------------------------------------- /src/assets/bgm/sea.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/sea.mp3 -------------------------------------------------------------------------------- /src/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/img/icon.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /src/assets/bgm/juggle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/juggle.mp3 -------------------------------------------------------------------------------- /src/assets/img/reward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/img/reward.jpg -------------------------------------------------------------------------------- /public/apple-launch-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/apple-launch-image.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/splash/ipad_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/ipad_splash.png -------------------------------------------------------------------------------- /src/assets/bgm/night.wind.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/night.wind.mp3 -------------------------------------------------------------------------------- /src/assets/bgm/forest.bird.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/forest.bird.mp3 -------------------------------------------------------------------------------- /src/assets/bgm/grass.night.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/src/assets/bgm/grass.night.mp3 -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/splash/ipadpro1_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/ipadpro1_splash.png -------------------------------------------------------------------------------- /public/splash/ipadpro2_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/ipadpro2_splash.png -------------------------------------------------------------------------------- /public/splash/ipadpro3_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/ipadpro3_splash.png -------------------------------------------------------------------------------- /public/splash/iphone5_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphone5_splash.png -------------------------------------------------------------------------------- /public/splash/iphone6_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphone6_splash.png -------------------------------------------------------------------------------- /public/splash/iphonex_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphonex_splash.png -------------------------------------------------------------------------------- /public/splash/iphonexr_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphonexr_splash.png -------------------------------------------------------------------------------- /public/splash/iphoneplus_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphoneplus_splash.png -------------------------------------------------------------------------------- /public/splash/iphonexsmax_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/breathe-relaxer/HEAD/public/splash/iphonexsmax_splash.png -------------------------------------------------------------------------------- /src/langs/zh.js: -------------------------------------------------------------------------------- 1 | const zh = { 2 | header: '静心呼吸 感受平静', 3 | inhale: '吸气', 4 | exhale: '呼气', 5 | hold: '屏息' 6 | }; 7 | 8 | export default zh; 9 | -------------------------------------------------------------------------------- /src/langs/en.js: -------------------------------------------------------------------------------- 1 | const en = { 2 | header: 'Breathe Relaxer', 3 | inhale: 'inhale', 4 | exhale: 'exhale', 5 | hold: 'hold' 6 | }; 7 | 8 | export default en; 9 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import ReactDOM from "react-dom/client"; 2 | import App from "./App"; 3 | import GlobalStyle from "./Global.style"; 4 | 5 | const root = ReactDOM.createRoot(document.getElementById("root")); 6 | root.render( 7 | <> 8 | 9 | 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #da532c 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import react from "@vitejs/plugin-react"; 3 | import pkg from "./package.json"; 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | base: new URL(pkg.homepage).pathname, 7 | server: { 8 | port: 3009, 9 | }, 10 | esbuild: { 11 | drop: ["console", "debugger"], 12 | }, 13 | plugins: [react()], 14 | }); 15 | -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- 1 | 2 | import styled from 'styled-components'; 3 | const Wrapper = styled.header` 4 | color: #fff; 5 | padding: 1rem; 6 | font-size: 2rem; 7 | font-weight: 800; 8 | position: fixed; 9 | width: 100%; 10 | text-align: center; 11 | text-shadow: 0 0 1rem black; 12 | `; 13 | export default function Header({ header }) { 14 | return {header}; 15 | } 16 | -------------------------------------------------------------------------------- /src/components/StyledButton.jsx: -------------------------------------------------------------------------------- 1 | 2 | import styled from 'styled-components'; 3 | 4 | const StyledButton = styled.button` 5 | background-color: rgba(2, 2, 2, 0.6); 6 | cursor: pointer; 7 | outline: none; 8 | border: none; 9 | border-radius: 50%; 10 | box-shadow: 0 0 8px black; 11 | padding: 0.2rem; 12 | width: 1.6rem; 13 | height: 1.6rem; 14 | svg{ 15 | width:100%; 16 | height:100%; 17 | } 18 | `; 19 | 20 | export default StyledButton; 21 | -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Breathe", 3 | "short_name": "Breathe", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-256x256.png", 12 | "sizes": "256x256", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.11, written by Peter Selinger 2001-2013 9 | 10 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/assets/img/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- 1 | # 在线呼吸调节器 2 | 3 | 通过视觉反馈工具,来控制呼、吸、屏气,进而达到放松身心目的。 4 | 5 | ![预览图](https://gitee.com/zyanggc/oss/raw/master/works/pc.demo.png) 6 | 7 | 体验地址: [https://works.yangerxiao.com/breathe-relaxer/](https://works.yangerxiao.com/breathe-relaxer/) 8 | 9 | ## 特性 10 | 11 | - 精美背景图大片 12 | - 配合背景图的白噪音 13 | - 全屏显示,更沉浸式的体验 14 | - 多语言支持 15 | - 分享功能:喜欢就分享给朋友吧! 16 | 17 | ## 支持 18 | 19 | Breathe Relaxer - Calm down your mind, relax your body | Product Hunt Embed 20 | -------------------------------------------------------------------------------- /src/langs/index.js: -------------------------------------------------------------------------------- 1 | import { useState } from 'react'; 2 | import en from './en'; 3 | import zh from './zh'; 4 | 5 | export const dictionaryList = { 6 | en, 7 | zh 8 | }; 9 | 10 | export const languageOptions = [ 11 | { id: 'en', text: 'EN' }, 12 | { id: 'zh', text: '中' } 13 | ]; 14 | 15 | export function useLang() { 16 | const langIdx = 17 | languageOptions.findIndex(lang => { 18 | return navigator.language.indexOf(lang.id) > -1; 19 | }) || 0; 20 | const [dicts, setDicts] = useState(dictionaryList[languageOptions[langIdx].id]); 21 | const [lang, setLang] = useState(languageOptions[langIdx].id); 22 | const changeLang = lang => { 23 | setLang(lang); 24 | setDicts(dictionaryList[lang]); 25 | }; 26 | return { lang, dicts, changeLang }; 27 | } 28 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | export function shuffle(array) { 2 | let counter = array.length; 3 | console.log('shuffle', array); 4 | 5 | // While there are elements in the array 6 | while (counter > 0) { 7 | // Pick a random index 8 | let index = Math.floor(Math.random() * counter); 9 | 10 | // Decrease counter by 1 11 | counter--; 12 | 13 | // And swap the last element with it 14 | let temp = array[counter]; 15 | array[counter] = array[index]; 16 | array[index] = temp; 17 | } 18 | 19 | return array; 20 | } 21 | 22 | export function getTimeFormated(count, zh = false) { 23 | return zh 24 | ? `${String(Math.floor(count / 60))}分${String(count % 60)}秒` 25 | : `${String(Math.floor(count / 60)).padStart(2, '0')}:${String(count % 60).padStart(2, '0')}`; 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/img/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/img/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Breathe Relaxer 2 | 3 | [中文介绍](README.zh.md) 4 | 5 | A relaxing breathing app with a visual director to tell you when to breathe in, hold and breathe out. 6 | 7 | Calming down, relaxing your body. 8 | 9 | ![preview image](https://gitee.com/zyanggc/oss/raw/master/works/pc.demo.png) 10 | 11 | Visit: [Breathe Relaxer](https://works.yangerxiao.com/breathe-relaxer/) 12 | 13 | ## Features 14 | 15 | - Beautiful background images 16 | - BGM 17 | - Fullscreen 18 | - Multilinguage 19 | - Share your friends if you like it ! 20 | 21 | ## Support 22 | 23 | Breathe Relaxer - Calm down your mind, relax your body | Product Hunt Embed 24 | -------------------------------------------------------------------------------- /src/components/HideWhenIdle.jsx: -------------------------------------------------------------------------------- 1 | import{ useState, useEffect } from 'react'; 2 | import { createGlobalStyle } from 'styled-components'; 3 | 4 | const GlobalStyle = createGlobalStyle` 5 | .idleHide{ 6 | transition:opacity 1s; 7 | opacity:0; 8 | } 9 | `; 10 | let inter = null; 11 | export default function HideWhenIdle() { 12 | const [hide, setHide] = useState(false); 13 | useEffect(() => { 14 | inter = setTimeout(() => { 15 | setHide(true); 16 | console.log('clear1'); 17 | }, 5000); 18 | window.onmousemove = (evt) => { 19 | setHide(false); 20 | clearTimeout(inter); 21 | //如果 鼠标放在该隐藏元素的时候,停止隐藏 22 | if (!evt.target.classList.contains('idleHide')) { 23 | inter = setTimeout(() => { 24 | console.log('clear2'); 25 | setHide(true); 26 | }, 5000); 27 | } 28 | }; 29 | 30 | return () => { 31 | window.onmousemove = null; 32 | clearTimeout(inter); 33 | }; 34 | }, []); 35 | 36 | return <>{hide ? : null}; 37 | } 38 | -------------------------------------------------------------------------------- /src/components/StartBtn.jsx: -------------------------------------------------------------------------------- 1 | 2 | import styled from 'styled-components'; 3 | import {IoPlay} from 'react-icons/io5' 4 | import StyledButton from './StyledButton'; 5 | import { AniGrow } from './Animates'; 6 | 7 | const StyledWrapper = styled.section` 8 | position: fixed; 9 | top: 0; 10 | left: 0; 11 | right: 0; 12 | bottom: 0; 13 | z-index: 996; 14 | display: flex; 15 | justify-content: center; 16 | align-items: center; 17 | animation: ${AniGrow} 3s ease-in-out alternate infinite; 18 | `; 19 | const StartButton = styled(StyledButton)` 20 | padding: 1rem; 21 | width: 5rem; 22 | height: 5rem; 23 | `; 24 | export default function StartBtn({ clickStart }) { 25 | const handleStart = () => { 26 | clickStart(); 27 | console.log('start'); 28 | document.querySelector('audio').play(); 29 | document.documentElement.requestFullscreen(); 30 | }; 31 | return ( 32 | 33 | 34 | 35 | 36 | 37 | ); 38 | } 39 | -------------------------------------------------------------------------------- /src/components/FullscreenBtn.jsx: -------------------------------------------------------------------------------- 1 | import{ useState, useEffect } from 'react'; 2 | import {MdFullscreen,MdFullscreenExit} from 'react-icons/md' 3 | import StyledButton from './StyledButton'; 4 | 5 | export default function FullscreenBtn() { 6 | const [fullscreen, setFullscreen] = useState(false); 7 | useEffect(() => { 8 | document.onfullscreenchange = function () { 9 | setFullscreen(document.fullscreenElement !== null); 10 | }; 11 | return () => { 12 | document.onfullscreenchange = null; 13 | }; 14 | }, []); 15 | const toggleFullscreen = () => { 16 | setFullscreen((prev) => !prev); 17 | if (!document.fullscreenElement) { 18 | document.documentElement.requestFullscreen(); 19 | } else { 20 | if (document.exitFullscreen) { 21 | document.exitFullscreen(); 22 | } 23 | } 24 | }; 25 | return ( 26 | 30 | {fullscreen?:} 31 | 32 | ); 33 | } 34 | -------------------------------------------------------------------------------- /src/assets/img/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Animates.js: -------------------------------------------------------------------------------- 1 | import { keyframes } from 'styled-components'; 2 | 3 | const AniFadeIn = keyframes` 4 | from { 5 | opacity:0; 6 | } 7 | 8 | to { 9 | opacity:1; 10 | } 11 | `; 12 | const AniGrow = keyframes` 13 | from { 14 | transform: scale(1); 15 | } 16 | 17 | to { 18 | transform: scale(1.3); 19 | } 20 | `; 21 | const AniRotate = keyframes` 22 | from { 23 | transform:translateX(-50%) rotate(0deg); 24 | } 25 | 26 | to { 27 | transform:translateX(-50%) rotate(360deg); 28 | } 29 | `; 30 | const AniShrink = keyframes` 31 | from { 32 | transform: scale(1.3); 33 | } 34 | 35 | to { 36 | transform: scale(1); 37 | } 38 | `; 39 | const AniHold = keyframes` 40 | from { 41 | transform: scale(1.3); 42 | } 43 | 44 | to { 45 | transform: scale(1.3); 46 | } 47 | `; 48 | const AniRefreshRotate = keyframes` 49 | from { 50 | transform: rotate(0deg); 51 | } 52 | 53 | to { 54 | transform: rotate(360deg); 55 | } 56 | `; 57 | export { AniFadeIn, AniGrow, AniRefreshRotate, AniRotate, AniShrink, AniHold }; 58 | -------------------------------------------------------------------------------- /src/assets/img/sound-off.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/assets/img/sound.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/assets/img/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/img/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/img/fullscreen.exit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "breathe-relaxer", 3 | "version": "2.0.0", 4 | "description": "A relaxing breathing app with a visual director to tell you when to breathe in, hold and breathe out", 5 | "engines": { 6 | "node": ">=15.0.0", 7 | "npm": ">=7.0.0" 8 | }, 9 | "scripts": { 10 | "dev": "vite", 11 | "build": "vite build", 12 | "serve": "vite preview", 13 | "prepare": "husky install" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/zerosoul/breathe-relaxer.git" 18 | }, 19 | "keywords": [ 20 | "relax", 21 | "breathe", 22 | "react", 23 | "meditation", 24 | "yoga", 25 | "css3" 26 | ], 27 | "author": "tristan", 28 | "license": "ISC", 29 | "bugs": { 30 | "url": "https://github.com/zerosoul/breathe-relaxer/issues" 31 | }, 32 | "homepage": "https://works.yangerxiao.com/breathe-relaxer/", 33 | "dependencies": { 34 | "react": "^18.2.0", 35 | "react-dom": "^18.2.0", 36 | "react-github-btn": "^1.4.0", 37 | "react-icons": "^4.6.0", 38 | "react-share": "^4.4.0", 39 | "styled-components": "^5.3.6", 40 | "styled-reset": "^4.4.2" 41 | }, 42 | "devDependencies": { 43 | "@vitejs/plugin-react": "^2.1.0", 44 | "eslint": "^8.26.0", 45 | "eslint-config-prettier": "^8.5.0", 46 | "eslint-plugin-react": "^7.31.10", 47 | "eslint-plugin-react-hooks": "^4.6.0", 48 | "husky": "^8.0.1", 49 | "lint-staged": "^13.0.3", 50 | "prettier": "^2.7.1", 51 | "vite": "^3.1.8" 52 | } 53 | } -------------------------------------------------------------------------------- /src/Global.style.jsx: -------------------------------------------------------------------------------- 1 | import { createGlobalStyle } from 'styled-components'; 2 | import reset from 'styled-reset'; 3 | const GlobalStyle = createGlobalStyle` 4 | ${reset} 5 | *{ 6 | box-sizing:border-box; 7 | user-select:none; 8 | outline:none; 9 | -webkit-text-size-adjust: none; 10 | -webkit-tap-highlight-color: rgba(0,0,0,0); 11 | color:#ffffeb; 12 | } 13 | 14 | html{ 15 | -webkit-font-smoothing: antialiased; 16 | -moz-osx-font-smoothing: grayscale; 17 | font-family: "Microsoft YaHei", 微软雅黑, Tahoma,Arial,sans-serif; 18 | } 19 | body{ 20 | -webkit-overflow-scrolling: touch; 21 | overflow:scroll; 22 | margin:0 auto; 23 | min-height:100vh; 24 | position: relative; 25 | } 26 | #root{ 27 | min-height:100vh; 28 | background-size: cover; 29 | background-repeat: no-repeat; 30 | background-position: center center; 31 | background-image:linear-gradient(-45deg, rgb(66, 102, 102), #545d6c, #23d5ab); 32 | transition:background-image 1s; 33 | } 34 | 35 | @media screen and (min-width: 320px){ 36 | html { 37 | font-size: 12px; 38 | } 39 | } 40 | @media screen and (min-width: 375px){ 41 | html { 42 | font-size: 16px; 43 | } 44 | } 45 | @media screen and (min-width: 480px){ 46 | html { 47 | font-size: 20px; 48 | } 49 | } 50 | @media screen and (min-width: 768px){ 51 | html { 52 | font-size: 24px; 53 | } 54 | } 55 | `; 56 | 57 | export default GlobalStyle; 58 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import { lazy, Suspense, useState } from "react"; 2 | import styled from "styled-components"; 3 | import Loading from "./components/Loading"; 4 | import RelaxCircle from "./components/RelaxCircle"; 5 | import { useLang } from "./langs"; 6 | const Header = lazy(() => import("./components/Header")); 7 | const Background = lazy(() => import("./components/Background")); 8 | const InfoModal = lazy(() => import("./components/InfoModal")); 9 | const StartBtn = lazy(() => import("./components/StartBtn")); 10 | const HideWhenIdle = lazy(() => import("./components/HideWhenIdle")); 11 | const Share = lazy(() => import("./components/Share")); 12 | const LangSwitch = lazy(() => import("./components/LangSwitch")); 13 | 14 | const StyledBody = styled.section` 15 | height: 90vh; 16 | display: flex; 17 | justify-content: center; 18 | align-items: center; 19 | `; 20 | const App = () => { 21 | const { lang, changeLang, dicts } = useLang(); 22 | const [start, setStart] = useState(false); 23 | const toggleStart = () => { 24 | setStart((prev) => !prev); 25 | }; 26 | return ( 27 | }> 28 | {!start && } 29 |
30 | {start && } 31 | 32 | 33 | {start && } 34 | 35 | 36 | 37 | ); 38 | }; 39 | export default App; 40 | -------------------------------------------------------------------------------- /src/components/LangSwitch.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | 3 | const StyledWrapper = styled.div` 4 | z-index: 998; 5 | position: fixed; 6 | top: 0.5rem; 7 | right: 0.5rem; 8 | display: flex; 9 | margin-bottom: 36px; 10 | overflow: hidden; 11 | input { 12 | position: absolute !important; 13 | clip: rect(0, 0, 0, 0); 14 | height: 1px; 15 | width: 1px; 16 | border: 0; 17 | overflow: hidden; 18 | &:checked + label { 19 | background-color: rgba(6, 124, 10, 0.6); 20 | box-shadow: none; 21 | color: #fff; 22 | } 23 | } 24 | label { 25 | background-color: #e4e4e4; 26 | color: #666; 27 | font-size: 0.6rem; 28 | line-height: 1; 29 | text-align: center; 30 | padding: 0.2rem 0.4rem; 31 | margin-right: -1px; 32 | border: 1px solid rgba(0, 0, 0, 0.2); 33 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 34 | 0 1px rgba(255, 255, 255, 0.1); 35 | transition: all 0.1s ease-in-out; 36 | &:hover { 37 | cursor: pointer; 38 | } 39 | &:first-of-type { 40 | border-radius: 4px 0 0 4px; 41 | } 42 | &:last-of-type { 43 | border-radius: 0 4px 4px 0; 44 | } 45 | } 46 | `; 47 | export default function LangSwitch({ lang, changeLang }) { 48 | const handleLangChange = (evt) => { 49 | console.log(evt.target.value); 50 | changeLang(evt.target.value); 51 | }; 52 | return ( 53 | 54 | 62 | 63 | 71 | 72 | 73 | ); 74 | } 75 | -------------------------------------------------------------------------------- /src/components/Share.jsx: -------------------------------------------------------------------------------- 1 | import{ useState } from 'react'; 2 | import styled from 'styled-components'; 3 | import StyledButton from './StyledButton'; 4 | import {IoShareSocialSharp} from 'react-icons/io5' 5 | import {MdClose} from 'react-icons/md' 6 | import ShareImage from '../assets/img/icon.png'; 7 | import { 8 | FacebookShareButton, 9 | FacebookIcon, 10 | TwitterShareButton, 11 | TwitterIcon, 12 | WeiboIcon, 13 | WeiboShareButton, 14 | } from 'react-share'; 15 | const StyledWrapper = styled.div` 16 | z-index: 998; 17 | position: fixed; 18 | right: 3rem; 19 | bottom: 0.5rem; 20 | display: flex; 21 | flex-direction: column; 22 | .btn { 23 | margin-bottom: 0.4rem; 24 | } 25 | `; 26 | 27 | const shareUrl = `https://works.yangerxiao.com/breathe-relaxer/`; 28 | const ShareItems = () => ( 29 | <> 30 | 36 | 37 | 38 | 43 | 44 | 45 | 46 | 52 | 53 | 54 | 55 | ); 56 | const Share = () => { 57 | const [visible, setVisible] = useState(false); 58 | const handleShareClick = () => { 59 | setVisible((prev) => !prev); 60 | }; 61 | return ( 62 | 63 | {visible ? : null} 64 | 65 | {visible?: } 66 | 67 | 68 | ); 69 | }; 70 | 71 | export default Share; 72 | -------------------------------------------------------------------------------- /src/components/Loading.jsx: -------------------------------------------------------------------------------- 1 | 2 | import styled, { keyframes } from 'styled-components'; 3 | const rotate = keyframes` 4 | 0% { 5 | transform: rotate(0deg); 6 | } 7 | 100%{ 8 | transform: rotate(-360deg); 9 | } 10 | `; 11 | 12 | const rotateBall = (props) => keyframes` 13 | ${(((props.size / 2 / props.countBalls) * (props.index - 1)) / props.size) * 100}% { 14 | opacity: 0; 15 | } 16 | ${(((props.size / 2 / props.countBalls + 0.0001) * (props.index - 1)) / props.size) * 100}% { 17 | opacity: 1; 18 | transform: ${`rotateZ(${0 - (360 / props.countBalls) * (props.index - 2)}deg)`}; 19 | } 20 | ${(((props.size / 2 / props.countBalls) * (props.index - 0) + 2) / props.size) * 100}% { 21 | transform: ${`rotateZ(${0 - (360 / props.countBalls) * (props.index - 1)}deg)`}; 22 | } 23 | ${ 24 | ((props.size / 2 + (props.size / 2 / props.countBalls) * (props.index - 0) + 2) / props.size) * 25 | 100 26 | }% { 27 | transform: ${`rotateZ(${0 - (360 / props.countBalls) * (props.index - 1)}deg)`}; 28 | } 29 | 100% { 30 | transform: ${`rotateZ(${0 - (360 / props.countBalls) * (props.countBalls - 1)}deg)`}; 31 | opacity: 1; 32 | } 33 | `; 34 | 35 | const getBalls = ({ 36 | countBalls, 37 | radius, 38 | angle, 39 | color = '#fff', 40 | size = 40, 41 | ballSize, 42 | sizeUnit = 'px', 43 | }) => { 44 | const balls = []; 45 | const offset = ballSize / 2; 46 | for (let i = 0; i < countBalls; i++) { 47 | const y = Math.sin(angle * i * (Math.PI / 180)) * radius - offset; 48 | const x = Math.cos(angle * i * (Math.PI / 180)) * radius - offset; 49 | balls.push( 50 | 61 | ); 62 | } 63 | return balls; 64 | }; 65 | 66 | const Wrapper = styled.div` 67 | position: relative; 68 | display: flex; 69 | justify-content: center; 70 | align-items: center; 71 | width: 100vw; 72 | height: 100vh; 73 | animation: ${rotate} 3s infinite ease-in; 74 | `; 75 | 76 | const Ball = styled.div` 77 | position: absolute; 78 | width: ${(props) => `${props.size}${props.sizeUnit}`}; 79 | height: ${(props) => `${props.size}${props.sizeUnit}`}; 80 | animation: ${rotateBall} 2s infinite linear; 81 | transform: ${(props) => `rotateZ(${(360 / props.countBalls) * props.index}deg)`}; 82 | opacity: 0; 83 | &:before { 84 | content: ''; 85 | position: absolute; 86 | left: 50%; 87 | top: 0%; 88 | width: ${(props) => `${props.ballSize}${props.sizeUnit}`}; 89 | height: ${(props) => `${props.ballSize}${props.sizeUnit}`}; 90 | background-color: ${(props) => `${props.color}`}; 91 | transform: translateX(-50%); 92 | border-radius: 50%; 93 | } 94 | `; 95 | 96 | const Loading = ({ size = 40, color = '#fff', sizeUnit = 'px' }) => { 97 | const radius = size / 2; 98 | const countBalls = 9; 99 | const ballSize = size / 8; 100 | const angle = 360 / countBalls; 101 | return ( 102 | 103 | {getBalls({ 104 | countBalls, 105 | radius, 106 | angle, 107 | color, 108 | size, 109 | ballSize, 110 | sizeUnit, 111 | })} 112 | 113 | ); 114 | }; 115 | export default Loading; 116 | -------------------------------------------------------------------------------- /src/components/InfoModal.jsx: -------------------------------------------------------------------------------- 1 | /* eslint-disable react/jsx-no-target-blank */ 2 | import{ useState } from 'react'; 3 | import styled, { keyframes } from 'styled-components'; 4 | import GitHubButton from 'react-github-btn'; 5 | import StyledButton from './StyledButton'; 6 | import {TiInfoLarge} from 'react-icons/ti' 7 | import {MdClose} from 'react-icons/md' 8 | import ImageReward from '../assets/img/reward.jpg'; 9 | const AniSlideLeft = keyframes` 10 | from{ 11 | transform:translateX(100%) 12 | } 13 | to{ 14 | transform:translateX(0) 15 | } 16 | `; 17 | const InfoButton = styled(StyledButton)` 18 | z-index: 998; 19 | position: fixed; 20 | right: 0.5rem; 21 | bottom: 0.5rem; 22 | margin-right: 0.5rem; 23 | `; 24 | const StyledModal = styled.section` 25 | z-index: 998; 26 | display: flex; 27 | flex-direction: column; 28 | box-shadow: 0 0 8px black; 29 | position: fixed; 30 | right: 0.5rem; 31 | bottom: 2.5rem; 32 | background: rgba(2, 2, 2, 0.6); 33 | padding: 1rem; 34 | animation: ${AniSlideLeft} 1s; 35 | padding: 1rem; 36 | .reward { 37 | width: 14rem; 38 | align-self: center; 39 | border: 1px solid #222; 40 | border-radius: 0.4rem; 41 | margin-bottom: 0.8rem; 42 | } 43 | .producthunt { 44 | margin: 0.4rem 0; 45 | img { 46 | width: 10rem; 47 | } 48 | } 49 | .based { 50 | margin-bottom: 0.5rem; 51 | } 52 | .code { 53 | display: flex; 54 | align-items: center; 55 | margin-bottom: 0.8rem; 56 | } 57 | .copyright { 58 | font-size: 0.5rem; 59 | a { 60 | padding: 0 0.2rem; 61 | } 62 | } 63 | `; 64 | const Modal = () => ( 65 | 66 | reward 67 | 72 | Breathe Relaxer - Calm down your mind, relax your body | Product Hunt Embed 76 | 77 |
78 | 基于Relaxer改进 79 |
80 |
81 | 代码开源: 82 | 87 | Star 88 | 89 |
90 |
91 | 92 | 京ICP备16015459号-1 93 | 94 | Copyright © {new Date().getFullYear()} By 95 | 96 | Tristan 97 | 98 |
99 |
100 | ); 101 | export default function InfoModal() { 102 | const [visible, setVisible] = useState(false); 103 | const handleInfoClick = () => { 104 | setVisible((prev) => !prev); 105 | }; 106 | 107 | return ( 108 | <> 109 | {visible ? : null} 110 | 111 | 115 | {visible?:} 116 | 117 | 118 | ); 119 | } 120 | -------------------------------------------------------------------------------- /src/components/Background.jsx: -------------------------------------------------------------------------------- 1 | import{ useEffect, useState, useRef } from 'react'; 2 | import styled from 'styled-components'; 3 | import FullscreenBtn from './FullscreenBtn'; 4 | import { AniRefreshRotate } from './Animates'; 5 | import StyledButton from './StyledButton'; 6 | import {GiSpeaker,GiSpeakerOff} from 'react-icons/gi' 7 | import {GoSync} from 'react-icons/go' 8 | import {MdStop} from 'react-icons/md' 9 | 10 | import BGM1 from '../assets/bgm/juggle.mp3'; 11 | import BGM2 from '../assets/bgm/grass.night.mp3'; 12 | import BGM3 from '../assets/bgm/rain.mp3'; 13 | import BGM4 from '../assets/bgm/sea.mp3'; 14 | import BGM5 from '../assets/bgm/night.wind.mp3'; 15 | import BGM6 from '../assets/bgm/forest.bird.mp3'; 16 | const BGs = ['bg.1.jpg', 'bg.2.jpg', 'bg.3.jpg', 'bg.4.jpg', 'bg.5.jpg', 'bg.6.jpg', 'bg.7.jpg']; 17 | const BGMs = [BGM6, BGM2, BGM3, BGM4, BGM5, BGM1, BGM4]; 18 | const idx = Math.floor(Math.random() * BGs.length); 19 | const CurrBg = BGs[idx]; 20 | const CurrBgm = BGMs[idx] || BGMs[0]; 21 | const StyledWrapper = styled.aside` 22 | position: fixed; 23 | left: 0.5rem; 24 | bottom: 0.5rem; 25 | button { 26 | margin-right: 0.5rem; 27 | } 28 | `; 29 | const RefreshButton=styled(StyledButton)` 30 | &[disabled] { 31 | animation: ${AniRefreshRotate} 1s infinite forwards linear; 32 | } 33 | ` 34 | export default function Background({start,reset}) { 35 | const [currBg, setCurrBg] = useState(CurrBg); 36 | const [currBgm, setCurrBgm] = useState(CurrBgm); 37 | const [bgLoading, setBgLoading] = useState(true); 38 | const [bgmEnable, setBgmEnable] = useState(true) 39 | const bgmEle = useRef(null); 40 | const handleChangeBg = () => { 41 | let currIdx = BGs.findIndex((item) => item == currBg); 42 | let newIdx = (currIdx + 1) % BGs.length; 43 | let newBg = BGs[newIdx]; 44 | let newBgm = BGMs[newIdx]; 45 | setCurrBg(newBg); 46 | setCurrBgm(newBgm); 47 | }; 48 | const toggleBgm = () => { 49 | console.log(bgmEle.current); 50 | const audioEle = bgmEle.current; 51 | if (audioEle.paused) { 52 | audioEle.play(); 53 | setBgmEnable(true) 54 | } else { 55 | audioEle.pause(); 56 | setBgmEnable(false) 57 | } 58 | }; 59 | const handleStop=()=>{ 60 | const audioEle = bgmEle.current; 61 | audioEle.pause(); 62 | audioEle.currentTime = 0; 63 | setBgmEnable(true) 64 | reset(); 65 | } 66 | useEffect(() => { 67 | setBgLoading(true); 68 | let preloadImage = new Image(); 69 | let currSrc = `https://static.nicegoodthings.com/works/breath/${currBg}`; 70 | preloadImage.src = currSrc; 71 | preloadImage.onload = () => { 72 | setTimeout(() => { 73 | document.querySelector('#root').style.backgroundImage = `url('${currSrc}')`; 74 | setBgLoading(false); 75 | preloadImage = null; 76 | }, 1000); 77 | }; 78 | }, [currBg]); 79 | return ( 80 | 81 | 82 | {start && 86 | 87 | } 88 | 89 | 90 | {bgmEnable?:} 91 | 92 | 97 | 98 | 99 | 100 | 101 | ); 102 | } 103 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 23 | 26 | 29 | 32 | 35 | 38 | 41 | 44 | 47 | 50 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 69 | 70 | Breathe Relaxer - Calm down your mind, relax your body 71 | 72 | 73 | 74 |
75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /src/components/RelaxCircle.jsx: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | import styled from "styled-components"; 3 | import { AniFadeIn, AniGrow, AniShrink, AniHold, AniRotate } from "./Animates"; 4 | 5 | const StyledWrapper = styled.div` 6 | display: flex; 7 | align-items: center; 8 | justify-content: center; 9 | height: 10rem; 10 | width: 10rem; 11 | position: relative; 12 | &.grow { 13 | animation: ${AniGrow} 3s linear forwards; 14 | } 15 | &.shrink { 16 | animation: ${AniShrink} 3s linear forwards; 17 | } 18 | &.hold { 19 | animation: ${AniHold} 1.5s linear forwards; 20 | } 21 | .tip { 22 | display: flex; 23 | align-items: center; 24 | justify-content: center; 25 | .txt { 26 | animation: ${AniFadeIn} 1s linear forwards; 27 | 28 | text-align: center; 29 | font-size: 1.2rem; 30 | font-weight: 800; 31 | padding: 0.2rem 0; 32 | text-transform: capitalize; 33 | } 34 | } 35 | .circle { 36 | height: 100%; 37 | width: 100%; 38 | border-radius: 50%; 39 | position: absolute; 40 | top: 0; 41 | left: 0; 42 | z-index: -1; 43 | transition: background-color 1s; 44 | } 45 | &.grow .circle { 46 | background-color: rgb(66, 102, 102); 47 | } 48 | &.shrink .circle { 49 | background-color: rgb(127, 236, 173); 50 | } 51 | &.hold .circle { 52 | background-color: rgb(22, 22, 2); 53 | } 54 | .gradient-circle { 55 | background: conic-gradient( 56 | rgba(127, 236, 173, 0.5) 0%, 57 | rgba(127, 236, 173, 0.5) 40%, 58 | rgba(22, 22, 2, 0.5) 40%, 59 | rgba(22, 22, 2, 0.5) 60%, 60 | rgba(66, 102, 102, 0.5) 60%, 61 | rgba(66, 102, 102, 0.5) 100% 62 | ); 63 | height: 12rem; 64 | width: 12rem; 65 | z-index: -2; 66 | border-radius: 50%; 67 | position: absolute; 68 | box-shadow: 0 0 8px black; 69 | } 70 | 71 | .pointer-container { 72 | position: absolute; 73 | top: -3.6rem; 74 | left: 50%; 75 | width: 1.6rem; 76 | height: calc(50% + 3.6rem); 77 | transform: translateX(-50%); 78 | animation: ${AniRotate} 7.5s linear forwards infinite; 79 | transform-origin: bottom center; 80 | 81 | .pointer { 82 | border-radius: 50%; 83 | height: 1.6rem; 84 | width: 1.6rem; 85 | display: block; 86 | transition: background-color 0.2s; 87 | box-shadow: 0 0 3px black; 88 | &.grow { 89 | background-color: rgba(127, 236, 173, 0.8); 90 | } 91 | &.shrink { 92 | background-color: rgba(66, 102, 102, 0.8); 93 | } 94 | &.hold { 95 | background-color: rgba(22, 22, 2, 0.8); 96 | } 97 | } 98 | } 99 | `; 100 | export default function RelaxCircle({ dicts }) { 101 | const [status, setStatus] = useState("grow"); 102 | const [visible, setVisible] = useState(true); 103 | useEffect(() => { 104 | const visibleHandler = () => { 105 | setVisible(document.visibilityState === "visible"); 106 | setStatus("grow"); 107 | }; 108 | document.addEventListener("visibilitychange", visibleHandler, false); 109 | return () => { 110 | document.removeEventListener("visibilitychange", visibleHandler, false); 111 | }; 112 | }, []); 113 | useEffect(() => {}, [status]); 114 | const handleAniEnd = ({ target }) => { 115 | console.log(target); 116 | if (!target.classList.contains("txt")) { 117 | if (status === "grow") { 118 | setStatus("hold"); 119 | } else if (status === "shrink") { 120 | setStatus("grow"); 121 | } else { 122 | setStatus("shrink"); 123 | } 124 | } 125 | }; 126 | 127 | return ( 128 | visible && ( 129 | 130 |
131 |
132 | {status === "grow" ? ( 133 | {dicts.inhale} 134 | ) : status === "shrink" ? ( 135 | {dicts.exhale} 136 | ) : ( 137 | {dicts.hold} 138 | )} 139 |
140 |
141 | 142 |
143 | 144 |
145 |
146 | ) 147 | ); 148 | } 149 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | version "2.2.0" 7 | resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" 8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 9 | dependencies: 10 | "@jridgewell/gen-mapping" "^0.1.0" 11 | "@jridgewell/trace-mapping" "^0.3.9" 12 | 13 | "@babel/code-frame@^7.14.5": 14 | version "7.14.5" 15 | resolved "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" 16 | integrity sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts= 17 | dependencies: 18 | "@babel/highlight" "^7.14.5" 19 | 20 | "@babel/code-frame@^7.18.6": 21 | version "7.18.6" 22 | resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 23 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 24 | dependencies: 25 | "@babel/highlight" "^7.18.6" 26 | 27 | "@babel/compat-data@^7.19.3": 28 | version "7.19.4" 29 | resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747" 30 | integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw== 31 | 32 | "@babel/core@^7.18.13": 33 | version "7.19.6" 34 | resolved "https://registry.npmmirror.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" 35 | integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== 36 | dependencies: 37 | "@ampproject/remapping" "^2.1.0" 38 | "@babel/code-frame" "^7.18.6" 39 | "@babel/generator" "^7.19.6" 40 | "@babel/helper-compilation-targets" "^7.19.3" 41 | "@babel/helper-module-transforms" "^7.19.6" 42 | "@babel/helpers" "^7.19.4" 43 | "@babel/parser" "^7.19.6" 44 | "@babel/template" "^7.18.10" 45 | "@babel/traverse" "^7.19.6" 46 | "@babel/types" "^7.19.4" 47 | convert-source-map "^1.7.0" 48 | debug "^4.1.0" 49 | gensync "^1.0.0-beta.2" 50 | json5 "^2.2.1" 51 | semver "^6.3.0" 52 | 53 | "@babel/generator@^7.15.4": 54 | version "7.15.4" 55 | resolved "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.15.4.tgz#85acb159a267ca6324f9793986991ee2022a05b0" 56 | integrity sha1-hayxWaJnymMk+Xk5hpke4gIqBbA= 57 | dependencies: 58 | "@babel/types" "^7.15.4" 59 | jsesc "^2.5.1" 60 | source-map "^0.5.0" 61 | 62 | "@babel/generator@^7.19.6": 63 | version "7.19.6" 64 | resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d" 65 | integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA== 66 | dependencies: 67 | "@babel/types" "^7.19.4" 68 | "@jridgewell/gen-mapping" "^0.3.2" 69 | jsesc "^2.5.1" 70 | 71 | "@babel/helper-annotate-as-pure@^7.0.0": 72 | version "7.15.4" 73 | resolved "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835" 74 | integrity sha1-PQ5DsAxeSf22xX5CFgGnpljV+DU= 75 | dependencies: 76 | "@babel/types" "^7.15.4" 77 | 78 | "@babel/helper-annotate-as-pure@^7.18.6": 79 | version "7.18.6" 80 | resolved "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" 81 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== 82 | dependencies: 83 | "@babel/types" "^7.18.6" 84 | 85 | "@babel/helper-compilation-targets@^7.19.3": 86 | version "7.19.3" 87 | resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca" 88 | integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== 89 | dependencies: 90 | "@babel/compat-data" "^7.19.3" 91 | "@babel/helper-validator-option" "^7.18.6" 92 | browserslist "^4.21.3" 93 | semver "^6.3.0" 94 | 95 | "@babel/helper-environment-visitor@^7.18.9": 96 | version "7.18.9" 97 | resolved "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" 98 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== 99 | 100 | "@babel/helper-function-name@^7.15.4": 101 | version "7.15.4" 102 | resolved "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" 103 | integrity sha1-hFdE2vxDgaSl+2r6bD02+Yp4frw= 104 | dependencies: 105 | "@babel/helper-get-function-arity" "^7.15.4" 106 | "@babel/template" "^7.15.4" 107 | "@babel/types" "^7.15.4" 108 | 109 | "@babel/helper-function-name@^7.19.0": 110 | version "7.19.0" 111 | resolved "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" 112 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== 113 | dependencies: 114 | "@babel/template" "^7.18.10" 115 | "@babel/types" "^7.19.0" 116 | 117 | "@babel/helper-get-function-arity@^7.15.4": 118 | version "7.15.4" 119 | resolved "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" 120 | integrity sha1-CYgYk0oTf854tTaj4BWGS+Hih5s= 121 | dependencies: 122 | "@babel/types" "^7.15.4" 123 | 124 | "@babel/helper-hoist-variables@^7.15.4": 125 | version "7.15.4" 126 | resolved "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" 127 | integrity sha1-CZk6MlnA6Rj5nRBCYd/fwDPxeN8= 128 | dependencies: 129 | "@babel/types" "^7.15.4" 130 | 131 | "@babel/helper-hoist-variables@^7.18.6": 132 | version "7.18.6" 133 | resolved "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" 134 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== 135 | dependencies: 136 | "@babel/types" "^7.18.6" 137 | 138 | "@babel/helper-module-imports@^7.0.0": 139 | version "7.15.4" 140 | resolved "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 141 | integrity sha1-4YAH0jBjLeoZtHhTuYRHbntOED8= 142 | dependencies: 143 | "@babel/types" "^7.15.4" 144 | 145 | "@babel/helper-module-imports@^7.18.6": 146 | version "7.18.6" 147 | resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" 148 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 149 | dependencies: 150 | "@babel/types" "^7.18.6" 151 | 152 | "@babel/helper-module-transforms@^7.19.6": 153 | version "7.19.6" 154 | resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" 155 | integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== 156 | dependencies: 157 | "@babel/helper-environment-visitor" "^7.18.9" 158 | "@babel/helper-module-imports" "^7.18.6" 159 | "@babel/helper-simple-access" "^7.19.4" 160 | "@babel/helper-split-export-declaration" "^7.18.6" 161 | "@babel/helper-validator-identifier" "^7.19.1" 162 | "@babel/template" "^7.18.10" 163 | "@babel/traverse" "^7.19.6" 164 | "@babel/types" "^7.19.4" 165 | 166 | "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0": 167 | version "7.19.0" 168 | resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" 169 | integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== 170 | 171 | "@babel/helper-simple-access@^7.19.4": 172 | version "7.19.4" 173 | resolved "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" 174 | integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== 175 | dependencies: 176 | "@babel/types" "^7.19.4" 177 | 178 | "@babel/helper-split-export-declaration@^7.15.4": 179 | version "7.15.4" 180 | resolved "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" 181 | integrity sha1-rsq5Lc2+9qEKo7YqsgSwhfd24lc= 182 | dependencies: 183 | "@babel/types" "^7.15.4" 184 | 185 | "@babel/helper-split-export-declaration@^7.18.6": 186 | version "7.18.6" 187 | resolved "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" 188 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== 189 | dependencies: 190 | "@babel/types" "^7.18.6" 191 | 192 | "@babel/helper-string-parser@^7.19.4": 193 | version "7.19.4" 194 | resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" 195 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 196 | 197 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9": 198 | version "7.15.7" 199 | resolved "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz?cache=0&sync_timestamp=1631920000984&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 200 | integrity sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k= 201 | 202 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 203 | version "7.19.1" 204 | resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 205 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 206 | 207 | "@babel/helper-validator-option@^7.18.6": 208 | version "7.18.6" 209 | resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" 210 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== 211 | 212 | "@babel/helpers@^7.19.4": 213 | version "7.19.4" 214 | resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5" 215 | integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw== 216 | dependencies: 217 | "@babel/template" "^7.18.10" 218 | "@babel/traverse" "^7.19.4" 219 | "@babel/types" "^7.19.4" 220 | 221 | "@babel/highlight@^7.14.5": 222 | version "7.14.5" 223 | resolved "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 224 | integrity sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk= 225 | dependencies: 226 | "@babel/helper-validator-identifier" "^7.14.5" 227 | chalk "^2.0.0" 228 | js-tokens "^4.0.0" 229 | 230 | "@babel/highlight@^7.18.6": 231 | version "7.18.6" 232 | resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 233 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 234 | dependencies: 235 | "@babel/helper-validator-identifier" "^7.18.6" 236 | chalk "^2.0.0" 237 | js-tokens "^4.0.0" 238 | 239 | "@babel/parser@^7.15.4": 240 | version "7.15.7" 241 | resolved "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.7.tgz#0c3ed4a2eb07b165dfa85b3cc45c727334c4edae" 242 | integrity sha1-DD7UousHsWXfqFs8xFxyczTE7a4= 243 | 244 | "@babel/parser@^7.18.10", "@babel/parser@^7.19.6": 245 | version "7.19.6" 246 | resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8" 247 | integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA== 248 | 249 | "@babel/plugin-syntax-jsx@^7.18.6": 250 | version "7.18.6" 251 | resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" 252 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== 253 | dependencies: 254 | "@babel/helper-plugin-utils" "^7.18.6" 255 | 256 | "@babel/plugin-transform-react-jsx-development@^7.18.6": 257 | version "7.18.6" 258 | resolved "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" 259 | integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== 260 | dependencies: 261 | "@babel/plugin-transform-react-jsx" "^7.18.6" 262 | 263 | "@babel/plugin-transform-react-jsx-self@^7.18.6": 264 | version "7.18.6" 265 | resolved "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7" 266 | integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig== 267 | dependencies: 268 | "@babel/helper-plugin-utils" "^7.18.6" 269 | 270 | "@babel/plugin-transform-react-jsx-source@^7.18.6": 271 | version "7.18.6" 272 | resolved "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz#06e9ae8a14d2bc19ce6e3c447d842032a50598fc" 273 | integrity sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw== 274 | dependencies: 275 | "@babel/helper-plugin-utils" "^7.18.6" 276 | 277 | "@babel/plugin-transform-react-jsx@^7.18.10", "@babel/plugin-transform-react-jsx@^7.18.6": 278 | version "7.19.0" 279 | resolved "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9" 280 | integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== 281 | dependencies: 282 | "@babel/helper-annotate-as-pure" "^7.18.6" 283 | "@babel/helper-module-imports" "^7.18.6" 284 | "@babel/helper-plugin-utils" "^7.19.0" 285 | "@babel/plugin-syntax-jsx" "^7.18.6" 286 | "@babel/types" "^7.19.0" 287 | 288 | "@babel/template@^7.15.4": 289 | version "7.15.4" 290 | resolved "https://registry.nlark.com/@babel/template/download/@babel/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" 291 | integrity sha1-UYmNNdzz+qZwxO5q/P1RfuE58ZQ= 292 | dependencies: 293 | "@babel/code-frame" "^7.14.5" 294 | "@babel/parser" "^7.15.4" 295 | "@babel/types" "^7.15.4" 296 | 297 | "@babel/template@^7.18.10": 298 | version "7.18.10" 299 | resolved "https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" 300 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== 301 | dependencies: 302 | "@babel/code-frame" "^7.18.6" 303 | "@babel/parser" "^7.18.10" 304 | "@babel/types" "^7.18.10" 305 | 306 | "@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6": 307 | version "7.19.6" 308 | resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc" 309 | integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ== 310 | dependencies: 311 | "@babel/code-frame" "^7.18.6" 312 | "@babel/generator" "^7.19.6" 313 | "@babel/helper-environment-visitor" "^7.18.9" 314 | "@babel/helper-function-name" "^7.19.0" 315 | "@babel/helper-hoist-variables" "^7.18.6" 316 | "@babel/helper-split-export-declaration" "^7.18.6" 317 | "@babel/parser" "^7.19.6" 318 | "@babel/types" "^7.19.4" 319 | debug "^4.1.0" 320 | globals "^11.1.0" 321 | 322 | "@babel/traverse@^7.4.5": 323 | version "7.15.4" 324 | resolved "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" 325 | integrity sha1-/4UQNnoUS/v/VS2eGOKPPiiJwi0= 326 | dependencies: 327 | "@babel/code-frame" "^7.14.5" 328 | "@babel/generator" "^7.15.4" 329 | "@babel/helper-function-name" "^7.15.4" 330 | "@babel/helper-hoist-variables" "^7.15.4" 331 | "@babel/helper-split-export-declaration" "^7.15.4" 332 | "@babel/parser" "^7.15.4" 333 | "@babel/types" "^7.15.4" 334 | debug "^4.1.0" 335 | globals "^11.1.0" 336 | 337 | "@babel/types@^7.15.4": 338 | version "7.15.6" 339 | resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz?cache=0&sync_timestamp=1631216408117&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 340 | integrity sha1-mavcSCGLKIHAWN0KerBbmcm+dY8= 341 | dependencies: 342 | "@babel/helper-validator-identifier" "^7.14.9" 343 | to-fast-properties "^2.0.0" 344 | 345 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4": 346 | version "7.19.4" 347 | resolved "https://registry.npmmirror.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7" 348 | integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw== 349 | dependencies: 350 | "@babel/helper-string-parser" "^7.19.4" 351 | "@babel/helper-validator-identifier" "^7.19.1" 352 | to-fast-properties "^2.0.0" 353 | 354 | "@emotion/is-prop-valid@^1.1.0": 355 | version "1.2.0" 356 | resolved "https://registry.npmmirror.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz#7f2d35c97891669f7e276eb71c83376a5dc44c83" 357 | integrity sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg== 358 | dependencies: 359 | "@emotion/memoize" "^0.8.0" 360 | 361 | "@emotion/memoize@^0.8.0": 362 | version "0.8.0" 363 | resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f" 364 | integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA== 365 | 366 | "@emotion/stylis@^0.8.4": 367 | version "0.8.5" 368 | resolved "https://registry.nlark.com/@emotion/stylis/download/@emotion/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" 369 | integrity sha1-3qyzib1u530ef8rMzp4WxcfnjgQ= 370 | 371 | "@emotion/unitless@^0.7.4": 372 | version "0.7.5" 373 | resolved "https://registry.nlark.com/@emotion/unitless/download/@emotion/unitless-0.7.5.tgz?cache=0&sync_timestamp=1624608001304&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40emotion%2Funitless%2Fdownload%2F%40emotion%2Funitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" 374 | integrity sha1-dyESkcGQCnALinjPr9oxYNdpSe0= 375 | 376 | "@esbuild/android-arm@0.15.12": 377 | version "0.15.12" 378 | resolved "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.15.12.tgz#e548b10a5e55b9e10537a049ebf0bc72c453b769" 379 | integrity sha512-IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA== 380 | 381 | "@esbuild/linux-loong64@0.15.12": 382 | version "0.15.12" 383 | resolved "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.15.12.tgz#475b33a2631a3d8ca8aa95ee127f9a61d95bf9c1" 384 | integrity sha512-tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw== 385 | 386 | "@eslint/eslintrc@^1.3.3": 387 | version "1.3.3" 388 | resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" 389 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== 390 | dependencies: 391 | ajv "^6.12.4" 392 | debug "^4.3.2" 393 | espree "^9.4.0" 394 | globals "^13.15.0" 395 | ignore "^5.2.0" 396 | import-fresh "^3.2.1" 397 | js-yaml "^4.1.0" 398 | minimatch "^3.1.2" 399 | strip-json-comments "^3.1.1" 400 | 401 | "@humanwhocodes/config-array@^0.11.6": 402 | version "0.11.6" 403 | resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz#6a51d603a3aaf8d4cf45b42b3f2ac9318a4adc4b" 404 | integrity sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg== 405 | dependencies: 406 | "@humanwhocodes/object-schema" "^1.2.1" 407 | debug "^4.1.1" 408 | minimatch "^3.0.4" 409 | 410 | "@humanwhocodes/module-importer@^1.0.1": 411 | version "1.0.1" 412 | resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 413 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 414 | 415 | "@humanwhocodes/object-schema@^1.2.1": 416 | version "1.2.1" 417 | resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 418 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 419 | 420 | "@jridgewell/gen-mapping@^0.1.0": 421 | version "0.1.1" 422 | resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" 423 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 424 | dependencies: 425 | "@jridgewell/set-array" "^1.0.0" 426 | "@jridgewell/sourcemap-codec" "^1.4.10" 427 | 428 | "@jridgewell/gen-mapping@^0.3.2": 429 | version "0.3.2" 430 | resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" 431 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 432 | dependencies: 433 | "@jridgewell/set-array" "^1.0.1" 434 | "@jridgewell/sourcemap-codec" "^1.4.10" 435 | "@jridgewell/trace-mapping" "^0.3.9" 436 | 437 | "@jridgewell/resolve-uri@3.1.0": 438 | version "3.1.0" 439 | resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 440 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 441 | 442 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": 443 | version "1.1.2" 444 | resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 445 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 446 | 447 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": 448 | version "1.4.14" 449 | resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 450 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 451 | 452 | "@jridgewell/trace-mapping@^0.3.9": 453 | version "0.3.17" 454 | resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" 455 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== 456 | dependencies: 457 | "@jridgewell/resolve-uri" "3.1.0" 458 | "@jridgewell/sourcemap-codec" "1.4.14" 459 | 460 | "@nodelib/fs.scandir@2.1.5": 461 | version "2.1.5" 462 | resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 463 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 464 | dependencies: 465 | "@nodelib/fs.stat" "2.0.5" 466 | run-parallel "^1.1.9" 467 | 468 | "@nodelib/fs.stat@2.0.5": 469 | version "2.0.5" 470 | resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 471 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 472 | 473 | "@nodelib/fs.walk@^1.2.8": 474 | version "1.2.8" 475 | resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 476 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 477 | dependencies: 478 | "@nodelib/fs.scandir" "2.1.5" 479 | fastq "^1.6.0" 480 | 481 | "@vitejs/plugin-react@^2.1.0": 482 | version "2.1.0" 483 | resolved "https://registry.npmmirror.com/@vitejs/plugin-react/-/plugin-react-2.1.0.tgz#4c99df15e71d2630601bd3018093bdc787d40e55" 484 | integrity sha512-am6rPyyU3LzUYne3Gd9oj9c4Rzbq5hQnuGXSMT6Gujq45Il/+bunwq3lrB7wghLkiF45ygMwft37vgJ/NE8IAA== 485 | dependencies: 486 | "@babel/core" "^7.18.13" 487 | "@babel/plugin-transform-react-jsx" "^7.18.10" 488 | "@babel/plugin-transform-react-jsx-development" "^7.18.6" 489 | "@babel/plugin-transform-react-jsx-self" "^7.18.6" 490 | "@babel/plugin-transform-react-jsx-source" "^7.18.6" 491 | magic-string "^0.26.2" 492 | react-refresh "^0.14.0" 493 | 494 | acorn-jsx@^5.3.2: 495 | version "5.3.2" 496 | resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 497 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 498 | 499 | acorn@^8.8.0: 500 | version "8.8.0" 501 | resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" 502 | integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== 503 | 504 | aggregate-error@^3.0.0: 505 | version "3.1.0" 506 | resolved "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 507 | integrity sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo= 508 | dependencies: 509 | clean-stack "^2.0.0" 510 | indent-string "^4.0.0" 511 | 512 | ajv@^6.10.0, ajv@^6.12.4: 513 | version "6.12.6" 514 | resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 515 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 516 | dependencies: 517 | fast-deep-equal "^3.1.1" 518 | fast-json-stable-stringify "^2.0.0" 519 | json-schema-traverse "^0.4.1" 520 | uri-js "^4.2.2" 521 | 522 | ansi-escapes@^4.3.0: 523 | version "4.3.2" 524 | resolved "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 525 | integrity sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4= 526 | dependencies: 527 | type-fest "^0.21.3" 528 | 529 | ansi-regex@^5.0.1: 530 | version "5.0.1" 531 | resolved "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz?cache=0&sync_timestamp=1631634988487&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 532 | integrity sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ= 533 | 534 | ansi-regex@^6.0.1: 535 | version "6.0.1" 536 | resolved "https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz?cache=0&sync_timestamp=1631634988487&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" 537 | integrity sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo= 538 | 539 | ansi-styles@^3.2.1: 540 | version "3.2.1" 541 | resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 542 | integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0= 543 | dependencies: 544 | color-convert "^1.9.0" 545 | 546 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 547 | version "4.3.0" 548 | resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 549 | integrity sha1-7dgDYornHATIWuegkG7a00tkiTc= 550 | dependencies: 551 | color-convert "^2.0.1" 552 | 553 | ansi-styles@^6.0.0: 554 | version "6.1.0" 555 | resolved "https://registry.npmmirror.com/ansi-styles/download/ansi-styles-6.1.0.tgz#87313c102b8118abd57371afab34618bf7350ed3" 556 | integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ== 557 | 558 | argparse@^2.0.1: 559 | version "2.0.1" 560 | resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 561 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 562 | 563 | array-includes@^3.1.5: 564 | version "3.1.5" 565 | resolved "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 566 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 567 | dependencies: 568 | call-bind "^1.0.2" 569 | define-properties "^1.1.4" 570 | es-abstract "^1.19.5" 571 | get-intrinsic "^1.1.1" 572 | is-string "^1.0.7" 573 | 574 | array.prototype.flatmap@^1.3.0: 575 | version "1.3.0" 576 | resolved "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 577 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 578 | dependencies: 579 | call-bind "^1.0.2" 580 | define-properties "^1.1.3" 581 | es-abstract "^1.19.2" 582 | es-shim-unscopables "^1.0.0" 583 | 584 | astral-regex@^2.0.0: 585 | version "2.0.0" 586 | resolved "https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 587 | integrity sha1-SDFDxWeu7UeFdZwIZXhtx319LjE= 588 | 589 | "babel-plugin-styled-components@>= 1.12.0": 590 | version "1.13.2" 591 | resolved "https://registry.nlark.com/babel-plugin-styled-components/download/babel-plugin-styled-components-1.13.2.tgz#ebe0e6deff51d7f93fceda1819e9b96aeb88278d" 592 | integrity sha1-6+Dm3v9R1/k/ztoYGem5auuIJ40= 593 | dependencies: 594 | "@babel/helper-annotate-as-pure" "^7.0.0" 595 | "@babel/helper-module-imports" "^7.0.0" 596 | babel-plugin-syntax-jsx "^6.18.0" 597 | lodash "^4.17.11" 598 | 599 | babel-plugin-syntax-jsx@^6.18.0: 600 | version "6.18.0" 601 | resolved "https://registry.nlark.com/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz?cache=0&sync_timestamp=1624608054608&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-syntax-jsx%2Fdownload%2Fbabel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 602 | integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= 603 | 604 | balanced-match@^1.0.0: 605 | version "1.0.2" 606 | resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 607 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 608 | 609 | brace-expansion@^1.1.7: 610 | version "1.1.11" 611 | resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 612 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 613 | dependencies: 614 | balanced-match "^1.0.0" 615 | concat-map "0.0.1" 616 | 617 | braces@^3.0.2: 618 | version "3.0.2" 619 | resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 620 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 621 | dependencies: 622 | fill-range "^7.0.1" 623 | 624 | browserslist@^4.21.3: 625 | version "4.21.4" 626 | resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" 627 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 628 | dependencies: 629 | caniuse-lite "^1.0.30001400" 630 | electron-to-chromium "^1.4.251" 631 | node-releases "^2.0.6" 632 | update-browserslist-db "^1.0.9" 633 | 634 | call-bind@^1.0.0, call-bind@^1.0.2: 635 | version "1.0.2" 636 | resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 637 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 638 | dependencies: 639 | function-bind "^1.1.1" 640 | get-intrinsic "^1.0.2" 641 | 642 | callsites@^3.0.0: 643 | version "3.1.0" 644 | resolved "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz?cache=0&sync_timestamp=1628464907898&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcallsites%2Fdownload%2Fcallsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 645 | integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M= 646 | 647 | camelize@^1.0.0: 648 | version "1.0.0" 649 | resolved "https://registry.nlark.com/camelize/download/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" 650 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= 651 | 652 | caniuse-lite@^1.0.30001400: 653 | version "1.0.30001422" 654 | resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001422.tgz#f2d7c6202c49a8359e6e35add894d88ef93edba1" 655 | integrity sha512-hSesn02u1QacQHhaxl/kNMZwqVG35Sz/8DgvmgedxSH8z9UUpcDYSPYgsj3x5dQNRcNp6BwpSfQfVzYUTm+fog== 656 | 657 | chalk@^2.0.0: 658 | version "2.4.2" 659 | resolved "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1627646614989&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 660 | integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= 661 | dependencies: 662 | ansi-styles "^3.2.1" 663 | escape-string-regexp "^1.0.5" 664 | supports-color "^5.3.0" 665 | 666 | chalk@^4.0.0: 667 | version "4.1.2" 668 | resolved "https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz?cache=0&sync_timestamp=1627646614989&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 669 | integrity sha1-qsTit3NKdAhnrrFr8CqtVWoeegE= 670 | dependencies: 671 | ansi-styles "^4.1.0" 672 | supports-color "^7.1.0" 673 | 674 | classnames@^2.2.5: 675 | version "2.3.1" 676 | resolved "https://registry.nlark.com/classnames/download/classnames-2.3.1.tgz?cache=0&sync_timestamp=1624608002819&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclassnames%2Fdownload%2Fclassnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" 677 | integrity sha1-38+jiR4wbsHa0QXQ6I9EF7hTXo4= 678 | 679 | clean-stack@^2.0.0: 680 | version "2.2.0" 681 | resolved "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 682 | integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs= 683 | 684 | cli-cursor@^3.1.0: 685 | version "3.1.0" 686 | resolved "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz?cache=0&sync_timestamp=1629748329424&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcli-cursor%2Fdownload%2Fcli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 687 | integrity sha1-JkMFp65JDR0Dvwybp8kl0XU68wc= 688 | dependencies: 689 | restore-cursor "^3.1.0" 690 | 691 | cli-truncate@^2.1.0: 692 | version "2.1.0" 693 | resolved "https://registry.nlark.com/cli-truncate/download/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 694 | integrity sha1-w54ovwXtzeW+O5iZKiLe7Vork8c= 695 | dependencies: 696 | slice-ansi "^3.0.0" 697 | string-width "^4.2.0" 698 | 699 | cli-truncate@^3.1.0: 700 | version "3.1.0" 701 | resolved "https://registry.npmmirror.com/cli-truncate/download/cli-truncate-3.1.0.tgz?cache=0&sync_timestamp=1633786428528&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcli-truncate%2Fdownload%2Fcli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" 702 | integrity sha1-PyOrElNePXPoObtD5zyd5IfbE4k= 703 | dependencies: 704 | slice-ansi "^5.0.0" 705 | string-width "^5.0.0" 706 | 707 | color-convert@^1.9.0: 708 | version "1.9.3" 709 | resolved "https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1624607968569&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 710 | integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg= 711 | dependencies: 712 | color-name "1.1.3" 713 | 714 | color-convert@^2.0.1: 715 | version "2.0.1" 716 | resolved "https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1624607968569&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 717 | integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM= 718 | dependencies: 719 | color-name "~1.1.4" 720 | 721 | color-name@1.1.3: 722 | version "1.1.3" 723 | resolved "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 724 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 725 | 726 | color-name@~1.1.4: 727 | version "1.1.4" 728 | resolved "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 729 | integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI= 730 | 731 | colorette@^2.0.16: 732 | version "2.0.16" 733 | resolved "https://registry.npmmirror.com/colorette/download/colorette-2.0.16.tgz?cache=0&sync_timestamp=1633673060735&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcolorette%2Fdownload%2Fcolorette-2.0.16.tgz#713b9af84fdb000139f04546bd4a93f62a5085da" 734 | integrity sha1-cTua+E/bAAE58EVGvUqT9ipQhdo= 735 | 736 | colorette@^2.0.17: 737 | version "2.0.19" 738 | resolved "https://registry.npmmirror.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" 739 | integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== 740 | 741 | commander@^9.3.0: 742 | version "9.4.1" 743 | resolved "https://registry.npmmirror.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd" 744 | integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw== 745 | 746 | concat-map@0.0.1: 747 | version "0.0.1" 748 | resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 749 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 750 | 751 | convert-source-map@^1.7.0: 752 | version "1.8.0" 753 | resolved "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz?cache=0&sync_timestamp=1624608042394&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconvert-source-map%2Fdownload%2Fconvert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 754 | integrity sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k= 755 | dependencies: 756 | safe-buffer "~5.1.1" 757 | 758 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 759 | version "7.0.3" 760 | resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 761 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 762 | dependencies: 763 | path-key "^3.1.0" 764 | shebang-command "^2.0.0" 765 | which "^2.0.1" 766 | 767 | css-color-keywords@^1.0.0: 768 | version "1.0.0" 769 | resolved "https://registry.nlark.com/css-color-keywords/download/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" 770 | integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= 771 | 772 | css-to-react-native@^3.0.0: 773 | version "3.0.0" 774 | resolved "https://registry.nlark.com/css-to-react-native/download/css-to-react-native-3.0.0.tgz?cache=0&sync_timestamp=1624608042399&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-to-react-native%2Fdownload%2Fcss-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" 775 | integrity sha1-YtvmeAcqgkpom8/uAR/JbgKn11Y= 776 | dependencies: 777 | camelize "^1.0.0" 778 | css-color-keywords "^1.0.0" 779 | postcss-value-parser "^4.0.2" 780 | 781 | debug@^2.1.3: 782 | version "2.6.9" 783 | resolved "https://registry.nlark.com/debug/download/debug-2.6.9.tgz?cache=0&sync_timestamp=1625374653719&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 784 | integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8= 785 | dependencies: 786 | ms "2.0.0" 787 | 788 | debug@^4.1.0: 789 | version "4.3.2" 790 | resolved "https://registry.nlark.com/debug/download/debug-4.3.2.tgz?cache=0&sync_timestamp=1625374653719&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 791 | integrity sha1-8KScGKyHeeMdSgxgKd+3aHPHQos= 792 | dependencies: 793 | ms "2.1.2" 794 | 795 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 796 | version "4.3.4" 797 | resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 798 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 799 | dependencies: 800 | ms "2.1.2" 801 | 802 | deep-is@^0.1.3: 803 | version "0.1.4" 804 | resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 805 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 806 | 807 | define-properties@^1.1.3, define-properties@^1.1.4: 808 | version "1.1.4" 809 | resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 810 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 811 | dependencies: 812 | has-property-descriptors "^1.0.0" 813 | object-keys "^1.1.1" 814 | 815 | doctrine@^2.1.0: 816 | version "2.1.0" 817 | resolved "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 818 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 819 | dependencies: 820 | esutils "^2.0.2" 821 | 822 | doctrine@^3.0.0: 823 | version "3.0.0" 824 | resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 825 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 826 | dependencies: 827 | esutils "^2.0.2" 828 | 829 | eastasianwidth@^0.2.0: 830 | version "0.2.0" 831 | resolved "https://registry.nlark.com/eastasianwidth/download/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" 832 | integrity sha1-aWzi7Aqg5uqTo5f/zySqeEDIJ8s= 833 | 834 | electron-to-chromium@^1.4.251: 835 | version "1.4.284" 836 | resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" 837 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== 838 | 839 | emoji-regex@^8.0.0: 840 | version "8.0.0" 841 | resolved "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz?cache=0&sync_timestamp=1632751408145&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Femoji-regex%2Fdownload%2Femoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 842 | integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc= 843 | 844 | emoji-regex@^9.2.2: 845 | version "9.2.2" 846 | resolved "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-9.2.2.tgz?cache=0&sync_timestamp=1632751408145&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Femoji-regex%2Fdownload%2Femoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 847 | integrity sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI= 848 | 849 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 850 | version "1.20.4" 851 | resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" 852 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== 853 | dependencies: 854 | call-bind "^1.0.2" 855 | es-to-primitive "^1.2.1" 856 | function-bind "^1.1.1" 857 | function.prototype.name "^1.1.5" 858 | get-intrinsic "^1.1.3" 859 | get-symbol-description "^1.0.0" 860 | has "^1.0.3" 861 | has-property-descriptors "^1.0.0" 862 | has-symbols "^1.0.3" 863 | internal-slot "^1.0.3" 864 | is-callable "^1.2.7" 865 | is-negative-zero "^2.0.2" 866 | is-regex "^1.1.4" 867 | is-shared-array-buffer "^1.0.2" 868 | is-string "^1.0.7" 869 | is-weakref "^1.0.2" 870 | object-inspect "^1.12.2" 871 | object-keys "^1.1.1" 872 | object.assign "^4.1.4" 873 | regexp.prototype.flags "^1.4.3" 874 | safe-regex-test "^1.0.0" 875 | string.prototype.trimend "^1.0.5" 876 | string.prototype.trimstart "^1.0.5" 877 | unbox-primitive "^1.0.2" 878 | 879 | es-shim-unscopables@^1.0.0: 880 | version "1.0.0" 881 | resolved "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 882 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 883 | dependencies: 884 | has "^1.0.3" 885 | 886 | es-to-primitive@^1.2.1: 887 | version "1.2.1" 888 | resolved "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 889 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 890 | dependencies: 891 | is-callable "^1.1.4" 892 | is-date-object "^1.0.1" 893 | is-symbol "^1.0.2" 894 | 895 | esbuild-android-64@0.15.12: 896 | version "0.15.12" 897 | resolved "https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.15.12.tgz#5e8151d5f0a748c71a7fbea8cee844ccf008e6fc" 898 | integrity sha512-MJKXwvPY9g0rGps0+U65HlTsM1wUs9lbjt5CU19RESqycGFDRijMDQsh68MtbzkqWSRdEtiKS1mtPzKneaAI0Q== 899 | 900 | esbuild-android-arm64@0.15.12: 901 | version "0.15.12" 902 | resolved "https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.12.tgz#5ee72a6baa444bc96ffcb472a3ba4aba2cc80666" 903 | integrity sha512-Hc9SEcZbIMhhLcvhr1DH+lrrec9SFTiRzfJ7EGSBZiiw994gfkVV6vG0sLWqQQ6DD7V4+OggB+Hn0IRUdDUqvA== 904 | 905 | esbuild-darwin-64@0.15.12: 906 | version "0.15.12" 907 | resolved "https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.12.tgz#70047007e093fa1b3ba7ef86f9b3fa63db51fe25" 908 | integrity sha512-qkmqrTVYPFiePt5qFjP8w/S+GIUMbt6k8qmiPraECUWfPptaPJUGkCKrWEfYFRWB7bY23FV95rhvPyh/KARP8Q== 909 | 910 | esbuild-darwin-arm64@0.15.12: 911 | version "0.15.12" 912 | resolved "https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.12.tgz#41c951f23d9a70539bcca552bae6e5196696ae04" 913 | integrity sha512-z4zPX02tQ41kcXMyN3c/GfZpIjKoI/BzHrdKUwhC/Ki5BAhWv59A9M8H+iqaRbwpzYrYidTybBwiZAIWCLJAkw== 914 | 915 | esbuild-freebsd-64@0.15.12: 916 | version "0.15.12" 917 | resolved "https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.12.tgz#a761b5afd12bbedb7d56c612e9cfa4d2711f33f0" 918 | integrity sha512-XFL7gKMCKXLDiAiBjhLG0XECliXaRLTZh6hsyzqUqPUf/PY4C6EJDTKIeqqPKXaVJ8+fzNek88285krSz1QECw== 919 | 920 | esbuild-freebsd-arm64@0.15.12: 921 | version "0.15.12" 922 | resolved "https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.12.tgz#6b0839d4d58deabc6cbd96276eb8cbf94f7f335e" 923 | integrity sha512-jwEIu5UCUk6TjiG1X+KQnCGISI+ILnXzIzt9yDVrhjug2fkYzlLbl0K43q96Q3KB66v6N1UFF0r5Ks4Xo7i72g== 924 | 925 | esbuild-linux-32@0.15.12: 926 | version "0.15.12" 927 | resolved "https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.15.12.tgz#bd50bfe22514d434d97d5150977496e2631345b4" 928 | integrity sha512-uSQuSEyF1kVzGzuIr4XM+v7TPKxHjBnLcwv2yPyCz8riV8VUCnO/C4BF3w5dHiVpCd5Z1cebBtZJNlC4anWpwA== 929 | 930 | esbuild-linux-64@0.15.12: 931 | version "0.15.12" 932 | resolved "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.15.12.tgz#074bb2b194bf658245f8490f29c01ffcdfa8c931" 933 | integrity sha512-QcgCKb7zfJxqT9o5z9ZUeGH1k8N6iX1Y7VNsEi5F9+HzN1OIx7ESxtQXDN9jbeUSPiRH1n9cw6gFT3H4qbdvcA== 934 | 935 | esbuild-linux-arm64@0.15.12: 936 | version "0.15.12" 937 | resolved "https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.12.tgz#3bf789c4396dc032875a122988efd6f3733f28f5" 938 | integrity sha512-HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ== 939 | 940 | esbuild-linux-arm@0.15.12: 941 | version "0.15.12" 942 | resolved "https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.12.tgz#b91b5a8d470053f6c2c9c8a5e67ec10a71fe4a67" 943 | integrity sha512-Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A== 944 | 945 | esbuild-linux-mips64le@0.15.12: 946 | version "0.15.12" 947 | resolved "https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.12.tgz#2fb54099ada3c950a7536dfcba46172c61e580e2" 948 | integrity sha512-Qol3+AvivngUZkTVFgLpb0H6DT+N5/zM3V1YgTkryPYFeUvuT5JFNDR3ZiS6LxhyF8EE+fiNtzwlPqMDqVcc6A== 949 | 950 | esbuild-linux-ppc64le@0.15.12: 951 | version "0.15.12" 952 | resolved "https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.12.tgz#9e3b8c09825fb27886249dfb3142a750df29a1b7" 953 | integrity sha512-4D8qUCo+CFKaR0cGXtGyVsOI7w7k93Qxb3KFXWr75An0DHamYzq8lt7TNZKoOq/Gh8c40/aKaxvcZnTgQ0TJNg== 954 | 955 | esbuild-linux-riscv64@0.15.12: 956 | version "0.15.12" 957 | resolved "https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.12.tgz#923d0f5b6e12ee0d1fe116b08e4ae4478fe40693" 958 | integrity sha512-G9w6NcuuCI6TUUxe6ka0enjZHDnSVK8bO+1qDhMOCtl7Tr78CcZilJj8SGLN00zO5iIlwNRZKHjdMpfFgNn1VA== 959 | 960 | esbuild-linux-s390x@0.15.12: 961 | version "0.15.12" 962 | resolved "https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.12.tgz#3b1620220482b96266a0c6d9d471d451a1eab86f" 963 | integrity sha512-Lt6BDnuXbXeqSlVuuUM5z18GkJAZf3ERskGZbAWjrQoi9xbEIsj/hEzVnSAFLtkfLuy2DE4RwTcX02tZFunXww== 964 | 965 | esbuild-netbsd-64@0.15.12: 966 | version "0.15.12" 967 | resolved "https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.12.tgz#276730f80da646859b1af5a740e7802d8cd73e42" 968 | integrity sha512-jlUxCiHO1dsqoURZDQts+HK100o0hXfi4t54MNRMCAqKGAV33JCVvMplLAa2FwviSojT/5ZG5HUfG3gstwAG8w== 969 | 970 | esbuild-openbsd-64@0.15.12: 971 | version "0.15.12" 972 | resolved "https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.12.tgz#bd0eea1dd2ca0722ed489d88c26714034429f8ae" 973 | integrity sha512-1o1uAfRTMIWNOmpf8v7iudND0L6zRBYSH45sofCZywrcf7NcZA+c7aFsS1YryU+yN7aRppTqdUK1PgbZVaB1Dw== 974 | 975 | esbuild-sunos-64@0.15.12: 976 | version "0.15.12" 977 | resolved "https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.12.tgz#5e56bf9eef3b2d92360d6d29dcde7722acbecc9e" 978 | integrity sha512-nkl251DpoWoBO9Eq9aFdoIt2yYmp4I3kvQjba3jFKlMXuqQ9A4q+JaqdkCouG3DHgAGnzshzaGu6xofGcXyPXg== 979 | 980 | esbuild-windows-32@0.15.12: 981 | version "0.15.12" 982 | resolved "https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.15.12.tgz#a4f1a301c1a2fa7701fcd4b91ef9d2620cf293d0" 983 | integrity sha512-WlGeBZHgPC00O08luIp5B2SP4cNCp/PcS+3Pcg31kdcJPopHxLkdCXtadLU9J82LCfw4TVls21A6lilQ9mzHrw== 984 | 985 | esbuild-windows-64@0.15.12: 986 | version "0.15.12" 987 | resolved "https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.15.12.tgz#bc2b467541744d653be4fe64eaa9b0dbbf8e07f6" 988 | integrity sha512-VActO3WnWZSN//xjSfbiGOSyC+wkZtI8I4KlgrTo5oHJM6z3MZZBCuFaZHd8hzf/W9KPhF0lY8OqlmWC9HO5AA== 989 | 990 | esbuild-windows-arm64@0.15.12: 991 | version "0.15.12" 992 | resolved "https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.12.tgz#9a7266404334a86be800957eaee9aef94c3df328" 993 | integrity sha512-Of3MIacva1OK/m4zCNIvBfz8VVROBmQT+gRX6pFTLPngFYcj6TFH/12VveAqq1k9VB2l28EoVMNMUCcmsfwyuA== 994 | 995 | esbuild@^0.15.9: 996 | version "0.15.12" 997 | resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.15.12.tgz#6c8e22d6d3b7430d165c33848298d3fc9a1f251c" 998 | integrity sha512-PcT+/wyDqJQsRVhaE9uX/Oq4XLrFh0ce/bs2TJh4CSaw9xuvI+xFrH2nAYOADbhQjUgAhNWC5LKoUsakm4dxng== 999 | optionalDependencies: 1000 | "@esbuild/android-arm" "0.15.12" 1001 | "@esbuild/linux-loong64" "0.15.12" 1002 | esbuild-android-64 "0.15.12" 1003 | esbuild-android-arm64 "0.15.12" 1004 | esbuild-darwin-64 "0.15.12" 1005 | esbuild-darwin-arm64 "0.15.12" 1006 | esbuild-freebsd-64 "0.15.12" 1007 | esbuild-freebsd-arm64 "0.15.12" 1008 | esbuild-linux-32 "0.15.12" 1009 | esbuild-linux-64 "0.15.12" 1010 | esbuild-linux-arm "0.15.12" 1011 | esbuild-linux-arm64 "0.15.12" 1012 | esbuild-linux-mips64le "0.15.12" 1013 | esbuild-linux-ppc64le "0.15.12" 1014 | esbuild-linux-riscv64 "0.15.12" 1015 | esbuild-linux-s390x "0.15.12" 1016 | esbuild-netbsd-64 "0.15.12" 1017 | esbuild-openbsd-64 "0.15.12" 1018 | esbuild-sunos-64 "0.15.12" 1019 | esbuild-windows-32 "0.15.12" 1020 | esbuild-windows-64 "0.15.12" 1021 | esbuild-windows-arm64 "0.15.12" 1022 | 1023 | escalade@^3.1.1: 1024 | version "3.1.1" 1025 | resolved "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1026 | integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA= 1027 | 1028 | escape-string-regexp@^1.0.5: 1029 | version "1.0.5" 1030 | resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1031 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1032 | 1033 | escape-string-regexp@^4.0.0: 1034 | version "4.0.0" 1035 | resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1036 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1037 | 1038 | eslint-config-prettier@^8.5.0: 1039 | version "8.5.0" 1040 | resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" 1041 | integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== 1042 | 1043 | eslint-plugin-react-hooks@^4.6.0: 1044 | version "4.6.0" 1045 | resolved "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 1046 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 1047 | 1048 | eslint-plugin-react@^7.31.10: 1049 | version "7.31.10" 1050 | resolved "https://registry.npmmirror.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" 1051 | integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== 1052 | dependencies: 1053 | array-includes "^3.1.5" 1054 | array.prototype.flatmap "^1.3.0" 1055 | doctrine "^2.1.0" 1056 | estraverse "^5.3.0" 1057 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1058 | minimatch "^3.1.2" 1059 | object.entries "^1.1.5" 1060 | object.fromentries "^2.0.5" 1061 | object.hasown "^1.1.1" 1062 | object.values "^1.1.5" 1063 | prop-types "^15.8.1" 1064 | resolve "^2.0.0-next.3" 1065 | semver "^6.3.0" 1066 | string.prototype.matchall "^4.0.7" 1067 | 1068 | eslint-scope@^7.1.1: 1069 | version "7.1.1" 1070 | resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 1071 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 1072 | dependencies: 1073 | esrecurse "^4.3.0" 1074 | estraverse "^5.2.0" 1075 | 1076 | eslint-utils@^3.0.0: 1077 | version "3.0.0" 1078 | resolved "https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 1079 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 1080 | dependencies: 1081 | eslint-visitor-keys "^2.0.0" 1082 | 1083 | eslint-visitor-keys@^2.0.0: 1084 | version "2.1.0" 1085 | resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 1086 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 1087 | 1088 | eslint-visitor-keys@^3.3.0: 1089 | version "3.3.0" 1090 | resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 1091 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 1092 | 1093 | eslint@^8.26.0: 1094 | version "8.26.0" 1095 | resolved "https://registry.npmmirror.com/eslint/-/eslint-8.26.0.tgz#2bcc8836e6c424c4ac26a5674a70d44d84f2181d" 1096 | integrity sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== 1097 | dependencies: 1098 | "@eslint/eslintrc" "^1.3.3" 1099 | "@humanwhocodes/config-array" "^0.11.6" 1100 | "@humanwhocodes/module-importer" "^1.0.1" 1101 | "@nodelib/fs.walk" "^1.2.8" 1102 | ajv "^6.10.0" 1103 | chalk "^4.0.0" 1104 | cross-spawn "^7.0.2" 1105 | debug "^4.3.2" 1106 | doctrine "^3.0.0" 1107 | escape-string-regexp "^4.0.0" 1108 | eslint-scope "^7.1.1" 1109 | eslint-utils "^3.0.0" 1110 | eslint-visitor-keys "^3.3.0" 1111 | espree "^9.4.0" 1112 | esquery "^1.4.0" 1113 | esutils "^2.0.2" 1114 | fast-deep-equal "^3.1.3" 1115 | file-entry-cache "^6.0.1" 1116 | find-up "^5.0.0" 1117 | glob-parent "^6.0.2" 1118 | globals "^13.15.0" 1119 | grapheme-splitter "^1.0.4" 1120 | ignore "^5.2.0" 1121 | import-fresh "^3.0.0" 1122 | imurmurhash "^0.1.4" 1123 | is-glob "^4.0.0" 1124 | is-path-inside "^3.0.3" 1125 | js-sdsl "^4.1.4" 1126 | js-yaml "^4.1.0" 1127 | json-stable-stringify-without-jsonify "^1.0.1" 1128 | levn "^0.4.1" 1129 | lodash.merge "^4.6.2" 1130 | minimatch "^3.1.2" 1131 | natural-compare "^1.4.0" 1132 | optionator "^0.9.1" 1133 | regexpp "^3.2.0" 1134 | strip-ansi "^6.0.1" 1135 | strip-json-comments "^3.1.0" 1136 | text-table "^0.2.0" 1137 | 1138 | espree@^9.4.0: 1139 | version "9.4.0" 1140 | resolved "https://registry.npmmirror.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" 1141 | integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== 1142 | dependencies: 1143 | acorn "^8.8.0" 1144 | acorn-jsx "^5.3.2" 1145 | eslint-visitor-keys "^3.3.0" 1146 | 1147 | esquery@^1.4.0: 1148 | version "1.4.0" 1149 | resolved "https://registry.npmmirror.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 1150 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1151 | dependencies: 1152 | estraverse "^5.1.0" 1153 | 1154 | esrecurse@^4.3.0: 1155 | version "4.3.0" 1156 | resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1157 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1158 | dependencies: 1159 | estraverse "^5.2.0" 1160 | 1161 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1162 | version "5.3.0" 1163 | resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1164 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1165 | 1166 | esutils@^2.0.2: 1167 | version "2.0.3" 1168 | resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1169 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1170 | 1171 | execa@^6.1.0: 1172 | version "6.1.0" 1173 | resolved "https://registry.npmmirror.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20" 1174 | integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA== 1175 | dependencies: 1176 | cross-spawn "^7.0.3" 1177 | get-stream "^6.0.1" 1178 | human-signals "^3.0.1" 1179 | is-stream "^3.0.0" 1180 | merge-stream "^2.0.0" 1181 | npm-run-path "^5.1.0" 1182 | onetime "^6.0.0" 1183 | signal-exit "^3.0.7" 1184 | strip-final-newline "^3.0.0" 1185 | 1186 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1187 | version "3.1.3" 1188 | resolved "https://registry.nlark.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1624607945641&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1189 | integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU= 1190 | 1191 | fast-json-stable-stringify@^2.0.0: 1192 | version "2.1.0" 1193 | resolved "https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1194 | integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM= 1195 | 1196 | fast-levenshtein@^2.0.6: 1197 | version "2.0.6" 1198 | resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1199 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1200 | 1201 | fastq@^1.6.0: 1202 | version "1.13.0" 1203 | resolved "https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 1204 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 1205 | dependencies: 1206 | reusify "^1.0.4" 1207 | 1208 | file-entry-cache@^6.0.1: 1209 | version "6.0.1" 1210 | resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1211 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1212 | dependencies: 1213 | flat-cache "^3.0.4" 1214 | 1215 | fill-range@^7.0.1: 1216 | version "7.0.1" 1217 | resolved "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1218 | integrity sha1-GRmmp8df44ssfHflGYU12prN2kA= 1219 | dependencies: 1220 | to-regex-range "^5.0.1" 1221 | 1222 | find-up@^5.0.0: 1223 | version "5.0.0" 1224 | resolved "https://registry.npmmirror.com/find-up/download/find-up-5.0.0.tgz?cache=0&sync_timestamp=1632654190539&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1225 | integrity sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw= 1226 | dependencies: 1227 | locate-path "^6.0.0" 1228 | path-exists "^4.0.0" 1229 | 1230 | flat-cache@^3.0.4: 1231 | version "3.0.4" 1232 | resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1233 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1234 | dependencies: 1235 | flatted "^3.1.0" 1236 | rimraf "^3.0.2" 1237 | 1238 | flatted@^3.1.0: 1239 | version "3.2.7" 1240 | resolved "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 1241 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1242 | 1243 | fs.realpath@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1246 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1247 | 1248 | fsevents@~2.3.2: 1249 | version "2.3.2" 1250 | resolved "https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1251 | integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro= 1252 | 1253 | function-bind@^1.1.1: 1254 | version "1.1.1" 1255 | resolved "https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1256 | integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= 1257 | 1258 | function.prototype.name@^1.1.5: 1259 | version "1.1.5" 1260 | resolved "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1261 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1262 | dependencies: 1263 | call-bind "^1.0.2" 1264 | define-properties "^1.1.3" 1265 | es-abstract "^1.19.0" 1266 | functions-have-names "^1.2.2" 1267 | 1268 | functions-have-names@^1.2.2: 1269 | version "1.2.3" 1270 | resolved "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1271 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1272 | 1273 | gensync@^1.0.0-beta.2: 1274 | version "1.0.0-beta.2" 1275 | resolved "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1276 | integrity sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA= 1277 | 1278 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 1279 | version "1.1.3" 1280 | resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 1281 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1282 | dependencies: 1283 | function-bind "^1.1.1" 1284 | has "^1.0.3" 1285 | has-symbols "^1.0.3" 1286 | 1287 | get-stream@^6.0.1: 1288 | version "6.0.1" 1289 | resolved "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1290 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1291 | 1292 | get-symbol-description@^1.0.0: 1293 | version "1.0.0" 1294 | resolved "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1295 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1296 | dependencies: 1297 | call-bind "^1.0.2" 1298 | get-intrinsic "^1.1.1" 1299 | 1300 | github-buttons@^2.22.0: 1301 | version "2.22.0" 1302 | resolved "https://registry.npmmirror.com/github-buttons/-/github-buttons-2.22.0.tgz#b2669f8504ce5496ab37b7ce53e8ed01db9818bc" 1303 | integrity sha512-N5bk01s1WgK1FVtoeSUVkRkJpkaSu8yHMPcjye+PTa0jsRjMRNrYqVLgpUf2RA5Kvec05DfHYAT6/68fwkdqPw== 1304 | 1305 | glob-parent@^6.0.2: 1306 | version "6.0.2" 1307 | resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1308 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1309 | dependencies: 1310 | is-glob "^4.0.3" 1311 | 1312 | glob@^7.1.3: 1313 | version "7.2.3" 1314 | resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1315 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1316 | dependencies: 1317 | fs.realpath "^1.0.0" 1318 | inflight "^1.0.4" 1319 | inherits "2" 1320 | minimatch "^3.1.1" 1321 | once "^1.3.0" 1322 | path-is-absolute "^1.0.0" 1323 | 1324 | globals@^11.1.0: 1325 | version "11.12.0" 1326 | resolved "https://registry.nlark.com/globals/download/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1327 | integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4= 1328 | 1329 | globals@^13.15.0: 1330 | version "13.17.0" 1331 | resolved "https://registry.npmmirror.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" 1332 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== 1333 | dependencies: 1334 | type-fest "^0.20.2" 1335 | 1336 | grapheme-splitter@^1.0.4: 1337 | version "1.0.4" 1338 | resolved "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1339 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1340 | 1341 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1342 | version "1.0.2" 1343 | resolved "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1344 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1345 | 1346 | has-flag@^3.0.0: 1347 | version "3.0.0" 1348 | resolved "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz?cache=0&sync_timestamp=1626716578584&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-flag%2Fdownload%2Fhas-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1349 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1350 | 1351 | has-flag@^4.0.0: 1352 | version "4.0.0" 1353 | resolved "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz?cache=0&sync_timestamp=1626716578584&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-flag%2Fdownload%2Fhas-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1354 | integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s= 1355 | 1356 | has-property-descriptors@^1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1359 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1360 | dependencies: 1361 | get-intrinsic "^1.1.1" 1362 | 1363 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1364 | version "1.0.3" 1365 | resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1366 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1367 | 1368 | has-tostringtag@^1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1371 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1372 | dependencies: 1373 | has-symbols "^1.0.2" 1374 | 1375 | has@^1.0.3: 1376 | version "1.0.3" 1377 | resolved "https://registry.nlark.com/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1378 | integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= 1379 | dependencies: 1380 | function-bind "^1.1.1" 1381 | 1382 | hoist-non-react-statics@^3.0.0: 1383 | version "3.3.2" 1384 | resolved "https://registry.nlark.com/hoist-non-react-statics/download/hoist-non-react-statics-3.3.2.tgz?cache=0&sync_timestamp=1624608048300&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhoist-non-react-statics%2Fdownload%2Fhoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 1385 | integrity sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U= 1386 | dependencies: 1387 | react-is "^16.7.0" 1388 | 1389 | human-signals@^3.0.1: 1390 | version "3.0.1" 1391 | resolved "https://registry.npmmirror.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5" 1392 | integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ== 1393 | 1394 | husky@^8.0.1: 1395 | version "8.0.1" 1396 | resolved "https://registry.npmmirror.com/husky/-/husky-8.0.1.tgz#511cb3e57de3e3190514ae49ed50f6bc3f50b3e9" 1397 | integrity sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw== 1398 | 1399 | ignore@^5.2.0: 1400 | version "5.2.0" 1401 | resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1402 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1403 | 1404 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1405 | version "3.3.0" 1406 | resolved "https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1407 | integrity sha1-NxYsJfy566oublPVtNiM4X2eDCs= 1408 | dependencies: 1409 | parent-module "^1.0.0" 1410 | resolve-from "^4.0.0" 1411 | 1412 | imurmurhash@^0.1.4: 1413 | version "0.1.4" 1414 | resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1415 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1416 | 1417 | indent-string@^4.0.0: 1418 | version "4.0.0" 1419 | resolved "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1420 | integrity sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE= 1421 | 1422 | inflight@^1.0.4: 1423 | version "1.0.6" 1424 | resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1425 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1426 | dependencies: 1427 | once "^1.3.0" 1428 | wrappy "1" 1429 | 1430 | inherits@2: 1431 | version "2.0.4" 1432 | resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1433 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1434 | 1435 | internal-slot@^1.0.3: 1436 | version "1.0.3" 1437 | resolved "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1438 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1439 | dependencies: 1440 | get-intrinsic "^1.1.0" 1441 | has "^1.0.3" 1442 | side-channel "^1.0.4" 1443 | 1444 | is-bigint@^1.0.1: 1445 | version "1.0.4" 1446 | resolved "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1447 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1448 | dependencies: 1449 | has-bigints "^1.0.1" 1450 | 1451 | is-boolean-object@^1.1.0: 1452 | version "1.1.2" 1453 | resolved "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1454 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1455 | dependencies: 1456 | call-bind "^1.0.2" 1457 | has-tostringtag "^1.0.0" 1458 | 1459 | is-callable@^1.1.4, is-callable@^1.2.7: 1460 | version "1.2.7" 1461 | resolved "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1462 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1463 | 1464 | is-core-module@^2.9.0: 1465 | version "2.11.0" 1466 | resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1467 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1468 | dependencies: 1469 | has "^1.0.3" 1470 | 1471 | is-date-object@^1.0.1: 1472 | version "1.0.5" 1473 | resolved "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1474 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1475 | dependencies: 1476 | has-tostringtag "^1.0.0" 1477 | 1478 | is-extglob@^2.1.1: 1479 | version "2.1.1" 1480 | resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1481 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1482 | 1483 | is-fullwidth-code-point@^3.0.0: 1484 | version "3.0.0" 1485 | resolved "https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1486 | integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0= 1487 | 1488 | is-fullwidth-code-point@^4.0.0: 1489 | version "4.0.0" 1490 | resolved "https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" 1491 | integrity sha1-+uMWfHKedGP4RhzlErCApJJoqog= 1492 | 1493 | is-glob@^4.0.0, is-glob@^4.0.3: 1494 | version "4.0.3" 1495 | resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1496 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1497 | dependencies: 1498 | is-extglob "^2.1.1" 1499 | 1500 | is-negative-zero@^2.0.2: 1501 | version "2.0.2" 1502 | resolved "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1503 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1504 | 1505 | is-number-object@^1.0.4: 1506 | version "1.0.7" 1507 | resolved "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1508 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1509 | dependencies: 1510 | has-tostringtag "^1.0.0" 1511 | 1512 | is-number@^7.0.0: 1513 | version "7.0.0" 1514 | resolved "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1515 | integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss= 1516 | 1517 | is-path-inside@^3.0.3: 1518 | version "3.0.3" 1519 | resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1520 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1521 | 1522 | is-regex@^1.1.4: 1523 | version "1.1.4" 1524 | resolved "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1525 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1526 | dependencies: 1527 | call-bind "^1.0.2" 1528 | has-tostringtag "^1.0.0" 1529 | 1530 | is-shared-array-buffer@^1.0.2: 1531 | version "1.0.2" 1532 | resolved "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1533 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1534 | dependencies: 1535 | call-bind "^1.0.2" 1536 | 1537 | is-stream@^3.0.0: 1538 | version "3.0.0" 1539 | resolved "https://registry.npmmirror.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" 1540 | integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== 1541 | 1542 | is-string@^1.0.5, is-string@^1.0.7: 1543 | version "1.0.7" 1544 | resolved "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1545 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1546 | dependencies: 1547 | has-tostringtag "^1.0.0" 1548 | 1549 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1550 | version "1.0.4" 1551 | resolved "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1552 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1553 | dependencies: 1554 | has-symbols "^1.0.2" 1555 | 1556 | is-weakref@^1.0.2: 1557 | version "1.0.2" 1558 | resolved "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1559 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1560 | dependencies: 1561 | call-bind "^1.0.2" 1562 | 1563 | isexe@^2.0.0: 1564 | version "2.0.0" 1565 | resolved "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1566 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1567 | 1568 | js-sdsl@^4.1.4: 1569 | version "4.1.5" 1570 | resolved "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" 1571 | integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== 1572 | 1573 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1574 | version "4.0.0" 1575 | resolved "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1576 | integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= 1577 | 1578 | js-yaml@^4.1.0: 1579 | version "4.1.0" 1580 | resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1581 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1582 | dependencies: 1583 | argparse "^2.0.1" 1584 | 1585 | jsesc@^2.5.1: 1586 | version "2.5.2" 1587 | resolved "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1588 | integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q= 1589 | 1590 | json-schema-traverse@^0.4.1: 1591 | version "0.4.1" 1592 | resolved "https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1593 | integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA= 1594 | 1595 | json-stable-stringify-without-jsonify@^1.0.1: 1596 | version "1.0.1" 1597 | resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1598 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1599 | 1600 | json5@^2.2.1: 1601 | version "2.2.1" 1602 | resolved "https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 1603 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 1604 | 1605 | jsonp@^0.2.1: 1606 | version "0.2.1" 1607 | resolved "https://registry.nlark.com/jsonp/download/jsonp-0.2.1.tgz#a65b4fa0f10bda719a05441ea7b94c55f3e15bae" 1608 | integrity sha1-pltPoPEL2nGaBUQep7lMVfPhW64= 1609 | dependencies: 1610 | debug "^2.1.3" 1611 | 1612 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 1613 | version "3.3.3" 1614 | resolved "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1615 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1616 | dependencies: 1617 | array-includes "^3.1.5" 1618 | object.assign "^4.1.3" 1619 | 1620 | levn@^0.4.1: 1621 | version "0.4.1" 1622 | resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1623 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1624 | dependencies: 1625 | prelude-ls "^1.2.1" 1626 | type-check "~0.4.0" 1627 | 1628 | lilconfig@2.0.5: 1629 | version "2.0.5" 1630 | resolved "https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" 1631 | integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== 1632 | 1633 | lint-staged@^13.0.3: 1634 | version "13.0.3" 1635 | resolved "https://registry.npmmirror.com/lint-staged/-/lint-staged-13.0.3.tgz#d7cdf03a3830b327a2b63c6aec953d71d9dc48c6" 1636 | integrity sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug== 1637 | dependencies: 1638 | cli-truncate "^3.1.0" 1639 | colorette "^2.0.17" 1640 | commander "^9.3.0" 1641 | debug "^4.3.4" 1642 | execa "^6.1.0" 1643 | lilconfig "2.0.5" 1644 | listr2 "^4.0.5" 1645 | micromatch "^4.0.5" 1646 | normalize-path "^3.0.0" 1647 | object-inspect "^1.12.2" 1648 | pidtree "^0.6.0" 1649 | string-argv "^0.3.1" 1650 | yaml "^2.1.1" 1651 | 1652 | listr2@^4.0.5: 1653 | version "4.0.5" 1654 | resolved "https://registry.npmmirror.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5" 1655 | integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA== 1656 | dependencies: 1657 | cli-truncate "^2.1.0" 1658 | colorette "^2.0.16" 1659 | log-update "^4.0.0" 1660 | p-map "^4.0.0" 1661 | rfdc "^1.3.0" 1662 | rxjs "^7.5.5" 1663 | through "^2.3.8" 1664 | wrap-ansi "^7.0.0" 1665 | 1666 | locate-path@^6.0.0: 1667 | version "6.0.0" 1668 | resolved "https://registry.nlark.com/locate-path/download/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1669 | integrity sha1-VTIeswn+u8WcSAHZMackUqaB0oY= 1670 | dependencies: 1671 | p-locate "^5.0.0" 1672 | 1673 | lodash.merge@^4.6.2: 1674 | version "4.6.2" 1675 | resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1676 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1677 | 1678 | lodash@^4.17.11: 1679 | version "4.17.21" 1680 | resolved "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1681 | integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw= 1682 | 1683 | log-update@^4.0.0: 1684 | version "4.0.0" 1685 | resolved "https://registry.nlark.com/log-update/download/log-update-4.0.0.tgz?cache=0&sync_timestamp=1624608091579&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flog-update%2Fdownload%2Flog-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 1686 | integrity sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE= 1687 | dependencies: 1688 | ansi-escapes "^4.3.0" 1689 | cli-cursor "^3.1.0" 1690 | slice-ansi "^4.0.0" 1691 | wrap-ansi "^6.2.0" 1692 | 1693 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1694 | version "1.4.0" 1695 | resolved "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1696 | integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8= 1697 | dependencies: 1698 | js-tokens "^3.0.0 || ^4.0.0" 1699 | 1700 | magic-string@^0.26.2: 1701 | version "0.26.7" 1702 | resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz#caf7daf61b34e9982f8228c4527474dac8981d6f" 1703 | integrity sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow== 1704 | dependencies: 1705 | sourcemap-codec "^1.4.8" 1706 | 1707 | merge-stream@^2.0.0: 1708 | version "2.0.0" 1709 | resolved "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1710 | integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A= 1711 | 1712 | micromatch@^4.0.5: 1713 | version "4.0.5" 1714 | resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1715 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1716 | dependencies: 1717 | braces "^3.0.2" 1718 | picomatch "^2.3.1" 1719 | 1720 | mimic-fn@^2.1.0: 1721 | version "2.1.0" 1722 | resolved "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1723 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= 1724 | 1725 | mimic-fn@^4.0.0: 1726 | version "4.0.0" 1727 | resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" 1728 | integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== 1729 | 1730 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1731 | version "3.1.2" 1732 | resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1733 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1734 | dependencies: 1735 | brace-expansion "^1.1.7" 1736 | 1737 | ms@2.0.0: 1738 | version "2.0.0" 1739 | resolved "https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1740 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1741 | 1742 | ms@2.1.2: 1743 | version "2.1.2" 1744 | resolved "https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1745 | integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk= 1746 | 1747 | nanoid@^3.3.4: 1748 | version "3.3.4" 1749 | resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1750 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1751 | 1752 | natural-compare@^1.4.0: 1753 | version "1.4.0" 1754 | resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1755 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1756 | 1757 | node-releases@^2.0.6: 1758 | version "2.0.6" 1759 | resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" 1760 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== 1761 | 1762 | normalize-path@^3.0.0: 1763 | version "3.0.0" 1764 | resolved "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1765 | integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU= 1766 | 1767 | npm-run-path@^5.1.0: 1768 | version "5.1.0" 1769 | resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" 1770 | integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== 1771 | dependencies: 1772 | path-key "^4.0.0" 1773 | 1774 | object-assign@^4.1.1: 1775 | version "4.1.1" 1776 | resolved "https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1777 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1778 | 1779 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1780 | version "1.12.2" 1781 | resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1782 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1783 | 1784 | object-keys@^1.1.1: 1785 | version "1.1.1" 1786 | resolved "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1787 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1788 | 1789 | object.assign@^4.1.3, object.assign@^4.1.4: 1790 | version "4.1.4" 1791 | resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1792 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1793 | dependencies: 1794 | call-bind "^1.0.2" 1795 | define-properties "^1.1.4" 1796 | has-symbols "^1.0.3" 1797 | object-keys "^1.1.1" 1798 | 1799 | object.entries@^1.1.5: 1800 | version "1.1.5" 1801 | resolved "https://registry.npmmirror.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1802 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1803 | dependencies: 1804 | call-bind "^1.0.2" 1805 | define-properties "^1.1.3" 1806 | es-abstract "^1.19.1" 1807 | 1808 | object.fromentries@^2.0.5: 1809 | version "2.0.5" 1810 | resolved "https://registry.npmmirror.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1811 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1812 | dependencies: 1813 | call-bind "^1.0.2" 1814 | define-properties "^1.1.3" 1815 | es-abstract "^1.19.1" 1816 | 1817 | object.hasown@^1.1.1: 1818 | version "1.1.1" 1819 | resolved "https://registry.npmmirror.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 1820 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 1821 | dependencies: 1822 | define-properties "^1.1.4" 1823 | es-abstract "^1.19.5" 1824 | 1825 | object.values@^1.1.5: 1826 | version "1.1.5" 1827 | resolved "https://registry.npmmirror.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1828 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1829 | dependencies: 1830 | call-bind "^1.0.2" 1831 | define-properties "^1.1.3" 1832 | es-abstract "^1.19.1" 1833 | 1834 | once@^1.3.0: 1835 | version "1.4.0" 1836 | resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1837 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1838 | dependencies: 1839 | wrappy "1" 1840 | 1841 | onetime@^5.1.0: 1842 | version "5.1.2" 1843 | resolved "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1844 | integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4= 1845 | dependencies: 1846 | mimic-fn "^2.1.0" 1847 | 1848 | onetime@^6.0.0: 1849 | version "6.0.0" 1850 | resolved "https://registry.npmmirror.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" 1851 | integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== 1852 | dependencies: 1853 | mimic-fn "^4.0.0" 1854 | 1855 | optionator@^0.9.1: 1856 | version "0.9.1" 1857 | resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1858 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1859 | dependencies: 1860 | deep-is "^0.1.3" 1861 | fast-levenshtein "^2.0.6" 1862 | levn "^0.4.1" 1863 | prelude-ls "^1.2.1" 1864 | type-check "^0.4.0" 1865 | word-wrap "^1.2.3" 1866 | 1867 | p-limit@^3.0.2: 1868 | version "3.1.0" 1869 | resolved "https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz?cache=0&sync_timestamp=1628813055527&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1870 | integrity sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs= 1871 | dependencies: 1872 | yocto-queue "^0.1.0" 1873 | 1874 | p-locate@^5.0.0: 1875 | version "5.0.0" 1876 | resolved "https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz?cache=0&sync_timestamp=1629892708584&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-locate%2Fdownload%2Fp-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1877 | integrity sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ= 1878 | dependencies: 1879 | p-limit "^3.0.2" 1880 | 1881 | p-map@^4.0.0: 1882 | version "4.0.0" 1883 | resolved "https://registry.nlark.com/p-map/download/p-map-4.0.0.tgz?cache=0&sync_timestamp=1627082442645&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-map%2Fdownload%2Fp-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 1884 | integrity sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs= 1885 | dependencies: 1886 | aggregate-error "^3.0.0" 1887 | 1888 | parent-module@^1.0.0: 1889 | version "1.0.1" 1890 | resolved "https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz?cache=0&sync_timestamp=1633337513286&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparent-module%2Fdownload%2Fparent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1891 | integrity sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI= 1892 | dependencies: 1893 | callsites "^3.0.0" 1894 | 1895 | path-exists@^4.0.0: 1896 | version "4.0.0" 1897 | resolved "https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1898 | integrity sha1-UTvb4tO5XXdi6METfvoZXGxhtbM= 1899 | 1900 | path-is-absolute@^1.0.0: 1901 | version "1.0.1" 1902 | resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1903 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1904 | 1905 | path-key@^3.1.0: 1906 | version "3.1.1" 1907 | resolved "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1908 | integrity sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U= 1909 | 1910 | path-key@^4.0.0: 1911 | version "4.0.0" 1912 | resolved "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" 1913 | integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== 1914 | 1915 | path-parse@^1.0.7: 1916 | version "1.0.7" 1917 | resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1918 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1919 | 1920 | picocolors@^1.0.0: 1921 | version "1.0.0" 1922 | resolved "https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz?cache=0&sync_timestamp=1634093378416&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1923 | integrity sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw= 1924 | 1925 | picomatch@^2.3.1: 1926 | version "2.3.1" 1927 | resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1928 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1929 | 1930 | pidtree@^0.6.0: 1931 | version "0.6.0" 1932 | resolved "https://registry.npmmirror.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" 1933 | integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== 1934 | 1935 | postcss-value-parser@^4.0.2: 1936 | version "4.1.0" 1937 | resolved "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz?cache=0&sync_timestamp=1624607970310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 1938 | integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss= 1939 | 1940 | postcss@^8.4.16: 1941 | version "8.4.18" 1942 | resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.18.tgz#6d50046ea7d3d66a85e0e782074e7203bc7fbca2" 1943 | integrity sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== 1944 | dependencies: 1945 | nanoid "^3.3.4" 1946 | picocolors "^1.0.0" 1947 | source-map-js "^1.0.2" 1948 | 1949 | prelude-ls@^1.2.1: 1950 | version "1.2.1" 1951 | resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1952 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1953 | 1954 | prettier@^2.7.1: 1955 | version "2.7.1" 1956 | resolved "https://registry.npmmirror.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 1957 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 1958 | 1959 | prop-types@^15.8.1: 1960 | version "15.8.1" 1961 | resolved "https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1962 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1963 | dependencies: 1964 | loose-envify "^1.4.0" 1965 | object-assign "^4.1.1" 1966 | react-is "^16.13.1" 1967 | 1968 | punycode@^2.1.0: 1969 | version "2.1.1" 1970 | resolved "https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1971 | integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew= 1972 | 1973 | queue-microtask@^1.2.2: 1974 | version "1.2.3" 1975 | resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1976 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1977 | 1978 | react-dom@^18.2.0: 1979 | version "18.2.0" 1980 | resolved "https://registry.npmmirror.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1981 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1982 | dependencies: 1983 | loose-envify "^1.1.0" 1984 | scheduler "^0.23.0" 1985 | 1986 | react-github-btn@^1.4.0: 1987 | version "1.4.0" 1988 | resolved "https://registry.npmmirror.com/react-github-btn/-/react-github-btn-1.4.0.tgz#92654107e92658e60dd977c7a92b212f806da78d" 1989 | integrity sha512-lV4FYClAfjWnBfv0iNlJUGhamDgIq6TayD0kPZED6VzHWdpcHmPfsYOZ/CFwLfPv4Zp+F4m8QKTj0oy2HjiGXg== 1990 | dependencies: 1991 | github-buttons "^2.22.0" 1992 | 1993 | react-icons@^4.6.0: 1994 | version "4.6.0" 1995 | resolved "https://registry.npmmirror.com/react-icons/-/react-icons-4.6.0.tgz#f83eda179af5d02c047449a20b702c858653d397" 1996 | integrity sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g== 1997 | 1998 | react-is@^16.13.1, react-is@^16.7.0: 1999 | version "16.13.1" 2000 | resolved "https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz?cache=0&sync_timestamp=1633486723834&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Freact-is%2Fdownload%2Freact-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2001 | integrity sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ= 2002 | 2003 | react-refresh@^0.14.0: 2004 | version "0.14.0" 2005 | resolved "https://registry.npmmirror.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" 2006 | integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== 2007 | 2008 | react-share@^4.4.0: 2009 | version "4.4.0" 2010 | resolved "https://registry.nlark.com/react-share/download/react-share-4.4.0.tgz#cabbf2111d7a907a888ab4d89d08410329efd5ee" 2011 | integrity sha1-yrvyER16kHqIirTYnQhBAynv1e4= 2012 | dependencies: 2013 | classnames "^2.2.5" 2014 | jsonp "^0.2.1" 2015 | 2016 | react@^18.2.0: 2017 | version "18.2.0" 2018 | resolved "https://registry.npmmirror.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 2019 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2020 | dependencies: 2021 | loose-envify "^1.1.0" 2022 | 2023 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 2024 | version "1.4.3" 2025 | resolved "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 2026 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 2027 | dependencies: 2028 | call-bind "^1.0.2" 2029 | define-properties "^1.1.3" 2030 | functions-have-names "^1.2.2" 2031 | 2032 | regexpp@^3.2.0: 2033 | version "3.2.0" 2034 | resolved "https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 2035 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 2036 | 2037 | resolve-from@^4.0.0: 2038 | version "4.0.0" 2039 | resolved "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz?cache=0&sync_timestamp=1624607952279&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2040 | integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY= 2041 | 2042 | resolve@^1.22.1: 2043 | version "1.22.1" 2044 | resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 2045 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2046 | dependencies: 2047 | is-core-module "^2.9.0" 2048 | path-parse "^1.0.7" 2049 | supports-preserve-symlinks-flag "^1.0.0" 2050 | 2051 | resolve@^2.0.0-next.3: 2052 | version "2.0.0-next.4" 2053 | resolved "https://registry.npmmirror.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 2054 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 2055 | dependencies: 2056 | is-core-module "^2.9.0" 2057 | path-parse "^1.0.7" 2058 | supports-preserve-symlinks-flag "^1.0.0" 2059 | 2060 | restore-cursor@^3.1.0: 2061 | version "3.1.0" 2062 | resolved "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 2063 | integrity sha1-OfZ8VLOnpYzqUjbZXPADQjljH34= 2064 | dependencies: 2065 | onetime "^5.1.0" 2066 | signal-exit "^3.0.2" 2067 | 2068 | reusify@^1.0.4: 2069 | version "1.0.4" 2070 | resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2071 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2072 | 2073 | rfdc@^1.3.0: 2074 | version "1.3.0" 2075 | resolved "https://registry.nlark.com/rfdc/download/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" 2076 | integrity sha1-0LfEQasnINBdxM8m4ByJYx2doIs= 2077 | 2078 | rimraf@^3.0.2: 2079 | version "3.0.2" 2080 | resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2081 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2082 | dependencies: 2083 | glob "^7.1.3" 2084 | 2085 | rollup@~2.78.0: 2086 | version "2.78.1" 2087 | resolved "https://registry.npmmirror.com/rollup/-/rollup-2.78.1.tgz#52fe3934d9c83cb4f7c4cb5fb75d88591be8648f" 2088 | integrity sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg== 2089 | optionalDependencies: 2090 | fsevents "~2.3.2" 2091 | 2092 | run-parallel@^1.1.9: 2093 | version "1.2.0" 2094 | resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2095 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2096 | dependencies: 2097 | queue-microtask "^1.2.2" 2098 | 2099 | rxjs@^7.5.5: 2100 | version "7.5.7" 2101 | resolved "https://registry.npmmirror.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39" 2102 | integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA== 2103 | dependencies: 2104 | tslib "^2.1.0" 2105 | 2106 | safe-buffer@~5.1.1: 2107 | version "5.1.2" 2108 | resolved "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2109 | integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= 2110 | 2111 | safe-regex-test@^1.0.0: 2112 | version "1.0.0" 2113 | resolved "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 2114 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 2115 | dependencies: 2116 | call-bind "^1.0.2" 2117 | get-intrinsic "^1.1.3" 2118 | is-regex "^1.1.4" 2119 | 2120 | scheduler@^0.23.0: 2121 | version "0.23.0" 2122 | resolved "https://registry.npmmirror.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 2123 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2124 | dependencies: 2125 | loose-envify "^1.1.0" 2126 | 2127 | semver@^6.3.0: 2128 | version "6.3.0" 2129 | resolved "https://registry.nlark.com/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1624607961409&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2130 | integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0= 2131 | 2132 | shallowequal@^1.1.0: 2133 | version "1.1.0" 2134 | resolved "https://registry.nlark.com/shallowequal/download/shallowequal-1.1.0.tgz?cache=0&sync_timestamp=1624608058307&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshallowequal%2Fdownload%2Fshallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" 2135 | integrity sha1-GI1SHelbkIdAT9TctosT3wrk5/g= 2136 | 2137 | shebang-command@^2.0.0: 2138 | version "2.0.0" 2139 | resolved "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2140 | integrity sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo= 2141 | dependencies: 2142 | shebang-regex "^3.0.0" 2143 | 2144 | shebang-regex@^3.0.0: 2145 | version "3.0.0" 2146 | resolved "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz?cache=0&sync_timestamp=1628896660639&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshebang-regex%2Fdownload%2Fshebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2147 | integrity sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI= 2148 | 2149 | side-channel@^1.0.4: 2150 | version "1.0.4" 2151 | resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2152 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2153 | dependencies: 2154 | call-bind "^1.0.0" 2155 | get-intrinsic "^1.0.2" 2156 | object-inspect "^1.9.0" 2157 | 2158 | signal-exit@^3.0.2: 2159 | version "3.0.5" 2160 | resolved "https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 2161 | integrity sha1-nj6MwMdamUcrRDIQM6dwLnc4JS8= 2162 | 2163 | signal-exit@^3.0.7: 2164 | version "3.0.7" 2165 | resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2166 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2167 | 2168 | slice-ansi@^3.0.0: 2169 | version "3.0.0" 2170 | resolved "https://registry.nlark.com/slice-ansi/download/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 2171 | integrity sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c= 2172 | dependencies: 2173 | ansi-styles "^4.0.0" 2174 | astral-regex "^2.0.0" 2175 | is-fullwidth-code-point "^3.0.0" 2176 | 2177 | slice-ansi@^4.0.0: 2178 | version "4.0.0" 2179 | resolved "https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 2180 | integrity sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms= 2181 | dependencies: 2182 | ansi-styles "^4.0.0" 2183 | astral-regex "^2.0.0" 2184 | is-fullwidth-code-point "^3.0.0" 2185 | 2186 | slice-ansi@^5.0.0: 2187 | version "5.0.0" 2188 | resolved "https://registry.nlark.com/slice-ansi/download/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" 2189 | integrity sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo= 2190 | dependencies: 2191 | ansi-styles "^6.0.0" 2192 | is-fullwidth-code-point "^4.0.0" 2193 | 2194 | source-map-js@^1.0.2: 2195 | version "1.0.2" 2196 | resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 2197 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2198 | 2199 | source-map@^0.5.0: 2200 | version "0.5.7" 2201 | resolved "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1624608014898&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2202 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2203 | 2204 | sourcemap-codec@^1.4.8: 2205 | version "1.4.8" 2206 | resolved "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 2207 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 2208 | 2209 | string-argv@^0.3.1: 2210 | version "0.3.1" 2211 | resolved "https://registry.nlark.com/string-argv/download/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 2212 | integrity sha1-leL77AQnrhkYSTX4FtdKqkxcGdo= 2213 | 2214 | string-width@^4.1.0, string-width@^4.2.0: 2215 | version "4.2.3" 2216 | resolved "https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz?cache=0&sync_timestamp=1632421054789&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstring-width%2Fdownload%2Fstring-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2217 | integrity sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA= 2218 | dependencies: 2219 | emoji-regex "^8.0.0" 2220 | is-fullwidth-code-point "^3.0.0" 2221 | strip-ansi "^6.0.1" 2222 | 2223 | string-width@^5.0.0: 2224 | version "5.1.0" 2225 | resolved "https://registry.npmmirror.com/string-width/download/string-width-5.1.0.tgz#5ab00980cfb29f43e736b113a120a73a0fb569d3" 2226 | integrity sha512-7x54QnN21P+XL/v8SuNKvfgsUre6PXpN7mc77N3HlZv+f1SBRGmjxtOud2Z6FZ8DmdkD/IdjCaf9XXbnqmTZGQ== 2227 | dependencies: 2228 | eastasianwidth "^0.2.0" 2229 | emoji-regex "^9.2.2" 2230 | strip-ansi "^7.0.1" 2231 | 2232 | string.prototype.matchall@^4.0.7: 2233 | version "4.0.7" 2234 | resolved "https://registry.npmmirror.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 2235 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 2236 | dependencies: 2237 | call-bind "^1.0.2" 2238 | define-properties "^1.1.3" 2239 | es-abstract "^1.19.1" 2240 | get-intrinsic "^1.1.1" 2241 | has-symbols "^1.0.3" 2242 | internal-slot "^1.0.3" 2243 | regexp.prototype.flags "^1.4.1" 2244 | side-channel "^1.0.4" 2245 | 2246 | string.prototype.trimend@^1.0.5: 2247 | version "1.0.5" 2248 | resolved "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 2249 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 2250 | dependencies: 2251 | call-bind "^1.0.2" 2252 | define-properties "^1.1.4" 2253 | es-abstract "^1.19.5" 2254 | 2255 | string.prototype.trimstart@^1.0.5: 2256 | version "1.0.5" 2257 | resolved "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 2258 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 2259 | dependencies: 2260 | call-bind "^1.0.2" 2261 | define-properties "^1.1.4" 2262 | es-abstract "^1.19.5" 2263 | 2264 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2265 | version "6.0.1" 2266 | resolved "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2267 | integrity sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk= 2268 | dependencies: 2269 | ansi-regex "^5.0.1" 2270 | 2271 | strip-ansi@^7.0.1: 2272 | version "7.0.1" 2273 | resolved "https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" 2274 | integrity sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I= 2275 | dependencies: 2276 | ansi-regex "^6.0.1" 2277 | 2278 | strip-final-newline@^3.0.0: 2279 | version "3.0.0" 2280 | resolved "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" 2281 | integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== 2282 | 2283 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2284 | version "3.1.1" 2285 | resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2286 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2287 | 2288 | styled-components@^5.3.6: 2289 | version "5.3.6" 2290 | resolved "https://registry.npmmirror.com/styled-components/-/styled-components-5.3.6.tgz#27753c8c27c650bee9358e343fc927966bfd00d1" 2291 | integrity sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg== 2292 | dependencies: 2293 | "@babel/helper-module-imports" "^7.0.0" 2294 | "@babel/traverse" "^7.4.5" 2295 | "@emotion/is-prop-valid" "^1.1.0" 2296 | "@emotion/stylis" "^0.8.4" 2297 | "@emotion/unitless" "^0.7.4" 2298 | babel-plugin-styled-components ">= 1.12.0" 2299 | css-to-react-native "^3.0.0" 2300 | hoist-non-react-statics "^3.0.0" 2301 | shallowequal "^1.1.0" 2302 | supports-color "^5.5.0" 2303 | 2304 | styled-reset@^4.4.2: 2305 | version "4.4.2" 2306 | resolved "https://registry.npmmirror.com/styled-reset/-/styled-reset-4.4.2.tgz#4da1becb2f6d22a2b22c7ee7ca09b739fe6a685f" 2307 | integrity sha512-VzVhEZHpO/CD/F5ZllqTAY+GTaKlNDZt5mTrtPf/kXZSe85+wMkhRIiPARgvCP9/HQMk+ZGaEWk1IkdP2SYAUQ== 2308 | 2309 | supports-color@^5.3.0, supports-color@^5.5.0: 2310 | version "5.5.0" 2311 | resolved "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1626703455199&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2312 | integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8= 2313 | dependencies: 2314 | has-flag "^3.0.0" 2315 | 2316 | supports-color@^7.1.0: 2317 | version "7.2.0" 2318 | resolved "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1626703455199&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2319 | integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo= 2320 | dependencies: 2321 | has-flag "^4.0.0" 2322 | 2323 | supports-preserve-symlinks-flag@^1.0.0: 2324 | version "1.0.0" 2325 | resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2326 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2327 | 2328 | text-table@^0.2.0: 2329 | version "0.2.0" 2330 | resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2331 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2332 | 2333 | through@^2.3.8: 2334 | version "2.3.8" 2335 | resolved "https://registry.nlark.com/through/download/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2336 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2337 | 2338 | to-fast-properties@^2.0.0: 2339 | version "2.0.0" 2340 | resolved "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418893613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2341 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2342 | 2343 | to-regex-range@^5.0.1: 2344 | version "5.0.1" 2345 | resolved "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2346 | integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ= 2347 | dependencies: 2348 | is-number "^7.0.0" 2349 | 2350 | tslib@^2.1.0: 2351 | version "2.3.1" 2352 | resolved "https://registry.npmmirror.com/tslib/download/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 2353 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 2354 | 2355 | type-check@^0.4.0, type-check@~0.4.0: 2356 | version "0.4.0" 2357 | resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2358 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2359 | dependencies: 2360 | prelude-ls "^1.2.1" 2361 | 2362 | type-fest@^0.20.2: 2363 | version "0.20.2" 2364 | resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2365 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2366 | 2367 | type-fest@^0.21.3: 2368 | version "0.21.3" 2369 | resolved "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz?cache=0&sync_timestamp=1632134139143&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2370 | integrity sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc= 2371 | 2372 | unbox-primitive@^1.0.2: 2373 | version "1.0.2" 2374 | resolved "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2375 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2376 | dependencies: 2377 | call-bind "^1.0.2" 2378 | has-bigints "^1.0.2" 2379 | has-symbols "^1.0.3" 2380 | which-boxed-primitive "^1.0.2" 2381 | 2382 | update-browserslist-db@^1.0.9: 2383 | version "1.0.10" 2384 | resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 2385 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 2386 | dependencies: 2387 | escalade "^3.1.1" 2388 | picocolors "^1.0.0" 2389 | 2390 | uri-js@^4.2.2: 2391 | version "4.4.1" 2392 | resolved "https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2393 | integrity sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34= 2394 | dependencies: 2395 | punycode "^2.1.0" 2396 | 2397 | vite@^3.1.8: 2398 | version "3.1.8" 2399 | resolved "https://registry.npmmirror.com/vite/-/vite-3.1.8.tgz#fa29144167d19b773baffd65b3972ea4c12359c9" 2400 | integrity sha512-m7jJe3nufUbuOfotkntGFupinL/fmuTNuQmiVE7cH2IZMuf4UbfbGYMUT3jVWgGYuRVLY9j8NnrRqgw5rr5QTg== 2401 | dependencies: 2402 | esbuild "^0.15.9" 2403 | postcss "^8.4.16" 2404 | resolve "^1.22.1" 2405 | rollup "~2.78.0" 2406 | optionalDependencies: 2407 | fsevents "~2.3.2" 2408 | 2409 | which-boxed-primitive@^1.0.2: 2410 | version "1.0.2" 2411 | resolved "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2412 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2413 | dependencies: 2414 | is-bigint "^1.0.1" 2415 | is-boolean-object "^1.1.0" 2416 | is-number-object "^1.0.4" 2417 | is-string "^1.0.5" 2418 | is-symbol "^1.0.3" 2419 | 2420 | which@^2.0.1: 2421 | version "2.0.2" 2422 | resolved "https://registry.nlark.com/which/download/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2423 | integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE= 2424 | dependencies: 2425 | isexe "^2.0.0" 2426 | 2427 | word-wrap@^1.2.3: 2428 | version "1.2.3" 2429 | resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2430 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2431 | 2432 | wrap-ansi@^6.2.0: 2433 | version "6.2.0" 2434 | resolved "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2435 | integrity sha1-6Tk7oHEC5skaOyIUePAlfNKFblM= 2436 | dependencies: 2437 | ansi-styles "^4.0.0" 2438 | string-width "^4.1.0" 2439 | strip-ansi "^6.0.0" 2440 | 2441 | wrap-ansi@^7.0.0: 2442 | version "7.0.0" 2443 | resolved "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2444 | integrity sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM= 2445 | dependencies: 2446 | ansi-styles "^4.0.0" 2447 | string-width "^4.1.0" 2448 | strip-ansi "^6.0.0" 2449 | 2450 | wrappy@1: 2451 | version "1.0.2" 2452 | resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2453 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2454 | 2455 | yaml@^2.1.1: 2456 | version "2.1.3" 2457 | resolved "https://registry.npmmirror.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207" 2458 | integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg== 2459 | 2460 | yocto-queue@^0.1.0: 2461 | version "0.1.0" 2462 | resolved "https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz?cache=0&sync_timestamp=1628812679256&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyocto-queue%2Fdownload%2Fyocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2463 | integrity sha1-ApTrPe4FAo0x7hpfosVWpqrxChs= 2464 | --------------------------------------------------------------------------------