diff --git a/.gitignore b/.gitignore index e2c14c6d1700b26ff7bae836d8787ba00e0428f5..76c817044e5d5afac7f5e607c90283318dace715 100644 --- a/.gitignore +++ b/.gitignore @@ -3,13 +3,15 @@ venv .vscode __pycache__ .venv +code/biblib-master node_modules versions -code .vite app.py unused.py unused-css-master - +my-chart-test other +dist src/components/resources +code/test.bib diff --git a/README.md b/README.md index dfc993ed16db4283c0bd508f379cdefaea24045c..0cc6c32c80f20ba07372e0a78208f8755e8fac87 100644 --- a/README.md +++ b/README.md @@ -102,3 +102,16 @@ npm install -g yarn evtl: yarn install + + + + + +kathleen +malte +Anna +Vera:) +isabell +felicitas +Christian +Kai \ No newline at end of file diff --git a/code/bibtex.bib b/code/bibtex.bib new file mode 100644 index 0000000000000000000000000000000000000000..d958a04b4dee6504cd63e31f57283c5586a05608 --- /dev/null +++ b/code/bibtex.bib @@ -0,0 +1,63 @@ + +@article{article1, + +author={Roth, F. C., Numberger, M., and Draguhn, A.}, + +year={2023}, + +month={}, + +pages={1-14}, + +title={Die Entwicklung der Patch-Clamp-Technik}, + +volume={}, + +journal={Springer eBooks}, + +doi={10.1007/978-3-662-66053-9_1} + +} + + +@article{article2, + +author={Mete, V.}, + +year={2023}, + +month={ }, + +pages={ }, + +title={Entwicklung und Validierung neuer nicht-invasiver Diagnosesysteme für Mucociliary Clearance Disorders (MCCD)}, + +volume={ }, + +journal={Dissertation, Westfälische Wilhelms-Universität Münster}, + +doi={10.17879/98958441905} + +} + + + +@article{article3, + +author={Giaever, I. and Keese, C. }, + +year={1993}, + +month={ }, + +pages={591-592}, + +title={A morphological biosensor for mammalian cells}, + +volume={366}, + +journal={Nature}, + +doi={10.1038/366591a0} + +} \ No newline at end of file diff --git a/code/cit.py b/code/cit.py new file mode 100644 index 0000000000000000000000000000000000000000..f10449ec6330c5c8b3cccbf25ded5d211c2f36b9 --- /dev/null +++ b/code/cit.py @@ -0,0 +1,176 @@ +import argparse +import bibtexparser +import re + + +problemlist = [] + +def main(): + print("Starting program...") + try: + #reading command line input and parsing it + parser = argparse.ArgumentParser( + prog='HTML Citations', + description='create acessible HTML Citations from bib files') + parser.add_argument('-i','--input') + args = parser.parse_args() + print("Source: " + args.input) + except argparse.ArgumentError as e: + print(f"Argument parsing error: {e}") + except Exception as e: + print(f"An unexpected error occurred: {e}") + print("Reading file...") + #reading and parsing the file + try: + with open(args.input, 'r') as file: + file_content = file.read() + print("Parsing file...") + try: + library = bibtexparser.parse_string(file_content) + #opening output file + try: + with open('output.txt', 'w') as out: + length = len(library.entries) + print("found " + str(length) + " entries") + ran = range(length) + #processing every entry and writing the dictionary for it + for x in ran: + print("\n Initializing empty dictionary for entry "+ str(x+1) + "...") + dictio = {} + en_x = library.entries[x] + print("Filling dictionary for entry "+ str(x+1) + "") + for y in en_x.fields: + key = y.key + key_low = key.lower() + dictio[key_low] = y.value + + if en_x.entry_type == "article": + articleHTML(dictio, x, out) + elif en_x.entry_type =="misc": + miscHTML(dictio, x, out) + + except Exception as e: + print(f"An unexpected error occurred: {e}") + except Exception as e: + print(f"An unexpected error occurred: {e}") + except FileNotFoundError: + print(f"Error: The file '{args.input}' was not found.") + if len(problemlist)>0: + print("- - - - - - - - - - - - - - - - - ") + print("REMAINING ERRORS:") + + for p in problemlist: + print(p) + else: + print("DONE") + + + + +def articleHTML(dictio, x, out): + print("Writing html code for entry "+ str(x+1) + "...") + out.write("{/*<!-- Citation num " + str(x+1) + "--> */}" + "\n") + out.write("<li typeof=\"schema:ScolarlyArticle\" role=\"doc-biblioentry\" property=\"schema:citation\" id=\"desc-" + str(x+1) + "\">"+ "\n") + out.write("\t" + "<span property=\"schema:author\" typeof=\"schema:Person\">"+ "\n") + + print("Just a sec, seperating authors...") + authors = dictio['author'] + authors = authors.replace(" and ", "|") + liste = authors.split("|") + for a in liste: + try: + #print("processing " + a) + first = None + last = None + name = None + if ',' in a: + s = a.split(", ") + first = s[1] + first_sh = first[0] + last = s[0] + name = last + ", " + first_sh + "." + else: + s = a.split() + if len(s) == 2: + first = s[0] + first_sh = first[0] + last = s[1] + name = last + ", " + first_sh + "." + else: + leng = len(s) + last = s[leng-1] + first = '' + for n in s: + if n != s[-1]: + first = first + n[0] + '.' + name = last + ", " + first + + if a == liste[-1]: + out.write("\t" + "\t" +"<span property=\"schema:Name\"> " +name + "</span>"+ "\n") + else: + out.write("\t" +"\t" +"<span property=\"schema:Name\"> " +name + "</span>;"+ "\n") + except Exception as e: + print(f"An unexpected error occurred: {e} see " + a) + out.write("\t" +"</span>"+ "\n") + out.write("\t" + "<span property=\"schema:name\"> "+dictio['title']+ ". </span>"+ "\n") + out.write("\t" +"<i property=\"schema:publisher\" typeof=\"schema:Organization\"> "+ dictio['journal'] +"</i>"+ "\n") + out.write("\t" +"<b property=\"issueNumber\" typeof=\"PublicationIssue\"> "+dictio['volume']+"</b>, "+ "\n") + print("Getting pages...") + try: + pages = dictio['pages'] + if pages is not None: + if len(pages) > 0: + if '--' in pages: + pag = pages.split("--") + begin = pag[0].strip() + end = pag[1].strip() + out.write("\t" + "<span property=\"schema:pageBegin\"> "+ begin +"</span>-<span property=\"schema:pageEnd\">"+ end + "</span>"+ "\n") + elif '-' in pages: + pag = pages.split("-") + begin = pag[0].strip() + end = pag[1].strip() + out.write("\t" + "<span property=\"schema:pageBegin\"> "+ begin +"</span>-<span property=\"schema:pageEnd\">"+ end + "</span>"+ "\n") + elif len(pages) > 0: + out.write("\t" + "<span property=\"schema:pageBegin\">"+ pages +"</span>"+ "\n") + else: + print("Sorry, no readable page information") + problemlist.append("Check for missing page info at " + str (x+1)) + else: + print("Sorry, no page information") + problemlist.append("Check for missing page info at " + str (x+1)) + else: + print("Sorry, no page information") + problemlist.append("Check for missing page info at " + str (x+1)) + except KeyError as e: + print("Sorry, no page information") + problemlist.append("Check for missing page info at " + str (x+1)) + + year = dictio['year'] + out.write("\t" +"(<time property=\"schema:datePublished\" datatype=\"xsd:gYear\" dateTime=\" " + year + "\">"+year+"</time>)."+ "\n") + + try: + doi = dictio['doi'] + out.write("\t" +"<a className=\"doi\" href=\"https://doi.org/"+doi+"\"> doi: "+doi+"</a>"+ "\n") + except KeyError as e: + print("Sorry, no doi information") + problemlist.append("Check for missing doi info at " + str (x+1)) + + out.write("</li>" + "\n"+ "\n") + + +def miscHTML(dictio, x, out): + print("Writing html code for entry "+ str(x+1) + "...") + out.write("#<!-- Citation num " + str(x+1) + "-->" + "\n") + out.write("<li typeof=\"schema:WebPage\" role=\"doc-biblioentry\" property=\"schema:citation\" id=\"desc-" + str(x+1) + "\">"+ "\n") + out.write("\t" + "<span property=\"schema:author\" typeof=\"schema:Organisation\">"+ "\n") + aut = dictio['author'].strip("\{\}") + out.write("\t" + "\t" +"<span property=\"schema:Name\">" +aut + "</span>."+ "\n") + out.write("\t" +"</span>"+ "\n") + out.write("\t" + "<span property=\"schema:name\">"+dictio['title']+ ".</span>"+ "\n") + out.write("\t" +"<i property=\"schema:publisher\" typeof=\"schema:Organization\">"+ dictio['howpublished'] +"</i>"+ "\n") + year = dictio['year'] + out.write("\t" +"(<time property=\"schema:datePublished\" datatype=\"xsd:gYear\" datetime=\"" + year + "\">"+year+"</time>)."+ "\n") + out.write("</li>" + "\n"+ "\n") + + +main() \ No newline at end of file diff --git a/code/citations.py b/code/citations.py new file mode 100644 index 0000000000000000000000000000000000000000..e34a7ce6487ac6ff19d14065625891c803fe6229 --- /dev/null +++ b/code/citations.py @@ -0,0 +1,9 @@ +import biblib.bib +import biblib.messages +import biblib.algo +from biblib import FileBibDB +import argparse +import sys +import re + +fileDb = biblib.FileBibDB('test.bib', mode='r') diff --git a/code/output.txt b/code/output.txt new file mode 100644 index 0000000000000000000000000000000000000000..aed766d1601c011c07e6b7db5dd59df875754c4d --- /dev/null +++ b/code/output.txt @@ -0,0 +1,41 @@ +{/*<!-- Citation num 1--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-1"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Roth, F.</span>; + <span property="schema:Name"> Draguhn, A.</span> + </span> + <span property="schema:name"> Die Entwicklung der Patch-Clamp-Technik. </span> + <i property="schema:publisher" typeof="schema:Organization"> Springer eBooks</i> + <b property="issueNumber" typeof="PublicationIssue"> </b>, + <span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">14</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>). + <a className="doi" href="https://doi.org/10.1007/978-3-662-66053-9_1"> doi: 10.1007/978-3-662-66053-9_1</a> +</li> + +{/*<!-- Citation num 2--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-2"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Mete, V.</span> + </span> + <span property="schema:name"> Entwicklung und Validierung neuer nicht-invasiver Diagnosesysteme für Mucociliary Clearance Disorders (MCCD). </span> + <i property="schema:publisher" typeof="schema:Organization"> Dissertation, Westfälische Wilhelms-Universität Münster</i> + <b property="issueNumber" typeof="PublicationIssue"> </b>, + <span property="schema:pageBegin"> </span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>). + <a className="doi" href="https://doi.org/10.17879/98958441905"> doi: 10.17879/98958441905</a> +</li> + +{/*<!-- Citation num 3--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-3"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Giaever, I.</span>; + <span property="schema:Name"> Keese, C.</span> + </span> + <span property="schema:name"> A morphological biosensor for mammalian cells. </span> + <i property="schema:publisher" typeof="schema:Organization"> Nature</i> + <b property="issueNumber" typeof="PublicationIssue"> 366</b>, + <span property="schema:pageBegin"> 591</span>-<span property="schema:pageEnd">592</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 1993">1993</time>). + <a className="doi" href="https://doi.org/10.1038/366591a0"> doi: 10.1038/366591a0</a> +</li> + diff --git a/index.html b/index.html index c7d9d3a36e5038b3827ac266949281ec6ec33794..6b21cca3c66b6d3217240b50d1c5746fdd479eb5 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> @@ -8,9 +8,7 @@ type="image/x-icon" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <!-- <script type="text/javascript" defer src="./assets/js/mapscript.js" charset="utf-8"> - </script> --> - <!-- <script type="module" src="https://2024.igem.wiki/bielefeld-cebitec/mapscript.js"></script> --> + <title>Bielefeld-CeBiTec - iGEM 2024</title> </head> <body> diff --git a/my-chart-test/.gitignore b/my-chart-test/.gitignore deleted file mode 100644 index 4d29575de80483b005c29bfcac5061cd2f45313e..0000000000000000000000000000000000000000 --- a/my-chart-test/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/my-chart-test/README.md b/my-chart-test/README.md deleted file mode 100644 index 58beeaccd87e230076cab531b8f418f40b6d1aeb..0000000000000000000000000000000000000000 --- a/my-chart-test/README.md +++ /dev/null @@ -1,70 +0,0 @@ -# Getting Started with Create React App - -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). - -## Available Scripts - -In the project directory, you can run: - -### `npm start` - -Runs the app in the development mode.\ -Open [http://localhost:3000](http://localhost:3000) to view it in your browser. - -The page will reload when you make changes.\ -You may also see any lint errors in the console. - -### `npm test` - -Launches the test runner in the interactive watch mode.\ -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. - -### `npm run build` - -Builds the app for production to the `build` folder.\ -It correctly bundles React in production mode and optimizes the build for the best performance. - -The build is minified and the filenames include the hashes.\ -Your app is ready to be deployed! - -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. - -### `npm run eject` - -**Note: this is a one-way operation. Once you `eject`, you can't go back!** - -If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. - -Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. - -You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. - -## Learn More - -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). - -To learn React, check out the [React documentation](https://reactjs.org/). - -### Code Splitting - -This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) - -### Analyzing the Bundle Size - -This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) - -### Making a Progressive Web App - -This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) - -### Advanced Configuration - -This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) - -### Deployment - -This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) - -### `npm run build` fails to minify - -This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) diff --git a/my-chart-test/package-lock.json b/my-chart-test/package-lock.json deleted file mode 100644 index 1683c67485ca2b33ef61e7ce9e848ec1dcaab396..0000000000000000000000000000000000000000 --- a/my-chart-test/package-lock.json +++ /dev/null @@ -1,19815 +0,0 @@ -{ - "name": "my-chart-test", - "version": "0.1.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "my-chart-test", - "version": "0.1.0", - "dependencies": { - "@testing-library/jest-dom": "^5.17.0", - "@testing-library/react": "^13.4.0", - "@testing-library/user-event": "^13.5.0", - "chart.js": "^4.4.3", - "react": "^18.3.1", - "react-chartjs-2": "^5.2.0", - "react-dom": "^18.3.1", - "react-scripts": "5.0.1", - "web-vitals": "^2.1.4" - } - }, - "node_modules/@adobe/css-tools": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", - "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==", - "license": "MIT" - }, - "node_modules/@alloc/quick-lru": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", - "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", - "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/helper-compilation-targets": "^7.25.2", - "@babel/helper-module-transforms": "^7.25.2", - "@babel/helpers": "^7.25.0", - "@babel/parser": "^7.25.0", - "@babel/template": "^7.25.0", - "@babel/traverse": "^7.25.2", - "@babel/types": "^7.25.2", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/eslint-parser": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.1.tgz", - "integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==", - "license": "MIT", - "dependencies": { - "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || >=14.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.0", - "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" - } - }, - "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "license": "Apache-2.0", - "engines": { - "node": ">=10" - } - }, - "node_modules/@babel/eslint-parser/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", - "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.0", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", - "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", - "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-validator-option": "^7.24.8", - "browserslist": "^4.23.1", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", - "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.8", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.25.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/traverse": "^7.25.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", - "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", - "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.8", - "@babel/types": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", - "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "@babel/traverse": "^7.25.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", - "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", - "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", - "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-wrap-function": "^7.25.0", - "@babel/traverse": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", - "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", - "license": "MIT", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.24.8", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/traverse": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", - "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", - "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", - "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", - "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.25.0", - "@babel/traverse": "^7.25.0", - "@babel/types": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", - "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", - "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.2" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", - "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", - "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", - "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", - "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", - "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", - "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-decorators": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", - "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-flow": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", - "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", - "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", - "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", - "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", - "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", - "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-remap-async-to-generator": "^7.25.0", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/traverse": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", - "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-remap-async-to-generator": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", - "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", - "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", - "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz", - "integrity": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-replace-supers": "^7.25.0", - "@babel/traverse": "^7.25.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", - "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/template": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", - "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", - "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", - "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", - "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", - "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", - "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", - "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.2.tgz", - "integrity": "sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/plugin-syntax-flow": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", - "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", - "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", - "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", - "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", - "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", - "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", - "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", - "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-simple-access": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", - "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "@babel/traverse": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", - "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", - "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", - "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", - "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", - "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", - "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", - "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", - "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", - "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", - "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", - "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", - "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.1.tgz", - "integrity": "sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", - "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz", - "integrity": "sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/types": "^7.25.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", - "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", - "license": "MIT", - "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", - "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", - "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", - "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", - "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.1", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", - "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", - "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", - "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", - "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", - "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", - "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-typescript": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", - "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", - "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", - "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.3.tgz", - "integrity": "sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==", - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-compilation-targets": "^7.25.2", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-validator-option": "^7.24.8", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", - "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.7", - "@babel/plugin-syntax-import-attributes": "^7.24.7", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.7", - "@babel/plugin-transform-async-generator-functions": "^7.25.0", - "@babel/plugin-transform-async-to-generator": "^7.24.7", - "@babel/plugin-transform-block-scoped-functions": "^7.24.7", - "@babel/plugin-transform-block-scoping": "^7.25.0", - "@babel/plugin-transform-class-properties": "^7.24.7", - "@babel/plugin-transform-class-static-block": "^7.24.7", - "@babel/plugin-transform-classes": "^7.25.0", - "@babel/plugin-transform-computed-properties": "^7.24.7", - "@babel/plugin-transform-destructuring": "^7.24.8", - "@babel/plugin-transform-dotall-regex": "^7.24.7", - "@babel/plugin-transform-duplicate-keys": "^7.24.7", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", - "@babel/plugin-transform-dynamic-import": "^7.24.7", - "@babel/plugin-transform-exponentiation-operator": "^7.24.7", - "@babel/plugin-transform-export-namespace-from": "^7.24.7", - "@babel/plugin-transform-for-of": "^7.24.7", - "@babel/plugin-transform-function-name": "^7.25.1", - "@babel/plugin-transform-json-strings": "^7.24.7", - "@babel/plugin-transform-literals": "^7.25.2", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", - "@babel/plugin-transform-member-expression-literals": "^7.24.7", - "@babel/plugin-transform-modules-amd": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.8", - "@babel/plugin-transform-modules-systemjs": "^7.25.0", - "@babel/plugin-transform-modules-umd": "^7.24.7", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", - "@babel/plugin-transform-new-target": "^7.24.7", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", - "@babel/plugin-transform-numeric-separator": "^7.24.7", - "@babel/plugin-transform-object-rest-spread": "^7.24.7", - "@babel/plugin-transform-object-super": "^7.24.7", - "@babel/plugin-transform-optional-catch-binding": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.8", - "@babel/plugin-transform-parameters": "^7.24.7", - "@babel/plugin-transform-private-methods": "^7.24.7", - "@babel/plugin-transform-private-property-in-object": "^7.24.7", - "@babel/plugin-transform-property-literals": "^7.24.7", - "@babel/plugin-transform-regenerator": "^7.24.7", - "@babel/plugin-transform-reserved-words": "^7.24.7", - "@babel/plugin-transform-shorthand-properties": "^7.24.7", - "@babel/plugin-transform-spread": "^7.24.7", - "@babel/plugin-transform-sticky-regex": "^7.24.7", - "@babel/plugin-transform-template-literals": "^7.24.7", - "@babel/plugin-transform-typeof-symbol": "^7.24.8", - "@babel/plugin-transform-unicode-escapes": "^7.24.7", - "@babel/plugin-transform-unicode-property-regex": "^7.24.7", - "@babel/plugin-transform-unicode-regex": "^7.24.7", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.37.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-react": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", - "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-transform-react-display-name": "^7.24.7", - "@babel/plugin-transform-react-jsx": "^7.24.7", - "@babel/plugin-transform-react-jsx-development": "^7.24.7", - "@babel/plugin-transform-react-pure-annotations": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", - "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.7", - "@babel/plugin-transform-typescript": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "license": "MIT" - }, - "node_modules/@babel/runtime": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", - "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", - "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.25.0", - "@babel/types": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", - "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/parser": "^7.25.3", - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.2", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", - "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "license": "MIT" - }, - "node_modules/@csstools/normalize.css": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", - "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==", - "license": "CC0-1.0" - }, - "node_modules/@csstools/postcss-cascade-layers": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", - "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/selector-specificity": "^2.0.2", - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-color-function": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", - "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-font-format-keywords": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", - "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-hwb-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", - "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-ic-unit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", - "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", - "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-nested-calc": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", - "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-normalize-display-values": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", - "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-oklab-function": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", - "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", - "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", - "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-text-decoration-shorthand": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", - "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", - "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/postcss-unset-value": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", - "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", - "license": "CC0-1.0", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", - "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", - "license": "CC0-1.0", - "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.10" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", - "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", - "license": "MIT", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "deprecated": "Use @eslint/config-array instead", - "license": "Apache-2.0", - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "deprecated": "Use @eslint/object-schema instead", - "license": "BSD-3-Clause" - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "license": "ISC", - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", - "license": "MIT", - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", - "micromatch": "^4.0.4", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/environment": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", - "license": "MIT", - "dependencies": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", - "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", - "license": "MIT", - "dependencies": { - "jest-get-type": "^29.6.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils/node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", - "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", - "license": "MIT", - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/schemas": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", - "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/source-map/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/test-result": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", - "license": "MIT", - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", - "license": "MIT", - "dependencies": { - "@jest/test-result": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@kurkle/color": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", - "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==", - "license": "MIT" - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", - "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", - "license": "MIT" - }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", - "license": "MIT", - "dependencies": { - "eslint-scope": "5.1.1" - } - }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.15", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", - "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", - "license": "MIT", - "dependencies": { - "ansi-html": "^0.0.9", - "core-js-pure": "^3.23.3", - "error-stack-parser": "^2.0.6", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.4", - "schema-utils": "^4.2.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "@types/webpack": "4.x || 5.x", - "react-refresh": ">=0.10.0 <1.0.0", - "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <5.0.0", - "webpack": ">=4.43.0 <6.0.0", - "webpack-dev-server": "3.x || 4.x || 5.x", - "webpack-hot-middleware": "2.x", - "webpack-plugin-serve": "0.x || 1.x" - }, - "peerDependenciesMeta": { - "@types/webpack": { - "optional": true - }, - "sockjs-client": { - "optional": true - }, - "type-fest": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - }, - "webpack-hot-middleware": { - "optional": true - }, - "webpack-plugin-serve": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-babel": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", - "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.10.4", - "@rollup/pluginutils": "^3.1.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "@types/babel__core": "^7.1.9", - "rollup": "^1.20.0||^2.0.0" - }, - "peerDependenciesMeta": { - "@types/babel__core": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "11.2.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", - "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.1.0", - "@types/resolve": "1.17.1", - "builtin-modules": "^3.1.0", - "deepmerge": "^4.2.2", - "is-module": "^1.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@rollup/plugin-replace": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.1.0", - "magic-string": "^0.25.7" - }, - "peerDependencies": { - "rollup": "^1.20.0 || ^2.0.0" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", - "license": "MIT", - "dependencies": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@rollup/pluginutils/node_modules/@types/estree": { - "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", - "license": "MIT" - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz", - "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==", - "license": "MIT" - }, - "node_modules/@sinclair/typebox": { - "version": "0.24.51", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", - "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", - "license": "MIT" - }, - "node_modules/@sinonjs/commons": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", - "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", - "license": "BSD-3-Clause", - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^1.7.0" - } - }, - "node_modules/@surma/rollup-plugin-off-main-thread": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", - "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", - "license": "Apache-2.0", - "dependencies": { - "ejs": "^3.1.6", - "json5": "^2.2.0", - "magic-string": "^0.25.0", - "string.prototype.matchall": "^4.0.6" - } - }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-preset": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", - "license": "MIT", - "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", - "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", - "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", - "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", - "@svgr/babel-plugin-transform-svg-component": "^5.5.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/core": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", - "license": "MIT", - "dependencies": { - "@svgr/plugin-jsx": "^5.5.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.6" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/plugin-jsx": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.12.3", - "@svgr/babel-preset": "^5.5.0", - "@svgr/hast-util-to-babel-ast": "^5.5.0", - "svg-parser": "^2.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/plugin-svgo": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", - "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", - "license": "MIT", - "dependencies": { - "cosmiconfig": "^7.0.0", - "deepmerge": "^4.2.2", - "svgo": "^1.2.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/webpack": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", - "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/plugin-transform-react-constant-elements": "^7.12.1", - "@babel/preset-env": "^7.12.1", - "@babel/preset-react": "^7.12.5", - "@svgr/core": "^5.5.0", - "@svgr/plugin-jsx": "^5.5.0", - "@svgr/plugin-svgo": "^5.5.0", - "loader-utils": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@testing-library/dom": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", - "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT", - "peer": true - }, - "node_modules/@testing-library/dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", - "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", - "license": "MIT", - "dependencies": { - "@adobe/css-tools": "^4.0.1", - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.5.6", - "lodash": "^4.17.15", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=8", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@testing-library/jest-dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react": { - "version": "13.4.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", - "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^8.5.0", - "@types/react-dom": "^18.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@testing-library/react/node_modules/@testing-library/dom": { - "version": "8.20.1", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", - "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.1.3", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@testing-library/react/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/react/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@testing-library/react/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/react/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@testing-library/react/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/user-event": { - "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "license": "ISC", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", - "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "license": "MIT" - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/bonjour": { - "version": "3.5.13", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", - "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.38", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", - "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", - "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", - "license": "MIT", - "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" - } - }, - "node_modules/@types/eslint": { - "version": "8.56.11", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.11.tgz", - "integrity": "sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==", - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "license": "MIT" - }, - "node_modules/@types/express": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", - "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", - "license": "MIT", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.19.5", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", - "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "license": "MIT" - }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", - "license": "MIT" - }, - "node_modules/@types/http-proxy": { - "version": "1.17.15", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", - "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "29.5.12", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", - "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", - "license": "MIT", - "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/types": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/@types/yargs": { - "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@types/jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/jest/node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-message-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", - "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "license": "MIT" - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "license": "MIT" - }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "22.1.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.1.0.tgz", - "integrity": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==", - "license": "MIT", - "dependencies": { - "undici-types": "~6.13.0" - } - }, - "node_modules/@types/node-forge": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", - "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", - "license": "MIT" - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", - "license": "MIT" - }, - "node_modules/@types/q": { - "version": "1.5.8", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", - "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", - "license": "MIT" - }, - "node_modules/@types/qs": { - "version": "6.9.15", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", - "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.3.3", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", - "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/resolve": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", - "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "license": "MIT" - }, - "node_modules/@types/semver": { - "version": "7.5.8", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", - "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", - "license": "MIT" - }, - "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", - "license": "MIT", - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "node_modules/@types/serve-index": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", - "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", - "license": "MIT", - "dependencies": { - "@types/express": "*" - } - }, - "node_modules/@types/serve-static": { - "version": "1.15.7", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", - "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", - "license": "MIT", - "dependencies": { - "@types/http-errors": "*", - "@types/node": "*", - "@types/send": "*" - } - }, - "node_modules/@types/sockjs": { - "version": "0.3.36", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", - "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "license": "MIT" - }, - "node_modules/@types/testing-library__jest-dom": { - "version": "5.14.9", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", - "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", - "license": "MIT", - "dependencies": { - "@types/jest": "*" - } - }, - "node_modules/@types/trusted-types": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", - "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", - "license": "MIT" - }, - "node_modules/@types/ws": { - "version": "8.5.12", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", - "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/yargs": { - "version": "16.0.9", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", - "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "license": "MIT" - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", - "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", - "license": "MIT", - "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/type-utils": "5.62.0", - "@typescript-eslint/utils": "5.62.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", - "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/utils": "5.62.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", - "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", - "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", - "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/typescript-estree": "5.62.0", - "@typescript-eslint/utils": "5.62.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", - "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", - "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", - "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", - "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "license": "ISC" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "license": "MIT" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "license": "Apache-2.0" - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "license": "BSD-3-Clause" - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "license": "MIT", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "license": "MIT", - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "license": "MIT", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "license": "MIT", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-html": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", - "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "license": "MIT" - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "license": "Apache-2.0", - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "license": "MIT" - }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.reduce": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz", - "integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-array-method-boxes-properly": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", - "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "license": "MIT" - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "license": "MIT" - }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "license": "MIT" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "license": "MIT" - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "license": "ISC", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.20", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", - "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.23.3", - "caniuse-lite": "^1.0.30001646", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "license": "MIT", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.0.tgz", - "integrity": "sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==", - "license": "MPL-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "license": "Apache-2.0", - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", - "license": "MIT", - "dependencies": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "license": "MIT", - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "license": "BSD-3-Clause", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/babel-plugin-named-asset-import": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", - "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", - "license": "MIT", - "peerDependencies": { - "@babel/core": "^7.1.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", - "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2", - "core-js-compat": "^3.38.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", - "license": "MIT" - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "license": "MIT", - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", - "license": "MIT", - "dependencies": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-react-app": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.16.0", - "@babel/plugin-proposal-class-properties": "^7.16.0", - "@babel/plugin-proposal-decorators": "^7.16.4", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", - "@babel/plugin-proposal-numeric-separator": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.0", - "@babel/plugin-proposal-private-methods": "^7.16.0", - "@babel/plugin-transform-flow-strip-types": "^7.16.0", - "@babel/plugin-transform-react-display-name": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.4", - "@babel/preset-env": "^7.16.4", - "@babel/preset-react": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "license": "MIT" - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "license": "MIT" - }, - "node_modules/bfj": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", - "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", - "license": "MIT", - "dependencies": { - "bluebird": "^3.7.2", - "check-types": "^11.2.3", - "hoopy": "^0.1.4", - "jsonpath": "^1.1.1", - "tryer": "^1.0.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "license": "MIT" - }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/bonjour-service": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", - "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "license": "ISC" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "license": "BSD-2-Clause" - }, - "node_modules/browserslist": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", - "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001646", - "electron-to-chromium": "^1.5.4", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "license": "MIT" - }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001650", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001650.tgz", - "integrity": "sha512-fgEc7hP/LB7iicdXHUI9VsBsMZmUmlVJeQP2qqQW+3lkqVhbmjEU8zp+h5stWeilX+G7uXuIUIIlWlDw9jdt8g==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/case-sensitive-paths-webpack-plugin": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/chart.js": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.3.tgz", - "integrity": "sha512-qK1gkGSRYcJzqrrzdR6a+I0vQ4/R+SoODXyAjscQ/4mzuNzySaMCd+hyVxitSY1+L2fjPD1Gbn+ibNqRmwQeLw==", - "license": "MIT", - "dependencies": { - "@kurkle/color": "^0.3.0" - }, - "engines": { - "pnpm": ">=8" - } - }, - "node_modules/check-types": { - "version": "11.2.3", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", - "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==", - "license": "MIT" - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "license": "MIT", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", - "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", - "license": "MIT" - }, - "node_modules/clean-css": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", - "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", - "license": "MIT", - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 10.0" - } - }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "license": "MIT", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "license": "MIT", - "dependencies": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "license": "MIT" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "license": "MIT" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "license": "MIT" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "license": "MIT", - "engines": { - "node": ">= 12" - } - }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "license": "MIT" - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "license": "MIT", - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "license": "MIT" - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "license": "MIT" - }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "license": "MIT" - }, - "node_modules/core-js": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.38.0.tgz", - "integrity": "sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==", - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-compat": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.0.tgz", - "integrity": "sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.23.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-pure": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.38.0.tgz", - "integrity": "sha512-8balb/HAXo06aHP58mZMtXgD8vcnXz9tUDePgqBgJgKdmTlMt+jw3ujqniuBDQXMvTzxnMpxHFeuSM3g1jWQuQ==", - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/css-blank-pseudo": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", - "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "bin": { - "css-blank-pseudo": "dist/cli.cjs" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-declaration-sorter": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", - "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-has-pseudo": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", - "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "bin": { - "css-has-pseudo": "dist/cli.cjs" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-loader": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", - "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", - "license": "MIT", - "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.1.0", - "postcss-modules-local-by-default": "^4.0.5", - "postcss-modules-scope": "^3.2.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", - "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", - "license": "MIT", - "dependencies": { - "cssnano": "^5.0.6", - "jest-worker": "^27.0.2", - "postcss": "^8.3.5", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - } - } - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/css-prefers-color-scheme": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", - "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", - "license": "CC0-1.0", - "bin": { - "css-prefers-color-scheme": "dist/cli.cjs" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "license": "MIT" - }, - "node_modules/css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/css-tree/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", - "license": "MIT" - }, - "node_modules/cssdb": { - "version": "7.11.2", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", - "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - } - ], - "license": "CC0-1.0" - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssnano": { - "version": "5.1.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", - "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", - "license": "MIT", - "dependencies": { - "cssnano-preset-default": "^5.2.14", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-preset-default": { - "version": "5.2.14", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", - "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", - "license": "MIT", - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.1", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.4", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.2", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "license": "MIT", - "dependencies": { - "css-tree": "^1.1.2" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "license": "CC0-1.0" - }, - "node_modules/csso/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "license": "MIT" - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "license": "MIT", - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "license": "MIT" - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "license": "MIT" - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "license": "BSD-2-Clause" - }, - "node_modules/data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "license": "MIT" - }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "license": "MIT" - }, - "node_modules/deep-equal": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", - "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.5", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.2", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "license": "MIT" - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "license": "BSD-2-Clause", - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "license": "MIT", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "license": "MIT" - }, - "node_modules/detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", - "license": "MIT", - "dependencies": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" - }, - "engines": { - "node": ">= 4.2.1" - } - }, - "node_modules/detect-port-alt/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/detect-port-alt/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "license": "Apache-2.0" - }, - "node_modules/diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "license": "MIT" - }, - "node_modules/dns-packet": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", - "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", - "license": "MIT", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "license": "MIT" - }, - "node_modules/dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "license": "MIT", - "dependencies": { - "utila": "~0.4" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "deprecated": "Use your platform's native DOMException instead", - "license": "MIT", - "dependencies": { - "webidl-conversions": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=10" - } - }, - "node_modules/dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", - "license": "BSD-2-Clause" - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "license": "MIT" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "license": "MIT" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "license": "MIT" - }, - "node_modules/ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", - "license": "Apache-2.0", - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.5.tgz", - "integrity": "sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==", - "license": "ISC" - }, - "node_modules/emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "license": "MIT", - "dependencies": { - "stackframe": "^1.3.4" - } - }, - "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "license": "MIT" - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.19", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", - "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "license": "MIT" - }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-react-app": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.16.0", - "@babel/eslint-parser": "^7.16.3", - "@rushstack/eslint-patch": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.5.0", - "@typescript-eslint/parser": "^5.5.0", - "babel-preset-react-app": "^10.0.1", - "confusing-browser-globals": "^1.0.11", - "eslint-plugin-flowtype": "^8.0.3", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jest": "^25.3.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.1", - "eslint-plugin-react-hooks": "^4.3.0", - "eslint-plugin-testing-library": "^5.0.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "eslint": "^8.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "license": "MIT", - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", - "license": "MIT", - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-flowtype": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", - "license": "BSD-3-Clause", - "dependencies": { - "lodash": "^4.17.21", - "string-natural-compare": "^3.0.1" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@babel/plugin-syntax-flow": "^7.14.5", - "@babel/plugin-transform-react-jsx": "^7.14.9", - "eslint": "^8.1.0" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jest": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/experimental-utils": "^5.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz", - "integrity": "sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==", - "license": "MIT", - "dependencies": { - "aria-query": "~5.1.3", - "array-includes": "^3.1.8", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "^4.9.1", - "axobject-query": "~3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.19", - "hasown": "^2.0.2", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.8", - "safe-regex-test": "^1.0.3", - "string.prototype.includes": "^2.0.0" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.35.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", - "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.8", - "array.prototype.findlast": "^1.2.5", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.tosorted": "^1.1.4", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.19", - "estraverse": "^5.3.0", - "hasown": "^2.0.2", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.8", - "object.fromentries": "^2.0.8", - "object.values": "^1.2.0", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.11", - "string.prototype.repeat": "^1.0.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", - "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-testing-library": { - "version": "5.11.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", - "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", - "license": "MIT", - "dependencies": { - "@typescript-eslint/utils": "^5.58.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0", - "npm": ">=6" - }, - "peerDependencies": { - "eslint": "^7.5.0 || ^8.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-webpack-plugin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", - "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", - "license": "MIT", - "dependencies": { - "@types/eslint": "^7.29.0 || ^8.4.1", - "jest-worker": "^28.0.2", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0", - "webpack": "^5.0.0" - } - }, - "node_modules/eslint-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", - "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/eslint-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/eslint/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", - "license": "MIT" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expect": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "license": "MIT" - }, - "node_modules/fast-uri": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", - "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "license": "Apache-2.0", - "dependencies": { - "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/file-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "license": "Apache-2.0", - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/filesize": { - "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "license": "MIT", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "license": "ISC" - }, - "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/foreground-child": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", - "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=10", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "eslint": ">= 6", - "typescript": ">= 2.7", - "vue-template-compiler": "*", - "webpack": ">= 4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - } - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "license": "MIT", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", - "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", - "license": "ISC" - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "license": "BSD-2-Clause" - }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "license": "MIT", - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "license": "MIT", - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "license": "MIT" - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "license": "MIT", - "dependencies": { - "duplexer": "^0.1.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "license": "MIT" - }, - "node_modules/harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", - "license": "(Apache-2.0 OR MPL-1.1)" - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "license": "MIT", - "bin": { - "he": "bin/he" - } - }, - "node_modules/hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", - "license": "MIT", - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "node_modules/hpack.js/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "license": "MIT" - }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/hpack.js/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "license": "MIT" - }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^1.0.5" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/html-entities": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", - "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "license": "MIT" - }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", - "license": "MIT", - "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/html-webpack-plugin": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", - "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", - "license": "MIT", - "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.20.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" - } - }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "license": "MIT" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "license": "MIT" - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", - "license": "MIT", - "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/idb": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", - "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", - "license": "ISC" - }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", - "license": "MIT", - "dependencies": { - "harmony-reflect": "^1.4.6" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", - "license": "MIT", - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "license": "ISC" - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ipaddr.js": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", - "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "license": "MIT" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", - "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "license": "MIT", - "dependencies": { - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", - "license": "MIT" - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "license": "MIT" - }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "license": "ISC" - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "license": "BSD-3-Clause", - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "license": "MIT", - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "license": "BSD-3-Clause", - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jake": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", - "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", - "license": "Apache-2.0", - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", - "license": "MIT", - "dependencies": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-circus": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", - "license": "MIT", - "dependencies": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", - "license": "MIT", - "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-each": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-environment-jsdom": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-jasmine2": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-jasmine2/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-jasmine2/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-jasmine2/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-jasmine2/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-jasmine2/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-jasmine2/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", - "license": "MIT", - "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", - "license": "MIT", - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "license": "MIT", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", - "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.3.1", - "chalk": "^4.0.0", - "jest-regex-util": "^28.0.0", - "jest-watcher": "^28.0.0", - "slash": "^4.0.0", - "string-length": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "jest": "^27.0.0 || ^28.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", - "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "slash": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", - "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", - "license": "MIT", - "dependencies": { - "@jest/console": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/types": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", - "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { - "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-watch-typeahead/node_modules/emittery": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", - "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", - "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", - "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", - "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", - "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", - "license": "MIT", - "dependencies": { - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "jest-util": "^28.1.3", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "license": "MIT", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", - "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "license": "MIT" - }, - "node_modules/jest-watch-typeahead/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watch-typeahead/node_modules/string-length": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", - "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", - "license": "MIT", - "dependencies": { - "char-regex": "^2.0.0", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", - "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", - "license": "MIT", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", - "license": "MIT", - "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jiti": { - "version": "1.21.6", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", - "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", - "license": "MIT", - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "license": "(AFL-2.1 OR BSD-3-Clause)" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "license": "MIT" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonpath": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", - "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", - "license": "MIT", - "dependencies": { - "esprima": "1.2.2", - "static-eval": "2.0.2", - "underscore": "1.12.1" - } - }, - "node_modules/jsonpath/node_modules/esprima": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", - "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.23", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", - "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", - "license": "CC0-1.0" - }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "license": "MIT", - "dependencies": { - "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/launch-editor": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.1.tgz", - "integrity": "sha512-elBx2l/tp9z99X5H/qev8uyDywVh0VXAwEbjk8kJhnc5grOFkGh7aW6q55me9xnYbss261XtnUrysZ+XvGbhQA==", - "license": "MIT", - "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.8.1" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "license": "MIT" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "license": "MIT", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "license": "MIT" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "license": "MIT" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "license": "MIT" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "license": "MIT", - "bin": { - "lz-string": "bin/bin.js" - } - }, - "node_modules/magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "license": "MIT", - "dependencies": { - "sourcemap-codec": "^1.4.8" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", - "license": "CC0-1.0" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "license": "Unlicense", - "dependencies": { - "fs-monkey": "^1.0.4" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "license": "MIT" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-css-extract-plugin": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", - "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", - "license": "MIT", - "dependencies": { - "schema-utils": "^4.0.0", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "license": "ISC" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "license": "MIT" - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "license": "MIT", - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "license": "MIT" - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "license": "MIT" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", - "license": "MIT" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/nwsapi": { - "version": "2.2.12", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz", - "integrity": "sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==", - "license": "MIT" - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", - "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", - "license": "MIT", - "dependencies": { - "array.prototype.reduce": "^1.0.6", - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "gopd": "^1.0.1", - "safe-array-concat": "^1.1.2" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "license": "MIT" - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "license": "MIT", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "license": "MIT", - "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/package-json-from-dist": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", - "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", - "license": "BlueOak-1.0.0" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "license": "MIT" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "license": "ISC" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.41", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", - "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", - "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-browser-comments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", - "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", - "license": "CC0-1.0", - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "browserslist": ">=4", - "postcss": ">=8" - } - }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" - } - }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=7.6.0" - }, - "peerDependencies": { - "postcss": "^8.4.6" - } - }, - "node_modules/postcss-color-functional-notation": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", - "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-color-hex-alpha": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", - "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-color-rebeccapurple": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", - "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-colormin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-custom-media": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", - "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-custom-properties": { - "version": "12.1.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", - "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-custom-selectors": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", - "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-dir-pseudo-class": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", - "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-double-position-gradients": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", - "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-env-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", - "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-flexbugs-fixes": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", - "license": "MIT", - "peerDependencies": { - "postcss": "^8.1.4" - } - }, - "node_modules/postcss-focus-visible": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", - "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-focus-within": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", - "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", - "license": "MIT", - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-gap-properties": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", - "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", - "license": "CC0-1.0", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-image-set-function": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", - "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-initial": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", - "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", - "license": "MIT", - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-lab-function": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", - "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/postcss-load-config/node_modules/yaml": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", - "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", - "license": "ISC", - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", - "license": "MIT", - "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" - } - }, - "node_modules/postcss-logical": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", - "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", - "license": "CC0-1.0", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-media-minmax": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", - "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-merge-rules": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "license": "MIT", - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", - "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", - "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", - "license": "MIT", - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", - "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", - "license": "ISC", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "license": "ISC", - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-nested": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", - "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.1.1" - }, - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-nesting": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", - "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-normalize": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", - "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/normalize.css": "*", - "postcss-browser-comments": "^4", - "sanitize.css": "*" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "browserslist": ">= 4", - "postcss": ">= 8" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "license": "MIT", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "license": "MIT", - "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-opacity-percentage": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", - "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], - "license": "MIT", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "license": "MIT", - "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-overflow-shorthand": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", - "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "license": "MIT", - "peerDependencies": { - "postcss": "^8" - } - }, - "node_modules/postcss-place": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", - "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", - "license": "CC0-1.0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-preset-env": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", - "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", - "license": "CC0-1.0", - "dependencies": { - "@csstools/postcss-cascade-layers": "^1.1.1", - "@csstools/postcss-color-function": "^1.1.1", - "@csstools/postcss-font-format-keywords": "^1.0.1", - "@csstools/postcss-hwb-function": "^1.0.2", - "@csstools/postcss-ic-unit": "^1.0.1", - "@csstools/postcss-is-pseudo-class": "^2.0.7", - "@csstools/postcss-nested-calc": "^1.0.0", - "@csstools/postcss-normalize-display-values": "^1.0.1", - "@csstools/postcss-oklab-function": "^1.1.1", - "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.1", - "@csstools/postcss-text-decoration-shorthand": "^1.0.0", - "@csstools/postcss-trigonometric-functions": "^1.0.2", - "@csstools/postcss-unset-value": "^1.0.2", - "autoprefixer": "^10.4.13", - "browserslist": "^4.21.4", - "css-blank-pseudo": "^3.0.3", - "css-has-pseudo": "^3.0.4", - "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^7.1.0", - "postcss-attribute-case-insensitive": "^5.0.2", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.4", - "postcss-color-hex-alpha": "^8.0.4", - "postcss-color-rebeccapurple": "^7.1.1", - "postcss-custom-media": "^8.0.2", - "postcss-custom-properties": "^12.1.10", - "postcss-custom-selectors": "^6.0.3", - "postcss-dir-pseudo-class": "^6.0.5", - "postcss-double-position-gradients": "^3.1.2", - "postcss-env-function": "^4.0.6", - "postcss-focus-visible": "^6.0.4", - "postcss-focus-within": "^5.0.4", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.5", - "postcss-image-set-function": "^4.0.7", - "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.1", - "postcss-logical": "^5.0.4", - "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.2.0", - "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.4", - "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.5", - "postcss-pseudo-class-any-link": "^7.1.6", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", - "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", - "license": "CC0-1.0", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "license": "MIT", - "peerDependencies": { - "postcss": "^8.0.3" - } - }, - "node_modules/postcss-selector-not": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", - "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", - "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/postcss-svgo/node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/postcss-svgo/node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "license": "CC0-1.0" - }, - "node_modules/postcss-svgo/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss-svgo/node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "license": "MIT", - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "license": "MIT" - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" - } - }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "license": "MIT" - }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", - "license": "MIT", - "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "license": "MIT", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "license": "MIT", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "license": "MIT" - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", - "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", - "license": "MIT", - "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "license": "MIT" - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "license": "MIT", - "dependencies": { - "performance-now": "^2.1.0" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-app-polyfill": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", - "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", - "license": "MIT", - "dependencies": { - "core-js": "^3.19.2", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.9", - "whatwg-fetch": "^3.6.2" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "license": "MIT" - }, - "node_modules/react-chartjs-2": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-5.2.0.tgz", - "integrity": "sha512-98iN5aguJyVSxp5U3CblRLH67J8gkfyGNbiK3c+l1QI/G4irHMPQw44aEPmjVag+YKTyQ260NcF82GTQ3bdscA==", - "license": "MIT", - "peerDependencies": { - "chart.js": "^4.1.1", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-dev-utils": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", - "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "address": "^1.1.2", - "browserslist": "^4.18.1", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "detect-port-alt": "^1.1.6", - "escape-string-regexp": "^4.0.0", - "filesize": "^8.0.6", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.5.0", - "global-modules": "^2.0.0", - "globby": "^11.0.4", - "gzip-size": "^6.0.0", - "immer": "^9.0.7", - "is-root": "^2.1.0", - "loader-utils": "^3.2.0", - "open": "^8.4.0", - "pkg-up": "^3.1.0", - "prompts": "^2.4.2", - "react-error-overlay": "^6.0.11", - "recursive-readdir": "^2.2.2", - "shell-quote": "^1.7.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-dev-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/react-dev-utils/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", - "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", - "license": "MIT", - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/react-dev-utils/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/react-dom": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.2" - }, - "peerDependencies": { - "react": "^18.3.1" - } - }, - "node_modules/react-error-overlay": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", - "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", - "license": "MIT" - }, - "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "license": "MIT" - }, - "node_modules/react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-scripts": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", - "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.16.0", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", - "@svgr/webpack": "^5.5.0", - "babel-jest": "^27.4.2", - "babel-loader": "^8.2.3", - "babel-plugin-named-asset-import": "^0.3.8", - "babel-preset-react-app": "^10.0.1", - "bfj": "^7.0.2", - "browserslist": "^4.18.1", - "camelcase": "^6.2.1", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "css-loader": "^6.5.1", - "css-minimizer-webpack-plugin": "^3.2.0", - "dotenv": "^10.0.0", - "dotenv-expand": "^5.1.0", - "eslint": "^8.3.0", - "eslint-config-react-app": "^7.0.1", - "eslint-webpack-plugin": "^3.1.1", - "file-loader": "^6.2.0", - "fs-extra": "^10.0.0", - "html-webpack-plugin": "^5.5.0", - "identity-obj-proxy": "^3.0.0", - "jest": "^27.4.3", - "jest-resolve": "^27.4.2", - "jest-watch-typeahead": "^1.0.0", - "mini-css-extract-plugin": "^2.4.5", - "postcss": "^8.4.4", - "postcss-flexbugs-fixes": "^5.0.2", - "postcss-loader": "^6.2.1", - "postcss-normalize": "^10.0.1", - "postcss-preset-env": "^7.0.1", - "prompts": "^2.4.2", - "react-app-polyfill": "^3.0.0", - "react-dev-utils": "^12.0.1", - "react-refresh": "^0.11.0", - "resolve": "^1.20.0", - "resolve-url-loader": "^4.0.0", - "sass-loader": "^12.3.0", - "semver": "^7.3.5", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.1", - "tailwindcss": "^3.0.2", - "terser-webpack-plugin": "^5.2.5", - "webpack": "^5.64.4", - "webpack-dev-server": "^4.6.0", - "webpack-manifest-plugin": "^4.0.2", - "workbox-webpack-plugin": "^6.4.1" - }, - "bin": { - "react-scripts": "bin/react-scripts.js" - }, - "engines": { - "node": ">=14.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - }, - "peerDependencies": { - "react": ">= 16", - "typescript": "^3.2.1 || ^4" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "license": "MIT", - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/recursive-readdir": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", - "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", - "license": "MIT", - "dependencies": { - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "license": "MIT", - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regex-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", - "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==", - "license": "MIT" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "license": "MIT", - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/renderkid": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", - "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", - "license": "MIT", - "dependencies": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^6.0.1" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-url-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", - "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", - "license": "MIT", - "dependencies": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^7.0.35", - "source-map": "0.6.1" - }, - "engines": { - "node": ">=8.9" - }, - "peerDependencies": { - "rework": "1.0.1", - "rework-visit": "1.0.0" - }, - "peerDependenciesMeta": { - "rework": { - "optional": true - }, - "rework-visit": { - "optional": true - } - } - }, - "node_modules/resolve-url-loader/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "license": "MIT" - }, - "node_modules/resolve-url-loader/node_modules/picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "license": "ISC" - }, - "node_modules/resolve-url-loader/node_modules/postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "license": "MIT", - "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - } - }, - "node_modules/resolve-url-loader/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve.exports": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", - "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "license": "MIT", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-terser/node_modules/jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "license": "MIT" - }, - "node_modules/sanitize.css": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", - "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==", - "license": "CC0-1.0" - }, - "node_modules/sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", - "license": "MIT", - "dependencies": { - "klona": "^2.0.4", - "neo-async": "^2.6.2" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - } - } - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "license": "ISC" - }, - "node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "license": "ISC", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/schema-utils/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "license": "MIT" - }, - "node_modules/select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "license": "MIT" - }, - "node_modules/selfsigned": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", - "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", - "license": "MIT", - "dependencies": { - "@types/node-forge": "^1.3.0", - "node-forge": "^1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "license": "ISC" - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "license": "ISC" - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "license": "MIT", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "license": "ISC" - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "license": "MIT" - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "license": "MIT", - "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "license": "MIT" - }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead", - "license": "MIT" - }, - "node_modules/spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "license": "BSD-3-Clause" - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", - "license": "MIT" - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "license": "MIT" - }, - "node_modules/static-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", - "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", - "license": "MIT", - "dependencies": { - "escodegen": "^1.8.1" - } - }, - "node_modules/static-eval/node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/static-eval/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/static-eval/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "license": "MIT", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-eval/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "license": "MIT", - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "license": "MIT", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-natural-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", - "license": "MIT" - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/string.prototype.includes": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", - "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", - "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "regexp.prototype.flags": "^1.5.2", - "set-function-name": "^2.0.2", - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.repeat": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", - "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", - "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/stringify-object": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "license": "BSD-2-Clause", - "dependencies": { - "get-own-enumerable-property-symbols": "^3.0.0", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", - "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "license": "MIT", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-loader": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", - "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", - "license": "MIT", - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/sucrase": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "glob": "^10.3.10", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/sucrase/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/sucrase/node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/sucrase/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/sucrase/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", - "license": "MIT" - }, - "node_modules/svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", - "license": "MIT", - "dependencies": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/svgo/node_modules/css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "node_modules/svgo/node_modules/css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/svgo/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/svgo/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "license": "BSD-2-Clause" - }, - "node_modules/svgo/node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "~1.0.0" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "license": "MIT" - }, - "node_modules/tailwindcss": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz", - "integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==", - "license": "MIT", - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.0", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.21.0", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/tempy": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", - "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", - "license": "MIT", - "dependencies": { - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terser": { - "version": "5.31.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.4.tgz", - "integrity": "sha512-3OU03GgblDgu0g+sdnsVzhBPxnjV+WJuMmocN1qBBZDQ3ia7jZQSAkePeKbPlYAejGXUTYe1CmSaUeV51mvaIw==", - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "license": "MIT" - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "license": "ISC", - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "license": "MIT" - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "license": "MIT", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/throat": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", - "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", - "license": "MIT" - }, - "node_modules/thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "license": "MIT" - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "license": "BSD-3-Clause" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tough-cookie": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", - "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "license": "MIT", - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", - "license": "MIT" - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "license": "Apache-2.0" - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "license": "MIT", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "license": "0BSD" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "license": "MIT", - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "license": "0BSD" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "license": "MIT", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "license": "MIT", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "license": "Apache-2.0", - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/underscore": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", - "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==", - "license": "MIT" - }, - "node_modules/undici-types": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz", - "integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==", - "license": "MIT" - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "license": "MIT", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "license": "MIT", - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", - "license": "MIT" - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "license": "MIT", - "engines": { - "node": ">=4", - "yarn": "*" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", - "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "license": "MIT", - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8-to-istanbul": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", - "license": "ISC", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "license": "MIT" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", - "license": "MIT", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "license": "MIT", - "dependencies": { - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "license": "Apache-2.0", - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "license": "MIT", - "dependencies": { - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/web-vitals": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", - "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==", - "license": "Apache-2.0" - }, - "node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=10.4" - } - }, - "node_modules/webpack": { - "version": "5.93.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz", - "integrity": "sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==", - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", - "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", - "license": "MIT", - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/webpack-dev-server": { - "version": "4.15.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", - "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", - "license": "MIT", - "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.4", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/webpack-manifest-plugin": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", - "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", - "license": "MIT", - "dependencies": { - "tapable": "^2.0.0", - "webpack-sources": "^2.2.0" - }, - "engines": { - "node": ">=12.22.0" - }, - "peerDependencies": { - "webpack": "^4.44.2 || ^5.47.0" - } - }, - "node_modules/webpack-manifest-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", - "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", - "license": "MIT", - "dependencies": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "license": "Apache-2.0", - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "license": "Apache-2.0", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.24" - } - }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.20", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", - "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", - "license": "MIT" - }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "license": "MIT" - }, - "node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "license": "MIT", - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", - "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", - "license": "MIT", - "dependencies": { - "function.prototype.name": "^1.1.6", - "has-tostringtag": "^1.0.2", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "license": "MIT", - "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/workbox-background-sync": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", - "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", - "license": "MIT", - "dependencies": { - "idb": "^7.0.1", - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-broadcast-update": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", - "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-build": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", - "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", - "license": "MIT", - "dependencies": { - "@apideck/better-ajv-errors": "^0.3.1", - "@babel/core": "^7.11.1", - "@babel/preset-env": "^7.11.0", - "@babel/runtime": "^7.11.2", - "@rollup/plugin-babel": "^5.2.0", - "@rollup/plugin-node-resolve": "^11.2.1", - "@rollup/plugin-replace": "^2.4.1", - "@surma/rollup-plugin-off-main-thread": "^2.2.3", - "ajv": "^8.6.0", - "common-tags": "^1.8.0", - "fast-json-stable-stringify": "^2.1.0", - "fs-extra": "^9.0.1", - "glob": "^7.1.6", - "lodash": "^4.17.20", - "pretty-bytes": "^5.3.0", - "rollup": "^2.43.1", - "rollup-plugin-terser": "^7.0.0", - "source-map": "^0.8.0-beta.0", - "stringify-object": "^3.3.0", - "strip-comments": "^2.0.1", - "tempy": "^0.6.0", - "upath": "^1.2.0", - "workbox-background-sync": "6.6.0", - "workbox-broadcast-update": "6.6.0", - "workbox-cacheable-response": "6.6.0", - "workbox-core": "6.6.0", - "workbox-expiration": "6.6.0", - "workbox-google-analytics": "6.6.0", - "workbox-navigation-preload": "6.6.0", - "workbox-precaching": "6.6.0", - "workbox-range-requests": "6.6.0", - "workbox-recipes": "6.6.0", - "workbox-routing": "6.6.0", - "workbox-strategies": "6.6.0", - "workbox-streams": "6.6.0", - "workbox-sw": "6.6.0", - "workbox-window": "6.6.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", - "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", - "license": "MIT", - "dependencies": { - "json-schema": "^0.4.0", - "jsonpointer": "^5.0.0", - "leven": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "ajv": ">=8" - } - }, - "node_modules/workbox-build/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/workbox-build/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/workbox-build/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "license": "MIT" - }, - "node_modules/workbox-build/node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "license": "BSD-3-Clause", - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/workbox-build/node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "license": "MIT", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/workbox-build/node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "license": "BSD-2-Clause" - }, - "node_modules/workbox-build/node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/workbox-cacheable-response": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", - "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", - "deprecated": "workbox-background-sync@6.6.0", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-core": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", - "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==", - "license": "MIT" - }, - "node_modules/workbox-expiration": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", - "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", - "license": "MIT", - "dependencies": { - "idb": "^7.0.1", - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-google-analytics": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", - "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", - "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained", - "license": "MIT", - "dependencies": { - "workbox-background-sync": "6.6.0", - "workbox-core": "6.6.0", - "workbox-routing": "6.6.0", - "workbox-strategies": "6.6.0" - } - }, - "node_modules/workbox-navigation-preload": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", - "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-precaching": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", - "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0", - "workbox-routing": "6.6.0", - "workbox-strategies": "6.6.0" - } - }, - "node_modules/workbox-range-requests": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", - "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-recipes": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", - "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", - "license": "MIT", - "dependencies": { - "workbox-cacheable-response": "6.6.0", - "workbox-core": "6.6.0", - "workbox-expiration": "6.6.0", - "workbox-precaching": "6.6.0", - "workbox-routing": "6.6.0", - "workbox-strategies": "6.6.0" - } - }, - "node_modules/workbox-routing": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", - "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-strategies": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", - "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0" - } - }, - "node_modules/workbox-streams": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", - "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", - "license": "MIT", - "dependencies": { - "workbox-core": "6.6.0", - "workbox-routing": "6.6.0" - } - }, - "node_modules/workbox-sw": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", - "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==", - "license": "MIT" - }, - "node_modules/workbox-webpack-plugin": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", - "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", - "license": "MIT", - "dependencies": { - "fast-json-stable-stringify": "^2.1.0", - "pretty-bytes": "^5.4.1", - "upath": "^1.2.0", - "webpack-sources": "^1.4.3", - "workbox-build": "6.6.0" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "webpack": "^4.4.0 || ^5.9.0" - } - }, - "node_modules/workbox-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "license": "MIT", - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "node_modules/workbox-window": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", - "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", - "license": "MIT", - "dependencies": { - "@types/trusted-types": "^2.0.2", - "workbox-core": "6.6.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "license": "ISC" - }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "license": "MIT", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "license": "Apache-2.0" - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "license": "MIT" - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/my-chart-test/package.json b/my-chart-test/package.json deleted file mode 100644 index 52bc16ee8a77cc5f477a3aa629fa5e397641ba28..0000000000000000000000000000000000000000 --- a/my-chart-test/package.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "my-chart-test", - "version": "0.1.0", - "private": true, - "dependencies": { - "@testing-library/jest-dom": "^5.17.0", - "@testing-library/react": "^13.4.0", - "@testing-library/user-event": "^13.5.0", - "chart.js": "^4.4.3", - "react": "^18.3.1", - "react-chartjs-2": "^5.2.0", - "react-dom": "^18.3.1", - "react-scripts": "5.0.1", - "web-vitals": "^2.1.4" - }, - "scripts": { - "start": "react-scripts start", - "build": "react-scripts build", - "test": "react-scripts test", - "eject": "react-scripts eject" - }, - "eslintConfig": { - "extends": [ - "react-app", - "react-app/jest" - ] - }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/my-chart-test/public/favicon.ico b/my-chart-test/public/favicon.ico deleted file mode 100644 index a11777cc471a4344702741ab1c8a588998b1311a..0000000000000000000000000000000000000000 Binary files a/my-chart-test/public/favicon.ico and /dev/null differ diff --git a/my-chart-test/public/index.html b/my-chart-test/public/index.html deleted file mode 100644 index aa069f27cbd9d53394428171c3989fd03db73c76..0000000000000000000000000000000000000000 --- a/my-chart-test/public/index.html +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8" /> - <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <meta name="theme-color" content="#000000" /> - <meta - name="description" - content="Web site created using create-react-app" - /> - <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> - <!-- - manifest.json provides metadata used when your web app is installed on a - user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ - --> - <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> - <!-- - Notice the use of %PUBLIC_URL% in the tags above. - It will be replaced with the URL of the `public` folder during the build. - Only files inside the `public` folder can be referenced from the HTML. - - Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will - work correctly both with client-side routing and a non-root public URL. - Learn how to configure a non-root public URL by running `npm run build`. - --> - <title>React App</title> - </head> - <body> - <noscript>You need to enable JavaScript to run this app.</noscript> - <div id="root"></div> - <!-- - This HTML file is a template. - If you open it directly in the browser, you will see an empty page. - - You can add webfonts, meta tags, or analytics to this file. - The build step will place the bundled scripts into the <body> tag. - - To begin the development, run `npm start` or `yarn start`. - To create a production bundle, use `npm run build` or `yarn build`. - --> - </body> -</html> diff --git a/my-chart-test/public/logo192.png b/my-chart-test/public/logo192.png deleted file mode 100644 index fc44b0a3796c0e0a64c3d858ca038bd4570465d9..0000000000000000000000000000000000000000 Binary files a/my-chart-test/public/logo192.png and /dev/null differ diff --git a/my-chart-test/public/logo512.png b/my-chart-test/public/logo512.png deleted file mode 100644 index a4e47a6545bc15971f8f63fba70e4013df88a664..0000000000000000000000000000000000000000 Binary files a/my-chart-test/public/logo512.png and /dev/null differ diff --git a/my-chart-test/public/manifest.json b/my-chart-test/public/manifest.json deleted file mode 100644 index 080d6c77ac21bb2ef88a6992b2b73ad93daaca92..0000000000000000000000000000000000000000 --- a/my-chart-test/public/manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "short_name": "React App", - "name": "Create React App Sample", - "icons": [ - { - "src": "favicon.ico", - "sizes": "64x64 32x32 24x24 16x16", - "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": ".", - "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" -} diff --git a/my-chart-test/public/robots.txt b/my-chart-test/public/robots.txt deleted file mode 100644 index e9e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e..0000000000000000000000000000000000000000 --- a/my-chart-test/public/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/my-chart-test/src/App.css b/my-chart-test/src/App.css deleted file mode 100644 index 74b5e053450a48a6bdb4d71aad648e7af821975c..0000000000000000000000000000000000000000 --- a/my-chart-test/src/App.css +++ /dev/null @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/my-chart-test/src/App.js b/my-chart-test/src/App.js deleted file mode 100644 index 37845757234ccb68531c10cf7a2ffc589c47e342..0000000000000000000000000000000000000000 --- a/my-chart-test/src/App.js +++ /dev/null @@ -1,25 +0,0 @@ -import logo from './logo.svg'; -import './App.css'; - -function App() { - return ( - <div className="App"> - <header className="App-header"> - <img src={logo} className="App-logo" alt="logo" /> - <p> - Edit <code>src/App.js</code> and save to reload. - </p> - <a - className="App-link" - href="https://reactjs.org" - target="_blank" - rel="noopener noreferrer" - > - Learn React - </a> - </header> - </div> - ); -} - -export default App; diff --git a/my-chart-test/src/App.test.js b/my-chart-test/src/App.test.js deleted file mode 100644 index 1f03afeece5ac28064fa3c73a29215037465f789..0000000000000000000000000000000000000000 --- a/my-chart-test/src/App.test.js +++ /dev/null @@ -1,8 +0,0 @@ -import { render, screen } from '@testing-library/react'; -import App from './App'; - -test('renders learn react link', () => { - render(<App />); - const linkElement = screen.getByText(/learn react/i); - expect(linkElement).toBeInTheDocument(); -}); diff --git a/my-chart-test/src/index.css b/my-chart-test/src/index.css deleted file mode 100644 index ec2585e8c0bb8188184ed1e0703c4c8f2a8419b0..0000000000000000000000000000000000000000 --- a/my-chart-test/src/index.css +++ /dev/null @@ -1,13 +0,0 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; -} diff --git a/my-chart-test/src/index.js b/my-chart-test/src/index.js deleted file mode 100644 index d563c0fb10ba0e42724b21286eb546ee4e5734fc..0000000000000000000000000000000000000000 --- a/my-chart-test/src/index.js +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './index.css'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; - -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render( - <React.StrictMode> - <App /> - </React.StrictMode> -); - -// If you want to start measuring performance in your app, pass a function -// to log results (for example: reportWebVitals(console.log)) -// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals -reportWebVitals(); diff --git a/my-chart-test/src/logo.svg b/my-chart-test/src/logo.svg deleted file mode 100644 index 9dfc1c058cebbef8b891c5062be6f31033d7d186..0000000000000000000000000000000000000000 --- a/my-chart-test/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg> \ No newline at end of file diff --git a/my-chart-test/src/reportWebVitals.js b/my-chart-test/src/reportWebVitals.js deleted file mode 100644 index 5253d3ad9e6be6690549cb255f5952337b02401d..0000000000000000000000000000000000000000 --- a/my-chart-test/src/reportWebVitals.js +++ /dev/null @@ -1,13 +0,0 @@ -const reportWebVitals = onPerfEntry => { - if (onPerfEntry && onPerfEntry instanceof Function) { - import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { - getCLS(onPerfEntry); - getFID(onPerfEntry); - getFCP(onPerfEntry); - getLCP(onPerfEntry); - getTTFB(onPerfEntry); - }); - } -}; - -export default reportWebVitals; diff --git a/my-chart-test/src/setupTests.js b/my-chart-test/src/setupTests.js deleted file mode 100644 index 8f2609b7b3e0e3897ab3bcaad13caf6876e48699..0000000000000000000000000000000000000000 --- a/my-chart-test/src/setupTests.js +++ /dev/null @@ -1,5 +0,0 @@ -// jest-dom adds custom jest matchers for asserting on DOM nodes. -// allows you to do things like: -// expect(element).toHaveTextContent(/react/i) -// learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom'; diff --git a/package.json b/package.json index ed3c3723a9fea1243b65ef34c3705dae71f4bb10..c7cb8a155341d64561f42d5cb2937f28dde27453 100644 --- a/package.json +++ b/package.json @@ -19,10 +19,8 @@ "@mui/material": "^5.16.5", "@mui/x-charts": "^7.11.0", "@popperjs/core": "^2.11.8", - "@refinedev/core": "^4.53.0", "beautiful-react-diagrams": "^0.5.1", "bootstrap": "^5.3.3", - "chart.js": "^4.4.3", "dangerously-set-html-content": "^1.1.0", "dompurify": "^3.1.5", "framer-motion": "^11.2.13", @@ -33,11 +31,9 @@ "markmap-toolbar": "^0.17.0", "react": "^18.2.0", "react-bootstrap": "^2.10.2", - "react-chartjs-2": "^5.2.0", "react-collapsed": "^4.1.2", "react-dom": "^18.2.0", "react-js-diagrams": "^3.1.3", - "react-pdf": "^9.0.0", "react-photo-album": "^2.4.1", "react-router-dom": "^6.26.0", "react-select": "^5.8.0", diff --git a/rna.png b/rna.png new file mode 100644 index 0000000000000000000000000000000000000000..b2f3562b84f99aee2313ff8e6bf44a4ca269b870 Binary files /dev/null and b/rna.png differ diff --git a/src/App/App.css b/src/App/App.css index d8f6de7bec1224d063db20b06af2155dec44a5bb..8cc619fd7c93d1ed8a8ba9d7f6cf8b9a32264eed 100644 --- a/src/App/App.css +++ b/src/App/App.css @@ -3,7 +3,7 @@ /* * * * * * * */ :root { /* our colours*/ - --text-primary: #850F78; + --text-primary: #850F78 ; --mediumpurple: #bc15aa; /*--purple: #B85BD1; */ --accen-secondary: #F57D22; @@ -13,6 +13,8 @@ --accent-primary: #F4CC1E; --lightyellow: #fae99e; --lightblue: #A0A7F3 ; + --lightblue-zwei: #abb1f4; + --lightblue-drei: #c6caf8; --verylightblue: #ebecfd; --offblack: #32232C ; --cebitecgray: #8295A4; @@ -48,11 +50,27 @@ --node-size: 60px; } +html{ + scroll-behavior: smooth; +} +.max400{ + max-height: 400px !important; +} .none{ display: none; } +.small-row{ + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-.5 * var(--bs-gutter-x)); + margin-left: calc(-.5 * var(--bs-gutter-x)); +} + .col-max{ flex: 0 0 0%; width: max-content !important; @@ -64,10 +82,13 @@ width:16.66666667% !important; } + .col-1{ width: 8.33333333% !important; } - +.col2punkt5{ + width: 20% !important; +} .col-max-10{ flex: 0 0 auto; max-width: 83.33333333% !important; @@ -76,7 +97,20 @@ .col{ max-width: 100% !important; } - +.no-pad{ + padding: 0 !important; +} +.no-marg{ + margin: 0 !important; +} +hr{ + color: var(--text-primary) !important; + margin: 0 !important; + opacity: 1 !important; + height: 5px; + border-width: 3px !important; + margin-bottom: 10px !important; +} /* * * * * * * */ /* * * BODY* * */ @@ -94,14 +128,19 @@ p { text-align: justify; } a { - color: var(--lightblue) !important; + color: var(--accent-gradient-one-of-three) !important; text-decoration: none !important; } - +h3{ + margin-bottom: 2vw !important; +} code{ color:black !important; } +.doi{ + color: var(--text-primary) !important; +} .codesnippet{ padding-left: 30px; padding-top: 5px; @@ -130,13 +169,30 @@ code{ text-shadow: 5px 5px 15px black; transition: all 0.1s linear; } +.sideitem{ + min-height: 40px; + display: inline-block; +} + +.active-sideitem summary{ + color: white; +} + +.sidesubtab ul{ + list-style-type: none; +} .sidebar>div{ overflow: hidden; -text-align: center; +text-align: left; +margin-left: 10px; cursor: pointer; } + +/* .sidebar div a div div span ul li a span{ + color: white ; +} */ .sidebar>div>a>span{ -padding: 1rem; +padding: 0.5rem; color: var(--text-primary); } .active-scroll-spy{ @@ -150,7 +206,7 @@ color: var(--text-primary); .absolute{position: absolute;} .left-aligned {margin-left: auto;} .align-items-center{align-items:center!important} -.zweirem{padding: 2rem;} +.zweirem{padding-top: 2rem; padding-bottom: 3rem;} .left{float: left;} .right{float: right;} .sticky-top { @@ -161,6 +217,9 @@ color: var(--text-primary); top: 80px !important; overflow-wrap: break-word; } +.small-only{ + display: none; +} .fullsize{ max-height: 100% !important; max-width: 100% !important; @@ -247,15 +306,23 @@ tr:nth-child(odd) { background-color: #f3f3f3; } tr:nth-child(1) { - background-color: var(--lightblue) !important; + background-color: var(--accent-gradient-one-of-three) !important; } + /* * * * * * * */ /* BACKGROUND */ /* * * * * * * */ .bg-video-container{ margin-bottom: 10vw !important; } + +.bg-db{ + background-color: var(--darkerbeige) !important; +} +.bg-lb{ + background-color: var(--lightblue) !important; +} .bg-d{ background-color: var(--text-primary) !important; } @@ -279,7 +346,7 @@ margin-bottom: 10vw !important; } .header-title{ - color: var(--text-primary); + color: var(--text-primary) !important; text-align: left; align-self: flex-start; padding: 0 30px; @@ -298,23 +365,25 @@ margin-bottom: 10vw !important; top: 50%; left: 50%; transform: translate(-50%, -50%); - font-size: 5vw; + font-size: 15vh; letter-spacing:0.1em; -webkit-text-fill-color: transparent; -webkit-text-stroke-width: 0.3vw; -webkit-text-stroke-color: var(--accent-primary); text-shadow: - 0.4vw 0.4vw var(--mediumpurple), - 0.8vw 0.8vw var(--offblack); + 0.4vw 0.4vw var(--text-primary ), + 1vw 1vw var(--offblack); +} +.popart-wrapper{ + min-height: 5vw; + margin-bottom: 20px !important; } h2{ font-size: 3rem !important; - -webkit-background-clip: text !important; - -webkit-text-stroke-width: 2px !important; - -webkit-text-stroke-color: var(--text-primary) !important; background-clip: text !important; - color: transparent !important; + color: var(--text-primary) !important; padding-top: 15px !important; + font-weight: bolder !important; /* background-image: repeating-linear-gradient(-45deg, var(--text-primary) 0, var(--text-primary) 2px, white 2px, white 4px) !important; */} @@ -404,12 +473,12 @@ footer{ background-color: var(--background); } footer a { - color: white; + color: var(--ourbeige) !important; font-weight: bold; text-decoration: none; } footer a:hover { - color: white; + color: var(--accent-gradient-three-of-three) !important; text-decoration: underline; } @@ -430,7 +499,7 @@ footer a:hover { } .bfh-more-button{ - margin-top: 10px; + margin-top: 20px; padding: 5px; border-radius: 10px; padding-left: 10px; @@ -453,12 +522,13 @@ footer a:hover { padding-left: 30px; } .village-style-button{ + flex: 1 0 0%; box-shadow: 5px 5px 15px gray !important; border-radius: 2rem !important; padding: 0 !important; max-width: 12% !important; aspect-ratio: 2 / 3 !important; - margin-left: 1vw; + margin: auto; } .village-style-button:hover{ box-shadow: 5px 5px 15px black !important; @@ -478,13 +548,21 @@ footer a:hover { /* * * * * * * * * */ /* * * IMAGES * * */ /* * * * * * * * * */ +.teamcolzwei{ + margin-top: 3rem !important; +} img, picture, svg { max-width: 100%; display: block; } - +.winner-img{ /* @media */ + margin-left: 20px; + width: 5vw !important; + max-height: 100px; + margin-top: 10px !important; +} .s-svg{ max-width: 80%; } @@ -500,11 +578,27 @@ img .middle{ /* .sponsor-portrait{ border: 5px solid var(--accent-primary); } */ + +.team-name{ + font-size: large; + font-weight: bold; + text-align: left !important; + width: min-content; +} .socials{ height: 1.5rem; width: auto; margin: 0.5rem; } +.team-socials{ + height: 1rem; + width: auto; + margin-left: 0.2rem; +} +.steckbrief{ + margin-top: 2rem !important; +} + .spin { transition: transform 1s ease-in-out; } @@ -540,11 +634,17 @@ img .middle{ .img-half{ max-width: 50% !important; } +.interview-img{ + max-height: 70% !important; +} .img-round{ border-radius: 50%; max-width: 80%; } +.img-cube{ + max-width: 80%; +} .updown{ max-width: 3vw; } @@ -578,9 +678,10 @@ img .middle{ display: flex; vertical-align: middle; } + #idt-portrait{ height: 350px !important; - background-image: url(https://static.igem.wiki/teams/5247/photos/lab/in-inhaler-flipped.jpg); + background-image: url(https://static.igem.wiki/teams/5247/sponsors/idt-foto.png); background-size: auto 100%; background-repeat: no-repeat; } @@ -619,68 +720,6 @@ svg{ } - - -/* * * * * * * */ -/* MEDIA RULES */ -/* * * * * * * */ -/*For tablet or bigger*/ -@media screen and (min-width: 992px) { - /* navbar opens on hover*/ - .dropdown:hover .dropdown-menu { - display: block; - } -} -/*For Tablet and smaller*/ -@media screen and (max-width: 992px){ - -} -/*For Smartphones*/ -@media screen and (max-width: 768px){ - svg text{ - font-size: 9vw; - stroke-width:1px; - } - .village-style-button h3{ - display: none !important; - } - .village-style-button{ - box-shadow: 1px 1px 1px gray; - border-radius: 10px; - border-color: black; - } - .village-style-button:hover{ - box-shadow: none; - } - .village-style-button img{ - max-width: 90%; - max-height: 90%; - padding-top: 10px; - padding-bottom: 5px; - } - .img-half{ - max-width: 100% !important; - } -} -/*Bigger than smartphones*/ -@media only screen and (min-width: 768px) { - .col-1 {width: 8.33%;} - .col-2 {width: 16.66%;} - .col-3 {width: 25%;} - .col-4 {width: 33.33%;} - .col-5 {width: 41.66%;} - .col-6 {width: 50%;} - .col-7 {width: 58.33%;} - .col-8 {width: 66.66%;} - .col-9 {width: 75%;} - .col-10 {width: 83.33%;} - .col-11 {width: 91.66%;} - .col-12 {width: 100%;} - - -} - - /* * * * * * * */ /* * EFFECTS * */ /* * * * * * * */ @@ -769,151 +808,7 @@ svg{ padding-top: 10px; padding-bottom: 10px; } -/* TIMELINE EINS */ -.timeline-container { - display: flex; - flex-direction: column; - position: relative; - margin: 40px 0; -} - -.timeline-container::after { - background-color: var(--text-primary); - position: absolute; - left: calc(50% - 2px); - content: ""; - width: 4px; - height: 100%; - z-index: 0; -} -.timeline-item { - min-width: 100px; - /* display: flex; */ - justify-content: flex-end; - padding-right: 30px; - position: relative; - margin: 10px 0; - width: 50%; -} - -.timeline-item:nth-child(odd) { - align-self: flex-end; - justify-content: flex-start; - padding-left: 30px; - padding-right: 0; -} -.timeline-item-content { - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); - border-radius: 5px; - background-color: #fff; - display: flex; - flex-direction: column; - align-items: flex-end; - padding: 15px; - position: relative; - text-align: right; -} -.timeline-end{ - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); - border-radius: 5px; - background-color: #fff; - padding: 15px; - position: relative; - text-align: center; - z-index: 1; - margin-top: 8vw; -} -.timeline-begin{ - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); - border-radius: 5px; - background-color: #fff; - padding: 15px; - position: relative; - text-align: center; - z-index: 1; - margin-bottom: 8vw; -} - -.timeline-item-content::after { - background-color: #fff; - box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.2); - position: absolute; - right: -7.5px; - top: calc(50% - 7.5px); - transform: rotate(45deg); - width: 15px; - height: 15px; -} - -.timeline-item:nth-child(odd) .timeline-item-content { - text-align: left; - align-items: flex-start; -} - -.timeline-item:nth-child(odd) .timeline-item-content::after { - right: auto; - left: -7.5px; - box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2); -} -.timeline-item-content .tag { - color: #fff; - font-size: 12px; - font-weight: bold; - top: 5px; - left: 5px; - letter-spacing: 1px; - padding: 5px; - position: absolute; - text-transform: uppercase; -} - -.timeline-item:nth-child(odd) .timeline-item-content .tag { - left: auto; - right: 5px; -} - -.timeline-item-content time { - color: var(--lightblue); - font-size: 12px; - font-weight: bold; -} - -.timeline-item-content p { - font-size: 16px; - line-height: 24px; - margin: 15px 0; -/* max-width: 250px; */ -} -.timeline-item-content span{ - font-size: 18px; -} - -.timeline-item-content a { - font-size: 14px; - font-weight: bold; -} - -.timeline-item-content a::after { - font-size: 12px; -} - -.timeline-item-content .circle { - background-color: #fff; - border: 3px solid var(--text-primary); - border-radius: 50%; - position: absolute; - top: calc(50% - 10px); - right: -40px; - width: 20px; - height: 20px; - z-index: 100; -} - -.timeline-item:nth-child(odd) .timeline-item-content .circle { - right: auto; - left: -40px; -} @media only screen and (max-width: 1023px) { .timeline-item-content { max-width: 100%; @@ -945,196 +840,15 @@ svg{ display: none; } } -/* Horizontal */ -.timeline { - white-space: nowrap; - min-height: 500px; - width: 83vw; - overflow-x: auto; - overflow-y: hidden; - background-color: inherit; - font-size: 1rem; -} - -.timelineol { - font-size: 0; - width: 100vw; - padding: 250px 0; - transition: all 1s; -} - - -.t-tag{ - box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); - color: #fff; - font-size: 12px; - font-weight: bold; - letter-spacing: 1px; - padding: 5px; - margin-bottom: 10px; - text-transform: uppercase; - width: fit-content !important; -} - - -button.tabbutton.Patient.active, button.tabbutton.All.active, -button.tabbutton.Industry.active, button.tabbutton.Academia.active, -button.tabbutton.Medical.active, .modulators.active, .inhalations.active{ - border-color: black; -} - -button.tabbutton:nth-child(1){ - background-color: white; -} - -.Patient, button.tabbutton:nth-child(2){ - background-color: var(--accen-secondary); -} - -.Medical, button.tabbutton:nth-child(3){ - background-color: var(--accent-primary); -} - -.Academia, .Research, button.tabbutton:nth-child(4){ - background-color: var(--lightblue); -} - -.Industry, button.tabbutton:nth-child(5){ - background-color: var(--mediumpurple); -} -.Activist, button.tabbutton:nth-child(6){ - background-color: var(--igemlightgreen); -} - -.Ethics{ - background-color: var(--offblack); -} - -.timelineolli { - position: relative; - display: inline-block; - list-style-type: none; - width: 160px; - height: 5px; - /* background-image: url("../components/data/stroke.svg"); - background-size: auto 100%; - background-repeat: round; - background-position: 0em; */ - background: var(--text-primary); -} -.timeline ol li:last-child { - width: 280px; -} - - -.timeline ol li:not(:first-child) { - margin-left: 14px; -} - -.timeline ol li:not(:last-child)::after { - content: ''; - position: absolute; - top: 50%; - left: calc(100% + 1px); - bottom: 0; - width: 12px; - height: 12px; - transform: translateY(-50%); - border-radius: 50%; - background: var(--text-primary); -} - - -.timeline ol li .timeline-item { - min-height: 310%; - position: absolute; - left: calc(100% + 7px); - width: 280px; - padding: 15px; - font-size: 0.9rem; - white-space: normal; - color: black; - background: white; -} -.timeline ol li:nth-child(2n+1) .moretop{ - top: -30px !important; -} - -.timeline ol li .timeline-item::before { - content: ''; - position: absolute; - top: 100%; - left: 0; - width: 0; - height: 0; - border-style: solid; - -} - -.timeline ol li:nth-child(odd) .timeline-item { - top: -16px; - transform: translateY(-100%); - box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); -} - -.timeline ol li:nth-child(even) .timeline-item { - box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); - top: calc(100% + 16px); -} -.timeline ol li:nth-child(odd) .timeline-item::before { - top: 100%; - border-width: 8px 8px 0 0; - border-color: white transparent transparent transparent; -} -.timeline ol li:nth-child(even) .timeline-item::before { - top: -8px; - border-width: 8px 0 0 8px; - border-color: transparent transparent transparent white; -} - - - -.card { - border-radius: 4px; - background-color: #fff; - color: #333; - padding: 10px; - box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); - width: 100%; - max-width: 560px; - -} - -.date { - background-color: var(--text-primary) !important; - padding: 4px !important; - color: #fff !important; - border-radius: 4px !important; - font-weight: 500; - font-size: .85rem; -} -.imageAtom{ - object-fit: cover; - overflow: hidden; - width: 100%; - max-height: 400px; -} .imageCredit { margin-top: 10px; font-size: 0.85rem } .imageText { margin-bottom: 10px; font-size: 1rem } .events{ padding: 10px } .event { margin-bottom: 20px } -.date-col{ - position: relative; - background-color: #fff ; - padding: 10px; - width: 10%; - border-right: #000; - border-right-width: 2px; -} + .card-col{ width: 100%; @@ -1171,31 +885,42 @@ button.tabbutton:nth-child(1){ .container_document{ max-width: 40%; } - - -.download-butt{ +.download-butt{ /* @media unnötig */ background-color: var(--text-primary); - padding: 0.5vw; + padding: 0.5vh !important; border-radius: 5px; margin: auto !important; - width: fit-content !important; -} + text-align: center; + min-width: 5vw !important; + width: 30vw !important; + max-width: 200px !important; + min-height: 2vh !important; +} .download-col{ - height: 5vw !important; + height: 5vh !important; display: flex; align-items: center !important; } -.small-i{ - width: 80%; +.small-i{ /* @media unnötig */ + width: 100%; + max-width: 1100px !important; +} +.one-pdf-line{ /* @media fertig */ + height: 1450px !important; +} +.two-pdf-line{ /* @media fertig */ + max-height: 650px !important; + height: 35vh !important; + max-width: 50%; } - /* SHAPES */ .circle { display: flex; width: 10vw; + color: white; height: 10vw; - background-color: var(--lightblue) !important; + background-color: var(--text-primary) !important; box-shadow: 3px 3px 10px black !important; border-radius: 50%; margin: 1vw; @@ -1209,9 +934,9 @@ button.tabbutton:nth-child(1){ /*collapsible*/ .collapse-card { + margin-bottom: 20px; border-radius: 4px; - background-color: var(--ourbeige); - margin-top: 10px; + margin-top: 20px; color: #333; padding: 5px; box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); @@ -1223,7 +948,7 @@ button.tabbutton:nth-child(1){ /*boxes*/ .hint-container { position:relative; - transition:background var(--vp-ct),border-color var(--vp-ct),color var(--vp-ct) + transition:background var(--vp-ct)border-color var(--vp-ct),color var(--vp-ct) } @media print { .hint-container { @@ -1567,16 +1292,16 @@ html[dir=rtl] .hint-container.danger .hint-container-title:before { display: block; margin-left: auto; margin-right: auto; - width: 16rem !important; + width: 8rem !important; max-width: 66% !important; transition: all 1s ease; border: 5px solid var(--text-primary); } .lnp:hover > img{ display: block; - margin-left: auto; - margin-right: auto; - width: 100% !important; + margin-left: none; + margin-right: none; + width: 25rem !important; max-width: 100% !important; } @@ -3227,6 +2952,7 @@ div[class*="boxy"] { display: flex; justify-content: center; align-items: center; + margin: auto; } .boxy-1 { @@ -3314,6 +3040,8 @@ div[class*="boxy"] { background: var(--text-primary); border-radius: 100px; white-space: nowrap; + margin-left: 40px; + margin-top: 20px; text-align: right; } .backtotop:hover{ @@ -3437,4 +3165,258 @@ div[class*="boxy"] { width: 3.8vw; transform: rotate(25deg); border-top: 1px solid var(--text-primary); +} + +.bfh-menu{ /* @media fertig */ + width: fit-content; + margin: auto !important; + max-width: 60vw !important; +} + +a{ + cursor: pointer; +} +.bfh-menu svg a:hover > g circle{ + fill: var(--accent-gradient-three-of-three) !important; +} + +.vertical{ + display:inline; + vertical-align: middle; +} + +.text-1-bfh{ + margin-top: auto !important; + margin-bottom: auto !important; +} + +.panel-talk-gallery{ + padding: 0 !important; + margin-top: 10px !important; + margin-left: 20px !important; + margin-right: 20px !important; +} +.panel-talk-gallery div{ + padding: 0 !important; +} +.panel-talk-gallery .col:nth-child(1), .panel-talk-gallery .col:nth-child(5){ + margin-top: 60px !important; +} +.panel-talk-gallery .col:nth-child(2), .panel-talk-gallery .col:nth-child(4){ + margin-top: 30px !important; +} +.panel-talk-gallery .col .middle{ + margin-top: 15px !important; +} +.middle{ + text-align: center; +} + +.bfh-slider{ + max-width: 500px !important; +} +.bfh-slider img{ + max-width: 400px; + + max-height: 70%; +} + + +.full-screen-width { + position: relative !important; + left: 50% !important; + right: 50% !important; + margin-left: -50vw !important; + margin-right: 50vw !important; + max-width: 100vw !important; + width: 100vw !important; +} + +.collapsible-hr{ + border-width: 2px !important; +} + +.collapsible-a{ + margin-top: 1rem !important; + margin-bottom: 1rem; + margin-left: 1rem !important; +} + +.box{ + padding: 10px; + border-radius: 10px; +} + + + + .detail-sideitem .sideitem{ + padding-left: 10px !important; + } + + .sideitem .cycletab{ + line-height: 100%; + margin-left: 10px; + list-style-type: circle !important; + } + + .active-sideitem { + background-color: var(--text-primary) !important; + color: white !important; + border-radius: 10px; + display: block; + border-width: 10px; + border-color: #850F78; + padding-right: 10px; + padding-left: 10px; + } + + + .img-sponsor-a{ + margin: 20px; + padding: 20px; + max-width: 90%; + } +.sp-a{ + border: 5px solid var(--accent-primary); + background-color: white; + height: 250px !important; +} + +.qabox .question-bubble:nth-child(2){ + margin-bottom: 20px; + margin-right: 0px; + margin-left: auto; + border: 5px solid var(--accent-gradient-one-of-three); +} +.qabox .question-bubble:nth-child(1){ + margin-bottom: 10px; + margin-left: 0px; + margin-right: auto; + border: 5px solid var(--accent-gradient-three-of-three); +} + +.question-bubble{ + border-radius: 10px; + padding: 20px; + width: fit-content; + max-width: 80%; + min-width: 20%; + position: relative; +} + +.qabox .question-bubble:nth-child(2)::before{ + bottom: 20px; + clip-path: polygon(0 0, 100% 100%, 0 75%); + left: calc(100%); + width: 20px; + height: 20px; + content: ""; + position: absolute; + background: var(--accent-gradient-one-of-three); +} + +.qabox .question-bubble:nth-child(1)::before{ + bottom: 20px; + clip-path: polygon(0 100%, 100% 0, 100% 75%); + right: calc(100%); + width: 20px; + height: 20px; + content: ""; + position: absolute; + background: var(--accent-gradient-three-of-three); +} + +.haken-liste{ + list-style: none !important; +} + +.winner{ /* @media */ + vertical-align: middle !important; + font-size: xx-large; + font-weight: 900 ; + margin-top: 10px; +} + +.winners{ + margin-top: 10px !important; +} + +.list-item-img{ + max-height: 1.5rem; +} + +.trophy::before{ + background-image: url(https://static.igem.wiki/teams/5247/design/icons/trophy.svg); + background-size: 40px 40px !important; + content: ''; + display: inline-block; + width: 40px; + height: 40px; +} +.certificate::before{ + background-image: url(https://static.igem.wiki/teams/5247/design/icons/certificate.svg); + background-size: 40px 40px !important; + content: ''; + display: inline-block; + width: 40px; + height: 40px; +} +.tickets::before{ + background-image: url(https://static.igem.wiki/teams/5247/design/icons/tickets.svg); + background-size: 40px 40px !important; + content: ''; + display: inline-block; + width: 40px; + height: 40px; +} +.kit::before{ + background-image: url(https://static.igem.wiki/teams/5247/design/icons/new-box.svg); + background-size: 40px 40px !important; + content: ''; + display: inline-block; + width: 40px; + height: 40px; +} + +.money::before{ + background-image: url(https://static.igem.wiki/teams/5247/design/icons/money.svg); + background-size: 40px 40px !important; + content: ''; + display: inline-block; + width: 40px; + height: 40px; +} +.winners div li{ + vertical-align: middle; + line-height:2rem; +} +.winners div li span{ + font-size: large; + position: relative; + bottom: 1vh; + margin-left: 1rem; +} + +.button-left{ + position:relative; +} + +.left-button{ + float: right; +} + +.detail-sideitem, .sidesubtab, a { + pointer-events: auto; /* Ensure clickable elements can be interacted with */ +} + + +.subtitle-active .sideitem a summary{ + color: white !important; +} +.sideitem a summary{ + color: var(--text-primary) !important; +} + +.active-sideitem a summary{ + color: white !important; } \ No newline at end of file diff --git a/src/App/App.scss b/src/App/App.scss index eadd84d3f972d448981fee669948ddc12cc18fce..18bf165c1f1e7e93f8a121a45f79177ccc0013dd 100644 --- a/src/App/App.scss +++ b/src/App/App.scss @@ -543,4 +543,78 @@ $shadow: #bc15aa; i{ z-index: 1; } -} \ No newline at end of file +} + +.picture-frame { + top: 0; + bottom: 0; + left: 0; + right: 0; + max-width: 400px; + width: 90%; + margin: auto; + background: #fff; + padding: 30px; + border-style: solid; + border-width: 30px; + border-top-color: darken(#850F78, 0%); + border-right-color: darken(#850F78, 10%); + border-bottom-color: darken(#850F78, 0%); + border-left-color: darken(#850F78, 10%); + box-shadow: 2px 2px 4px rgba(0,0,0,.6); +} + +figure.snip1113 { + font-family: 'Raleway', Arial, sans-serif; + position: relative; + overflow: hidden; + min-width: 220px; + max-width: 310px; + width: 80%; + background: #ffffff; + text-align: center; +} + +figure.snip1113 * { + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} + +figure.snip1113 img { + max-width: 65%; + margin: 40px auto; + display: block; + position: relative; + border: 3px solid #F59121; + padding: 15px 15px 85px 15px; + -webkit-transform: translate(0, 0); + transform: translate(0, 0); +} + +figure.snip1113 figcaption { + position: absolute; + height: 120px; + bottom: 0px; + left: 0; + right: 0; + display: block; +} + +figure.snip1113 h3 { + background-color: #ffffff; + color: #000000; + font-size: 1.7em; + width: 100%; + padding: 5px 12px; + margin: 0; + text-transform: uppercase; + font-weight: 400; +} + +figure.snip1113 h3 span { + font-weight: 800; +} + +/* Collapsible 2 */ diff --git a/src/App/App.tsx b/src/App/App.tsx index 42b3927d5bd5ae96276c1ab28580ceea39070bc9..bed1d2a237e2b07a8262c0a18d0efdde2d83a9e4 100644 --- a/src/App/App.tsx +++ b/src/App/App.tsx @@ -1,5 +1,7 @@ -import { useEffect } from "react"; + import { useEffect, useState } from "react"; import "./App.css"; +import "./mediarules.css" +import "./Timelines.css"; import '../App/Graph.css'; import '../components/test.css' import "../contents/example.css" @@ -7,6 +9,7 @@ import "./App.scss"; import 'beautiful-react-diagrams/styles.css'; import "bootstrap/dist/css/bootstrap.min.css"; import "./Graph.css" +import LoadingScreen from "../components/LoadingScreen.tsx"; import { Routes, Route } from "react-router-dom"; import { Footer } from "../components/Footer.tsx"; import { NotFound } from "../components/NotFound.tsx"; @@ -19,6 +22,8 @@ import "./LoadingScreen.css"; const App = () => { + const [isLoading, setIsLoading] = useState(true); + const pathMapping = getPathMapping(); const currentPath = location.pathname @@ -33,7 +38,25 @@ const App = () => { document.title = `${title || ""} | ${import.meta.env.VITE_TEAM_NAME} - iGEM ${import.meta.env.VITE_TEAM_YEAR}`; }, [title]); + + useEffect(() => { + const timer = setTimeout(() => { + console.log("Hiding loading screen"); + setIsLoading(false); + }, 0); // Adjust the delay as needed, Update the loading state after 3 seconds + + return () => { + console.log("Cleaning up timer"); + clearTimeout(timer); // Clear the timer on component unmount + }; + }, []); + return ( + <> + {isLoading ? ( + <LoadingScreen /> + ) : ( + <> {/* Navigation */} <Navbar /> @@ -97,6 +120,8 @@ const App = () => { {/* Footer */} <Footer /> + </> + )} </> ); }; diff --git a/src/App/Timelines.css b/src/App/Timelines.css new file mode 100644 index 0000000000000000000000000000000000000000..2627637eeec6562db7007cdecc0a9698bbe2444a --- /dev/null +++ b/src/App/Timelines.css @@ -0,0 +1,393 @@ +/* * * * * * * * * * * */ +/* Horizontal Timeline */ +/* * * * * * * * * * * */ + +/* This is the timeline container */ +.timeline { + white-space: nowrap; + min-height: 500px; + width: 83vw; + overflow-x: auto; + overflow-y: hidden; + background-color: inherit; + font-size: 1rem; + /* align items center */ + align-items: center !important; + /* row */ + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-.5 * var(--bs-gutter-x)); + margin-left: calc(-.5 * var(--bs-gutter-x)); +} +/* This is the timeline list container */ + .timelineol { + font-size: 0; + width: 100vw; + padding: 250px 0; + transition: all 1s; +} + +/* Positioning of the upper timeline cards */ +.timeline ol li:nth-child(2n+1) .time-meta::before{ + top: 100%; + left: 8px !important; + border-color: #f6faf6 transparent transparent transparent !important; +} +.timeline ol li:nth-child(2n+1) .moretop{ + top: -40px !important; +} +.timeline ol li:nth-child(odd) .timeline-item { + top: -16px; + transform: translateY(-100%); + box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); +} + + +/* Positioning for the lower timeline cards */ +.timeline ol li:nth-child(2n) .time-meta::before{ +top: 100%; +left: 8px !important; +border-color: transparent transparent transparent #f6faf6 !important; +} +.timeline ol li:nth-child(2n) .moretop{ +top: 30px !important; +} +.timeline ol li:nth-child(even) .timeline-item { + box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); + top: calc(100% + 16px); +} + + +/* The DNA Strang of the timeline */ +.timelineolli { +position: relative; +display: inline-block; +list-style-type: none; +width: 190px; +height: 20px; +background-image: url("https://static.igem.wiki/teams/5247/design/icons/dna-strang-schmal-fatter.svg"); +background-size: 100% 120%; +} + +/* Timeline Pointers outline and form */ +.timeline ol li .timeline-item::before { + content: ''; + position: absolute; + top: 100%; + left: 0; + width: 0; + height: 0; + border-style: solid; +} +.timeline ol li:nth-child(odd) .timeline-item::before { +top: 100%; +border-width: 20px 8px 0 0; +border-color: white transparent transparent transparent; +} +.timeline ol li:nth-child(even) .timeline-item::before { +top: -20px; +border-width: 20px 0 0 8px; +border-color: transparent transparent transparent white; +} + +/* To extend the line at the end */ +.timelineolli:last-child{ + background-size: 65% 120%; +} +.timeline ol li:last-child { + width: 300px; +} + +/* For the points */ +.timeline ol li:not(:last-child)::after { + content: ''; + position: absolute; + top: 50%; + left: calc(98%); + bottom: 0; + z-index: 4; + width: 40px; + height: 40px; + transform: translateY(-50%); + border-radius: 50%; + background: var(--text-primary); +} + +/* Card layout */ + +.timeline ol li .timeline-item { + min-height: 310%; + position: absolute; + left: calc(100% + 7px); + width: 280px; + padding: 15px; + font-size: 0.9rem; + white-space: normal; + color: black; + background: white; +} + +/* Layout for meta timeline cards */ +.time-meta{ + background-color: #f6faf6 !important; + border-radius: 10px; +} + +/* Tags */ +.t-tag{ + box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); + color: #fff; + font-size: 12px; + font-weight: bold; + letter-spacing: 1px; + padding: 5px; + margin-bottom: 10px; + text-transform: uppercase; + width: fit-content !important; + } + + button.tabbutton.Patient.active, button.tabbutton.All.active, + button.tabbutton.Industry.active, button.tabbutton.Academia.active, + button.tabbutton.Medical.active, .modulators.active, .inhalations.active{ + border-color: black; + } + +.colour-meta-tag{ + background-color: var(--igemlightgreen); +} +/* and buttons */ +button.tabbutton:nth-child(1){ + background-color: white; + } + +.Patient, button.tabbutton:nth-child(2){ + background-color: var(--accen-secondary); + } + + .Medical, button.tabbutton:nth-child(3){ + background-color: var(--accent-primary); + } + + .Academia, .Research, button.tabbutton:nth-child(4){ + background-color: var(--lightblue); + } + + .Industry, button.tabbutton:nth-child(5){ + background-color: var(--mediumpurple); + } + .Activist, button.tabbutton:nth-child(6){ + background-color: var(--igemlightgreen); + } + + .Ethics{ + background-color: var(--offblack); + } + + +/* * * * * * * */ +/* TIMELINE BFH*/ +/* * * * * * * */ + +/* Container */ +.timeline-container { + display: flex; + flex-direction: column; + position: relative; + margin: 40px 0; +} +/* Line */ +.timeline-container::after { + background-color: var(--text-primary); + position: absolute; + left: calc(50% - 2px); + content: ""; + width: 4px; + height: 100%; + z-index: 0; + } + +/* Cards */ +.timeline-item { + min-width: 100px; + /* display: flex; */ + justify-content: flex-end; + padding-right: 30px; + position: relative; + margin: 10px 0; + width: 50%; + } + .timeline-item-content { + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); + border-radius: 5px; + background-color: #fff; + display: flex; + flex-direction: column; + align-items: flex-end; + padding: 15px; + position: relative; + text-align: right; + } +/* Accomodate for alteration in card design */ +.timeline-item:nth-child(odd) .timeline-item-content { + text-align: left; + align-items: flex-start; + } + +/* Tags */ +.timeline-item-content .tag { + color: #fff; + font-size: 12px; + font-weight: bold; + top: 5px; + left: 5px; + letter-spacing: 1px; + padding: 5px; + margin-top: 5px; + margin-left: 5px; + position: absolute; + text-transform: uppercase; +} + .timeline-item:nth-child(odd) .timeline-item-content .tag { + left: auto; + right: 5px; + margin-right: 5px; +} +/* Title design */ +.timeline-item-content time { + color: black; + font-size: 16px; + font-weight: bold; + } + +/* To create alternation */ +.timeline-item:nth-child(odd) { + align-self: flex-end; + justify-content: flex-start; + padding-left: 30px; + padding-right: 0; + } + +/* To create bigger first and final cards */ +.timeline-end{ +box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); +border-radius: 5px; +background-color: #fff; +padding: 15px; +position: relative; +text-align: center; +z-index: 1; +margin-top: 8vw; +} +.timeline-begin{ +box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); +border-radius: 5px; +background-color: #fff; +padding: 15px; +position: relative; +text-align: center; +z-index: 1; +margin-bottom: 8vw; +} + +/* Make short description on card bigger */ +.timeline-item-content span{ + font-size: 18px; + } +/* Make links on Cards fat */ + .timeline-item-content a { + font-weight: bold; + } + +/* Circle */ +.timeline-item-content .circle { +background-color: #fff !important; +border: 3px solid var(--text-primary); +border-radius: 50%; +position: absolute; +top: calc(50% - 10px); +right: -54px !important; +width: 20px; +height: 20px; +z-index: 100; +} +.timeline-item:nth-child(odd) .timeline-item-content .circle { + right: auto; + left: -53px; +} + + + + + + + + + + + + + +/* Checken ob wir das echt brauchen */ +/* .timeline ol li:not(:first-child) { + margin-left: 14px; + } + .timeline-item-content::after { + background-color: #fff; + box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.2); + position: absolute; + right: -7.5px; + top: calc(50% - 7.5px); + transform: rotate(45deg); + width: 15px; + height: 15px; + } + .timeline-item:nth-child(odd) .timeline-item-content::after { + right: auto; + left: -7.5px; + box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2); + } + .timeline-item-content p { + font-size: 16px; + line-height: 24px; + margin: 15px 0; + } + .timeline-item-content a::after { + font-size: 12px; + } + .card { + border-radius: 4px; + background-color: #fff; + color: #333; + padding: 10px; + box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2); + width: 100%; + max-width: 560px; + +} + +.date { + background-color: var(--text-primary) !important; + padding: 4px !important; + color: #fff !important; + border-radius: 4px !important; + font-weight: 500; + font-size: .85rem; +} + .date-col{ + position: relative; + background-color: #fff ; + padding: 10px; + width: 10%; + border-right: #000; + border-right-width: 2px; +} + .imageAtom{ + object-fit: cover; + overflow: hidden; + width: 100%; + max-height: 400px; +} + */ \ No newline at end of file diff --git a/src/App/mediarules.css b/src/App/mediarules.css new file mode 100644 index 0000000000000000000000000000000000000000..2cdef599d5699c94e2f35e2dd8cc930ca90a92b9 --- /dev/null +++ b/src/App/mediarules.css @@ -0,0 +1,165 @@ +/* * * * * * * */ +/* MEDIA RULES */ +/* * * * * * * */ + +/*For tablet or bigger*/ +@media screen and (min-width: 992px) { + /* navbar opens on hover*/ + .dropdown:hover .dropdown-menu { + display: block; + } + } +/*For Tablet and smaller*/ +@media screen and (max-width: 992px){ + .two-pdf-line{ + max-height: 650px !important; + height: 26vh !important; + max-width: 50vw !important; + } + .seperator-2{ + width: 1px !important; + } + .boxy-1{ + margin-top: 10px !important; + } +} +/*For Smartphones*/ +@media screen and (max-width: 768px){ + .lnp:hover > img{ + display: block; + margin-left: none; + margin-right: none; + width: 8rem !important; + max-width: 100% !important; + } + .row-if-small{ + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-.5 * var(--bs-gutter-x)); + margin-left: calc(-.5 * var(--bs-gutter-x)); + width: 100% !important; + } + .col-4, .col-3{ + margin-top: 10px !important; + margin-bottom: 10px !important; + } + .full-small{ + width: 100% !important; + max-height: 100% !important; + } + .max400{ + max-width: 100% !important; + max-height: 100% !important; + } + .panel-talk-gallery div img{ + max-width: 100% !important; + } + .panel-talk-gallery .col, .panel-talk-gallery .col:nth-child(5), + .panel-talk-gallery .col:nth-child(1), .panel-talk-gallery .col:nth-child(2), + .panel-talk-gallery .col:nth-child(3), .panel-talk-gallery .col:nth-child(4){ + margin-top: 20px !important; + } + .bfh-slider{ + width: 100em !important; + max-width: 250px !important; + } + .tag{ + width: min-content !important; + } + .timeline-item-content time{ + width: fit-content !important; + margin-top: 0 !important; + max-width: 10em !important; + } + .picture-frame{ + margin-bottom: 20px !important; + } + .winner{ + font-size: x-large; + } + h3{ + margin-bottom: 4vw !important; + } + .small-only{ + display: block !important; + } + .small-none{ + display: none !important; + } + .bfh-menu{ + max-width: 50vw !important; + } + .two-pdf-line{ + max-height: 650px !important; + height: 26vh !important; + width: 65vw !important; + max-width: 60vw !important; + margin: auto; + } +svg text{ + font-size: 9vw; + stroke-width:1px; +} +.village-style-button h3{ + display: none !important; +} +.village-style-button{ + box-shadow: 1px 1px 1px gray; + border-radius: 20px !important; + border-color: black; +} +.village-style-button:hover{ + box-shadow: none; +} +.village-style-button img{ + max-width: 90%; + max-height: 90%; + padding-top: 10px; + padding-bottom: 5px; +} +.img-half{ + max-width: 100% !important; +} + + .row{ + display: grid !important; + } +} +/*For small Smartphones*/ +@media screen and (max-width: 750px){ + +} +/* Big computer screens */ +@media only screen and (min-width: 1600px){ + .two-pdf-line{ + max-height: 50vw !important; + height: 50vh !important; + } +} +/*Bigger than smartphones*/ +@media only screen and (min-width: 768px) { +.col-1 {width: 8.33%;} +.col-2 {width: 16.66%;} +.col-3 {width: 25%;} +.col-4 {width: 33.33%;} +.col-5 {width: 41.66%;} +.col-6 {width: 50%;} +.col-7 {width: 58.33%;} +.col-8 {width: 66.66%;} +.col-9 {width: 75%;} +.col-10 {width: 83.33%;} +.col-11 {width: 91.66%;} +.col-12 {width: 100%;} + + +} + + +@media screen and (max-width: 1300px){ + .one-pdf-line{ + height: 115vw !important; + } +} \ No newline at end of file diff --git a/src/components/Boxes.tsx b/src/components/Boxes.tsx index 9bc42fcd6c0679d03b218be8f99038fdbccc74f1..986cc72e949ec7667c6f59da19143b65e5079c5e 100644 --- a/src/components/Boxes.tsx +++ b/src/components/Boxes.tsx @@ -15,9 +15,44 @@ export function BulbBox({title, children}:{title: string, children: React.ReactN ) } -export function InfoBox({title, children}:{title: string, children: React.ReactNode}){ +export function QaBox({q, a}:{q: string, a: React.ReactNode}){ + return( + <div className="qabox"> + <div className="question-bubble"> + <div className="row"> + {q} + </div> + </div> + <div className="question-bubble"> + <div className="row"> + {a} + </div> + </div> + </div> + ) +} +export function SpecialQaBox({q, children}:{q: string, children: React.ReactNode}){ + return( + <div className="qabox"> + <div className="question-bubble"> + <div className="row"> + {q} + </div> + </div> + <div className="question-bubble"> + <div className="row"> + {children} + </div> + </div> + </div> + ) +} + + + +export function InfoBox({title, children, id}:{title: string, children: React.ReactNode, id: string}){ return( - <aside className="hint-container info"> + <aside className="hint-container info" id={id}> <p className="hint-container-title"> {title} </p> diff --git a/src/components/Buttons.tsx b/src/components/Buttons.tsx index cea387c4619cba6369ce89853c26e726811d31ca..6bea9546c221df61932b51a37f1c36d79c59f465 100644 --- a/src/components/Buttons.tsx +++ b/src/components/Buttons.tsx @@ -1,24 +1,33 @@ import { Link } from "react-router-dom"; -import { openCity } from "./HorizontalTimeline"; - +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import { openThem } from "../utils/openThem"; +import { openElement } from "../utils/openElement"; interface UrlButtonProps{ href: string, children: string, }; - + interface TabButtonProps{ + classy?: string, + closing: string, + opentype: string + /* children?: React.ReactNode, */ + /* onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void, */ + name: string, + type: string + } export function Villagebutton({ title, source, page }: { title: string; source: string; page:string}) { return ( - <Link className="btn village-style-button" role="button" to={page}> - <img src={source} className="d-block mx-auto mb-2" alt=""></img> - <h3>{title}</h3> - </Link> + <Link className="btn village-style-button" role="button" to={page}> + <img src={source} className="d-block mx-auto mb-2" alt=""></img> + <h3>{title}</h3> + </Link> ) } export function Villbuttonrow(){ return( - <div className="row align-items-center bottom-buttons"> + <div className="small-row align-items-center bottom-buttons"> <Villagebutton page="/human-practices" source="https://static.igem.wiki/teams/5247/design/icons/humanpractices.png" title="Human Practice"></Villagebutton> <Villagebutton page="/team" source="https://static.igem.wiki/teams/5247/design/icons/team.png" title="Team"></Villagebutton> <Villagebutton page="/experiments" source="https://static.igem.wiki/teams/5247/design/icons/lab.png" title="Experiments"></Villagebutton> @@ -90,15 +99,7 @@ export function TabButtonRow({data, classy, opentype, closing}: {data: Array<Tab -interface TabButtonProps{ - classy?: string, - closing: string, - opentype: string - /* children?: React.ReactNode, */ - /* onClick: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void, */ - name: string, - type: string -} + // neuer export function TabButton({classy, name, closing, opentype, type}:TabButtonProps){ if (!classy){ @@ -107,7 +108,7 @@ export function TabButton({classy, name, closing, opentype, type}:TabButtonProps let classname = "tabbutton " + type + " " + classy; return( <> - <button className={classname} onClick={openTab({cityName: type, cla: opentype, weg: closing })}> {name}</button> + <button className={classname} onClick={openElement({elementToOpen: type, classToHide: opentype, classToClose: closing, buttonClass: "tabbutton" })}> {name}</button> </> ) } @@ -115,7 +116,7 @@ export function TabButton({classy, name, closing, opentype, type}:TabButtonProps export function HPMoreButton({name}: {name: string}){ let c = "timelinepersontabs" return( - <button className="tablinks hp-more-button" onClick={openTab({cityName: name, cla: c})}> More</button> + <button className="tablinks hp-more-button" onClick={openElement({elementToOpen: name, classToHide: c, buttonClass: "tabbutton"})}> More</button> ) } @@ -139,34 +140,13 @@ function expandIt({it}: {it: string}){ return openit; } -export function openTab({cityName, cla, weg}:{cityName: string, cla: string, weg?: string}) { - const opencity = (event : React.MouseEvent<HTMLButtonElement, MouseEvent>) =>{ - var i, tabcontent, tablinks, wegcontent; - tabcontent = document.getElementsByClassName(cla); - for (i = 0; i < tabcontent.length; i++) { - (tabcontent[i] as HTMLElement).style.display = "none"; - } - tablinks = document.getElementsByClassName("tabbutton"); - for (i = 0; i < tablinks.length; i++) { - tablinks[i].className = tablinks[i].className.replace(" active", ""); - } - if (weg){ - wegcontent = document.getElementsByClassName(weg); - for (i = 0; i < wegcontent.length; i++) { - (wegcontent[i] as HTMLElement).style.display = "none"; - } - } - document.getElementById(cityName)!.style.display = "block"; - event.currentTarget.className += " active"; - } - return opencity; -} + export function ButtonThree(){ return( <div className="boxy-3"> <div className="btn-new btn-three"> - <span typeof="button" onClick={openCity({cityName: "about"})}>HOVER ME</span> + <span typeof="button" onClick={openElement({elementToOpen: "about", classToHide: "tabcontent", buttonClass: "tablinks"})}>HOVER ME</span> </div> </div> ) @@ -176,7 +156,7 @@ export function ButtonTwo(){ return( <div className="boxy-2"> <div className="btn-new btn-two"> - <span typeof="button" onClick={openCity({cityName: "about"})}>HOVER ME</span> + <span typeof="button" onClick={openElement({elementToOpen: "about", classToHide: "tabcontent", buttonClass: "tablinks"})}>HOVER ME</span> </div> </div> ) @@ -185,13 +165,23 @@ export function ButtonTwo(){ export function ButtonOne({text, open}: {text:string, open:string}){ return( <div className="boxy-1"> - <span typeof="button" onClick={openIt({it: open})}> + <span typeof="button" onClick={openFromOtherPage(open)}> <div className="btn-new btn-one"> {text} </div></span> </div> ) } +export function ButtonOneEngineering({label, open}: {label:string, open:string}){ + return( + <div className="boxy-1"> + <span typeof="button" onClick={openThem({it: open})}> + <div className="btn-new btn-one"> + {label} + </div></span> + </div> + ) +} export function ButtonFourFill(){ @@ -224,34 +214,7 @@ export function ButtonFourRotate(){ -export function openIt({it}: {it: string}){ - const openit = (event : React.MouseEvent<HTMLElement, MouseEvent>) => { - /* console.log(document.getElementById(it)) */ - console.log(document.getElementById(it)?.className) - let tabcontent = document.getElementsByClassName("cycletab"); - for (let i = 0; i < tabcontent.length; i++) { - (tabcontent[i] as HTMLElement).style.display = "none"; - } - /* console.log(document.getElementById(it)!.style.display) */ - document.getElementById(it)!.style.display = "block"; - - event.currentTarget.className += " active"; - } - return openit; -} -export function openItTwo({it}: {it: string}){ - const openit = (event : React.MouseEvent<HTMLElement, MouseEvent>) => { - /* console.log(document.getElementById(it)) */ - console.log(document.getElementById(it)?.className) - let tabcontent = document.getElementsByClassName("col outreach"); - for (let i = 0; i < tabcontent.length; i++) { - (tabcontent[i] as HTMLElement).style.display = "none"; - } - /* console.log(document.getElementById(it)!.style.display) */ - document.getElementById(it)!.style.display = "block"; + + - event.currentTarget.className += " active"; - } - return openit; -} \ No newline at end of file diff --git a/src/components/Collapsible.tsx b/src/components/Collapsible.tsx index 25bf71bd52acf1dc686fdd3593e415867490fa48..224c63c96da19bc64abaaf5b3dfbdfd50f929a49 100644 --- a/src/components/Collapsible.tsx +++ b/src/components/Collapsible.tsx @@ -1,26 +1,70 @@ -import { useState } from 'react'; - +import { useEffect, useState } from 'react'; +import { useLocation } from 'react-router-dom'; interface IProps { - open?: boolean; - title?: string; - children?: React.ReactNode; - } + open?: boolean; + children: React.ReactNode; + title: string; + id: string; +} - export const Collapsible: React.FC<IProps> = ({ open, children, title }) => { + export const Collapsible: React.FC<IProps> = ({ open = false, children, title, id }) => { + const [isOpen, setIsOpen] = useState(open); + const location = useLocation(); + + useEffect(() => { + // Check if the current URL has the specific collapse ID + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + + if (collapseId === id) { + setIsOpen(true); + } + }, [location.search, id]); + + const handleFilterOpening = () => { + setIsOpen((prev) => !prev); + }; + + return ( + <> + <div id={id} className="collapse-card bg-db"> + <div> + <div className="d-flex justify-content-between"> + <h6 className="font-weight-bold collapsible-a">{title}</h6> + <button type="button" className="btn" onClick={handleFilterOpening}> + {!isOpen ? ( + <img className='updown' src="https://static.igem.wiki/teams/5247/design/icons/angle-small-down.png" /> + ) : ( + <img className='updown' src="https://static.igem.wiki/teams/5247/design/icons/angle-small-up32px.png" /> + )} + </button> + </div> + </div> + + <div className=""> + <div>{isOpen && <div className="p-3"><hr className='collapsible-hr' />{children}</div>}</div> + </div> + </div> + </> + ); +}; + + export const CollapsibleTwo: React.FC<IProps> = ({ open, children, title }) => { const [isOpen, setIsOpen] = useState(open); const handleFilterOpening = () => { setIsOpen((prev) => !prev); }; - + return ( <> + <section id={title}> <div className="collapse-card"> <div> - <div className="p-3 border-bottom d-flex justify-content-between"> - <h6 className="font-weight-bold">{title}</h6> + <div className="d-flex justify-content-between"> + <h3 className="font-weight-bold collapsible-a">{title}</h3> <button type="button" className="btn" onClick={handleFilterOpening}> {!isOpen ? ( <img className='updown' src="https://static.igem.wiki/teams/5247/design/icons/angle-small-down.png" /> @@ -31,13 +75,47 @@ interface IProps { </div> </div> - <div className="border-bottom"> - <div>{isOpen && <div className="p-3">{children}</div>}</div> + <div className=""> + <div>{isOpen && <div className="p-3"> <hr className='collapsible-hr'/> {children}</div>}</div> </div> </div> + </section> </> ); }; - export default Collapsible; \ No newline at end of file + export default Collapsible; + + export const CollapsibleInfoBox: React.FC<IProps> = ({ open, children, title }) => { + const [isOpen, setIsOpen] = useState(open); + + const handleFilterOpening = () => { + setIsOpen((prev) => !prev); + }; + + return ( + <> + <div className="collapse-card bg-info"> + <div> + <div className="d-flex justify-content-between"> + <h6 className="font-weight-bold collapsible-a">{title}</h6> + <button type="button" className="btn" onClick={handleFilterOpening}> + {!isOpen ? ( + <img className='updown' src="https://static.igem.wiki/teams/5247/design/icons/angle-small-down.png" /> + ) : ( + <img className='updown' src="https://static.igem.wiki/teams/5247/design/icons/angle-small-up32px.png" /> + )} + </button> + </div> + </div> + + <div className=""> + <div>{isOpen && <div className="p-3"> <hr className='collapsible-hr'/> {children}</div>}</div> + </div> + </div> + </> + ); + }; + + \ No newline at end of file diff --git a/src/components/Filter.tsx b/src/components/Filter.tsx index ec57531e59b15b34bb3bd0332eb6e295cd26790d..905e905ad6976d554d750756a585bd5ce9752bf8 100644 --- a/src/components/Filter.tsx +++ b/src/components/Filter.tsx @@ -20,40 +20,48 @@ const wikioptions =[ ] - function filterMultiSelection(arr: Array<Props>){ - let nono = document.getElementById("nono"); - nono!.className = "noshow"; - var x: string | any[] | HTMLCollectionOf<Element>, i: number; - x = document.getElementsByClassName("filterable"); - for (i = 0; i < x.length; i++) { - let el = x[i]; - w3RemoveClass(el, "show"); - } - let shownum = 0; - let boo = true; - for (i = 0; i < x.length; i++) { - - arr.forEach((entry) => { - if (x[i].className.indexOf(entry.value) <= -1){ - boo = false; - } - else{ - if (!x[i].classList.contains(entry.value)){ - boo = false; - } - } - }) - if (boo){ - w3AddClass(x[i], "show"); - shownum++; - } - } - let y = document.getElementsByClassName("show").length; - if (y < 1){ - console.log(y) - nono!.className = "show"; - } +export function filterMultiSelection(arr: Array<Props>) { + const nono = document.getElementById("nono"); + if (nono) { + nono.className = "noshow"; + } + + const filterableElements = document.getElementsByClassName("filterable"); + + // Remove "show" class from all elements + for (let i = 0; i < filterableElements.length; i++) { + const el = filterableElements[i]; + w3RemoveClass(el, "show"); + } + + console.log("Begin"); + + // Apply filter criteria + for (let i = 0; i < filterableElements.length; i++) { + const el = filterableElements[i]; + let shouldShow = true; + + for (const entry of arr) { + console.log(`entry: ${entry.value}`); + if (!el.classList.contains(entry.value)) { + shouldShow = false; + break; } + } + + console.log(`shouldShow: ${shouldShow}`); + if (shouldShow) { + w3AddClass(el, "show"); + } + } + + // Check if any element is shown + const shownElements = document.getElementsByClassName("show"); + if (shownElements.length < 1 && nono) { + console.log(shownElements.length); + nono.className = "show"; + } +} /* function filterSelection(label: string) { var x, i; diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 41240e4d259f19672617532b35524c306d495c2f..07214632b65666b2f76c1f2da4ff6a56b491a211 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -10,8 +10,8 @@ export function Footer() { return ( <footer className="pt-5 pb-5 footer py-5 mt-5 bg-d text-white"> <div className="container"> - <div className="col zweirem"> - <span className="left"> + <div className="col zweirem" style={{}}> + <span className="left no-pad no-marg"> <a href="../bielefeld-cebitec/impressum" className="middle">Impressum</a> </span> <span className="right align-items-center" style={{display: "flex"}}> @@ -30,24 +30,25 @@ export function Footer() { </span> </div> <hr/> - <div className="row align-items-center"> + <div className="small-row align-items-center"> <div className="col-sm-4"> <h6>Contact</h6> </div> <div className="col-sm-8"> - <div className="row align-items-center"> + <div className="small-row align-items-center"> + <div className="small-only col-6"></div> <div className="col"> <a href="./partners"> <h6 className="alink">Spornsors and partners</h6> </a> </div> - <div className="col"> + <div className="small-none col"> <h6>Former iGem Bielefeld teams</h6> </div> </div> </div> </div> - <div className="row align-items-center"> + <div className="small-row align-items-center"> <div className="col-sm-4"> <div className="col"> info@igem-bielefeld.de @@ -60,6 +61,7 @@ export function Footer() { Universität Bielefeld </div> </div> + <div className="small-only col-4"></div> <div className="col-4"> <SimpleSlider> <a className="sponsor-container" href="https://www.plasmidfactory.com/"> @@ -87,7 +89,7 @@ export function Footer() { <img className="img-sponsor" src="https://static.igem.wiki/teams/5247/sponsors/bts.png"/> </a> <a className="sponsor-container" href="https://www.uni-bielefeld.de/fakultaeten/technische-fakultaet/arbeitsgruppen/multiscale-bioengineering/campusbrauerei/"> - <img className="img-sponsor" src="https://static.igem.wiki/teams/5247/sponsors/campus-brauerei-hinterlegt.jpeg"/> + <img className="img-sponsor" src="https://static.igem.wiki/teams/5247/sponsors/campus-brauerei.png"/> </a> <a className="sponsor-container" href="www.idtdna.com"> <img className="img-sponsor" src="https://static.igem.wiki/teams/5247/sponsors/idt-logo.png"></img> @@ -97,8 +99,8 @@ export function Footer() { </a> </SimpleSlider> </div> - <div className="col-4"> - <div className="row align-items-center"> + <div className="small-none col-4"> + <div className=" small-row align-items-center"> <div className="col"> <div className="row align-items-center"> @@ -154,7 +156,7 @@ export function Footer() { <hr /> {/* The following MUST be on every page: license information and link to the repository on gitlab.igem.org */} - <div className="row mt-4"> + <div className="small-row mt-4"> <div className="col"> <p className="mb-0"> <small> diff --git a/src/contents/Graph.tsx b/src/components/Graph.tsx similarity index 97% rename from src/contents/Graph.tsx rename to src/components/Graph.tsx index c9500dfacdef722dfb6c2945664725ecea864878..3c0982397ed38b087180b40f62f6a64a555e55cd 100644 --- a/src/contents/Graph.tsx +++ b/src/components/Graph.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +/* import React from 'react'; import { Pie } from 'react-chartjs-2'; import { Chart as ChartJS, ArcElement, Tooltip, Legend } from 'chart.js'; import "../contents/Graph.tsx" @@ -51,3 +51,4 @@ const PieChart: React.FC = () => { }; export default PieChart; + */ \ No newline at end of file diff --git a/src/components/Highlight.ts b/src/components/Highlight.ts new file mode 100644 index 0000000000000000000000000000000000000000..e8b277a235e0df87e04e8eafbe75a8e34d83ed48 --- /dev/null +++ b/src/components/Highlight.ts @@ -0,0 +1,70 @@ +export function NewHighlight({el}: {el: HTMLElement | null}, {subtitle}:{subtitle: HTMLElement | null}){ + let TopDistance = 150; + console.log("Starting highlight check...") + console.log("here come el...") + console.log(el) + console.log("here comes subtitle...") + console.log(subtitle) + if (el != null && subtitle != null){ +/* console.log("here comes el...") + console.log(el) + console.log(el.getBoundingClientRect()) */ + if (el.getBoundingClientRect().top < TopDistance + 1 && el.getBoundingClientRect().bottom > TopDistance){ + subtitle.style.color = "blue"; + subtitle.style.backgroundColor = "rgb(133, 15, 120, 0.8)"; + subtitle.style.borderColor = "#850F78"; + subtitle.style.marginLeft = "10px"; + subtitle.style.paddingRight = "10px"; + subtitle.style.fontWeight = "900"; + +/* console.log("subtitle: ",subtitle) + console.log("style: ", subtitle.style) + console.log("color: ",subtitle.style.color) + console.log("backcolor: ",subtitle.style.backgroundColor) */ + } + else{ + subtitle.style.color = "white"; + subtitle.style.marginLeft = "0"; + subtitle.style.backgroundColor = ""; + } + } + + } + + export function Highlight({el}: {el: HTMLElement | null}, {subtitle}:{subtitle: HTMLElement | null}){ + let TopDistance = 150; + + if (el != null && subtitle != null){ + + if (el.getBoundingClientRect().top < TopDistance + 1 && el.getBoundingClientRect().bottom > TopDistance){ + + if(subtitle.childNodes[0] != undefined){ + console.log("if true: "); + console.log(subtitle.childNodes[0]); + (subtitle.childNodes[0] as HTMLElement).classList.add("active-sideitem"); + if(subtitle.childNodes[0].childNodes[1] != undefined){ + console.log("test: ") + console.log(subtitle.childNodes[0].childNodes[1]); + (subtitle.childNodes[0].childNodes[1] as HTMLElement).style.display = "block"; + } + } + } + else{ + subtitle.style.color = "#850F78"; + subtitle.style.backgroundColor = ""; + subtitle.classList.remove("subtitle-active"); + if(subtitle.childNodes[0] != undefined){ + console.log("if true: "); + console.log(subtitle.childNodes[0]); + (subtitle.childNodes[0] as HTMLElement).classList.remove("active-sideitem"); + if(subtitle.childNodes[0].childNodes[1] != undefined){ + console.log("test: ") + console.log(subtitle.childNodes[0].childNodes[1]); + (subtitle.childNodes[0].childNodes[1] as HTMLElement).style.display = "none"; + } + } + + } + } + + } diff --git a/src/components/HomeAnimation.tsx b/src/components/HomeAnimation.tsx new file mode 100644 index 0000000000000000000000000000000000000000..79fad02c959734b46de17ae0699999065ef69e6d --- /dev/null +++ b/src/components/HomeAnimation.tsx @@ -0,0 +1,62 @@ +import gsap from "gsap"; +import { useGSAP } from "@gsap/react"; +import { ScrollTrigger } from "gsap/dist/ScrollTrigger"; +import { useRef } from 'react'; +import { MotionPathPlugin } from "gsap/dist/MotionPathPlugin"; + +export function HomeAnim() { + gsap.registerPlugin(ScrollTrigger); + gsap.registerPlugin(useGSAP); + gsap.registerPlugin(MotionPathPlugin); + + const vectorRef = useRef(null); + + useGSAP( + () => { + gsap.registerPlugin(ScrollTrigger); + gsap.registerPlugin(useGSAP); + gsap.registerPlugin(MotionPathPlugin); + gsap.defaults({ease: "none"}); + + gsap.defaults({ease: "none"}); + + const main = gsap.timeline({ + scrollTrigger: { + trigger: "animStarterClass", + scrub: true, + start:"top middle", + end: "+=4000" + } + }) + .from(".homeAnimLine", {drawSVG: 0}, 0) + .to(vectorRef.current, {motionPath:{ + path:".homeAnimLine", + align:".homeAnimLine", + alignOrigin:[0.5, 0.5], + }}, 0) + + + console.log(main) + }, + ); + + + return ( + <div className="row col"> + <svg id="svg" viewBox="0 0 2000 2500"> + <path className="homeAnimLine" d=" + M 50 50 + C 500 -50 1000 100 1870 50 + C 1820 220 2024 528 1870 590 + C 1351 678 118 451 54 561 + C 3 672 12 985 55 985 + C 586 1090 1342 898 1881 1038 + C 1994 1194 1986 1568 1890 1681 + C 1751 1803 281 1481 168 1646 + C 81 1794 21 1977 168 2142 + C 499 2246 1403 2325 1081 2142"/> + </svg> + <img className="vector" ref={vectorRef} src={"https://static.igem.wiki/teams/5247/placeholders/vector.webp"} alt="vectorImg"/> + </div> + ); +} diff --git a/src/components/HorizontalTimeline.tsx b/src/components/HorizontalTimeline.tsx index 617ecabdaa15322462dc8e798d1e51edacc71cad..94738a32e0707c4055c1f221e3497ebde6b2c84f 100644 --- a/src/components/HorizontalTimeline.tsx +++ b/src/components/HorizontalTimeline.tsx @@ -12,7 +12,42 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ <div className="row align-items-center"> <div className="col" > - <span className="tl-butt" onClick={Open({person: author})}> <img className="img-round" src={pic} /></span> + <img className="img-round" src={pic}/> + </div> + <div className="col" > + {title} + </div> + </div> + <div className="row align-items-center"> + <div className="col"> + <p style={{marginTop: "10px"}}>{author}</p> + </div> + <div className="col-4"> + <div className="tab"> + <HPMoreButton name={tabid}/> + </div> + </div> + </div> + + + </div> + </div> + </li> + ) + } + + function TimeItemMeta({ tag, title, pic, author, tabid}: ItemProps){ + return( + <li className="timelineolli"> + <div className="timeline-item time-meta moretop"> + <div className=""> + <div className=" t-tag colour-meta-tag"> + {tag} + </div> + + <div className="row align-items-center"> + <div className="col" > + <img className="img-cube" src={pic} /> </div> <div className="col" > {title} @@ -62,7 +97,7 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ } return( <div> - <section className="timeline row align-items-center"> + <section className="timeline"> <ol className="timelineol"> {nod} <li className="timelineolli"></li> @@ -96,17 +131,17 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ <div> {children} </div> - <button onClick={Open({person})} >Close</button> + <button onClick={Open({person})}>Close</button> </span> </div> ) } - +/* export function openCity({cityName}:{cityName: string}) { const opencity = (event : React.MouseEvent<HTMLButtonElement, MouseEvent>) =>{ - var i, tabcontent, tablinks; + var i, tabcontent, tablinks; tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { (tabcontent[i] as HTMLElement).style.display = "none"; @@ -119,7 +154,7 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ event.currentTarget.className += " active"; } return opencity; - } + } */ interface ItemProps { title: string , @@ -136,15 +171,29 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ function AllItems(){ let rows = [] for ( let i = 0; i < data.length; i++ ){ - rows.push(<TimeItem - title={data[i].title} - pic={data[i].pic} - tag={data[i].tag} - author={data[i].author} - tabid={data[i].tabid} - > - {data[i].text} - </TimeItem>) + if (data[i].type === "meta"){ + rows.push(<TimeItemMeta + title={data[i].title} + pic={data[i].pic} + tag={data[i].tag} + author={data[i].author} + tabid={data[i].tabid} + > + {data[i].text} + </TimeItemMeta>) + } + else{ + rows.push(<TimeItem + title={data[i].title} + pic={data[i].pic} + tag={data[i].tag} + author={data[i].author} + tabid={data[i].tabid} + > + {data[i].text} + </TimeItem>) + } + } return rows; } @@ -172,16 +221,94 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ let data = [ { - title: "First Impression", + title: "Team", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "Erste Presi", pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "Verworfenes", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "", + pic: "https://static.igem.wiki/teams/5247/photos/hp/kristian.jpeg", + tag: "Academia", + author: "Kristian", + tabid: "", + text: " " + }, + { + title: "First Impression", + pic: "https://static.igem.wiki/teams/5247/photos/hp/hp-max-portrait.jpg", tag: "Patient", author: "Max Beckmann", tabid: "InvMax1", text: " " }, { - title: "Physiotherapie" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + title: "Approach??" , + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Prof. Dr. Christoph Weber", + tabid: "InvWeber", + text: "Text", + }, + { + title: "Brainstorming", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Industry", + author: "Michaela", + tabid: "", + text: " " + }, + { + title: "More Experts", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "Progress", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Tag", + author: "Name", + tabid: "", + text: " ", + type: "meta" + }, + { + title: "Breathing therapy" , + pic: "https://static.igem.wiki/teams/5247/photos/hp/hp-katrin-portrait.jpg", tag: "Medical Professional", author: "Katrin Westhoff", tabid: "InvWesthoff", @@ -189,7 +316,7 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ }, { title: "" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + pic: "https://static.igem.wiki/teams/5247/photos/hp/olariu-cristian.jpg", tag: "Medical Professional", author: "Cristian-Gabriel Olariu", tabid: "InvOlariu", @@ -197,7 +324,31 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ }, { title: "" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + pic: "https://static.igem.wiki/teams/5247/photos/hp/mattijs.jpg", + tag: "Academia", + author: "Mattijs Bulcaen", + tabid: "InvBulcaen1", + text: "Text", + }, + { + title: "" , + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Nicole Friedlein", + tabid: "InvFriedlein", + text: "Text", + }, + { + title: "Physiotherapie live" , + pic: "https://static.igem.wiki/teams/5247/photos/hp/hp-katrin-portrait.jpg", + tag: "Medical Professional", + author: "Katrin Westhoff", + tabid: "BesWesthoff", + text: "Text", + }, + { + title: "" , + pic: "https://static.igem.wiki/teams/5247/photos/hp/julia.jpg", tag: "Patient", author: "Julia", tabid: "InvJulia", @@ -206,67 +357,67 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ { title: "" , pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Academia", - author: "Nicole Friedlein", - tabid: "InvFriedlein", + tag: "Patient", + author: "Joshua", + tabid: "InvJoshua", text: "Text", }, { + title: "Research Group Cellular Neurophysiology" , + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Prof. Dr. Erhard Wischmeyer", + tabid: "InvWischmeyer", + text: "Text", + }, +/* { title: "Approach??" , pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", tag: "Academia", author: "Prof. Dr. Stefan Hammer", tabid: "InvHammer", text: "Text", - }, - { - title: "Approach??" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Academia", - author: "Prof. Dr. Christoph Weber", - tabid: "InvWeber", - text: "Text", - }, - { - title: "" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Academia", - author: "Mattijs Bulcaen", - tabid: "InvBulcaen1", - text: "Text", - }, + }, */ { title: "First Steps in LNP" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + pic: "https://static.igem.wiki/teams/5247/photos/hp/kolonko-neu.jpg", tag: "Academia", author: "Dr. Katharina Kolonko", tabid: "InvKolonko", text: "Text", }, { - title: "Physiotherapie live" , + title: "", pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Medical Professional", - author: "Katrin Westhoff", - tabid: "BesWesthoff", - text: "Text", - }, - { - title: "Hygiene Concept", - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Patient", - author: "Max Beckmann", - tabid: "InvMax2", + tag: "Academia", + author: "Vinke", + tabid: "", text: " " }, - { - title: "" , - pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Patient", - author: "Joshua", - tabid: "InvJoshua", - text: "Text", - }, + { + title: "Hygiene Concept", + pic: "https://static.igem.wiki/teams/5247/photos/hp/hp-max-portrait.jpg", + tag: "Patient", + author: "Max Beckmann", + tabid: "InvMax2", + text: " " + }, + { + title: "", + pic: "https://static.igem.wiki/teams/5247/photos/hp/berens.jpg", + tag: "Academia", + author: "Dr. Eva-Maria Berens", + tabid: "Berens", + text: "" + }, + { + title: "", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Collabs", + tabid: "", + text: " " + }, { title: "" , pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", @@ -276,11 +427,39 @@ function TimeItem({tag, title, pic, author, tabid}: ItemProps){ text: "Text", }, { - title: "" , + title: "", pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", - tag: "Academia", - author: "Mattijs Bulcaen", - tabid: "InvBulcaen2", - text: "Text", - } + tag: "Academia", + author: "LiU", + tabid: "", + text: " " + }, + { + title: "", + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Corden Pharma", + tabid: "", + text: " " + }, + { + title: "" , + pic: "https://static.igem.wiki/teams/5247/photos/hp/mattijs.jpg", + tag: "Academia", + author: "Mattijs Bulcaen", + tabid: "InvBulcaen2", + text: "Text", + }, + { + title: "Research Group Cellular Neurophysiology" , + pic: "https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg", + tag: "Academia", + author: "Dr. Oliver Dräger", + tabid: "InvWischmeyer", + text: "Text", + }, + + + + ] \ No newline at end of file diff --git a/src/components/My-Timeline.tsx b/src/components/My-Timeline.tsx index 5b3e3722ddd149e81f660c9cc606678cd28d2410..05849f0a847065ddad65d5cd868497247f5cbdfc 100644 --- a/src/components/My-Timeline.tsx +++ b/src/components/My-Timeline.tsx @@ -1,19 +1,98 @@ import { BFHMoreButton } from "./Buttons"; +import SimpleSlider from "./slider"; interface ItemProps { + text?: string; + heading?: string; + vorname?: string, + vorname2?: string, + nachname?: string, + nachname2?: string, date: string , children: React.ReactNode; tag: string, color: string, - csstag: string + csstag: string, + url: string, + url2?: string } + + /* import ImageEvent from './ImageEvent.tsx'; import UrlButton from './UrlButton.tsx'; */ +export const TimelineItemPic = ({ heading, text, vorname, nachname, date, tag, color, children, csstag, url }:ItemProps) => ( + <div className="timeline-item"> + <div className="timeline-item-content"> + <span className="tag" style={{ background: color }}> + {tag} + </span> + <time>{date}</time> + + <hr/> + <div className="row"> + <div className="col"> + <figure className="snip1113 red"> + <img src={url} alt={nachname} /> + <figcaption> + <h3>{vorname} <br/> <span>{nachname}</span></h3> + </figcaption> + </figure> + </div> + <div className="col text-1-bfh"> + <h5>{heading}</h5> + <span className="">{text}</span> + </div> + {children} + </div> + + <BFHMoreButton it={csstag}></BFHMoreButton> + <span className="circle" /> + </div> + </div> +); +export const TimelineItemTwoPic = ({ url, url2, heading, text, vorname, nachname, vorname2, nachname2, date, tag, color, children, csstag }:ItemProps) => ( + <div className="timeline-item"> + <div className="timeline-item-content"> + <span className="tag" style={{ background: color }}> + {tag} + </span> + <time>{date}</time> + + <hr/> + <div className="row"> + <div className="col"> + <figure className="snip1113 red"> + <img src={url} alt={nachname} /> + <figcaption> + <h3>{vorname} <br/> <span>{nachname}</span></h3> + </figcaption> + </figure> + </div> + <div className="col"> + <figure className="snip1113 red"> + <img src={url2} alt={nachname2} /> + <figcaption> + <h3>{vorname2} <br/> <span>{nachname2}</span></h3> + </figcaption> + </figure> + </div> + <div className="col text-1-bfh"> + <h5>{heading}</h5> + <span className="">{text}</span> + </div> + {children} + </div> + + <BFHMoreButton it={csstag}></BFHMoreButton> + <span className="circle" /> + </div> + </div> +); export const TimelineItem = ({ date, tag, color, children, csstag }:ItemProps) => ( <div className="timeline-item"> @@ -22,14 +101,57 @@ export const TimelineItem = ({ date, tag, color, children, csstag }:ItemProps) {tag} </span> <time>{date}</time> + <hr/> {children} + <BFHMoreButton it={csstag}></BFHMoreButton> <span className="circle" /> </div> </div> ); +export const PanelTimelineItem = () => ( + <div className="timeline-item"> + <div className="timeline-item-content"> + <span className="tag" style={{ background: "var(--lightblue)" }}> + Talks + </span> + <time>Panel Discussion</time> + <div className="row align-items-center panel-talk-gallery"> + <div className="col"> + <img className="img-round" src="https://static.igem.wiki/teams/5247/photos/meetup/speakers/traci.jpg" alt="pr-sample1" /> + <div className="small middle">Taci <br/> Haddock</div> + </div> + <div className="col"> + <img className="img-round" src="https://static.igem.wiki/teams/5247/photos/meetup/speakers/anita-sifuantes.png" alt="pr-sample1" /> + <div className="small middle">Ana <br/> Sifuentes</div> + </div> + <div className="col"> + <img className="img-round" src="https://static.igem.wiki/teams/5247/photos/meetup/speakers/olivia.png" alt="pr-sample1" /> + <div className="small middle">Olivia <br/> Mozolewska</div> + </div> + <div className="col"> + <img className="img-round" src="https://static.igem.wiki/teams/5247/photos/meetup/speakers/middendorf.jpeg" alt="pr-sample1" /> + <div className="small middle">Lasse <br/> Middendorf</div> + </div> + <div className="col"> + <img className="img-round" src="https://static.igem.wiki/teams/5247/photos/meetup/speakers/nemanja.jpg" alt="pr-sample1" /> + <div className="small middle">Nemanja <br/> Stijepovic</div> + </div> + </div> + <hr/> + <span>Panel Discussion</span> + <div id="panel" style={{display: "none"}}> + So much more + </div> + + <BFHMoreButton it="panel"></BFHMoreButton> + <span className="circle" /> + </div> + </div> +); + export function MyTimeline () { @@ -37,62 +159,66 @@ export function MyTimeline () { <> <div className="timeline-container"> <div className='timeline-begin'> - Opening + Begin & Opening </div> - <TimelineItem + <TimelineItemTwoPic + url="https://static.igem.wiki/teams/5247/photos/hp/kristian.jpeg" + url2="https://static.igem.wiki/teams/5247/photos/meetup/speakers/ram.jpg" date='Scientific Talk I.' tag= 'Talks' color='var(--lightblue)' csstag="talkone" + vorname="Kristian" + vorname2="Ram" + nachname="Müller" + nachname2="Shakar" + heading="placeholder" + text="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et" > - <span>Scientific Talk 1 by Kristian Müller and Ram Shakar</span> <div id="talkone" style={{display: "none"}}> So much more </div> - - {/* - <ImageEvent - date="4/13/19" - text="You can embed images..." - src="https://res.cloudinary.com/dovoq8jou/image/upload/v1564772194/jellyfish.jpg" - alt="jellyfish swimming" - credit="Photo by [@tavi004](https://unsplash.com/@tavi004)" - id='Scientific Talk I.'> - - <div> - <UrlButton href="https://unsplash.com/search/photos/undersea"> - View more undersea photos - </UrlButton> - </div> - </ImageEvent> */} - </TimelineItem> - <TimelineItem + </TimelineItemTwoPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/christian-kolland.png" date='How to Wiki' tag='Workshop Session I.' color='var(--text-primary)' csstag="wikiworkshop" + vorname="Christian" + nachname="Kolland" + heading="placeholder" + text="Learning the basics of Wiki coding and design. In this workshop, the participants geined expertise to elevate their teams wiki." > - <span>Learning the basics of Wiki coding and design. In this workshop, the participants geined expertise to elevate their teams wiki. - </span> <div id="wikiworkshop" style={{display: "none"}}> - So much more + so much more </div> - </TimelineItem> - <TimelineItem + </TimelineItemPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/traci.jpg" date='How to SynBio' tag='Workshop Session I.' color='var(--text-primary)' csstag="synworkshop" + vorname="Traci" + nachname="Haddock" + text="Design genetic constructs and re-write the genomic code, and plan experiments using AI. Learn how to effectively build genetic circuit systems for implementation in your iGEM project. + " + heading="placeholder" > - <span>Design genetic constructs and re-write the genomic code, and plan experiments using AI. Learn how to effectively build genetic circuit systems for implementation in your iGEM project. - </span> <div id="synworkshop" style={{display: "none"}}> So much more </div> - </TimelineItem> - <TimelineItem + </TimelineItemPic> + <TimelineItemTwoPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/julian-gip.jpg" + url2="https://static.igem.wiki/teams/5247/photos/meetup/speakers/viktoria.jpg" + vorname2="Wiktoria" + vorname="Julian" + nachname="Borbeck" + nachname2="Palka" date='How to use AI as a scientist' tag='Workshop Session I.' color='var(--text-primary)' @@ -104,25 +230,37 @@ export function MyTimeline () { <div id="aiworkshop" style={{display: "none"}}> So much more </div> - </TimelineItem> - <TimelineItem + </TimelineItemTwoPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/karla-wagner.jpg" date='Scientific Talk II.' tag= 'Talks' color='var(--lightblue)' csstag="talktwo" + vorname="Karla" + nachname="Wagner" + heading="placeholder" + text="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et" > - <span>Scientific Talk 2 by Karla Wagner</span> <div id="talktwo" style={{display: "none"}}> So much more </div> - </TimelineItem> + </TimelineItemPic> <TimelineItem + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" date='Team project presentations' tag= 'Team presentations' color='var(--accent-primary' csstag="teampres" > <h5>Team project presentations</h5> + <div className="col bfh-slider"> + <SimpleSlider> + <img className="" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + </SimpleSlider> + </div> <span> </span> @@ -131,12 +269,32 @@ export function MyTimeline () { </div> </TimelineItem> <TimelineItem + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" date='Poster Exhibition Booth' tag= 'Team presentations' color='var(--accent-primary)' csstag="teambooth" > <h5>Poster Exhibition Booth </h5> + [Link virtual exhibition] + <div className="col bfh-slider"> + <SimpleSlider> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-plasmid-factory.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-frankfurt.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-zymo.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-air-view.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-bioglimmer.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-eindhoven.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-endosense-judge.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-isabell-erkl-rt.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-joern.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-marbirg.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-onco-biotica.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-refiba.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-teddy.webp"/> + <img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-zymo-gruppe.webp"/> + </SimpleSlider> + </div> <span> </span> @@ -144,30 +302,52 @@ export function MyTimeline () { So much more </div> </TimelineItem> - <TimelineItem + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/svanja-vinke.jpg" date='How to work safe' tag='Workshop Session II.' color='var(--text-primary)' csstag="safeworkshop" + vorname="Svenja" + nachname="Vinke" + heading="About Dual-use and Biosafety" + text="Novel technologies opened possibilities and risks. Learn how you implement Safety and Security Strategies within your project and think more responsible in terms of Dual Use." > - <h5>About Dual-use and Biosafety</h5> - <span>Novel technologies opened possibilities and risks. Learn how you implement Safety and Security Strategies within your project and think more responsible in terms of Dual Use. - </span> <div id="safeworkshop" style={{display: "none"}}> - So much more + <p>The biosafety workshop was held by Svenja Vinke. Svenja is a postdoctoral researcher specializing in + synthetic biology at the Church Lab, Harvard Medical School, and serves on the Safety and Security + Committee of iGEM. She started by outlining the key concepts of biosafety and biosecurity and emphasized + how important laboratory safety is first and foremost. </p> + <p>She also explained which safety aspects we should consider for our project: </p> + <ul> + <li> possible misuse (dual use) </li> + <li> built-in safety levels </li> + <li> if possible, several built in security mechanisms or at least recognizable that safety strategies that have been worked </li> + </ul> + <p>This particularly applies to any delivery systems that can address their target particularly efficiently, + as these systems could be the center of potential misuse. </p> + <p>Finally, each team gave brief presentations of their projects and engaged in a group discussion on potential + security risks and general security considerations. Together, we brainstormed and identified specific + aspects of each project that could present potential risks. </p> + <p>From Svenja’s seminar, we learned which safety-relevant aspects are particularly important, as well as + the importance of examining a project from different perspectives to identify and minimize potential + risks related to lab work and the environment. </p> </div> - </TimelineItem> - <TimelineItem + </TimelineItemPic> + <TimelineItemTwoPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/julia-j-lainowski.jpg" date='How to Communicate Science' + url2="https://static.igem.wiki/teams/5247/photos/meetup/speakers/malmendier.png" tag='Workshop Session II.' + vorname2="Carolin" + vorname="Julia" + nachname="Kalinowski" + nachname2="Malmendier" color='var(--text-primary)' csstag="commworkshop" + text="Experience how science communication could be. Learn creative and funny ways to communicate difficult topics. Think outside the box and train your skills. " > - <span> - Experience how science communication could be. Learn creative and funny ways to communicate difficult topics. - </span> <br></br> - <span>Think outside the box and train your skills. </span> <div id="commworkshop" style={{display: "none"}}> <br></br> @@ -200,67 +380,185 @@ export function MyTimeline () { population with regional companies and institutes to inform them about their work - including our iGEM team! </p> </div> - </TimelineItem> - <TimelineItem + </TimelineItemTwoPic> + <TimelineItemPic date='How to Pitch Your Project' tag='Workshop Session II.' color='var(--text-primary)' csstag="pitch" - > - <span>Image you have only three minutes with your boss to sell your idea... + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/madeleine-mussgnug.jpg" + vorname="Madeleine" + nachname="Mussgnug" + heading="placeholder" + text="Image you have only three minutes with your boss to sell your idea... After our workshop you learned techniques to sell every pen and even more to every boss on the planet. - </span> + " + > <div id="pitch" style={{display: "none"}}> So much more </div> - </TimelineItem> - <TimelineItem + </TimelineItemPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/michael.jpg" date='How to Multi Media' tag='Workshop Session II.' color='var(--text-primary)' csstag="multimedia" + vorname="Michael" + nachname="Gröning" + heading="placeholder" + text="Learn the basics of filmmaking and video production. + Look behind the scenes and get in touch with professionals. + Train your skills to direct iGEM-related videos and movies." > - <span>Learn the basics of filmmaking and video production. - Look behind the scenes and get in touch with professionals. - Train your skills to direct iGEM-related videos and movies.</span> <div id="multimedia" style={{display: "none"}}> So much more </div> - </TimelineItem> - <TimelineItem - date='Panel Discussion' + </TimelineItemPic> + <PanelTimelineItem></PanelTimelineItem> + + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/middendorf.jpeg" + date='iGEMer Ted Talks' tag= 'Talks' color='var(--lightblue)' - csstag="panel" + heading="Secrets to award-winning bioinformatics tools" + text="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et" + vorname="Lasse" + nachname="Middendorf" + csstag="tedtalk1" > - <span>Panel Discussion</span> - <div id="panel" style={{display: "none"}}> - So much more + <div id="tedtalk1" style={{display: "none"}}> + <p>Lasse’s Ted talk was all about how to create good bioinformatics software. He himself was part of + the dry lab in iGEM Münster’s Team that won the best software special prize in 2022. The tool they + created allowed users to generate knockout candidates for an organism of their choice that would + lead to redirection of metabolic flux to a reaction chosen by the user. We learned that the most + important attributes for a successful bioinformatics software are: </p> + <ul> + <li><b>Usefulness </b></li> + <li><b>Accessibility</b></li> + <li><b>Build upon existing standards </b></li> + </ul> + <p>To ensure usefulness, the software should be generalized and not only usable in the context of one’s + own project. Also, all steps that can be automated should be automated. Accessibility, Lasse said, + requires for the software to be easy to install, easy to use and well documented. </p> + <p>As a funny, but also very fitting anecdote, Lasse told us about the HU test. For testing their own tool for + accessibility, he gave a bioinformatically unexperienced, <b>h</b>ungover <b>u</b>ndergraduate student + nothing but the software with the provided documentation. If the student can use the tool in a reasonable + amount time, that would make it accessible enough for everyone. Furthermore, Lasse also recommended making + a command line tool for better availability over time and integration into other workflows. Lastly, the + software should use standard data files like CSV, Fasta etc. and be written in commonly used programming + languages like Python. </p> + <p>Overall, Lasse gave a great insight into the properties of a special price winning software tool and very + practically explained how these can be tested and achieved, information that is invaluable for us when + creating our own bioinformatics tool. </p> </div> - </TimelineItem> - <TimelineItem + </TimelineItemPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/merelvandenbosch.jpg" date='iGEMer Ted Talks' tag= 'Talks' color='var(--lightblue)' - csstag="tedtalk" + csstag="tedtalk2" + vorname="Merel" + nachname="van der Bosch" + heading="placeholder" + text="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et" > - <span>iGEMer Ted Talks</span> - <div id="tedtalk" style={{display: "none"}}> + <div id="tedtalk2" style={{display: "none"}}> So much more </div> - </TimelineItem> - <TimelineItem - date='Science Slam Session' + </TimelineItemPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/vasquet.jpg" + date='First Science Slam' tag= 'Talks' color='var(--lightblue)' - csstag="slam" + csstag="slam1" + heading="ChatGPT and Large Language Models" + nachname="Vaquet" + vorname="Jonas" + text="At this year's BFH Meetup, experienced slammers and FameLab [Link] participants were once again able to take + to the stage and present their scientific topic as simply as possible in 5 minutes. " > - <span>Science Slam Session</span> - <div id="slam" style={{display: "none"}}> - So much more + <div id="slam1" style={{display: "none"}}> + <p>With Jonas Vaquet, a + research associate of the EU project ERC Waterfutures [Link], the audience explored Large Language Models + (LLMs) such as ChatGPT. The speaker humorously engaged the crowd, asking who had used such models, and + nearly all hands were raised in response. </p> + <p>The speaker introduced ChatGPT, a "Generative Pre-trained Transformer," using an interactive experiment where + the audience predicted the next words in sentences, showing how the model works with pre-trained data and + calculates text continuations. </p> + <p>While it is fair to say that ChatGPT is a powerful and helpful tool, it is important to focus on the potential + dangers and challenges it brings, which Jonas summarizes in three key factors in his talk: </p> + <ul> + <li><b>Plagiarism Risks:</b> The speaker demonstrated how easy it is to unintentionally replicate existing + works, using a Harry Potter example to illustrate plagiarism risks in creative writing.</li> + <li><b>Hallucinations:</b> Language models can generate plausible but incorrect information, exemplified + by a fictitious CV with invented grades, highlighting risks in academic and professional use.</li> + <li><b>Lack of Opinion Formation:</b> ChatGPT does not form real opinions, leading to inconsistent + answers when asked for preferences.</li> + </ul> + <p>Although large language models (LLMs) are trained with extensive collection of texts or spoken language, + they often fail in the accuracy required for scientific topics. Sources are seemingly conjured out of + thin air and claims vanish into thin air because their answers are based on statistical probabilities, + leading to confusion, especially for niche questions. </p> + <p>Jonas ended his talk by giving the audience food for thought. He reminded everyone who had eagerly + raised their hands at the beginning to always double-check ChatGPT's information, especially in + academic and professional settings. </p> + <p>With his interactive and humorous approach, Jonas turned the complex world of LLMs into an engaging + and accessible adventure, offering deep insights into the workings and idiosyncrasies of this + fascinating technology. </p> </div> - </TimelineItem> + </TimelineItemPic> + <TimelineItemPic + url="https://static.igem.wiki/teams/5247/photos/meetup/speakers/niklas-bloebaum.jpeg" + date='Second Science Slam' + tag= 'Talks' + color='var(--lightblue)' + csstag="slam2" + heading="Microalgae for Sustainable Food Production " + text="Niklas, a biotechnologist and PhD student at the Faculty of Engineering at Bielefeld University, used his experience from previous science slams and his participation in a previous iGEM competition to present microalgae in a new light." + vorname="Niklas" + nachname="Bloebaum" + > + <div id="slam2" style={{display: "none"}}> + <p>With insights into his current research, Niklas introduced the audience to the innovative uses of chlorella + for sustainable food production. </p> + <p>The star of the show was the smallest vegetable in the world Chlorella is tiny (4 to 12 microns) but + very rich in nutrients: 45-65% protein, 10-20% fat, 10-20% carbohydrates, 5% fiber and various + vitamins and minerals, including vitamin B12. </p> + <p>Nicholas presented two production methods: </p> + <ul> + <li><b>open pond systems:</b>these utilize light, COâ‚‚ and water for photosynthesis, but have the problem + of the availability of light and water.</li> + <li><b>bioreactors:</b>modern, controlled, sterile environments that utilize sugar as an energy source, + significantly increase productivity and reduce water consumption.</li> + </ul> + <p>Bioreactors are up to 100 times more productive and use 100 times less water than conventional methods. + Sounds perfect, right? But Nicholas had to burst the bubble and make it clear that the technology + still needs to be developed further. </p> + <p>In terms of sustainability, Nicholas had to emphasize that the whole process of microalgae production needs + to be questioned. He noted that the current carbon footprint calculations for bioreactors are outdated. + But fear not, our brave biotechnologist is on a mission to bring these figures up to date with his + groundbreaking research! </p> + <p>The curious audience asked questions about scalability, costs and sustainable sugar sources. Always up for a + challenge, Nicholas explained that the current high costs could be addressed by improving the productivity + of the bioreactors! However, he also emphasized that further research is needed to find a sustainable + source of sugar. </p> + <p>In his grand finale, Nicholas presented three wise insights: </p> + <ul> + <li><b>biotechnology</b> goes far beyond medicine and opens the doors for sustainable food production.</li> + <li><b>sustainability </b> assessments must consider the entire production process - no detail should be overlooked!</li> + <li><b>chlorella</b>, the tiny, nutrient-rich microalgae, has the potential to be a hero in our future diet. </li> + </ul> + <p>Nicholas captivated the audience with his vivid and eye-opening presentation. He guided them through the fascinating + and sometimes turbulent world of microalgae production, highlighting the challenges and opportunities of + this technology. The audience was not only informed but also entertained and ready to embrace the future + of sustainable nutrition with chlorella as their little green hero. </p> + </div> + </TimelineItemPic> <div className='timeline-end'> Award Ceremony </div> diff --git a/src/components/RoutManager.tsx b/src/components/RoutManager.tsx index 3857e012cce5354fc6955dde3dc8aed65b676a85..9d26f1b6e096acb07fa51f597a91b612881ca913 100644 --- a/src/components/RoutManager.tsx +++ b/src/components/RoutManager.tsx @@ -1,8 +1,7 @@ -import React, { useState, useEffect } from "react"; +import { useState, useEffect } from "react"; import { Routes, Route, useLocation } from "react-router-dom"; import LoadingScreen from "../components/LoadingScreen"; import { getPathMapping } from "../utils/getPathMapping"; -import { stringToSlug } from "../utils/stringToSlug"; import { NotFound } from "../components/NotFound"; import { Villbuttonrow } from "../components/Buttons"; @@ -53,4 +52,4 @@ const RouteManager = () => { ); }; - export default RouteManager; \ No newline at end of file + export default RouteManager; diff --git a/src/components/ScrollLink.tsx b/src/components/ScrollLink.tsx new file mode 100644 index 0000000000000000000000000000000000000000..4f4c1ce03709d23541d7486fe20dad590c573534 --- /dev/null +++ b/src/components/ScrollLink.tsx @@ -0,0 +1,107 @@ +/* import { openThem } from "../contents"; + */ +import { goTo } from "./goto"; +interface ScrollLinkProps { + targetId: string; + label?: string; + children?: React.ReactNode; + openThis?: string; /*(_event: MouseEvent<HTMLElement, MouseEvent>) => void; */ +} +interface SupScrollLinkProps { + label: string; +} + +export const ScrollLink: React.FC<ScrollLinkProps> = ({ targetId, label }) => { + const handleClick = (event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => { + event.preventDefault(); // Prevent default anchor behavior + const targetElement = document.getElementById(targetId); + if (targetElement) { + const elementRect = targetElement.getBoundingClientRect(); + const elementTop = elementRect.top + window.scrollY; + const viewportHeight = window.innerHeight; + const scrollOffset = elementTop - (viewportHeight / 5 - targetElement.offsetHeight / 2); + + console.log(`Element Top: ${elementTop}`); + console.log(`Viewport Height: ${viewportHeight}`); + console.log(`Scroll Offset: ${scrollOffset}`); + + window.scrollTo({ + top: scrollOffset, + behavior: "smooth" + }); + } else { + console.error(`Element with ID ${targetId} not found.`); + } + }; + + return ( + <a href={`#${targetId}`} onClick={handleClick}> + {label} + </a> + ); +}; + + +export const SupScrollLink : React.FC<SupScrollLinkProps> = ({label }) => { + let targetId = "desc-" + label + const handleClick = () => { + const targetElement = document.getElementById(targetId); + if (targetElement) { + goTo(targetElement); + } + }; + + return ( + <sup><a onClick={handleClick}> + {label} + </a> + </sup> + ); +}; +/* export const ScrollLink: React.FC<ScrollLinkProps> = ({ targetId, label }) => { + const handleClick = (event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => { + event.preventDefault(); // Prevent default anchor behavior + const targetElement = document.getElementById(targetId); + if (targetElement) { + goTo(targetElement); + } + }; + + return ( + <a href={`#${targetId}`} onClick={handleClick}> + {label} + </a> + ); +}; */ + + +/* export const ScrollLinkSidebar: React.FC<OpenScrollLinkWithChildProps> = ({ targetId, children, openThis}) => { + const handleClick = () => { + const targetElement = document.getElementById(targetId); + if (targetElement) { + goTo(targetElement); + } + openThem({it: openThis}); + }; + + return ( + <a onClick={handleClick}> + {children} + </a> + ); +}; */ + + export const ScrollLinkWithChild: React.FC<ScrollLinkProps> = ({ targetId, children }) => { + const handleClick = () => { + const targetElement = document.getElementById(targetId); + if (targetElement) { + goTo(targetElement); + } + }; + + return ( + <a onClick={handleClick}> + {children} + </a> + ); +}; \ No newline at end of file diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index d01fc391b0768ac5e50ba09a228a79c47f8544bc..e7ecb065c6f0c48d05ed00b6eda544a4d9147ed4 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -1,14 +1,14 @@ import { useEffect } from 'react'; - +import { Highlight } from './Highlight'; function SideItem({hesh, num}:{hesh: string; num: number}){ let link = "#" + hesh let subdi = "subtitle" + num return( <div> <a href={link}> - <span id={subdi}> + <span id={subdi} className='sideitem'> {hesh} </span> </a> @@ -80,8 +80,8 @@ function Sidebar(){ {content} </nav> <br/> - <div className="col" style={{display: "flex", alignItems: "right "}}> - <a href={'#' + nums[0]} className="backtotop"> + <div className="col" style={{display: "flex", alignItems: "right"}}> + <a href='#' className="backtotop"> Back to Top ↑ </a> </div> @@ -92,30 +92,9 @@ function Sidebar(){ <div></div> ) } - + + - function Highlight({el}: {el: HTMLElement | null}, {subtitle}:{subtitle: HTMLElement | null}){ - let TopDistance = 100; - if (el != null && subtitle != null){ - if (el.getBoundingClientRect().top < TopDistance + 1 && el.getBoundingClientRect().bottom > TopDistance){ - subtitle.style.color = "#FFF6F2"; - subtitle.style.backgroundColor = "#850F78"; - subtitle.style.borderRadius = "15px"; - subtitle.style.borderWidth = "15px"; - subtitle.style.borderColor = "#850F78"; -/* console.log("subtitle: ",subtitle) - console.log("style: ", subtitle.style) - console.log("color: ",subtitle.style.color) - console.log("backcolor: ",subtitle.style.backgroundColor) */ - } - else{ - subtitle.style.color = "#850F78"; - subtitle.style.backgroundColor = ""; - } - } - - } - export default Sidebar; \ No newline at end of file diff --git a/src/contents/code.tsx b/src/components/code.tsx similarity index 100% rename from src/contents/code.tsx rename to src/components/code.tsx diff --git a/src/components/data/test-path-home.svg b/src/components/data/test-path-home.svg new file mode 100644 index 0000000000000000000000000000000000000000..e095d6ad86b0f5629fc0e381a6f5de3fa409620b --- /dev/null +++ b/src/components/data/test-path-home.svg @@ -0,0 +1,6 @@ + +<svg width="1080" height="4000" fill="none" xmlns="test-namespace"> +<path d="M 50 50 C 500 -50 1000 100 1870 50 C 1820 220 2024 528 1870 590 C 1351 678 118 451 54 561 C 3 672 12 985 55 985 C 586 1090 1342 898 1881 1038 C 1994 1194 1986 1568 1890 1681 C 1751 1803 281 1481 168 1646 C 81 1794 21 1977 168 2142 C 499 2246 1403 2325 1081 2142 +" stroke="#850F78" stroke-width="10"/> +</svg> + diff --git a/src/components/goto.tsx b/src/components/goto.tsx new file mode 100644 index 0000000000000000000000000000000000000000..d914c99dead17711e7b0b4541ff0a16b8d477fa9 --- /dev/null +++ b/src/components/goto.tsx @@ -0,0 +1,24 @@ +export const goTo = (el: HTMLElement): void => { + const elementRect = el.getBoundingClientRect(); + const elementTop = elementRect.top + window.pageYOffset; // Absolute position from the top of the document + const viewportHeight = window.innerHeight; + + // Calculate the scroll position so the top of the element is centered in the viewport + const middlePosition = elementTop - (viewportHeight / 5 - el.offsetHeight / 2); + + window.scrollTo({ + top: middlePosition, + behavior: 'smooth' + }); +}; + + +/* +export const goToTextsAndOpenCollapsible = ({collapseId, path}: {collapseId: string, path: string}) => { + const navigate = useNavigate(); + navigate(`${path}${collapseId}`); +}; +export const goToPagesAndOpenTab = (tabId: string, path: string) => { + const navigate = useNavigate(); + navigate(`${path}${tabId}`); +}; */ \ No newline at end of file diff --git a/src/components/header-box.tsx b/src/components/header-box.tsx index 3c1dd6406fccee1acd5d0d66094632aaecb772d6..717bf50fc1561c011ae4f25aacf5b48c782c0d10 100644 --- a/src/components/header-box.tsx +++ b/src/components/header-box.tsx @@ -1,5 +1,7 @@ +import { Hpopart } from "./headings"; + interface Props{ - title?: string, + title: string, children?: React.ReactNode, } @@ -9,7 +11,7 @@ export default function HeaderBox({children, title}: Props ){ <div className="row"> <div className="col header-container"> <div className="header-title"> - {title} + <Hpopart text={title}></Hpopart> </div> {children} </div> diff --git a/src/components/headings.tsx b/src/components/headings.tsx index a60fbd5268b9d74041ee99f7811ca1c5e484f2e5..583d6a0ebd7d7ca0ebd37eaca59f6682f02bcc20 100644 --- a/src/components/headings.tsx +++ b/src/components/headings.tsx @@ -1,3 +1,4 @@ +import { stringToSlug } from "../utils"; export function Hhopp({text}:{text: string}){ const arr = []; @@ -25,9 +26,16 @@ export function Hsmoke({text}:{text: string}){ ) } -export function H1({text}:{text: string}){ +export function H1({text, id}:{text: string, id?: string}){ + var idtext: string; + if (id) { + idtext = id; + } + else{ + idtext = stringToSlug(text); + } return( - <div className="row hone"> + <div id={idtext} className="row hone"> <svg width="100%" height="100%"> <text x="0%" y="60%"> {text} @@ -37,24 +45,41 @@ export function H1({text}:{text: string}){ ) } -/* export function Hprompt({text}:{text: string}){ + +export function H2({text, id}:{text: string, id?: string}){ + var idtext: string; + if (id) { + idtext = id; + } + else{ + idtext = stringToSlug(text); + } return( <div> - <h2>{text}</h2> + <h2 id={idtext}>{text}</h2> <hr/> </div> + ) -} */ -export function H2({text}:{text: string}){ +} + +export function H3({text, id}:{text: string, id?: string}){ + var idtext: string; + if (id) { + idtext = id; + } + else{ + idtext = stringToSlug(text); + } return( <div> - <h2>{text}</h2> - <hr/> + <h3 id={idtext}>{text}</h3> </div> ) } + export function Hhighlight({children}:{children: React.ReactNode}){ return( <div className="content v2"> @@ -99,11 +124,15 @@ export function Hwave({text}:{text: string}){ export function Hpopart({text}:{text: string}){ return( - <div className="relative"> + <div className="row"> + <div className="col"> + <div className="relative popart-wrapper"> <div className="absolute popart"> {text} + </div> </div> </div> + </div> ) } diff --git a/src/components/loremipsum.tsx b/src/components/loremipsum.tsx new file mode 100644 index 0000000000000000000000000000000000000000..d5f43c6be71b5c647ac66e2f0a96c25443c94869 --- /dev/null +++ b/src/components/loremipsum.tsx @@ -0,0 +1,21 @@ +export function LoremMedium(){ + return( + <> + Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. + +Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. + +Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. + +Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer +</> + ) +} + +export function LoremShort(){ + return( + <> + Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. + </> + ) +} \ No newline at end of file diff --git a/src/components/openAndScroll.ts b/src/components/openAndScroll.ts new file mode 100644 index 0000000000000000000000000000000000000000..29c8e2913d57cac2e5b51b3b9514326eb3c345b6 --- /dev/null +++ b/src/components/openAndScroll.ts @@ -0,0 +1,116 @@ +export function openAndScroll({ it, scrollTarget }: { it: string, scrollTarget?: string }) { + const gotoandopen = (_event: React.MouseEvent<HTMLElement, MouseEvent>) => { + _event.preventDefault(); // Prevent default anchor behavior + + console.log(`openAndScroll called with it: ${it} and scrollTarget: ${scrollTarget}`); + + // Attempt to find the elements + const subtabElement = document.getElementById(it); + const parentElementId = "parent-" + it.replace("tab-", ""); + const parentElement = document.getElementById(parentElementId); + + console.log(`subtabElement with ID ${it}: `, subtabElement); + console.log(`parentElement with ID ${parentElementId}: `, parentElement); + + if (subtabElement && parentElement) { + console.log("Found subtabElement and parentElement."); + // Show the selected tab in the sidebar and add active class + subtabElement.style.display = "block"; + parentElement.classList.add("active-sideitem"); + } else { + console.error(`Subtab element or parent element not found for ID: ${it}`); + } + + // If a scroll target is provided, scroll to that element on the page + if (scrollTarget) { + const targetElement = document.getElementById(scrollTarget); + if (targetElement) { + console.log(`Scrolling to element with ID: ${scrollTarget}`); + + // Get the position of the element relative to the document + const elementRect = targetElement.getBoundingClientRect(); + const elementTop = elementRect.top + window.scrollY; + + // Calculate the middle of the viewport + const viewportHeight = window.innerHeight; + const scrollOffset = elementTop - (viewportHeight / 5 - targetElement.offsetHeight / 2); + /* + console.log(`Element Top: ${elementTop}`); + console.log(`Viewport Height: ${viewportHeight}`); + console.log(`Scroll Offset: ${scrollOffset}`); */ + + window.scrollTo({ + top: scrollOffset, + behavior: "smooth" + }); + } else { + console.error(`Scroll target element not found for ID: ${scrollTarget}`); + } + } + } + return gotoandopen; +} + + +export function openAndCloseAndScroll({ it, scrollTarget, close }: { it: string, scrollTarget?: string, close: Array<string> }) { + const gotoandopen = (_event: React.MouseEvent<HTMLElement, MouseEvent>) => { + _event.preventDefault(); // Prevent default anchor behavior + + console.log(`openAndScroll called with it: ${it} and scrollTarget: ${scrollTarget}`); + + // Attempt to find the elements + const subtabElement = document.getElementById(it); + const parentElementId = "parent-" + it.replace("tab-", ""); + const parentElement = document.getElementById(parentElementId); + + + if (close) { + for (let idx in close){ + let tab = "tab-" + close[idx]; + let parent = "parent-" + close[idx]; + document.getElementById(tab)!.style.display = "none"; + document.getElementById(parent)!.classList.remove("active-sideitem"); + } + } + + console.log(`subtabElement with ID ${it}: `, subtabElement); + console.log(`parentElement with ID ${parentElementId}: `, parentElement); + + if (subtabElement && parentElement) { + console.log("Found subtabElement and parentElement."); + // Show the selected tab in the sidebar and add active class + subtabElement.style.display = "block"; + parentElement.classList.add("active-sideitem"); + } else { + console.error(`Subtab element or parent element not found for ID: ${it}`); + } + + // If a scroll target is provided, scroll to that element on the page + if (scrollTarget) { + const targetElement = document.getElementById(scrollTarget); + if (targetElement) { + console.log(`Scrolling to element with ID: ${scrollTarget}`); + + // Get the position of the element relative to the document + const elementRect = targetElement.getBoundingClientRect(); + const elementTop = elementRect.top + window.scrollY; + + // Calculate the middle of the viewport + const viewportHeight = window.innerHeight; + const scrollOffset = elementTop - (viewportHeight / 5 - targetElement.offsetHeight / 2); + /* + console.log(`Element Top: ${elementTop}`); + console.log(`Viewport Height: ${viewportHeight}`); + console.log(`Scroll Offset: ${scrollOffset}`); */ + + window.scrollTo({ + top: scrollOffset, + behavior: "smooth" + }); + } else { + console.error(`Scroll target element not found for ID: ${scrollTarget}`); + } + } + } + return gotoandopen; +} diff --git a/src/components/pdfs.tsx b/src/components/pdfs.tsx index 560c2aaaa7dbc98c458683aff9764bb78d567f76..c324859aa9e25635e1371720898c091bec8eaf66 100644 --- a/src/components/pdfs.tsx +++ b/src/components/pdfs.tsx @@ -1,10 +1,10 @@ -import { DownloadLink } from "./Buttons" +import { ButtonOne, DownloadLink } from "./Buttons" export function PDF({link, name}: {link: string, name:string}){ return( <div className='row align-items-center'> - <iframe src={link} width="100%" height="530vw" title="title" className='small-i'> + <iframe src={link} width="100%" title="title" className='one-pdf-line small-i'> </iframe> <div className='row download-col'> <DownloadLink url={link} fileName={name} ></DownloadLink> @@ -12,18 +12,71 @@ export function PDF({link, name}: {link: string, name:string}){ </div> ) } -export default function BFHpdf(){ +export function TwoLinePDF({link, name}: {link: string, name:string}){ return( <div className='row align-items-center'> - <div className='col'> - <PDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-flyer-european-meetup.pdf' name="bfh-flyer-european-meetup.pdf"/> + <iframe src={link} width="100%" title="title" className='two-pdf-line small-i'> + </iframe> + <div className='row download-col'> + <DownloadLink url={link} fileName={name} ></DownloadLink> + </div> </div> - <div className='col-2'> + ) +} +export default function BFHpdf(){ + return( + <> + <div className="row align-items-center" style={{marginTop: "5vh", marginBottom: "5vh"}}> + <div className="col"> + <ButtonOne text="Flyers" open="flyers"></ButtonOne> + </div> + <div className="col"> + <ButtonOne text="Presentations" open="presis"></ButtonOne> + </div> + <div className="col"> + <ButtonOne text="Judging Form" open="form"></ButtonOne> + </div> + </div> + <div className="col cycletab" id="flyers" style={{display: "block"}}> + <div className='row align-items-center'> + <div className='col '> + <TwoLinePDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-flyer-european-meetup.pdf' name="bfh-flyer-european-meetup.pdf"/> + </div> + <div className='seperator-2 col-2'> + </div> + <div className='col '> + <TwoLinePDF link='https://static.igem.wiki/teams/5247/pdfs/postbfh-brosch-re-compressed.pdf' name="bfh-meet-up-guideline.pdf"/> + </div> </div> - <div className='col'> - <PDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-meet-up-guideline.pdf' name="bfh-meet-up-guideline.pdf"/> + </div> + <div className="col cycletab" id="presis" style={{display: "none"}}> + <div className='row align-items-center'> + <div className='col'> + <TwoLinePDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-presentation-bielefeld.pdf' name="bfh-flyer-european-meetup.pdf"/> + </div> + <div className='seperator-2 col-2'> + </div> + <div className='col'> + <TwoLinePDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-studicom-presentation.pdf' name="bfh-flyer-european-meetup.pdf"/> + </div> +{/* <div className='col'> + <PDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-poster-bielefeld.pdf' name="bfh-meet-up-guideline.pdf"/> + </div> */} </div> </div> + <div className="col cycletab" id="form" style={{display: "none"}}> + + </div> + + </> + ) +} + +export function GuidePDF(){ + return( + <div className='col'> + <PDF link='https://static.igem.wiki/teams/5247/pdfs/bfh-meet-up-guideline.pdf' name="bfh-meet-up-guideline.pdf"/> + </div> ) } \ No newline at end of file diff --git a/src/components/seclarations.ts b/src/components/seclarations.ts index 759d2c90d81ac1f54e74325c32a1fd8f05d93a50..c0916ab0e2f82c5ebc978c4cbd21d53ec5821ae4 100644 --- a/src/components/seclarations.ts +++ b/src/components/seclarations.ts @@ -2,7 +2,7 @@ export * from './Buttons.tsx' export * from './headings.tsx'; export * from './Sidebar.tsx'; - +export * from './Boxes.tsx' export * from './AOSs.tsx' export * from './My-Timeline.tsx' export * from './data/mapscr.ts' diff --git a/src/components/svgs.tsx b/src/components/svgs.tsx index e03fd009b5f33f3f859b1df8fa3617c2db39d1fa..e43120377a3da2dc8e833fadcd3098a322a9b611 100644 --- a/src/components/svgs.tsx +++ b/src/components/svgs.tsx @@ -1,5 +1,7 @@ -import { Link } from "react-router-dom" +import { useNavigation } from "../utils" +import { ScrollLinkWithChild } from "./ScrollLink"; export function Complex(){ + const { goToPagesAndOpenTab /* , goToTextsAndOpenCollapsible */ } = useNavigation(); return( <> <svg @@ -693,6 +695,7 @@ export function Complex(){ style={{fill:"none",fillOpacity:"1",stroke:"#000000",strokeWidth:"7",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} d="M 525.09492,662.08075 C 375.66161,714.42751 375.66161,714.42751 375.66161,714.42751" id="path89" /> + <ScrollLinkWithChild targetId="riboswitch"> <text style={{fontStyle:"normal",fontVariant:"normal",fontWeight:"normal",fontStretch:"normal",fontSize:"15.6654px",fontFamily:"Arial",whiteSpace:"pre",inlineSize:"123.911",fill:"none",fillOpacity:"1",stroke:"#000000",strokeWidth:"0.326363",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} @@ -705,6 +708,7 @@ export function Complex(){ id="ribotext"><tspan style={{fill:"#000000"}} id="ribotext">Riboswitch</tspan></tspan></text> + </ScrollLinkWithChild> <path style={{fill:"#000000",fillOpacity:"1",stroke:"#000000",strokeWidth:"7",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} d="M 714.57654,286.73782 C 603.08853,373.95263 603.08853,373.95263 603.08853,373.95263" @@ -741,7 +745,7 @@ export function Complex(){ id="stemlooptext"><tspan style={{fill:"#000000"}} id="stemlooptext">Stem Loop</tspan></tspan></text> - <Link className="btn village-style-button" role="button" to="/engineering/#RNAbindingprotein"> + <a onClick={() => goToPagesAndOpenTab('InvWesthoff', '/engineering?tab=')}> <text style={{fontStyle:"normal",fontVariant:"normal",fontWeight:"normal",fontStretch:"normal",fontSize:"15.6654px",fontFamily:"Arial",whiteSpace:"pre",inlineSize:"123.911",display:"inline",fill:"#000000",fillOpacity:"1",stroke:"#000000",strokeWidth:"0.326363",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} x="24.838236" @@ -754,9 +758,10 @@ export function Complex(){ x="24.838236" y="669.81539" id="tspan8">protein</tspan></text> - </Link> + </a> {/* pegRNA Text */} + <a onClick={() => goToPagesAndOpenTab('tab-pegrna', '/engineering?tab=')}> <text style={{fontStyle:"normal",fontVariant:"normal",fontWeight:"normal",fontStretch:"normal",fontSize:"15.6654px",fontFamily:"Arial", whiteSpace:"pre",inlineSize:"123.911",display:"inline",fill:"none",fillOpacity:"1",stroke:"#000000",strokeWidth:"0.326363",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} x="24.838236" @@ -768,9 +773,11 @@ export function Complex(){ id="pegrnatext"><tspan style={{fill:"#000000"}} id="pegrnatext">pegRNA</tspan></tspan></text> + </a> <g id="g1" transform="translate(845.89947,114.11378)"> + <a onClick={() => goToPagesAndOpenTab('tab-nikase', '/engineering?tab=')}> <text style={{fontStyle:"normal",fontVariant:"normal",fontWeight:"normal",fontStretch:"normal",fontSize:"15.6654px",fontFamily:"Arial",whiteSpace:"pre",inlineSize:"123.911",display:"inline",fill:"#000000",fillOpacity:"1",stroke:"#000000",strokeWidth:0.326363,strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} @@ -781,6 +788,7 @@ export function Complex(){ x="24.838236" y="650.23364" id="tspan11">Nikase</tspan></text> + </a> </g> <text diff --git a/src/components/test.css b/src/components/test.css index 34d674f79a808e104ca69a61697d388d85d1f1a4..b2cca45f86c9a2eba3c1c2f248d34a82eef6794c 100644 --- a/src/components/test.css +++ b/src/components/test.css @@ -11,7 +11,12 @@ .ball03 { fill: green; } - + + .homeAnimLine { + /* Set visibility to visible for debugging and hidden otherwise*/ + visibility: visible; + } + .line { stroke: black; } @@ -29,11 +34,15 @@ } .vector { - height: 100px; - width: 100px; + width: 20px; + height: 40px; background-color: white; } + .animStarterClass { + visibility: hidden; + } + #payload { height: 100px; width: 100px; diff --git a/src/components/testsvganimation.tsx b/src/components/testsvganimation.tsx index c16363599367dd71798187331c833d030bdc0afb..15b0f91663c210822ecf40e5ae75c06fa9d61bda 100644 --- a/src/components/testsvganimation.tsx +++ b/src/components/testsvganimation.tsx @@ -3,6 +3,8 @@ import { useGSAP } from "@gsap/react"; import { ScrollTrigger } from "gsap/dist/ScrollTrigger"; import { useRef } from 'react'; import { MotionPathPlugin } from "gsap/dist/MotionPathPlugin"; +import { LoremMedium } from "./loremipsum"; +import { H2 } from "./headings"; @@ -56,31 +58,40 @@ console.log("Started TestSVG") return ( - <div className="col-8"> - - <svg id="svg" xmlns="" viewBox="0 0 1980 4400"> - - <path className="theLine" d=" - M 50 50 S 540 200 540 1000 S -300 1200 540 2000 S -600 2200 540 3000 S 0 4000 540 4000 L 540 4500" - /* file="none" */ stroke="white" strokeWidth="10px"></path> + <div className="row col"> + <svg id="svg" viewBox="0 0 1500 1000"> + {/* + <path className="theLine" d="S 50" + stroke="white" strokeWidth="10px"></path> - + <path className="theLine2" d="M 300 50 S 50 200" + stroke="white" strokeWidth="10px" width="10px"></path> + */} + <foreignObject x="5vw" y="5vh" className="box1"> + <H2 id="mutcans" text="Mutation canidates"/> + <p > + <LoremMedium></LoremMedium> + </p> + </foreignObject> + <foreignObject className="box2"> + <H2 id="mutcans2" text="Mutation canidates"/> + <p> + <LoremMedium></LoremMedium> + </p> + </foreignObject> - <path className="theLine2" d=" - M 1030 50 S 540 200 540 1000 S -300 1200 540 2000 S -600 2200 540 3000 S 540 4000 540 4000 L 540 3500" - /* file="none" */ stroke="white" strokeWidth="10px"></path> + {/* <path className="theLine3" d="M 300" + stroke="white" strokeWidth="10px"></path> */} - - - <path className="theLine3" d=" - M 2000 600 S -300 1200 540 2000 S -600 2200 540 3000 S 540 4000 -100 4000 L -100 4200" - /* file="none" */ stroke="white" strokeWidth="10px"></path> - - </svg> - <img ref={vectorRef} src="https://static.igem.wiki/teams/5247/scientific-figures/antibiotics-capsule.svg" alt="vectorImg"/> - <img ref={payloadRef} src="https://static.igem.wiki/teams/5247/scientific-figures/antibiotics-inhaler.svg" alt="payloadImg"/> - <img ref={inhalatorRef} src="https://static.igem.wiki/teams/5247/scientific-figures/albuterol.svg" alt="inhalatorImg"/> - </div> + </svg> + {/* </svg> */} + {/* <text ref={vectorRef}>H</text> + <text ref={payloadRef}>B</text> */} + {/* <img ref={vectorRef} src="https://static.igem.wiki/teams/5247/scientific-figures/antibiotics-capsule.svg" alt="vectorImg"/> + */}{/* <img ref={payloadRef} src="https://static.igem.wiki/teams/5247/scientific-figures/antibiotics-inhaler.svg" alt="payloadImg"/> + */} + {/* <img className="test2" ref={inhalatorRef} src="https://static.igem.wiki/teams/5247/scientific-figures/antibiotics-capsule.svg" alt="vectorImg" /> + */} </div> ); } diff --git a/src/contents/Bfh.tsx b/src/contents/Bfh.tsx index a0338b738059ef31975939b080d600e16e0da1ae..50a7c908460d43bc7fc4bee7b9453fcf9fe4348c 100644 --- a/src/contents/Bfh.tsx +++ b/src/contents/Bfh.tsx @@ -1,8 +1,11 @@ import { MyTimeline } from "../components/My-Timeline"; import BFHGallery from "../components/photo-grid"; -import BFHpdf from "../components/pdfs"; +import BFHpdf, { GuidePDF } from "../components/pdfs"; import { H2} from "../components/headings"; import { BFHStyleTabs } from "../components/Tabs"; +import { useLocation } from "react-router-dom"; +import { useEffect } from "react"; +import { BlockQuoteB } from "../components/Quotes"; let tabbys = [ { node: <BFHpdf></BFHpdf>, @@ -14,6 +17,11 @@ let tabbys = [ cssname: "timeline", buttonname: "Timeline" }, + { + node: <GuidePDF></GuidePDF>, + cssname: "guide", + buttonname: "Guide" + }, { node: <BFHGallery/>, cssname: "gall", @@ -23,46 +31,63 @@ let tabbys = [ node: <About/>, cssname: "about", buttonname: "About" + }, + { + node: <PosterGallery/>, + cssname: "posters", + buttonname: "Poster" } + ] export function Bfh() { - + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Open the tab specified by tabId + if (tabId) { + // Hide all tabs + const tabs = document.querySelectorAll('.tabcontent'); + tabs.forEach((tab) => { + (tab as HTMLElement).style.display = 'none'; + }); + + // Show the selected tab + const selectedTab = document.getElementById(tabId); + if (selectedTab) { + selectedTab.style.display = 'block'; + } + } + + // Scroll to the section specified by collapseId after opening the tab + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } +}, [location.search]); + return ( <> <div className="" /* style={{ paddingTop: "5vw"}} */> - <div className="row align-items-center" > - <div className="col" style={{position: "relative"}}> - <div className="explore"> - <b className="fancy">Explore!</b> - </div> - </div> - <div className="col"> - <div className="gall-a"> - <span className="gall-b" typeof="button" onClick={openCity({cityName: "about"})}> - <div> - <img src="https://static.igem.wiki/teams/5247/design/icons/united.png" alt="a house on a mountain"/> - </div> - </span> - <span className="gall-b" typeof="button" onClick={openCity({cityName: "gall"})}> - <div> - <img src="https://static.igem.wiki/teams/5247/design/icons/gallery.png" alt="a house on a mountain"/> - </div> - </span> - <span className="gall-b" typeof="button" onClick={openCity({cityName: "timeline"})} > - <div> - <img src="https://static.igem.wiki/teams/5247/design/icons/timeline.png" alt="a house on a mountain"/> - </div> - </span> - <span className="gall-b" typeof="button" onClick={openCity({cityName: "pdf"})}> - <div> - <img src="https://static.igem.wiki/teams/5247/design/icons/file.png" alt="a house on a mountain"/> - </div> - </span> - </div> - </div> - <div className="col"> - - </div> + + <div className="row align-items-center" style={{display: "flex"}}> + <div className="col"></div> + <div className="col bfh-menu" style={{display: "flex"}}> + <MenuSVG></MenuSVG> + </div> + <div className="col"></div> </div> <div className="buffer"> @@ -84,34 +109,2437 @@ export function Bfh() { export function About(){ return( <div> + <BlockQuoteB text="This was the best meet up ever in the history of iGEM. Thank you so much!" cite="Nemanja Stijepovic"></BlockQuoteB> + <H2 text="Introduction"/> + <p>This year, we hosted the first BFH European Meet-Up ever. Over the course of three full days, we embarked on a journey where minds met, and ideas ignited. Our mission: </p> + <p><b>Ignite. Innovate. Inspire.</b></p> + <p>This event was designed to unite the brightest minds from across Europe and beyond, providing a platform for sharing groundbreaking ideas and fostering international connections during the early stages of the iGEM competition. </p> <H2 text="About Our Cooperation"/> - <p>Over the past years, we have all made many friends and expanded our scientific network during the iGEM competition and afterwards. The idea behind the cooperation between Bielefeld, Frankfurt and Hamburg is based on the friendship that former participants have gained alongside the iGEM competition. Our mission is to promote future projects and bring teams together. The location of the BFH European Meet-Up 2024 will alternate between the universities of Bielefeld, Frankfurt, and Hamburg. We wish you lots of fun and hope that the iGEM competition fulfills you as much as it has fulfilled us.</p> - <H2 text="About Networking"/> - <p>We want to connect with each other! And in the last years, iGEM teams all around the world are getting together and exchange funny memes or contact data via stickers. Therefore we establish the first iGEM Teams Sticker Album ever created. You want to participate into the biggest social networking event, collect all stickers and win special prizes? Sign up and gotta catch 'em all! - </p> + <p> The cooperation between Bielefeld, Frankfurt, and Hamburg is rooted in the friendships and networks formed during the iGEM competition 2023. Our mission is to promote future projects and bring teams together. By alternating the location of the BFH European Meet-Up each year, we aim to provide diverse networking opportunities and foster a strong sense of community among iGEM participants. </p> + <h3>Head of BFH Committee</h3> + <H2 text="What Were Our Goals?"/> + <ul className="haken-liste"> + <li> <big>✓</big> Unite iGEM teams from across Europe and foster a sense of community and collaboration. </li> + <li> <big>✓</big> Provide a platform for teams to present their projects and receive valuable feedback. </li> + <li> <big>✓</big> Offer opportunities for participants to build their scientific and soft skills through workshops and presentations. </li> + <li> <big>✓</big> Encourage networking and socializing among iGEM teams to build lasting relationships and expand scientific networks. </li> + <li> <big>✓</big> Elaborate their team projects and reflect their decisions in early stage of time in cooperation with iGEM alumni and scientist from all around the globe </li> + </ul> + <H2 text="What Did the Participants Learn?"/> + <ul className="haken-liste"> + <li> <big>✓</big> Gained insights into current research from Bielefeld University and nearby institutions through Scientific Talks. </li> + <li> <big>✓</big> Learned from over 10 national and international speakers and experts from industry, academia, and the iGEM community</li> + <li> <big>✓</big> Participated in hands-on Workshop Sessions led by leading experts, which contributed to the development of the next generation of ambitious researchers</li> + <li> <big>✓</big> Engaged in Panel Discussions to puzzle over ideas, impressions, and the potential of multiple projects, fostering collaboration and networking</li> + </ul> + <H2 text="Sticker Collection Album: Connect and Collect!"/> + <p>We are excited to introduce the first official BFH iGEM Sticker Collection Album of 2024! Over the past few years, iGEM teams from around the world have started exchanging funny memes, logos, mascots, and contact information via stickers. Recognizing this creative trend, we've established the first-ever iGEM Teams Sticker Album to enhance social networking among participants during the Grand Jamboree and beyond. </p> + <p>Do you want to join the biggest social networking event, collect all stickers, and win special prizes? Sign up and get ready to catch 'em all! To participate, submit your project title and abstract, and design a unique sticker that represents your team. These stickers will be exchanged at the Grand Jamboree in Paris. Once you've collected all the stickers from participating teams, send a picture of your completed album to the iGEM Bielefeld headquarters for a chance to win special prizes. </p> + <p> This album isn't just for the Grand Jamboree – you can also collect stickers from non-participating teams on the backside of the album. Let's connect, share, and make memories together! </p> + <H2 text="Awards and Winners of the BFH Competition "/> + <p>The event culminated in an Awards Ceremony celebrating excellence in creativity, teamwork, and innovation. Our judges, using their experience from past iGEM years, evaluated the teams' performances. The heartfelt winner, recognized for their outstanding contribution and spirit, was the team that truly embodied the values of the iGEM community. </p> + <h3>Best Presentation</h3> + {/* https://static.igem.wiki/teams/5247/design/icons/first-place.svg */} + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/first-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM Aachen</p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="trophy"><span>Trophy</span></li> + <li className="certificate"><span> Certificate</span></li> + <li className="tickets"> <span>2 Tickets for SynBio Reactor Conference provided by GASB</span></li> + </ul> + </div> + </div> + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/second-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM Marburg</p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="certificate"><span> Certificate</span></li> + <li className="money"> <span>$500 USD provided by Zymo Research</span></li> + </ul> + </div> + </div> + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/third-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM GU-Frankfurt</p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="certificate"><span> Certificate</span></li> + <li className="money"> <span>$250 USD provided by Jena Bioscience</span></li> + </ul> + </div> + </div> + <br/> + <h3>Best Poster Exhibition Booth</h3> + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/first-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM Freiburg </p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="trophy"><span>Trophy</span></li> + <li className="certificate"><span> Certificate</span></li> + <li className="tickets"> <span>2 Tickets for SynBio Reactor Conference provided by GASB</span></li> + </ul> + </div> + </div> + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/second-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM GU-Frankfurt</p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="certificate"><span> Certificate</span></li> + <li className="kit"> <span>Plasmid Isolation Kits provided by Machery Nagel</span></li> + </ul> + </div> + </div> + <div className="small-row winners"> + <div className="col-1"> + <img className="winner-img" src="https://static.igem.wiki/teams/5247/design/icons/third-place.svg "/> + </div> + <div className="col-4"> + <p className="winner">iGEM WageningenUR </p> + </div> + <div className="col"> + <ul className="haken-liste"> + <li className="certificate"><span> Certificate</span></li> + <li className="kit"><span>Mini-Circle provided by PlasmidFactory</span></li> + </ul> + </div> + </div> + <H2 text="What did we learn as organizers for the next few years?"/> + <h3>Good planning is key</h3> + <p>Starting early, clearly distributing tasks, and staying organized – that avoids chaos. We can now structure, coordinate, and manage the next meet-up in Frankfurt more efficiently and ahead of time. </p> + <h3>Communication is everything</h3> + <p>Regular team communication and clear agreements are essential to keep everyone on the same page. We’ve realized just how important socializing and networking really are within the iGEM community. </p> + <h3>Stay flexible </h3> + <p>Spontaneous changes happen – backup plans and quick decisions are a must. With our platform, we were able to better connect the teams. </p> + <h3>Focus on the participants </h3> + <p>Understanding participants' needs and offering a diverse program that resonates. We now know how much fun the exchange on both scientific and personal levels can be. </p> + <h3>Feedback makes it better </h3> + <p>Gathering feedback after the event and learning from it to make the next one even better. This will make the 2025 meet-up in Frankfurt even bigger and better! Thank you! </p> + + <H2 text="Feedback zu unserem Event"/> + <H2 text="Acknowledgments"/> + <p>The BFH Committee extends heartfelt thanks to: </p> + <ul> + <li>The <b>iGEM Team of the University of Bielefeld </b>for their invaluable support in organizing and executing this event. </li> + <li>All the speakers, workshop leaders, and participants who contributed to making this Meet-Up a success. </li> + <li> The iGEM teams for their engagement, scientific excellence, and for making the event an unforgettable experience. </li> + <li>Our Sponsors and Collaborators</li> + </ul> + <H2 text="Looking Forward to 2025 "/> + <p>n 2025, we will welcome all European iGEM teams to our lovely university in Frankfurt City. This Meet-Up will prepare you for the Grand Jamboree in Paris. After established a brand and a platform, we are excited to announce our plans for the future: </p> + <ul> + <li> <b>Expansion</b>: We are already planning the next, even larger event at the University of Frankfurt in 2025. This Meet-Up will be significantly bigger and more international. </li> + <li> <b>Preparation and Evaluation</b>: With more preparation time and intensive evaluation of our first event's success, we aim to bring BFH to Frankfurt, making it an event not to be missed. </li> + <li> <b>Collaboration between other Meet-Up organizers</b>: By supporting other iGEM teams planning to organize meet up in different locations around the globe, we fostering to enhance the potential and support organization with our experiences. </li> + </ul> + <H2 text="Conclusion"/> + <p>The BFH European Meet-Up 2024 was a resounding success, uniting over 20 teams and 150 participants in a celebration of science, innovation, and collaboration. As we look forward to future events, we remain committed to our mission of igniting, innovating, and inspiring the next generation of scientists. Here's to many more great moments and an unforgettable time for every participant – cheers! </p> + <div className="small-row"> + <div className="col right"> + <button>Visit the Website</button> + </div> + <div className="col button-left"> + <button className="left-button">Stay in Touch</button> + </div> + </div> </div> ) } -function openCity({cityName}:{cityName: string}) { - const opencity = (event : React.MouseEvent<HTMLButtonElement, MouseEvent>) =>{ - var i, tabcontent, tablinks; - tabcontent = document.getElementsByClassName("tabcontent"); - for (i = 0; i < tabcontent.length; i++) { - (tabcontent[i] as HTMLElement).style.display = "none"; - } - tablinks = document.getElementsByClassName("gall-b"); - for (i = 0; i < tablinks.length; i++) { - tablinks[i].className = tablinks[i].className.replace(" bg-act", ""); - } - document.getElementById(cityName)!.style.display = "block"; - event.currentTarget.className += " bg-act"; - } - return opencity; -} +function MenuSVG(){ + return( +<svg + width="144.13208mm" + height="132.44618mm" + viewBox="0 0 144.13208 132.44618" + version="1.1" + id="svg1" +> + <defs id="defs1" /> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=gall" > + <g + id="g2" + transform="translate(-44.10192,-58.349718)" + inkscape:export-filename="gallery.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + > + <circle + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1-2" + cx="116.34516" + cy="171.6136" + r="18.520834" + /> + <image + width={20} + height={20} + preserveAspectRatio="none" + xlinkHref="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz +AAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAACAASURB +VHic7N11eFTX1gbwdyQTD0QILsHdoUiLu7t7IWhxDR6kQA1ql7YUaGmBFofi7hQoUEpxdw2xiUxm +5nx/pNyPS/Hss8/I+3senvvcQNZaJSFnnXP23gsgIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi +IiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi +IiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi +IiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAXRaF+BgPAAE//PL +65+PBWpXDhFRmsQBMP/zKxpAPIAUTSsih+GODUAYgGIACgPI9c+vnACyAAjQrCoiIvXZAFwBcA7A +WQDnARwDcPyf3yM34uoNQAiASgAqA6gIoAR4kScielY0gN0AdgDYBuC0tuWQDK7WABgAlATQGEAj +AKXhev+NRERqOw1gGYCFAK5qWgmpxhUujh4AagFoA6AZgPTalkNE5DJsALYD+BLAbwAUbcshkZy5 +ASgOoBeADgCCNK6FiMjV/QngQ6Q+GbBrXAsJ4GwNgBFAewD9AbyjcS1ERO7oHIBxAJZrXQiljbM0 +ACYA7ZD6TZdP41qIiAjYidSbsTNaF0Jvx9EbAF8A4QCGAciqcS1ERPS/kgHMAjAdQJLGtdAbctQG +wAvAYABDAWTQuBYiInq54wDaArigdSH0+hyxAagL4AvwUT8RkTOJBdAbwFKtC6HXo9e6gKdkQ+rq +0k3gxZ+IyNkEAFgC4GukLtgmB+cITwCMSF1IEgme0kdE5Ap+Q+orgQStC6EX07oBKIzUjrG4xnUQ +EZFY+5F6KutjrQuh59PyFUA3AIfBiz8RkSuqDGAvgExaF0LPp8UTAG8Ac5B6ih8REbm2vwBUBZ8E +OBzZDUAhAL8gdRwvERG5h90A6oFnBTgUma8AOgL4A7z4ExG5m6oAfkLqxFZyELK+GAMBfIPUI32J +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 +kqSctQzoQi1uLRsA0qUu8BHQIelBJEk5ZwOwH1Bcmw92DUC6VJF9SuCGpAeRJOWUYqArtXzzBwNA +Gm0me2DQyqQHkSTlhI1k3/zXfZ1PMgCk02agE7Aw6UEkSan2CXAAO/FDowEgvSrI3g6YnvQgkqRU +eofsPf9NO/PJBoB0qwH6Alds+39JkjLAvcDh7MKD5NwFkDu6AdPIHiIkSdo9lQKnAq/uaiGvAOSO +BUBb4BGy6U+StHuZRvZ9YJff/MErALmqC/A82VWfkqT8thYYCMwKWdQrALnpA+CbwFCyXxiSpPxT +BFwMtCPwmz94BSBfnAHchccKS1I+WAuMBp6IsokBIL90B8YAJwGNEp5FklR7FcAbwI0Eusf/VQwA ++etMYBjZUNAi4VkkSf9qM9kje58A/jvu5gaA3UNr4MdAP7JPGGwLNMZ/f0mKQ4bs9r11wBKyq/kf +4Ws+ujc03wB2b+3Jrhtove3VNtlxJCkvfAqs3/bfVcCKZMeRJEmSJEmSJEmSJEmSJEmSJEmSJEmS +JEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmS +JEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmS +JEmSJEXonx3sVg5w0Rk/AAAAAElFTkSuQmCC +" + id="image1-9" + x="106.63129" + y="161.87093" + /> + </g> + </a> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=pdf" > + <g + id="g3" + inkscape:export-filename="files.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + transform="translate(-35.804154,-56.909964)" + > + <circle + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1-5" + cx="54.986446" + cy="134.10779" + r="18.520834" + /> + <image + width={20} + height={20} + preserveAspectRatio="none" + xlinkHref="data:image/png;base64,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 +gSgRNoptyEaxDQFozDYxMzOHuen51GWXUp9poEkzBCKhogAgEkKVkQo2j4xm8/jo//537bkO6rNL +aco2kyRFMpekLddORy5JlqyH3Xrjm8wSvkjP8roNEWMUAEQEgGKniP7RPhD1upPC8E7yAwUACTTt +AyAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIhpAAgIiIS +QgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIKACIi +IiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIhpAAg +IiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIK +ACIiIiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIh +pAAgIiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIi +EkIKACIiIiGkACAiIhJCCgAiIiIhpAAgIiISQgoAIiIiIaQAICIiEkIKACIiIiGkACAiIhJCCgAi +IiIhpAAgIiISQgoAIiIiIRTzuoEgyZFjaXY5TdlmmnMtXrcjnRBzYlQ65VRHqih1SrxuR0TEOAUA +FyzO1DElOY0ZqS9pybV63Y6sBweHAdG+jEmMZOvEZsT0FhGRgNKn23pI5pI83f4i7yWnkyPndTvi +ghw55mYWMLdtAa93TGXf4glsFN/Q67ZERFynNQBdtCLbyN9a7uPd5Ef68g+o5dlG7mt9lFc73vS6 +FRER1ykAdEFHLsk9rQ+zKLPE61bEsBw5Jra/ylvJ97xuRUTEVQoAXfBY27MsztR53YZY9Ezbi8zP +LPK6DRER1ygAdNK8zEI+SX3mdRtiWZYsz7S9qJs9IhIYCgCd9ErHFH0JhNTczALmpud73YaIiCsU +ADohmUvyVeprr9sQD32a/sLrFkREXKEA0AnzM4tIk/a6DfHQ7PRcr1sQEXGFAkAnrMg2ed2CeKxR +rwERCQgFgE7ooMPrFsRj7XoNiEhAKAB0QrlT5nUL4rFyp9zrFkREXKEA0AnVkSqvWxCPddNrQEQC +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 +" + id="image1" + x="46.674278" + y="124.17072" + /> + </g> + </a> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=timeline" > + <g + id="g5" + inkscape:export-filename="timelinebutton.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + transform="translate(-35.804154,-56.909964)" + > + <circle + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1" + cx="107.1938" + cy="119.61084" + r="25.135416" + /> + <image + width={35} + height={35} + preserveAspectRatio="none" + xlinkHref="data:image/png;base64,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 +eAdwIDAeqItbncz1EH4LDwDXAy/GrY4K5CDgLcA+wLjIdcnDZmAZcC/wY2BD3Opkrxb4LNAO9Fdx +3AhMTdiWKreRwP8QLoix8zFWdAOXAs0J21LlNh34OfHzMWasBz5K/JvzzNQB1xG/oYsSLwCzErWo +yqoVeJj4OViUuI/QIVL1mQMsJ34OFiUup0I7AV8ifuMWLRbi3U+1qQFuI37uFS2uT9KoKqVRwLPE +z72ixeeSNGoRzQC6iN+wRYzPJ2hXlc/biZ9zRY3jE7SryufLxM+5IsYmYHKCdt2h2iwLH8D7gIac +P7MsPhC7AsrVB2NXoMBsm+pRB7w/diUKqhk4N8sPyLsD8PqcP69MphNGgqvy1QJHxa5EgXmeqB6v +Icx60cAy/S3k3QGYlvPnlY3tUx3GAi2xK1FgE6mOKcHynLcju2RZeN4dgM6cP69sbJ/q4Pe8fT2E +qYGqfP4Wtq8jy8Lz7gA8nvPnlUkPsDh2JZSLjYRRzxrY44RBUKp8j+F3vT2PZVl43h2Am3L+vDK5 +E2iLXQnlxt/Ctv00dgWUm5WE9R80sIr6LTQBi4g/vaJo0YcDn6rNdMKTgNi5V7RYR8ZTn1Q4JxM/ +74oYD1OBS4IfSXivEbtxixT/lqhFVVYfIH7uFSn6gLMStajK6tvEz78iRRtwQKIWLbATgDXEb+TY +0Qd8nfxfxag4PkoY8BY7F2NHJ2GdEFWnBuBbxM/DIsQKqmCa8GTgm4RHfrEbPO/oAe4AjknciqoE +cwhL4G4mfm7mHR3AVcDeiVtRleAk4B6gl/i5mXesAf6dHNdFKMJmA/XAbKrnvd9Gwijn9bErosJp +BvYlbJNdDdYQfgtOBdPWxhGuC9WwXkY/sBR4gtDxkSRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ +kiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ +kiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJ +kiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkqTi+/+j +s7oupvF0nAAAAABJRU5ErkJggg== +" + id="image1-92" + x="90.352829" + y="101.07489" + /> + </g> + </a> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=about" > + <g + id="g4" + transform="translate(-34.692312,-64.260992)" + inkscape:export-filename="united.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + > + <circle + className="bfh-circle" + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1-5-6" + cx="72.348717" + cy="84.143799" + r="18.520834" + /> + <image + width={20} + height={20} + preserveAspectRatio="none" + xlinkHref="data:image/png;base64,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 +IBzP/wMLphvI7KlpLQAAAABJRU5ErkJggg== +" + id="image1-7" + x="63.15419" + y="73.469437" + /> + </g> + </a> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=posters" > + <g + id="g9" + transform="translate(-38.430964,-44.650756)" + inkscape:export-filename="posters.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + > + <circle + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1-7" + cx="139.80453" + cy="63.83305" + r="18.520834" + /> + <g + id="g7" + transform="matrix(0.03994767,0,0,0.03994767,130.35604,52.710827)" + > + <rect + x="106.678" + y="8.8210001" + style={{ fill: "#a0a7f3", fillOpacity: 1 }} + width="296.673" + height="218.717" + id="rect1" + /> + <rect + x="139.88" + y="42.027" + style={{ fill: "#f4cc1e", fillOpacity: 1 }} + width="230.255" + height="152.3" + id="rect2" + /> + <rect + x="240.94701" + y="314.42099" + style={{ fill: "#f59121", fillOpacity: 1 }} + width="27.146" + height="188.761" + id="rect3" + /> + <circle + style={{ fill: "#850f78", fillOpacity: 1 }} + cx="254.52" + cy="290.604" + r="23.816" + id="circle3" + /> + <rect + x="36.213001" + y="314.42099" + style={{ fill: "#f59121", fillOpacity: 1 }} + width="27.146" + height="188.761" + id="rect4" + /> + <circle + style={{ fill: "#850f78", fillOpacity: 1 }} + cx="49.786999" + cy="290.604" + r="23.816" + id="circle4" + /> + <rect + x="446.668" + y="314.42099" + style={{ fill: "#f59121", fillOpacity: 1 }} + width="27.146" + height="188.761" + id="rect5" + /> + <circle + style={{ fill: "#850f78", fillOpacity: 1 }} + cx="460.241" + cy="290.604" + r="23.816" + id="circle5" + /> + <g id="g6"> + <path + style={{ + fill: "none", + stroke: "#f95428", + strokeWidth: 15, + strokeLinejoin: "round", + strokeMiterlimit: 10 + }} + d="m 241.048,344.992 c -49.133,49.133 -128.793,49.133 -177.926,0" + id="path5" + /> + <path + style={{ + fill: "none", + stroke: "#f95428", + strokeWidth: 15, + strokeLinejoin: "round", + strokeMiterlimit: 10 + }} + d="m 446.276,344.992 c -49.133,49.133 -128.793,49.133 -177.926,0" + id="path6" + /> + </g> + <g id="g8"> + <path + style={{ fill: "#333333" }} + d="m 107.666,236.357 h 296.671 c 4.872,0 8.821,-3.95 8.821,-8.821 V 8.821 C 413.158,3.949 409.208,0 404.337,0 H 107.666 c -4.872,0 -8.821,3.95 -8.821,8.821 v 218.715 c -0.001,4.872 3.949,8.821 8.821,8.821 z m 36.859,-33.206 h 222.951 l 15.564,15.564 H 128.961 Z m 5.168,-17.642 V 50.849 h 212.616 v 134.66 z m 230.259,5.166 V 45.681 L 395.515,30.118 V 206.24 Z M 367.477,33.206 H 144.526 L 128.961,17.642 H 383.04 Z M 132.051,45.681 V 190.676 L 116.487,206.24 V 30.117 Z" + id="path7" + /> + <path + style={{ fill: "#333333" }} + d="M 497.507,494.358 H 483.623 V 314.417 c 0,-0.034 -0.005,-0.067 -0.005,-0.101 6.303,-5.955 10.249,-14.38 10.249,-23.715 0,-17.996 -14.641,-32.637 -32.637,-32.637 -17.996,0 -32.637,14.641 -32.637,32.637 0,9.335 3.945,17.76 10.249,23.715 0,0.034 -0.005,0.067 -0.005,0.101 v 26.47 c -21.829,20.745 -50.306,32.134 -80.535,32.134 -30.165,0 -58.585,-11.343 -80.397,-32.004 v -26.6 c 0,-0.034 -0.005,-0.067 -0.005,-0.101 6.303,-5.955 10.249,-14.38 10.249,-23.715 0,-17.996 -14.641,-32.637 -32.637,-32.637 -17.996,0 -32.637,14.641 -32.637,32.637 0,9.335 3.945,17.76 10.249,23.715 0,0.034 -0.005,0.067 -0.005,0.101 v 26.928 c -21.765,20.452 -50.041,31.677 -80.044,31.677 -29.94,0 -58.16,-11.178 -79.907,-31.549 v -27.055 c 0,-0.034 -0.005,-0.067 -0.005,-0.101 6.303,-5.955 10.249,-14.38 10.249,-23.715 0,-17.996 -14.641,-32.637 -32.637,-32.637 -17.996,0 -32.637,14.641 -32.637,32.637 0,9.335 3.945,17.76 10.249,23.715 0,0.034 -0.005,0.067 -0.005,0.101 V 494.36 H 14.494 c -4.872,0 -8.821,3.95 -8.821,8.821 0,4.871 3.95,8.821 8.821,8.821 h 22.707 27.144 177.593 27.144 178.574 27.144 22.707 c 4.872,0 8.821,-3.95 8.821,-8.821 0,-4.871 -3.949,-8.823 -8.821,-8.823 z M 461.228,275.606 c 8.268,0 14.995,6.726 14.995,14.995 0,8.268 -6.726,14.995 -14.995,14.995 -8.269,0 -14.995,-6.726 -14.995,-14.995 0,-8.269 6.727,-14.995 14.995,-14.995 z M 358.3,390.664 c 29.424,0 57.404,-9.381 80.535,-26.719 V 494.358 H 277.903 V 364.05 c 23.104,17.271 51.032,26.614 80.397,26.614 z M 255.51,275.606 c 8.268,0 14.995,6.726 14.995,14.995 0,8.268 -6.726,14.995 -14.995,14.995 -8.268,0 -14.995,-6.726 -14.995,-14.995 0,-8.269 6.727,-14.995 14.995,-14.995 z M 153.073,390.664 c 29.214,0 57.009,-9.242 80.044,-26.345 v 130.04 H 73.167 V 364.418 c 23.008,17.037 50.748,26.246 79.906,26.246 z M 50.773,275.606 c 8.268,0 14.995,6.726 14.995,14.995 0,8.268 -6.726,14.995 -14.995,14.995 -8.269,0 -14.995,-6.726 -14.995,-14.995 0,-8.269 6.726,-14.995 14.995,-14.995 z m -4.751,218.752 v -171.12 h 9.502 v 171.121 h -9.502 z m 204.736,0 v -171.12 h 9.502 v 171.121 h -9.502 z m 205.72,0 v -171.12 h 9.502 v 171.121 h -9.502 z" + id="path8" + /> + </g> + </g> + </g> + </a> + <a typeof="button" href="/bielefeld-cebitec/bfh?tab=guide" > + <g + id="g11" + inkscape:export-filename="guide.svg" + inkscape:export-xdpi={96} + inkscape:export-ydpi={96} + transform="translate(-35.804154,-56.909964)" + > + <circle + style={{ + opacity: "0.85", + fill: "#fae99e", + fillOpacity: 1, + stroke: "#940084", + strokeWidth: "1.32292", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="path1-7-2" + cx="160.75395" + cy="125.16232" + r="18.520834" + /> + <g + style={{ + fill: "#850f78", + fillOpacity: 1, + stroke: "#000000", + strokeWidth: "32.6244", + strokeDasharray: "none", + strokeOpacity: 1 + }} + id="g10" + transform="matrix(0.02008032,0,0,0.02008032,149.55691,114.47121)" + > + <rect + style={{ + opacity: "0.85", + fill: "#ff7c18", + fillOpacity: "0.995653", + stroke: "#f57d22", + strokeWidth: "0.800511", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + id="rect10" + width="6.7053437" + height="9.9750786" + x="197.50241" + y="15.414547" + ry={0} + transform="matrix(42.445164,26.047041,-27.119798,41.767893,-7447.9346,-5700.6666)" + inkscape:transform-center-x="-4.2587823" + inkscape:transform-center-y="-1.7967763" + /> + <path + style={{ + opacity: "0.85", + fill: "#a0a7f3", + fillOpacity: "0.996078", + stroke: "#f57d22", + strokeWidth: "32.6244", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeDasharray: "none", + strokeOpacity: 1, + paintOrder: "fill markers stroke" + }} + d="M 521.87511,670.4973 C 107.68427,511.95775 107.68427,511.95775 107.68427,511.95775 L 31.698414,621.62949 74.828105,765.05693 575.28979,924.55519 945.27773,495.94149 914.99963,266.85089 Z" + id="path10" + transform="translate(-3.9425003e-5,-3.8387504e-5)" + /> + <path + d="M 971,152 526,55 q -20,-5 -41,-2 -29,6 -49,28 L 73,471 Q 39,508 20.5,555.5 2,603 2,653 v 16 q 0,52 30,93.5 30,41.5 79,57.5 l 427,146 q 24,8 48.5,1 24.5,-7 40.5,-27 L 979,508 q 10,-13 7,-30 -5,-19 -16,-40 -10,-16 -11,-26.5 -1,-10.5 0,-21.5 1,-6 4,-20 l 3,-10 q 3,-16 -3.5,-28 -6.5,-12 -23.5,-15 -13,-3 -23,5 -8,6 -19,22 -8,14 -10.5,39 -2.5,25 3.5,47 4,11 10,30 4,11 -4,20 L 583,864 q -8,9 -20.5,13 -12.5,4 -24.5,0 L 143,753 Q 116,744 99,721.5 82,699 82,670 v -32 q -2,-20 6,-33 8,-13 22,-17.5 14,-4.5 28,-0.5 l 392,118 q 7,2 14,2 h 1 q 21,0 36,-17 L 989,212 q 9,-10 9,-23 v -2 q 0,-12 -7.5,-22 Q 983,155 971,152 Z M 424,493 q -16,18 -42,26.5 -26,8.5 -47,4 -21,-4.5 -24.5,-20 -3.5,-15.5 12.5,-33 16,-17.5 42,-26 26,-8.5 47,-3.5 21,5 24.5,20 3.5,15 -12.5,32 z M 747,276 q -24,26 -56,41 -36,17 -106,31 -44,9 -64,19 -14,7 -43,35 -8,8 -19,5 l -12,-3 q -3,-1 -4,-4 -1,-3 1,-5 22,-24 37,-35 17,-14 57,-34.5 40,-20.5 59,-34.5 l 12,-8 q 26,-17 36,-28 16,-17 22.5,-29 6.5,-12 4,-21.5 -2.5,-9.5 -13,-17 Q 648,180 636,178 q -18,-4 -35,1 -7,1 -14.5,5 -7.5,4 -11,8 -3.5,4 -5.5,14 l -1,5 q -3,11 -4,15 -3,8 -8,13 -15,16 -29,20 -18,6 -34.5,2.5 Q 477,258 474,245 q -1,-8 0,-17 3,-11 10,-19 13,-14 35,-24 18,-8 48,-17 28,-8 59.5,-9 31.5,-1 59.5,5 55,13 71,45 7,16 6,33 -2,19 -16,34 z" + id="path1-9" + style={{ + fill: "#850f78", + fillOpacity: 1, + stroke: "#000000", + strokeWidth: "32.6244", + strokeDasharray: "none", + strokeOpacity: 1 + }} + /> + </g> + </g> + </a> +</svg> + ) +} - \ No newline at end of file +function reSize({name}:{name: string}){ + const resize = (_event : React.MouseEvent<HTMLElement, MouseEvent>) =>{ + var img; + img = document.getElementById(name); + if (img!.className === "picture-frame norm"){ + console.log("=== picture-frame norm") + img!.className = img!.className.replace("picture-frame norm", "full-screen-width"); + } + else if (img!.className === "full-screen-width"){ + console.log("=== full-screen-width") + img!.className = img!.className.replace("full-screen-width", "picture-frame norm"); + } + } + return resize; +} + +function PosterGallery(){ + return( + <> + <div className="row"> + <div className="col"> + <a typeof="button" onClick={reSize({name: "bielefeld"})}> + <img id="bielefeld" className="picture-frame norm" src="https://static.igem.wiki/teams/5247/photos/meetup/posters-and-stuff/bfh-poster-bielefeld-1.png" alt="" /> + </a> + </div> + <div className="col"> + <img className="picture-frame" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" alt="" /> + </div> + </div> + </> + ) +} \ No newline at end of file diff --git a/src/contents/Home.tsx b/src/contents/Home.tsx index b3ebc53d0d500fb2eaeb2c164b85afcdc5bba8f4..02b9bc30973153030cb586bcc6aebb07ea5da9b5 100644 --- a/src/contents/Home.tsx +++ b/src/contents/Home.tsx @@ -1,17 +1,96 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import gsap from "gsap"; +import { useGSAP } from "@gsap/react"; +import { ScrollTrigger } from "gsap/dist/ScrollTrigger"; +import { useRef } from 'react'; +import { MotionPathPlugin } from "gsap/dist/MotionPathPlugin"; export function Home() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + + gsap.registerPlugin(ScrollTrigger); + gsap.registerPlugin(useGSAP); + gsap.registerPlugin(MotionPathPlugin); + + const vectorRef = useRef(null); + + useGSAP( + () => { + gsap.registerPlugin(ScrollTrigger); + gsap.registerPlugin(useGSAP); + gsap.registerPlugin(MotionPathPlugin); + gsap.defaults({ease: "none"}); + + gsap.defaults({ease: "none"}); + + const main = gsap.timeline({ + scrollTrigger: { + trigger: "svg", + scrub: true, + start:"top middle", + end: "bottom middle" + } + }) + .from(".homeAnimLine", {drawSVG: 0}, 0) + .to(vectorRef.current, {motionPath:{ + path:".homeAnimLine", + align:".homeAnimLine", + alignOrigin:[0.5, 0.5], + }}, 0) + + + console.log(main) + }, + ); return ( <> - <div className="row"> - <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + <div className="animStarterClass"> + <div className="row col"> + <svg id="svg" viewBox="0 0 2000 2500"> + <path className="homeAnimLine" d=" + M 50 50 + C 500 -50 1000 100 1870 50 + C 1820 220 2024 528 1870 590 + C 1351 678 118 451 54 561 + C 3 672 12 985 55 985 + C 586 1090 1342 898 1881 1038 + C 1994 1194 1986 1568 1890 1681 + C 1751 1803 281 1481 168 1646 + C 81 1794 21 1977 168 2142 + C 499 2246 1403 2325 1081 2142"/> + </svg> + <img className="vector" ref={vectorRef} src={"https://static.igem.wiki/teams/5247/placeholders/vector.webp"} alt="vectorImg"/> </div> </div> - <div className="row"> - - </div> </> ); } diff --git a/src/contents/collaborations.tsx b/src/contents/collaborations.tsx index 180e38a5f2fac4c73da4eee3bcda3d5730360431..c5e2f385228dfe43c6f8ccfca54db1c02a28c11a 100644 --- a/src/contents/collaborations.tsx +++ b/src/contents/collaborations.tsx @@ -1,4 +1,36 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; + export function Collaborations() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> diff --git a/src/contents/contribution.tsx b/src/contents/contribution.tsx index 0a5f9f3771030b18a9511ca26a2c948e2825e931..2b9a05dfa5f8265d4c4fdece1b8b226200b816b1 100644 --- a/src/contents/contribution.tsx +++ b/src/contents/contribution.tsx @@ -1,4 +1,35 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Contribution() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> diff --git a/src/contents/description.tsx b/src/contents/description.tsx index 656eedb815afaaac092df6d38f4ccbb3354b782c..21413ba394359c5d32b374b2bee2da6d95d329ef 100644 --- a/src/contents/description.tsx +++ b/src/contents/description.tsx @@ -1,40 +1,84 @@ -import { H2 } from "../components/headings"; +import { useLocation } from "react-router-dom"; +import { InfoBox } from "../components/Boxes"; +import { TabButtonRow } from "../components/Buttons"; +import Collapsible from "../components/Collapsible"; +import { SupScrollLink } from "../components/ScrollLink"; +import { H2} from "../components/headings"; +import { LoremMedium, LoremShort } from "../components/loremipsum"; import { Circle } from "../components/Shapes"; -/* import {LineChart} from '@mui/x-charts/LineChart'; */ -/* import "../utils/text.js"; */ -/* import { Collapsible } from "../components/Collapsible"; -import { ButtonRowTabs } from "../components/Tabs"; -import {TabButtonRow} from "../components/Buttons"; */ -/* import { InfoBox } from "../components/Boxes"; */ import { Complex } from "../components/svgs"; -import PieChart from './Graph.tsx'; +import { ButtonRowTabs } from "../components/Tabs"; +import { useEffect } from "react"; +/* import PieChart from './Graph.tsx'; */ + export function Description() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Open the tab specified by tabId + if (tabId) { + // Hide all tabs + const tabs = document.querySelectorAll('.enginneeringtab'); + tabs.forEach((tab) => { + (tab as HTMLElement).style.display = 'none'; + }); + + // Show the selected tab + const selectedTab = document.getElementById(tabId); + if (selectedTab) { + selectedTab.style.display = 'block'; + } + } + + // Scroll to the section specified by collapseId after opening the tab + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + }, [location.search]); + return ( <div className="row mt-4"> <div className="col"> <div className="col"> - <section id="Abstract" className="section"> - <H2 text="Abstract"/> + + <section className="section"> + <H2 id="Abstract" text="Abstract"/> <p>We are proud to introduce our next-generation prime editing technology <a href="#" className="underline--magical">PreCyse</a>. We aim to develop an innovative gene therapy against cystic fibrosis, tackling the most common mutation ΔF508 of the CFTR (Cystic Fibrosis Transmembrane Conductance Regulator) gene. We optimize lipid nanoparticles for the efficient and cell-specific delivery of our therapeutic mRNA. Current treatment strategies are limited in terms of speed, precision and effectiveness, often failing to achieve long-lasting improvements. In addition, high costs and limited accessibility of pharmaceuticals contribute to adverse prognosis of many patients. We want to develop a monthly applied which represents a cure that is more advanced and user-friendly compared to other medications due to its longer lasting time, lowering the frequency of use. </p> </section> </div> <div className="col"> - <section id="Cystic Fibrosis" className="section"> - <H2 text="Cystic Fibrosis"/> - {/* <h3>General</h3> */} + <section className="section"> + <H2 text="Cystic Fibrosis" id="Cystic-Fibrosis"/> + <div id="CF1"><h3>General</h3> </div> <div className="row align-items-center"> <div className="col"> - <p data-aos="zoom-y-out" >Cystic fibrosis (CF) is the most common life-limiting genetic disorder in the Caucasian population. In Europe, CF affecting about 1 in 3,000 newborns<a href="#desc-one"><sup>1</sup></a>.</p> + <p data-aos="zoom-y-out" >Cystic fibrosis (CF) is the most common life-limiting genetic disorder in the Caucasian population. In Europe, CF affecting about 1 in 3,000 newborns + <SupScrollLink label="1"/>.</p> <p> It is caused by mutations in the CFTR gene, which controls ions and water movement in cells. This leads to thick mucus, clogging airways, and frequent infections. The defective CFTR protein impacts the respiratory and digestive systems, causing chronic lung infections, breathing difficulties, and malnutrition. CF's severity varies, but it reduces life quality and expectancy. There are over 1,700 CFTR mutations; the ΔF508 mutation is most common, present in 70% of cases. It prevents proper protein folding, affecting its function. </p> + <p><LoremMedium/></p> </div> - <div className="col-2 "> + <div className="row-if-small col-2 "> <Circle text="1:3000 newborns worldwide"/> <Circle text="x:y newborns in Germany"/> <Circle text="kosten"/> </div> - {/* <LineChart + {/* <Linear xAxis={[{ data: [1, 2, 3, 5, 8, 10] }]} series={[ { @@ -43,120 +87,138 @@ export function Description() { ]} width={500} height={300} - /> */} + /> */} </div> - {/* <div className="col"> + <div className="col"> <img src="https://static.igem.wiki/teams/5247/charts-maps/cfper10-000.png"></img> </div> - <h3>CFTR</h3> - <div className="row align-items-center"> - <div className="col-2 "> + <div id="CF2"><h3>CFTR</h3> </div> + <div className="rowalign-items-center"> + <div className="full-small col-2"> <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> </div> <div className="col"> - <p>Text about CFTR</p> + <p>Text about CFTR <LoremMedium/></p> </div> </div> + <div id="CF3"><h3>ΔF508</h3> </div> + <p>A multitude of mutations in the CFTR gene, exceeding 1,000, are responsible for the development of cystic + fibrosis. The most prevalent variant is F508del, observed in approximately 70% of affected individuals of + Caucasian descent in Canada, Northern Europe, and the United States<SupScrollLink label="14"/>. It is estimated that around 90% of + the European population and people of European heritage with cystic fibrosis carry at least one F508del + variant <SupScrollLink label="15"/><sup>,</sup><SupScrollLink label="16"/>. Analyses have demonstrated that the F508del mutation originated in Western Europe at least + 5,000 years ago <SupScrollLink label="15"/>. </p> + <p>It is a deletion of the three nucleotides "CTT" at position 508, which removes the phenylalanine residue + without causing a frameshift. This deletion leads to defects in the kinetic and thermodynamic folding + of the NBD1 domain <SupScrollLink label="16"/>. However, this not only leads to misfolding of CFTR but also to defects in + trafficking and premature degradation, resulting in reduced surface expression of CFTR <SupScrollLink label="17"/>. </p> + <img src="https://static.igem.wiki/teams/5247/charts-maps/cfper10-000.png"/> - <h3>Symptoms</h3> + <div id="CF4"><h3>Symptoms</h3> </div> <p>Text about symptoms</p> - <Collapsible title="How the symptoms affect different parts of the body" ></Collapsible> - <h3>Diagnosis</h3> - <p>About the ways one can be diagnosed</p> + <Collapsible id="symptoms-collapsible" title="How the symptoms affect different parts of the body" > Child </Collapsible> + <div id="CF5"><h3>Diagnosis</h3> </div> + <p>About the ways one can be diagnosed <LoremMedium/></p> <div className="row align-items-center"> <div className="col" > <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> </div> <div className="col" > How newbornscreening affected the numbers. + <LoremMedium/> </div> - </div>*/} - {/* <h3>Treatment</h3> */} - {/*<img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> */} - {/* <Collapsible title="Different types of drugs" > + </div> + <div id="CF6"><h3>Treatment</h3> </div> + <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <Collapsible id="drugs-collapsible" title="Different types of drugs" > <TabButtonRow data={medibuttonrowdata} opentype="meditabs" closing=""/> <ButtonRowTabs data={medibuttonrowdata} cla="meditabs"/> - </Collapsible> */} - {/* <p>Why we still need other options</p> */} - {/* <img src="https://static.igem.wiki/teams/5247/charts-maps/cfper10-000.png"/> */} + </Collapsible> + <p>Why we still need other options</p> + <img src="https://static.igem.wiki/teams/5247/charts-maps/cfper10-000.png"/> </section> </div> <div className="col"> - <section id="Our motivation" className="section"> - <H2 text="Our motivation"></H2> + <section className="section"> + <H2 id="Our-motivation" text="Our motivation"></H2> <p>We chose to focus on CF and specifically the ΔF508 mutation due to its prevalence and the severe impact it has on patients' lives. Additionally, our team includes members who have close friends affected by this condition, giving us a personal connection and a strong motivation to find a solution. By targeting the ΔF508 mutation, we aim to develop a therapy that could potentially, not only benefit many CF patients and make a significant improvement in their lives, but also can serve as a template, which research groups can use to target other genetic diseases. </p> - {/* <div className="row align-items-center"> + <div className="row align-items-center"> <div className="col" > - About del508 - </div> + </div> <div className="col" > - <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="img" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> </div> </div> - <p>Max</p> */} + <p>Max</p> </section> </div> <div className="col"> - <section id="Approach" className="section"> - <H2 text="Approach"></H2> - <p>To correct the mutation, we are utilizing Prime Editing technologies. Prime Editing is a genome editing technique that allows precise DNA modifications without causing double-strand breaks<a href="#desc-two"><sup>2</sup></a>. Structurally, the Prime Editing complex consists of a Cas9 endonuclease fused to a reverse transcriptase (RT) and guided by a pegRNA, which directs the complex to the target site in the genome. </p> -{/* <InfoBox title="Prime Editing"> - About prime editing - </InfoBox> */} -{/* <img className="img-right img-half" src="https://static.igem.wiki/teams/5247/scientific-figures/komplex-komplett-beschriftet.svg"/> - */} <div className="img-right img-half"><Complex></Complex></div> - - <div> - <p>However, the Prime Editing complex is relatively large, posing challenges for therapeutic delivery<a href="#desc-three"><sup>3</sup></a>. Additionally, Prime Editing has been shown to be relatively inefficient in terms of gene editing rates, which could limit its therapeutic utility<a href="#desc-four"><sup>4</sup></a>. Our project aims to enhance the Prime Editing approach by miniaturizing its components. Fanzor, a recently discovered eukaryotic endonuclease, performs functions similar to Cas9, a crucial part of the Prime Editing complex, but is significantly smaller. We aim to substitute Cas9 with Fanzor. </p> - <p>Additionally, we plan to replace the reverse transcriptase in the Prime Editing complex with a smaller RT variant. Furthermore, MCP proteins will be added to the Prime Editing complex to increase its stability<a href="#desc-five"><sup>5</sup></a>. </p> + <section className="section"> + <H2 id="Approach" text="Approach"></H2> + <p>To correct the mutation, we are utilizing Prime Editing technologies. Prime Editing is a genome editing technique that allows precise DNA modifications without causing double-strand breaks<SupScrollLink label="2"/>. Structurally, the Prime Editing complex consists of a Cas9 endonuclease fused to a reverse transcriptase (RT) and guided by a pegRNA, which directs the complex to the target site in the genome. </p> + <InfoBox title="Prime Editing" id="prime-editing"> + <details> + <summary>Prime editing is a new method of gene editing based on an RNA-Protein complex. It was developed by a group of researchers revolving around Professor David Liu from Harvard University in 2019. <SupScrollLink label="9"/></summary> + <p>Details</p> + <LoremMedium/> + </details> + </InfoBox> + <div className="row"> + <div className="col"> + <p>However, the Prime Editing complex is relatively large, posing challenges for therapeutic delivery<SupScrollLink label="3"/>. Additionally, Prime Editing has been shown to be relatively inefficient in terms of gene editing rates, which could limit its therapeutic utility<SupScrollLink label="4"/>. Our project aims to enhance the Prime Editing approach by miniaturizing its components. Fanzor, a recently discovered eukaryotic endonuclease, performs functions similar to Cas9, a crucial part of the Prime Editing complex, but is significantly smaller. We aim to substitute Cas9 with Fanzor. </p> + <p>Additionally, we plan to replace the reverse transcriptase in the Prime Editing complex with a smaller RT variant. Furthermore, MCP proteins will be added to the Prime Editing complex to increase its stability<SupScrollLink label="5"/>. </p> + </div> + <div className="img-right img-half col"><Complex></Complex></div> </div> - {/* <Collapsible title="Cas vs. Fanzor" ></Collapsible> */} + + <Collapsible id="fanzorcas-collapsible" title="Cas vs. Fanzor"> child </Collapsible> <p>The pegRNA is optimized via an extension by a stem loop, which stabilizes the RNA by protecting it from RNases and serves as a binding site for the MCP, which also supports the secondary RNA structure. Additionally, the pegRNA contains a riboswitch, a sodium ion-controlled regulator that switches off the complex. This represents a major biosafety feature in that the complex is switched off after successful DNA editing and the subsequent increased influx of chloride ions into the cell. The pegRNA is combined with an optimized sgRNA resulting in higher on-target effect. Overall, its optimization leads to a longer shelf life and an increase in the biosafety of the complex. </p> -{/* <InfoBox title="Riboswitch"> + <InfoBox title="Riboswitch" id="riboswitch"> About the Riboswitch - </InfoBox> */} + </InfoBox> </section> </div> <div className="col"> - <section id="Delivery" className="section"> - <H2 text="Delivery"></H2> + <section className="section"> + <H2 text="Delivery" id="Delivery"></H2> <img className="img-left img-half spin" src="https://static.igem.wiki/teams/5247/scientific-figures/lnp.png" height={"200vw"}/> <div> - <p>We chose LNPs as the delivery system of our Next-Generation Prime Editing Technology. Because of their large capacity and less immunogenic side effects compared to other delivery systems like Adeno-associated Viruses (AVV)<a href="#desc-six"><sup>6</sup></a>. Our aim is to optimize the LNP formulation to improve delivery to lung tissue via inhalation. Because of our collaborations, we are able to test and optimize different delivery systems to improve our organ specific therapeutic approach. Therefore, our LNP design focusses on stability and targeting. Stability is achieved by a polyethylene glycol (PEG) coating that protects the LNPs from degradation by the immune system<a href="#desc-seven"><sup>7</sup></a>. Moreover, we use capsaicin in combination with chitosan to improve the uptake of our construct through their mucus-adhesive properties<a href="#desc-eight"><sup>8</sup></a>. </p> + <p>We chose LNPs as the delivery system of our Next-Generation Prime Editing Technology. Because of their large capacity and less immunogenic side effects compared to other delivery systems like Adeno-associated Viruses (AVV)<SupScrollLink label="6"/>. Our aim is to optimize the LNP formulation to improve delivery to lung tissue via inhalation. Because of our collaborations, we are able to test and optimize different delivery systems to improve our organ specific therapeutic approach. Therefore, our LNP design focusses on stability and targeting. Stability is achieved by a polyethylene glycol (PEG) coating that protects the LNPs from degradation by the immune system<SupScrollLink label="7"/>. Moreover, we use capsaicin in combination with chitosan to improve the uptake of our construct through their mucus-adhesive properties<SupScrollLink label="8"/>. </p> </div> <div className="row align-items-center"> -{/* <div className="col"> - LAgertemperatur der Parts + <div className="col"> + LAgertemperatur der Parts <LoremShort/> </div> <div className="col"> - Trocknung - </div> */} + Trocknung <LoremShort/> + </div> </div> - <p>We are furthermore optimising the LNPs for pulmonary therapy and investigating delivery by nebulisation as a non-invasive method compared to systemic approaches to make the therapy more convenient for patients. For specific targeting, we are focussing on marker proteins of basal cells and ionocytes that produce particularly high levels of CFTR protein and which we want to target with appropriate antibodies<a href="#desc-nine"><sup>9</sup></a>. Our workflow includes testing our next generation Prime Editing Technology delivered by our optimized LNPs in cell culture lines but also in primary nasal epithelial cells of CF patients to evaluate our optimizations and further improvements in vitro. We can also provide the outlook on the adaptation of the delivery system enabling systemic applications as well. </p> + <br/> + <p>We are furthermore optimising the LNPs for pulmonary therapy and investigating delivery by nebulisation as a non-invasive method compared to systemic approaches to make the therapy more convenient for patients. For specific targeting, we are focussing on marker proteins of basal cells and ionocytes that produce particularly high levels of CFTR protein and which we want to target with appropriate antibodies<SupScrollLink label="9"/>. Our workflow includes testing our next generation Prime Editing Technology delivered by our optimized LNPs in cell culture lines but also in primary nasal epithelial cells of CF patients to evaluate our optimizations and further improvements in vitro. We can also provide the outlook on the adaptation of the delivery system enabling systemic applications as well. </p> </section> </div> <div className="col"> - <section id="Our vision" className="section"> - <H2 text="Our vision"></H2> + <section className="section"> + <H2 text="Our vision" id="Our-vision"></H2> <p>We are envisioning a potential integration into a broader therapeutic framework involving customized gene editing tools for various genetic disorders, that present similar problems/difficulties to the F508del mutation, as well as other genetic diseases of different causes. This could include collaborations with pharmaceutical companies to develop new treatment modalities for genetic diseases beyond cystic fibrosis, utilizing advanced delivery systems and personalized medicine approaches. </p> - <H2 text="Editing Statistics"/> - <PieChart /> {/* Render the PieChart component */} + {/* <H2 text="Editing Statistics"/> */} + {/* <PieChart /> */} {/* Render the PieChart component */} </section> </div> {/* Sources */} <div className="col"> - <section id="References"> - <H2 text="References"></H2> + <section className="section"> + <H2 text="References" id="References"></H2> <ol> {/* <!-- Citation num 1--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-one"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-1"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Scotet, V.</span>, <span property="schema:Name">Gutierrez, H.</span>, @@ -170,7 +232,7 @@ export function Description() { </li> {/* <!-- Citation num 2--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-two"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-2"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Anzalone, A.V.</span>, <span property="schema:Name">Randolph, P.B.</span>, @@ -191,7 +253,7 @@ export function Description() { </li> {/* <!-- Citation num 3--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-three"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-3"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Broad Institute of MIT and Harvard. </span> </span> @@ -201,7 +263,7 @@ export function Description() { </li> {/* <!-- Citation num 4--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-four"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-4"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Gaudelli, N.</span>, <span property="schema:Name">Komor, A.</span>, @@ -220,7 +282,7 @@ export function Description() { </li> {/* <!-- Citation num 5--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-five"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-5"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">OpenEd CUNY. </span> </span> @@ -230,7 +292,7 @@ export function Description() { </li> {/* <!-- Citation num 6--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-six"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-6"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Sahay, G.</span>, <span property="schema:Name">Alakhova, D.Y.</span>, @@ -245,7 +307,7 @@ export function Description() { </li> {/* <!-- Citation num 7--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-seven"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-7"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Ramachandran, S.</span>, <span property="schema:Name">Satapathy, S.R.</span>, @@ -260,7 +322,7 @@ export function Description() { </li> {/* <!-- Citation num 8--> */} - <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-eight"> + <li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-8"> <span property="schema:author" typeof="schema:Person"> <span property="schema:Name">Bandi, S.P.</span>, <span property="schema:Name">Bhatnagar, S.</span>, @@ -273,6 +335,177 @@ export function Description() { (<time property="schema:datePublished" datatype="xsd:gYear" dateTime="2021">2021</time>). <a className="doi" href="https://doi.org/10.1016/j.actbio.2020.10.031"> doi: 10.1016/j.actbio.2020.10.031</a> </li> + {/*<!-- Citation num 9--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-9"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Anzalone, A.</span>; + <span property="schema:Name"> Randolph, P.</span>; + <span property="schema:Name"> Davis, J.</span>; + <span property="schema:Name"> Sousa, A.</span>; + <span property="schema:Name"> Koblan, L.</span>; + <span property="schema:Name"> Levy, J.</span>; + <span property="schema:Name"> Chen, P.</span>; + <span property="schema:Name"> Wilson, C.</span>; + <span property="schema:Name"> Newby, G.</span>; + <span property="schema:Name"> Raguram, A.</span>; + <span property="schema:Name"> Liu, D.</span> + </span> + <span property="schema:name"> Search-and-replace genome editing without double-strand breaks or donor DNA. </span> + <i property="schema:publisher" typeof="schema:Organization"> Nature</i> + <b property="issueNumber" typeof="PublicationIssue"> 576</b>, + <span property="schema:pageBegin">149–157</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>). + <a className="doi" href="https://doi.org/10.1038/s41586-019-1711-4"> doi: 10.1038/s41586-019-1711-4</a> +</li> + +{/*<!-- Citation num 10--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-10"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Doman, J.</span>; + <span property="schema:Name"> Pandey, S.</span>; + <span property="schema:Name"> Neugebauer, M.</span>; + <span property="schema:Name"> An, M.</span>; + <span property="schema:Name"> Davis, J.</span>; + <span property="schema:Name"> Randolph, P.</span>; + <span property="schema:Name"> McElroy, A.</span>; + <span property="schema:Name"> Gao, X.</span>; + <span property="schema:Name"> Raguram, A.</span>; + <span property="schema:Name"> Richter, M.</span>; + <span property="schema:Name"> Everette, K.</span>; + <span property="schema:Name"> Banskota, S.</span>; + <span property="schema:Name"> Tian, K.</span>; + <span property="schema:Name"> Tao, Y.</span>; + <span property="schema:Name"> Tolar, J.</span>; + <span property="schema:Name"> Osborn, M.</span>; + <span property="schema:Name"> Liu, D.</span> + </span> + <span property="schema:name"> Phage-assisted evolution and protein engineering yield compact, efficient prime editors. </span> + <i property="schema:publisher" typeof="schema:Organization"> Cell</i> + <b property="issueNumber" typeof="PublicationIssue"> 186</b>, + <span property="schema:pageBegin"> 3983</span>-<span property="schema:pageEnd">4002.e26</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>). + <a className="doi" href="https://doi.org/10.1016/j.cell.2023.07.039"> doi: 10.1016/j.cell.2023.07.039</a> +</li> + +{/*<!-- Citation num 11--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-11"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Jinek, M.</span>; + <span property="schema:Name"> Chylinski, K.</span>; + <span property="schema:Name"> Fonfara, I.</span>; + <span property="schema:Name"> Hauer, M.</span>; + <span property="schema:Name"> Doudna, J.</span>; + <span property="schema:Name"> Charpentier, E.</span> + </span> + <span property="schema:name"> A programmable dual RNA-guided DNA endonuclease in adaptive bacterial immunity. </span> + <i property="schema:publisher" typeof="schema:Organization"> Science (New York, N.Y.)</i> + <b property="issueNumber" typeof="PublicationIssue"> 337</b>, + <span property="schema:pageBegin">816–821</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2012">2012</time>). + <a className="doi" href="https://doi.org/10.1126/science.1225829"> doi: 10.1126/science.1225829</a> +</li> + +{/*<!-- Citation num 12--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-12"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Nelson, J.</span>; + <span property="schema:Name"> Randolph, P.</span>; + <span property="schema:Name"> Shen, S.</span>; + <span property="schema:Name"> Everette, K.</span>; + <span property="schema:Name"> Chen, P.</span>; + <span property="schema:Name"> Anzalone, A.</span>; + <span property="schema:Name"> An, M.</span>; + <span property="schema:Name"> Newby, G.</span>; + <span property="schema:Name"> Chen, J.</span>; + <span property="schema:Name"> Hsu, A.</span>; + <span property="schema:Name"> Liu, D.</span> + </span> + <span property="schema:name"> Engineered pegRNAs improve prime editing efficiency. </span> + <i property="schema:publisher" typeof="schema:Organization"> Nature Biotechnology</i> + <b property="issueNumber" typeof="PublicationIssue"> 40</b>, + <span property="schema:pageBegin">402–410</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>). + <a className="doi" href="https://doi.org/10.1038/s41587-021-01039-7"> doi: 10.1038/s41587-021-01039-7</a> +</li> + +{/*<!-- Citation num 13--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-13"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Sousa, A.</span>; + <span property="schema:Name"> Hemez, C.</span>; + <span property="schema:Name"> Lei, L.</span>; + <span property="schema:Name"> Traore, S.</span>; + <span property="schema:Name"> Kulhankova, K.</span>; + <span property="schema:Name"> Newby, G.</span>; + <span property="schema:Name"> Doman, J.</span>; + <span property="schema:Name"> Oye, K.</span>; + <span property="schema:Name"> Pandey, S.</span>; + <span property="schema:Name"> Karp, P.</span>; + <span property="schema:Name"> McCray, P.</span>; + <span property="schema:Name"> Liu, D.</span> + </span> + <span property="schema:name"> Systematic optimization of prime editing for the efficient functional correction of CFTR F508del in human airway epithelial cells. </span> + <i property="schema:publisher" typeof="schema:Organization"> Nature Biomedical Engineering</i> + <b property="issueNumber" typeof="PublicationIssue"> </b>,&; + <span property="schema:pageBegin">1–15</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>). + <a className="doi" href="https://doi.org/10.1038/s41551-024-01233-3"> doi: 10.1038/s41551-024-01233-3</a> +</li> +{/*<!-- Citation num 14--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-14"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Rodrigues, R.</span> + </span> + <span property="schema:name"> Cystic fibrosis and neonatal screening. </span> + <i property="schema:publisher" typeof="schema:Organization"> Cadernos de Saúde Pública</i> + <b property="issueNumber" typeof="PublicationIssue"> 24</b>, + <span property="schema:pageBegin"> 475</span>-<span property="schema:pageEnd">484</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2008">2008</time>). + <a className="doi" href="https://doi.org/10.1590/S0102-311X2008001600002"> doi: 10.1590/S0102-311X2008001600002</a> +</li> + +{/*<!-- Citation num 15--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-15"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Farrell, P.</span> + </span> + <span property="schema:name"> The Impact of the CFTR Gene Discovery on Cystic Fibrosis Diagnosis, Counseling, and Preventive Therapy. </span> + <i property="schema:publisher" typeof="schema:Organization"> Genes</i> + <b property="issueNumber" typeof="PublicationIssue"> 11(4)</b>, + <span property="schema:pageBegin">401</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2020">2020</time>). + <a className="doi" href="https://doi.org/10.3390/genes11040401"> doi: 10.3390/genes11040401</a> +</li> + +{/*<!-- Citation num 16--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-16"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Lukacs, G.</span> + </span> + <span property="schema:name"> CFTR: folding, misfolding and correcting the ΔF508 conformational defect. </span> + <i property="schema:publisher" typeof="schema:Organization"> Trends in molecular medicine</i> + <b property="issueNumber" typeof="PublicationIssue"> 18(2)</b>, + <span property="schema:pageBegin"> 81</span>-<span property="schema:pageEnd">91</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2012">2012</time>). + <a className="doi" href="https://doi.org/10.1016/j.molmed.2011.10.003"> doi: 10.1016/j.molmed.2011.10.003</a> +</li> + +{/*<!-- Citation num 17--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-17"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Amico, G.</span> + </span> + <span property="schema:name"> Unravelling the Regions of Mutant F508del-CFTR More Susceptible to the Action of Four Cystic Fibrosis Correctors. </span> + <i property="schema:publisher" typeof="schema:Organization"> International Journal of Molecular Sciences</i> + <b property="issueNumber" typeof="PublicationIssue"> 20(21)</b>, + <span property="schema:pageBegin">5463</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>). + <a className="doi" href="https://doi.org/10.3390/ijms20215463"> doi: 10.3390/ijms20215463</a> +</li> + + + + @@ -288,22 +521,21 @@ export function Description() { ); } -/* let medibuttonrowdata =[ + let medibuttonrowdata =[ { - node: <div>About</div>, + node: <H2 id="about-btn" text="About"/>, buttonname: "About", cssname: "First" }, { - node: <h2>Modulators</h2>, + node: <H2 id="modulator-btn" text="Modulators"/>, buttonname: "Modulators", cssname: "modulators" }, { - node: <h2>Inhalations</h2>, + node: <H2 id="inhalator-btn" text="Inhalations"/>, buttonname: "Inhalations", cssname: "inhalations" }, ] - */ \ No newline at end of file diff --git a/src/contents/design.tsx b/src/contents/design.tsx index f7c33c9abc399be9ebc286f394e488e98f16af7c..b0cd2034758fb3b548373f967beb7e58582fded3 100644 --- a/src/contents/design.tsx +++ b/src/contents/design.tsx @@ -1,12 +1,41 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Design() { - + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> <div className="col-lg-8"> - + <p>Happy Birthday Kaya!</p> </div> </div> diff --git a/src/contents/drylab.tsx b/src/contents/drylab.tsx index c837da7ca7a053b8106bc5526ab87ee2ba9b0dfe..70a65fa8ce73f3731f56aa517d2f67751efbef22 100644 --- a/src/contents/drylab.tsx +++ b/src/contents/drylab.tsx @@ -1,12 +1,40 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Drylab() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row"> <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + </div> </div> <div className="row"> diff --git a/src/contents/education.tsx b/src/contents/education.tsx index f4c4f8f05658dc408779107871c429aa2b5512c5..304369c0ad95a09bc41752907f616b58049e6df6 100644 --- a/src/contents/education.tsx +++ b/src/contents/education.tsx @@ -1,10 +1,57 @@ -import { ButtonOne} from "../components/Buttons"; +import { ButtonOne} from "../components/Buttons"; +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { useNavigation } from "../utils/useNavigation"; +import { H2 } from "../components/headings"; export function Education() { + const { goToPagesAndOpenTab/* , goToTextsAndOpenCollapsible */ } = useNavigation(); + const location = useLocation(); + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Open the tab specified by tabId + if (tabId) { + // Hide all tabs + const tabs = document.querySelectorAll('.cycletab'); + tabs.forEach((tab) => { + (tab as HTMLElement).style.display = 'none'; + }); + + // Show the selected tab + const selectedTab = document.getElementById(tabId); + if (selectedTab) { + selectedTab.style.display = 'block'; + } + } + + // Scroll to the section specified by collapseId after opening the tab + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } +}, [location.search]); return ( <> + <div> + <H2 id="interviews" text="Interviews Page"/> + {/* <a onClick={() => goToTextsAndOpenCollapsible("symptoms-collapsible", "/description?collapseId=")}> + Go to Texts and Open Collapsible 1 + </a> */} + </div> <div className="row align-items-center" style={{marginTop: "5vh", marginBottom: "5vh"}}> <div className="col"> <ButtonOne text="Overview" open="overview"></ButtonOne> @@ -20,22 +67,75 @@ export function Education() { </div> </div> <div id="overview" className="cycletab" style={{display: "block"}}> - <h2>Our education and outreach</h2> - - <h2>If not as a special prize - then why?</h2> + <H2 id="edu-out-heading" text="Our education and outreach"/> + <H2 id="why-heading" text="If not as a special prize - then why?"/> </div> <div id="akademie" className="cycletab" style={{display: "none"}}> - <h2>Student academy on the topic of synthetic biology</h2> + <H2 id="student-academy-heading" text="Student academy on the topic of synthetic biology"/> </div> <div id="teutoruft" className="cycletab" style={{display: "none"}}> - <h2>Educational city tour for young and old</h2> - </div> - <div id="mukomove" className="cycletab" style={{display: "none"}}> - <h2>Cystic fibrosis awareness month</h2> - </div> - <div className="row"> + <H2 id="teuroruft-heading" text="Educational city tour for young and old"/> + <div className="row align-items-center"> + <div className="col"> + <img src="https://static.igem.wiki/teams/5247/photos/edcation-and-outreach/teutoruft-experminet.jpeg"></img> + </div> + <div className="col"> + <img src="https://static.igem.wiki/teams/5247/photos/edcation-and-outreach/teutoruft-gruppe.jpeg"></img> + </div> + </div> </div> + <div id="mukomove" className="cycletab" style={{display: "none"}}> + <H2 id="cf-month" text="Cystic fibrosis awareness month"/> + <div className="row"> + <div className="full-small col-3"> + <img className="max400" src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/po-mukomove/wir-plakat-mukomove.jpeg"></img> + </div> + <div className="col"> + <h3>What is MUKOMOVE?</h3> + <p>As part of the cystic fibrosis awareness month May, we took part in this year's <a href="https://www.muko.info/mukomove">MUKOmove</a> from May 8th to May + 12th under the team name iGEM Bielefeld. MUKOmove is a participatory sports initiative organized by + <a href="https://www.muko.info/"> Mukoviszidose e.V.</a>, the German Cystic Fibrosis Association, aimed at raising awareness and funds + for cystic fibrosis research and support. This annual event encourages individuals and teams to + engage in various physical activities, track their movement, and share their experiences online. </p> + <button>Spenden</button> + </div> + </div> + <br/> + <div className="row"> + <div className="col"> + <h3>Why and in which ways were we invested in MUKOmove? </h3> + <p>We did not stop at our participation itself – we wanted to make other people from our university and city + aware of the event and collect sport hours for cystic fibrosis with them by inviting them to join our team. + Our survey about cystic fibrosis awareness and our discussions with <a onClick={() => goToPagesAndOpenTab('InvWesthoff', '/human-practices?tab=')}>Kathrin Westhoff</a>, the head of a + practice for physiotherapy in Gütersloh who is also treating young CF patients, showed us how little known + this illness still is. Especially the interview with the physiotherapist made us realize how important + exercise is for everyone and how it brings a community together – we wanted to establish MUKOmove in + Bielefeld. That is why we really got the publicity going by putting up posters and distributing flyers + at the university and in our city as you can see in the following picture. </p> + </div> + <div className="full-small col-4"> + <img className="max400" src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/po-mukomove/img-7828.jpeg"></img> + </div> + </div> + <br/> + <p>We also called for MUKOmove on our socials and set our team a goal of collecting 240 hours doing sports together, + while the entire MUKOmove had a goal of collecting 24,000 sport hours. In cooperation with our university's + sports facilities, using their <a href="https://www.uni-bielefeld.de/einrichtungen/hochschulsport/zusatzangebote/houbi/">“HOUBI-Aktivmobil"</a> and other equipment, we organized a team event at the sports + ground of our university at the begin of MUKOmove. Everyone was warmly invited to our event on May 8th, and + it was a lot of fun to play various sport games together outside in the sun – check out in the following + video! </p> + <div className="row align-items-center"> + <div className="col"> + <img src="https://www.mapcom.com/wp-content/uploads/2015/07/video-placeholder.jpg"></img> + </div> + </div> + <br/> + <h3>What did we achieve?</h3> + <p>We are happy to announce that both movement goals were surpassed: Team iGEM Bielefeld was able to collect 358 sport hours, and everyone who took part in MUKOmove together collected 36,542 sport hours! </p> + <p>The MUKOmove was therefore a complete success, and we take pride in having contributed to the goal while raising more awareness for cystic fibrosis in our region and Germany as a whole.</p> + </div> + </> ); } diff --git a/src/contents/engineering.tsx b/src/contents/engineering.tsx index 4945fc03e30d129f27d89ec4d038203ca0a17337..321743f4407e8f9b029a37cb24c9b925ffb14265 100644 --- a/src/contents/engineering.tsx +++ b/src/contents/engineering.tsx @@ -1,55 +1,179 @@ -import { openIt } from "../components/Buttons"; +import { ButtonOneEngineering } from "../components/Buttons"; +import { LoremShort } from "../components/loremipsum"; +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openElement } from "../utils/openElement"; + export function Engineering() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Open the tab specified by tabId + if (tabId) { + // Hide all tabs + const tabs = document.querySelectorAll('.enginneeringtab'); + tabs.forEach((tab) => { + (tab as HTMLElement).style.display = 'none'; + }); + + // Show the selected tab + const selectedTab = document.getElementById(tabId); + if (selectedTab) { + selectedTab.style.display = 'block'; + } + } + + // Scroll to the section specified by collapseId after opening the tab + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + }, [location.search]); return ( <> <div className="row mt-4"> <div className="col"> - <br/> - <br/> - <div className="row align-items-center"> - <div className="col-3"> - <EngineeringCycleTab/> - - </div> - <div className="col"> - <div className="cycletab" id="overview" style={{display: "block"}}> - <h3>Overview</h3> - <hr/> - </div> - <div className="cycletab" id="learning" style={{display: "none"}}> - <h3>Learning</h3> - <hr/> - </div> - <div className="cycletab" id="testing" style={{display: "none"}}> - <h3>Testing</h3> - <hr/> - </div> - <div className="cycletab" id="building" style={{display: "none"}}> - <h3>Building</h3> - <hr/> - </div> - <div className="cycletab" id="designing" style={{display: "none"}}> - <h3>Designing</h3> - <hr/> - </div> - </div> + <br/> <br/> <br/> + <div id="tab-our-cycle" className="enginneeringtab" style={{display: "block"}}> + <section id="Our Cycle"> + <h3>Our Cycle</h3> + <p>Hallo Prime Editing diesdas</p> + <br/> + <div className="row"> + <div className="col"> + + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="proof-of-concept"/></div> + </div> + </div> + </section> + </div> + + <div id="tab-proof-of-concept" className="enginneeringtab" style={{display: "none"}}> + <section id="Proof of Concept" > + <div className="bg-lb box" > + <h3>Proof of Concept</h3> + <p><LoremShort></LoremShort></p> + </div> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="our-cycle"/></div> + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="pe-systems"/></div> + </div> + </div> + </section> + </div> + + <div className="enginneeringtab" id="tab-pe-systems" style={{display: "none"}}> + <section id="PE Systems" > + <div className="box" > + <h3>PE Systems</h3> + <p><LoremShort></LoremShort></p> + </div> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="proof-of-concept"/></div> + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="nikase"/></div> + </div> + </div> + </section> + </div> + <div className="enginneeringtab" id="tab-nikase" style={{display: "none"}}> + <section id="Nikase" > + <div className="box" > + <h3>Nikase</h3> + <p><LoremShort></LoremShort></p> + </div> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="pe-systems"/></div> + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="pegrna"/></div> + </div> + </div> + </section> + </div> + <div className="enginneeringtab" id="tab-pegrna" style={{display: "none"}}> + <section id="pegRNA" > + <div className="box" > + <h3>pegRNA</h3> + <p><LoremShort></LoremShort></p> + </div> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="nikase"/></div> + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="delivery"/></div> + </div> + </div> + </section> + </div> + <div className="enginneeringtab" id="tab-delivery" style={{display: "none"}}> + <section id="Delivery" > + <div className="box" > + <h3>Delivery</h3> + <p id="del1"> + <h3>del1</h3> + <LoremShort></LoremShort> + </p> + <p><LoremShort></LoremShort></p> + <p><LoremShort></LoremShort></p> + </div> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="pegrna"/></div> + </div> + <div className="col button-left"> + <div className="right"><ButtonOneEngineering label="Next" open="references"/></div> + </div> + </div> + </section> </div> - <section id="RNAbindingprotein"> - - </section> - <section id="RNAbindingprotein"> - - </section> - <section id="RNAbindingprotein"> - - </section> - <section id="RNAbindingprotein"> - - </section> + <div className="enginneeringtab" id="tab-references" style={{display: "none"}}> + <section id="References" > + <h3>References</h3> + <p><LoremShort></LoremShort></p> + <br/> + <div className="row "> + <div className="col"> + <div className="left"><ButtonOneEngineering label="Previous" open="delivery"/></div> + </div> + <div className="col button-left"> + + </div> + </div> + </section> + </div> + </div> </div> @@ -59,7 +183,7 @@ export function Engineering() { -function EngineeringCycleTab(){ +export function EngineeringCycleTab(){ return( <svg className="rotate-linear-infinite" width="100%" @@ -80,7 +204,7 @@ function EngineeringCycleTab(){ <g id="g25" transform="translate(7.500978,3.0504898)"> - <a typeof="button" className="svg-button" onClick={openIt({it: "designing"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "designing", classToHide: "cycletab"})}> <path className="cls-7" d="m 42.05,115.59 c 27.77,9.19 57.83,-4.79 69.76,-32.23" @@ -98,7 +222,7 @@ function EngineeringCycleTab(){ id="polygon25" style={{fill:"#850f78",fillOpacity:"1",strokeWidth:"6",strokeDasharray:"none"}} transform="matrix(2.9806259,0,0,2.9806259,-225.43722,-156.45123)" /> - <a typeof="button" className="svg-button" onClick={openIt({it: "learning"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "learning", classToHide: "cycletab"})}> <path className="cls-12" d="M 114,78.55 C 123.45,50.86 110,20.75 82.66,8.6" @@ -125,7 +249,7 @@ function EngineeringCycleTab(){ style={{fill:"#a0a7f3",fillOpacity:"1",strokeWidth:"6",strokeDasharray:"none"}} inkscape:transform-center-x="3.6173751" inkscape:transform-center-y="5.1978852" /> - <a typeof="button" className="svg-button" onClick={openIt({it: "testing"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "testing", classToHide: "cycletab"})}> <path className="cls-9" d="M 78.599111,7.5468264 C 43.820346,-2.6177588 13.956746,14.286046 4.2106281,46.368749" @@ -150,7 +274,7 @@ function EngineeringCycleTab(){ id="polygon25-6" style={{fill:"#f57d22",fillOpacity:"1",strokeWidth:"6",strokeDasharray:"none"}} transform="matrix(-2.9650314,0.30449893,-0.30449893,-2.9650314,364.84067,249.28249)" /> - <a typeof="button" className="svg-button" onClick={openIt({it: "building"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "building", classToHide: "cycletab"})}> <path className="cls-11" d="M 2.6659753,50.953505 C -2.0956694,72.727915 10.936866,102.94273 36.656234,113.62834" @@ -171,7 +295,7 @@ function EngineeringCycleTab(){ id="polygon22" style={{strokeWidth:"6",strokeDasharray:"none",fill:"#f4cc1e",fillOpacity:"1"}} transform="matrix(2.8248588,0,0,2.8248588,-67.797781,-207.96977)" /> - <a typeof="button" className="svg-button" onClick={openIt({it: "designing"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "designing", classToHide: "cycletab"})}> <text style={{fontSize:"17.3333px",lineHeight:"0",fontFamily:"Arial",fill:"#000000",fillOpacity:"1",stroke:"none",strokeWidth:"15",strokeLinecap:"round",strokeLinejoin:"round",strokeDasharray:"none",strokeOpacity:"1",paintOrder:"fill markers stroke"}} @@ -182,7 +306,7 @@ function EngineeringCycleTab(){ id="tspan29" /></textPath></text> </a> </g> </g> - <a typeof="button" className="svg-button" onClick={openIt({it: "overview"})}> + <a typeof="button" className="svg-button" onClick={openElement({elementToOpen: "overview", classToHide: "cycletab"})}> <circle style={{opacity:"0.85",fill:"#e2dad7",fillOpacity:"1",strokeWidth:"15",strokeLinecap:"round",strokeLinejoin:"round",paintOrder:"fill markers stroke"}} id="path1" @@ -205,3 +329,5 @@ function EngineeringCycleTab(){ ) } + + diff --git a/src/contents/ethics.tsx b/src/contents/ethics.tsx index 79a0f66a5d8eae4aac978e84f9a745b459bf8797..8538b10ab18c6b80e982cfa662c2fafd6acf55b4 100644 --- a/src/contents/ethics.tsx +++ b/src/contents/ethics.tsx @@ -1,11 +1,41 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Ethics() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> <div className="col-lg-8"> - + <p>Happy Birthday Kaya!</p> </div> </div> diff --git a/src/contents/example.css b/src/contents/example.css index df7369fc894eeb1fc204c87c3291914ff525d6d0..bce2cdfe73b51bfdde7100a81bf82858d33ee550 100644 --- a/src/contents/example.css +++ b/src/contents/example.css @@ -57,4 +57,36 @@ .example-advanced-tag{ background-color: orangered; width: fit-content; +} + + +.st196{fill:none;stroke:black;stroke-miterlimit:10;} +.st455{font-size:auto;} + +/* .d-none{ + background-color: red; +} */ + + + +.relative{ + position: relative; +} +.flex{ + position: flex; +} + +:root{ + --nhb1: 400px; + --nhb2: 400px; + --hb2: calc(var(--nhb1) + var(--nhb2)); +} +.box1{ + height: var(--nhb1); + width: 90%; +} +.box2{ + transform: translate(5vw, var(--nhb1)); + width: 90%; + height: var(--nhb2); } \ No newline at end of file diff --git a/src/contents/example.tsx b/src/contents/example.tsx index 96916625a8b770d7d3747ed50fca77e777041c27..ee3651f7676598f33054f18ea26cd2105f0818f0 100644 --- a/src/contents/example.tsx +++ b/src/contents/example.tsx @@ -1,15 +1,12 @@ -import { TimelineItem } from "../components/My-Timeline"; -import SimpleSlider from "../components/slider"; import TestSVG from "../components/testsvganimation"; export function Example() { return ( <> - <div className="col"> <div className="col"> <TestSVG></TestSVG> - <h3 className="example">Exercises</h3> +{/* <h3 className="example">Exercises</h3> <i><h6>By Your name</h6></i> <div className="example-exercise"> <p> All components should be in this file. The extra css has to be put into exapmle.css. Turn to Liliana if you need or want a scss file, too.</p> @@ -171,7 +168,7 @@ export function Example() { <p> See DocuBox component. </p> </div> </div> - <hr/> + <hr/> */} {/* <div className="col exercise"> <div className="row align-items-center"> <div className="col"><h4> </h4></div> @@ -192,7 +189,7 @@ export function Example() { } - function DocuBox({children}: {children: React.ReactNode}){ + export function DocuBox({children}: {children: React.ReactNode}){ return( <> <div className="example-docu"> diff --git a/src/contents/experiments.tsx b/src/contents/experiments.tsx index ed3c6ca8a536f33051d4687a240c218f0aef6f4b..eb24e0926ddfc1d83f7c62cd0487f93f8fc748af 100644 --- a/src/contents/experiments.tsx +++ b/src/contents/experiments.tsx @@ -1,7 +1,36 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Experiments() { - + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> diff --git a/src/contents/human-practices.tsx b/src/contents/human-practices.tsx index e5b1f15e86e1c55830770b2d891a117c17b26734..135b847ebd6f09422a4d1ba5922606530e435094 100644 --- a/src/contents/human-practices.tsx +++ b/src/contents/human-practices.tsx @@ -4,7 +4,6 @@ - bei show more unten drunter Tabs öffnen - wenn man auf die Person klickt soll es Infos über die Person anzeigen - kann mn die Karten nach Links und nach rechts ausweiten zb für Mehr infos für die Person? -- Meilensteine als Popup - Filter mit HalbkreisDing als Tabsteuerung | Einteilung nach Bereich (Academia, Insustry, ..., und auch nach Delivery und Mechanism) - DNA Strang als Timeline? */ @@ -50,13 +49,15 @@ <p></p> */ import { TimeHori } from "../components/HorizontalTimeline"; -import { AllPopus } from "../components/HorizontalTimeline"; import { BFHStyleTabs, ButtonRowTabs } from "../components/Tabs"; -import { ButtonOne, TabButtonRow, openTab } from "../components/Buttons"; +import { ButtonOne, TabButtonRow } from "../components/Buttons"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; import { BlockQuoteB } from "../components/Quotes"; import { Box, Tab } from "@mui/material"; import {TabContext, TabList, TabPanel} from '@mui/lab'; -import React from "react"; +import React, { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openElement } from "../utils/openElement"; let timelinebuttonrowdata = [ @@ -100,14 +101,15 @@ let timelinepersontabs =[ Patient </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/hp-max-portrait.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -133,14 +135,15 @@ let timelinepersontabs =[ Patient </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/hp-max-portrait.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -157,47 +160,50 @@ let timelinepersontabs =[ { node: <> <br/> - <h3>Berens</h3> + <h3>Dr. Eva-Maria Berens</h3> <hr/> <div className="row"> <div className="col-2"> <div className="t-tag Academia"> - Beruf + Ethics Committee </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> - <BlockQuoteB text="Quote" cite="."></BlockQuoteB> + <BlockQuoteB text="Quote" cite="Dr. Eva-Maria Berens"></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/berens.jpg"/> </div> </div> <h4>Aim of contact</h4> - <p></p> + <p>The aim of the interview was to get an answer to the question of whether we need an ethics vote for our project or not and to obtain guidelines for dealing with patient cells regarding ethical issues and data protection. </p> <h4>Insights</h4> - <p></p> - <h4>Clarification</h4> - <p></p> + <p>The discussion was very informative in terms of how we should approach this topic and focused primarily on the important factors that need to be considered when planning the handling of patient cells. These include which legal principles need to be observed, data protection, ethical considerations and, above all, detailed and specific information for the donor. It also made us look at the situation from many different angles and consider the risks of worst-case scenarios. Overall, this interview was very useful to us, and we were able to use the information we gained to develop a kind of guideline that allowed us to approach this sensitive topic, which was new to us, with a certain degree of confidence. </p> + {/* <h4>Clarification</h4> + <p></p> */} <h4>Implementation</h4> - <p></p> + <p>Based on the knowledge we have gained, we have drawn up guidelines for our handling of the cells. We used this guide when handling the patient cells, to ensure they were handled in an ethically correct manner. </p> </>, cssname: "Berens" }, { node: <> <br/> - <h3>Wischmeyer</h3> + <h3>Prof. Dr. Erhard Wischmeyer und Dr. Oliver Dräger </h3> + <h4>Research Group Cellular Neurophysiology, Bielefeld University</h4> <hr/> <div className="row"> <div className="col-2"> <div className="t-tag Academia"> - Beruf + Research Group </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Got to Interview with Prof. Wischmeyer</button></div> </div> <div className="row"> <div className="col"> @@ -207,16 +213,109 @@ let timelinepersontabs =[ <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> </div> </div> + <img className="img-right img-half" src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/hp-patch-clamp/20240625-184032.jpg"/> + <div> <h4>Aim of contact</h4> - <p></p> - <h4>Insights</h4> - <p></p> - <h4>Clarification</h4> - <p></p> - <h4>Implementation</h4> - <p></p> + <p>As part of our project, we aimed to demonstrate the functionality of the CFTR ion channel, after restoring + it through our optimized Prime Editing, by using Patch-Clamp measurements. To ensure the optimal use of the + Patch-Clamp and to gain an insight into electrophysiology, we asked experts from the medical faculty at + Bielefeld University to critically examine our measurement planning. Prof. Dr. Erhard Wischmeyer, an + experienced scientist in this field who has worked at the Max Planck Institute for Biophysical Chemistry + in Göttingen, the development site of the Patch-Clamp technique<a href="desc-1"><sup>1</sup></a>, and currently leads the Cellular + Neurophysiology working group at Bielefeld University, seemed to be an ideal interviewee. His + knowledge and experience promised valuable insights and advice for conducting and optimizing our + experiments. </p> + </div> + <br/> + <div className="row"> + <div className="col2punkt5"> + <img src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/hp-patch-clamp/bild-patch-clamp-isi-oliver.jpeg" /> + </div> + <div className="col"> + <h4>Insights</h4> + <p>Prof. Dr. Wischmeyer taught us about the workflow of the Patch-Clamp technique. He highlighted the need + for specialized electrodes and glass pipettes that must form a smooth surface devoid of the extracellular + matrix (ECM). Additionally, he pointed out that measuring CFTR conductivity with the Patch-Clamp technique + poses a technical challenge due to the low currents involved<a href="desc-2"><sup>2</sup></a>. He recommended using expression vectors + for overexpressing the CFTR gene in HEK cells instead of epithelial cells from a nasal swab to achieve + better results. Since Patch-Clamp measurements require a very sensitive testing environment, even + challenging for the most experienced scientists, Prof. Dr. Wischmeyer invited us to conduct the + measurements together with members of his group. + </p> + <p>In addition to the Patch-Clamp technique, Prof. Dr. Wischmeyer informed us about E-cis measurements as a + current electrophysiological measurement method alongside the Patch-Clamp technique. This method allows + the measurement of the membrane potential above and below a monolayer of confluent cells<a href="desc-3"><sup>3</sup></a>. Consequently, + it enables precise measurement of conductivity dependent on CFTR expression. </p> + </div> + </div> + + + <h4>Implementation</h4> + <div className="row align-items-center"> + <div className="col"> + <p>We decided to use HEK293T cells lines from Mattijs Bulcaen from KU Leuven [Link] which do overexpress the + correct CFTR and those which express CFTR with F508del for the Patch-Clamp measurements. To conduct the + Patch-Clamp experiments, we contacted the Cellular Neurophysiology group to perform the necessary + measurements. It was a pleasure to work together with Dr. Oliver Dräger, who is working as a post-doc for + the Cellular Neurophysiology working group at Bielefeld University. He taught us about the Patch-Clamp + method and spent his valuable time supporting our project by guiding our Patch-Clamp measurements. </p> + <p>In summary, through the interview with Prof. Dr. Wischmeyer and the collaboration with his employee + Oliver Dräger, we gained valuable insights and optimized our approach to effectively investigate and + measure the functionality of the CFTR ion channel, thereby determining the efficiency of our Prime + Editing strategy. </p> + </div> + <div className="col-5"> + <img src="https://static.igem.wiki/teams/5247/photos/for-wiki-texts/hp-patch-clamp/bild-interssierte-wissenschaftler-oho.jpeg" style={{maxHeight: "300px"}}/> + </div> + </div> + + + + <h4>References</h4> + {/*<!-- Citation num 1--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="bielefeld-cebitec/human-practices#desc-1"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Roth, F.</span>; + <span property="schema:Name"> Draguhn, A.</span> + </span> + <span property="schema:name"> Die Entwicklung der Patch-Clamp-Technik. </span> + <i property="schema:publisher" typeof="schema:Organization"> Springer eBooks</i> + <b property="issueNumber" typeof="PublicationIssue"> </b>, + <span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">14</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>). + <a className="doi" href="https://doi.org/10.1007/978-3-662-66053-9_1"> doi: 10.1007/978-3-662-66053-9_1</a> +</li> + +{/*<!-- Citation num 2--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-2"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Mete, V.</span> + </span> + <span property="schema:name"> Entwicklung und Validierung neuer nicht-invasiver Diagnosesysteme für Mucociliary Clearance Disorders (MCCD). </span> + <i property="schema:publisher" typeof="schema:Organization"> Dissertation, Westfälische Wilhelms-Universität Münster</i> + <b property="issueNumber" typeof="PublicationIssue"> </b>, + <span property="schema:pageBegin"> </span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>). + <a className="doi" href="https://doi.org/10.17879/98958441905"> doi: 10.17879/98958441905</a> +</li> + +{/*<!-- Citation num 3--> */} +<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-3"> + <span property="schema:author" typeof="schema:Person"> + <span property="schema:Name"> Giaever, I.</span>; + <span property="schema:Name"> Keese, C.</span> + </span> + <span property="schema:name"> A morphological biosensor for mammalian cells. </span> + <i property="schema:publisher" typeof="schema:Organization"> Nature</i> + <b property="issueNumber" typeof="PublicationIssue"> 366</b>, + <span property="schema:pageBegin"> 591</span>-<span property="schema:pageEnd">592</span> + (<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 1993">1993</time>). + <a className="doi" href="https://doi.org/10.1038/366591a0"> doi: 10.1038/366591a0</a> +</li> + + </>, - cssname: "Wischmeyer" + cssname: "InvWischmeyer" }, { node: <> @@ -229,7 +328,8 @@ let timelinepersontabs =[ Phd </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> @@ -293,14 +393,15 @@ let timelinepersontabs =[ Phd. Student (Molecular Virology and Gene Therapy) </div> </div> - <div className="col">Original language: English</div> + <div className="col-3">Original language: English</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/mattijs.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -333,7 +434,7 @@ let timelinepersontabs =[ <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/mattijs.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -358,14 +459,15 @@ let timelinepersontabs =[ Parent </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/julia.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -390,7 +492,8 @@ let timelinepersontabs =[ Parent </div> </div> - <div className="col">Original language: English</div> + <div className="col-3">Original language: English</div> + <div className="col"><button>Go to interview</button></div> </div> <div className="row"> <div className="col"> @@ -423,33 +526,26 @@ let timelinepersontabs =[ Physiotherapist </div> </div> - <div className="col">Original language: German</div> + <div className="col-3">Original language: German</div> + <div className="col"><button>See interview</button></div> </div> <div className="row"> <div className="col"> <BlockQuoteB text="The more we know, the more opportunities we have." cite="Katrin Westhoff"></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/hp-katrin-portrait.jpg"/> </div> </div> <h4>Aim of contact</h4> <p>The objective of the contact was to gain in-depth insights into the treatment and care of children with cystic fibrosis. The therapist's expertise was intended to help develop a better understanding of the challenges and necessary measures in the treatment of this chronic disease. In addition, the aim was to ascertain how the therapy is implemented in everyday life and which specific approaches and methods are particularly effective. </p> <h4>Insights</h4> - <p>The interview yielded valuable insights into the regular implementation of the therapy, the use of aids, and the adaptation - of exercises to the individual needs of the patients. It was notable that the therapy has improved - considerably thanks to better medication and adapted exercises, with a concomitant increase in life - expectancy for children affected by cystic fibrosis. Of particular interest was the emphasis - on the importance of sport and exercise, which should not only be therapeutically effective, but also increase quality of life. </p> - <h4>Clarification</h4> - <p></p> + <p>The interview yielded valuable insights into the regular implementation of the therapy, the use of aids and the adaptation of exercises to the individual needs of the patients. It was notable that the therapy has improved considerably thanks to better medication and adapted exercises, with a concomitant increase in life expectancy for children affected by cystic fibrosis. Of particular interest was the emphasis on the importance of sport and exercise, which should not only be therapeutically effective, but also increase quality of life. </p> +{/* <h4>Clarification</h4> + <p></p> */} <h4>Implementation</h4> - <p>The following statement by Katrin Westhoff had a particularly profound impact on our project: "The more we know, the more opportunities we have." - We learned from the interview that the current medication is already helping many patients to a huge - extent, but that there is still a significant opportunity for improvement. After all, successful gene - therapy would markedly enhance the quality of life for those affected. The findings of this project will - be disseminated to the relevant researchers in order to facilitate the rapid improvement of the quality of - life of all cystic fibrosis patients, regardless of their mutation. </p> + <p>The following statement by Katrin Westhoff had a particularly profound impact on our project: "The more we know, the more opportunities we have." We learned from the interview that the current medication is already helping many patients to a huge extent, but that there is still a significant opportunity for improvement. After all, successful gene therapy would markedly enhance the quality of life for those affected. The findings of this project will be disseminated to the relevant researchers in order to facilitate the rapid improvement of the quality of life of all cystic fibrosis patients, regardless of their mutation. </p> + <button>Jump to visit</button> </>, cssname: "InvWesthoff" }, @@ -472,7 +568,7 @@ let timelinepersontabs =[ <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/hp-katrin-portrait.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -504,7 +600,7 @@ let timelinepersontabs =[ <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/olariu-cristian.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -536,7 +632,7 @@ let timelinepersontabs =[ <BlockQuoteB text="Quote" cite="."></BlockQuoteB> </div> <div className="col-3"> - <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + <img className="middle sechpro" src="https://static.igem.wiki/teams/5247/photos/hp/kolonko-neu.jpg"/> </div> </div> <h4>Aim of contact</h4> @@ -620,7 +716,35 @@ let timelinepersontabs =[ export function HumanPractices() { - openTab({cityName: "All", cla: "timelinecardtabs"}); + openElement({buttonClass: "tabbutton", elementToOpen: "All", classToHide: "timelinecardtabs", }); + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <div className="row mt-4"> @@ -633,13 +757,6 @@ export function HumanPractices() { {/* <HPTabsTwo/> */} - <section id="Analysis"> - <div className="center" > - <h3 className="col personalstyleone">Analysis</h3> - </div> - <HPTabs/> - </section> - @@ -663,7 +780,7 @@ export function HumanPractices() { } -function HPTabs(){ +export function HPTabs(){ const [value, setValue] = React.useState('1'); const handleChange = (_event: React.SyntheticEvent, newValue: string) => { @@ -812,7 +929,6 @@ function HPTimeline(){ <h3 className="col personalstyleone">Timeline</h3> </div> <TabButtonRow data={timelinebuttonrowdata} classy="" opentype="timelinecardtabs" closing="timelinepersontabs" /> - <AllPopus></AllPopus> <ButtonRowTabs cla="timelinecardtabs" data={timelinebuttonrowdata}/> <BFHStyleTabs cla="timelinepersontabs" data={timelinepersontabs}></BFHStyleTabs> </section> diff --git a/src/contents/impressum.tsx b/src/contents/impressum.tsx index ba790cc6c3f594151d44dc7dc36bb7cb4cde98e1..3eec55f9e96eff27ca7d45d11b1f064aa1cc8f02 100644 --- a/src/contents/impressum.tsx +++ b/src/contents/impressum.tsx @@ -1,12 +1,42 @@ -//import { Inspirations, InspirationLink } from "../components"; -/* import { Sidebar } from "react-pro-sidebar"; */ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import { H2 } from "../components/headings"; export function Impressum() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row"> <div className="col"> - <h2>Impressum</h2> + <H2 id="impressum" text="Impressum"/> <hr /> </div> </div> diff --git a/src/contents/index.tsx b/src/contents/index.tsx index 9defae9ce8c8126348bf6cbebe01c72bd2482c51..418644d87910e159d6ed70a57be26aa8bcb4a92f 100644 --- a/src/contents/index.tsx +++ b/src/contents/index.tsx @@ -68,11 +68,14 @@ export * from "./education.tsx"; export * from "../headers/edu-h.tsx" export * from "../sidebars/engS.tsx" +export * from "../sidebars/intS.tsx" +export * from "../sidebars/safeS.tsx" export * from "../sidebars/none.tsx" - +export * from "../sidebars/ethS.tsx" export * from "./survey.tsx"; export * from "../headers/sur-h.tsx" export * from "./collaborations.tsx"; export * from "../headers/coll-h.tsx" + diff --git a/src/contents/interviews.tsx b/src/contents/interviews.tsx index 5acfa1cd6bdb464a78aedbcdec526d2967f7818f..a9e694d7f15c86146b5953275bf06401bb247399 100644 --- a/src/contents/interviews.tsx +++ b/src/contents/interviews.tsx @@ -1,9 +1,441 @@ - +import { ButtonOne } from "../components/Buttons"; +import { QaBox, SpecialQaBox } from "../components/Boxes"; +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { H3, H2 } from "../components/headings"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Ints() { + const location = useLocation(); + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> - + <br/> + <section className="col" id="maxH"> + <H2 text="Max Beckmann" id="max"/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Patient"> + Patient + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col"> + <div className="col"> + <ButtonOne text="Erstes Interview" open="maxinv1"></ButtonOne> + </div> + <br/> + <div className="col"> + <ButtonOne text="Zweites Interview" open="maxinv2"></ButtonOne> + </div> + </div> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/hp-max-portrait.jpg"/> + </div> + </div> + <div className="col cycletab" id="maxinv1" style={{display: "block"}}> + <H3 id="maxnotes1" text="Notes from the first interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + <div className="col cycletab" id="maxinv2" style={{display: "none"}}> + <H3 id="maxnotes2" text="Notes from the second interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="olariuH"> + <h3 id="olariu">Cristian-Gabriel Olariu</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Medical"> + Pediatrician + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/olariu-cristian.jpg"/> + </div> + <div className="col"> + </div> + </div> + <div className="col"> + <H3 id="olariunotes" text="Notes from the interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="joshuaH"> + <h3 id="joshua">Joshua Bauder</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Patient"> + Parent + </div> + </div> + <div className="col">Original language: English</div> + </div> + <br/> + <div className="row"> + <div className="col"></div> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + </div> + </div> + <div className="col"> + <H3 id="joshnotes" text="Notes from the interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="juliaH"> + <h3 id="julia">Julia</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Patient"> + Parent + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/julia.jpg"/> + </div> + <div className="col"> + </div> + </div> + <div className="col"> + <H3 id="julianotes" text="Notes from the interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="nicoleH"> + <h3 id="nicole">Nicole Friedlein</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Academia"> + Academia + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col"></div> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + </div> + </div> + <div className="col"> + <H3 id="nicolenotes" text="Notes from the interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="mattijsH"> + <h3 id="mattijs">Mattijs Bulcean</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Academia"> + Academia + </div> + </div> + <div className="col">Original language: English</div> + </div> + <br/> + <div className="row"> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/mattijs.jpg"/> + </div> + <div className="col"> + <div className="col"> + <ButtonOne text="Erstes Interview" open="mattijsinv1"></ButtonOne> + </div> + <br/> + <div className="col"> + <ButtonOne text="Zweites Interview" open="mattijsinv2"></ButtonOne> + </div> + </div> + </div> + <div className="col cycletab" id="mattijsinv1" style={{display: "block"}}> + <H3 id="mattijsnotes1" text="Notes from the first interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + <div className="col cycletab" id="mattijsinv2" style={{display: "none"}}> + <H3 id="mattijsnotes2" text="Notes from the second interview"/> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="westhoffH"> + <h3 id="westhoff">Katrin Westhoff</h3> + <hr/> + <div className="row"> + <div className="col-2"> + <div className="t-tag Medical"> + Physiotherapist + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col"> + </div> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/hp-katrin-portrait.jpg"/> + </div> + </div> + <div className="col"> + <h3>Notes from the interview</h3> + <br/> + {/* <QaBox + q="Question" + a="Answer" + /> */} + <QaBox + q="From what age do the patients come to you?" + a="The patients come to us at a very early age. It is always very difficult, for the parents in particular, to deal with the new situation. A definite diagnosis is made after 6 weeks at the latest. Once the diagnosis has been made, the whole family is genetically tested, i.e. the parents and siblings." + /> + <QaBox + q="How long do they stay?" + a="When the children are discharged from hospital, they are immediately sent for physiotherapy. However, therapy often starts in hospital. These often also have CF outpatient clinics, such as the Bethel Clinic in Bielefeld." + /> + <QaBox + q="How many patients do you treat?" + a="We currently have 8 children with cystic fibrosis in our medical practice, which is quite a lot. However, if you compare this number with other diseases, it is rather a small number. We have slightly more children with cystic fibrosis in our practice because we specialize in it, among other diseases." + /> + <SpecialQaBox + q="What kind of exercises do you do?"> + <p>We do a lot of breathing therapy. In any case, it is important to say that we have attended special training courses for CF that have shown us new techniques. In general, the same things are taught in training as 25 years ago, but unfortunately this doesn't help CF patients as well as the new techniques. The current gold standard is autogenous drainage according to Chevallier. This works very well! In general, the main problem is the mucus that cannot be removed. With autogenous drainage, the chest is compressed, which forces the mucus out. It's like cleaning the lungs from the inside, which works really well. It is also very important to inhale, whereby there are 3 different levels of salt content (0.9%, 3% or 6%). Children with CF always use at least 3% salt content.</p> + <p>Our general routine is as follows: </p> + <p> + <ol> + <li>wet inhalation, as moisture binds mucus</li> + <li>drainage to get mucus out of the lungs</li> + <li>antibiotics, now the medication can work best as the lungs are clean and dilated</li> + </ol> + </p> + <p>There are also so-called “magic pointsâ€. Compression of these points leads to the best possible ventilation of the lungs. There are special belts for compressing these points that patients can wear at home to help them breathe better. Older patients wear these belts during sport.</p> + </SpecialQaBox> + <QaBox + q="When does drainage start? " + a="We start drainage in newborns so that the mucus cannot settle as much. " + /> + <QaBox + q="Are there special exercises that can also be done at home? " + a="Yes, the parents are instructed to do the exercises which we also do in our practice." + /> + <QaBox + q="How often does the therapy take place? " + a="Therapy usually takes place once a week or every two weeks. Thanks to improved medication, the children affected are now in a much better position. The therapy has changed considerably over time and has improved significantly. Less and more fluid mucus makes it easier to cough up, which in turn increases the children's life expectancy. Sport and exercise play a central role in therapy and should be fun, as they must be carried out for life. From the age of 8 or 9, exercise such as cycling to school should be the norm. " + /> + <QaBox + q="What would happen if no physiotherapy was performed? " + a="It is difficult to predict exactly what would happen if physiotherapy was not carried out, as there is no comparison group. There is no reason not to do the therapy. If children do not receive physiotherapy over a longer period of time, they often become more mucousy and their ventilation worsens. Specific therapy is absolutely necessary at the latest in the event of an infection. " + /> + <QaBox + q="How do you measure success (in terms of lung function test, exercise, etc.)? " + a="The success of the therapy is measured subjectively by listening to and feeling the breathing and by observing the children's skin. An exact answer to the success measurement is difficult. A well-ventilated lung volume is indicated by a “full barrelâ€, while wheezing and vibrating indicate poor ventilation. Vegetative signs such as a white mouth-nose triangle indicate a high level of stress. In the clinic, lung function tests, CO2 measurements and “finger clip†tests are performed. However, children can sometimes try to influence the tests, so the results are not always reliable. " + /> + <QaBox + q="Do the exercises bring relief or are they preventative for further complaints? " + a="The exercises serve both to relieve acute infections and to prevent further complaints. The fewer lung infections there are, the lower the likelihood of adhesions of mucus. " + /> + <QaBox + q="Are there any tools to perform therapy? " + a="Devices such as the “flutter†or “cornet†are used to support exhalation. These devices look like a whistle with a metal ball inside. When exhaling, the ball moves and creates vibrations that loosen the mucus in the lungs. Such devices should be used by all children with lung diseases. " + /> + <QaBox + q="What complaints do patients bring with them? " + a="Patients often have lung problems, dry lung mucosa and problems with the pancreas. The latter leads to poor metabolism, which is why those affected have to take enzyme therapeutics before eating. Children often have growth disorders due to a lack of food, which is why nutritional advice is essential. Some children also have problems with excessive perspiration, although this is less common. " + /> + <QaBox + q="Are pancreatic complaints also treated by physiotherapists? " + a="Pancreatic complaints are rarely treated with physiotherapy, unless it is an inflammation. In such cases, the patient is admitted to a hospital. Massage or taping the intestines with kinesiology tape helps with constipation and works very well. " + /> + <QaBox + q="Are there any special hygiene guidelines for you when working with cystic fibrosis patients? " + a="Hygiene guidelines are very important when working with cystic fibrosis patients. A distinction is made between children with and without infections (Pseudomonas). Regular nasal swabs are taken and only children with or without infections are treated in the practice on any given day. Ventilation, patients wearing masks while infected and disinfection of the facilities are essential. Children infected with multi-resistant germs are not allowed to enter the practice; in such cases, physiotherapists visit the patients' homes. " + /> + <QaBox + q="Are the specific exercises customized? And if so, how do you know which therapy is the right one for which patient (based on laboratory values, tests, different mutation patterns...)? " + a="The exercises are individually adapted to the patient's current situation. Important criteria are the removal of mucus and ventilation of the lungs. Each therapist has their own approach and preferred exercises and techniques. " + /> + <QaBox + q="Do patients always go to the same physiotherapist? " + a="If therapy goes well, patients stay with the same physiotherapist." + /> + <QaBox + q="How many physiotherapists offer muco-therapy? " + a="The exact number of physiotherapists offering cystic fibrosis therapy is unknown. However, there are several child therapists in the region providing this therapy. " + /> + <QaBox + q="How are the relatives educated? " + a="Educating relatives often begins in the maternity ward with a sweat test. Affected children are often recognizable due to poor food intake. In Gütersloh, where our office is located, all children are sent to Bethel, where they immediately receive CF care. Parents are often traumatized, as the children are severely ill despite often appearing healthy." + /> + <QaBox + q="What are the limitations of individual medicine? " + a="The effectiveness of drugs can vary, and some are only approved from a certain age. Better medications can significantly enhance the quality of life and life expectancy. " + /> + </div> + + </section> + <br/> + <section className="col" id="berensH"> + <h3 id="berens">Dr. Eva-Maria Berens</h3> + <hr/> + <div className="row"> + <div className="col-4"> + <div className="t-tag Academia"> + Ethics Committee of Bielefeld University + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/photos/hp/berens.jpg"/> + </div> + <div className="col"> + </div> + </div> + <div className="col"> + <h3>Notes from the interview</h3> + <br/> + <QaBox + q="Question" + a="Answer" + /> + </div> + </section> + <br/> + <section className="col" id="wischmeyerH"> + <h3 id="wischmeyer">Prof. Dr. Erhard Wischmeyer</h3> + <hr/> + <div className="row"> + <div className="col-6"> + <div className="t-tag Academia"> + Research Group Cellular Neurophysiology, Bielefeld University + </div> + </div> + <div className="col">Original language: German</div> + </div> + <br/> + <div className="row"> + <div className="col"></div> + <div className="col-3"> + <img className="interview-img" src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"/> + </div> + </div> + <div className="col"> + <h3>Notes from the interview</h3> + <br/> + <QaBox + q="Can you educate us about your academic career? " + a="I did my doctorate 30 years ago at Bielefeld University and then worked at the Max Planck Institute in Göttingen a lot with the Patch-Clamp p technique. Today, I’m head of the working group Cellular Neurophysiology of the medicine faculty of Bielefeld University. " + /> + <QaBox + q="What new methods are currently available in electrophysiological research? " + a="One of the latest methods is E-cis measurements. These make it possible to examine a monolayer of confluent cells and to measure the membrane potential both above and below. The change in conductivity can be analyzed for instance as a function of CFTR expression. " + /> + <QaBox + q="How can we proceed with the investigation of CFTR in different cell cultures by Patch-Clamp? " + a="You can study CFTR expression in HEK cells, which allows for a measurable change in chloride conductance. I am not sure whether we will be able to investigate CFTR sufficiently in epithelial cells which you want to collect from your CF patient friend and your team members. That is something we have to try out. " + /> + <QaBox + q="How challenging is the measurement of CFTR conductance in epithelial cells? " + a="CFTR in epithelial cells has very low conductivity in the femtoampere range. Therefore, extremely sensitive testing is necessary to obtain meaningful results. " + /> + <QaBox + q="How challenging is the Patch-Clamp measurement of CFTR conductance in epithelial cells? " + a="The project will could take at least one year, even for experienced researchers. " + /> + <QaBox + q="What technical challenges do we face in implementing the Patch-Clamp measurements? " + a="One of the biggest challenges is measuring the current across the entire cell, as we do not want to carry out single-channel measurements, but rather record the current across cells with a strongly expressing vector carrying the gene for the ion channel. " + /> + <QaBox + q="What requirements must be met for cultivation and transfection before the Patch-Clamp measurement? " + a="You have to cultivate the cells on poly-lysine and laminin and use round coverslips of 10 mm diameter to prepare them for measurement. For identification of positive transfectants, we use GFP co-transfected cells in our working group, you should think of something like that as well. A transfection rate of 10 % is sufficient to gain enough cells for the measurement. You can think of optimizing your transfection by using Lipofectamin2000 than Lipofectamine2000, which works good for our working group. " + /> + <QaBox + q="Who could help us with the Patch-Clamp measurements? " + a="The Patch-Clamp devices are heavily utilized in our working group, so you probably cannot perform measurements on your own. However, postdocs could support you for some measurements. Dr. Oliver Dräger is available as a contact person of my working group. " + /> + <p> Test aus dem Wiki </p> </div> + </section> + <br/> </> ); } diff --git a/src/contents/judging.tsx b/src/contents/judging.tsx index 8c0efe57495d7a77ece6ba0db5e3dbaef1d2af2e..ded41c5727e09fee6e1762b1a14513c477ceecaf 100644 --- a/src/contents/judging.tsx +++ b/src/contents/judging.tsx @@ -1,12 +1,40 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Judging() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row"> <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + </div> </div> <div className="row"> diff --git a/src/contents/measurement.tsx b/src/contents/measurement.tsx index 56832b99801ced1ede0f982cc6d32069dd580f78..d09ad1b2da80ca34530af2268f67f5ad8eef148f 100644 --- a/src/contents/measurement.tsx +++ b/src/contents/measurement.tsx @@ -1,12 +1,40 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Measurement() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row"> <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + </div> </div> <div className="row"> diff --git a/src/contents/notebook.tsx b/src/contents/notebook.tsx index 24ffd65cb4ae79a53a17d61fef49b968e5239ede..ae7c0c1c9a114cc35b5335e8ff4f171779293693 100644 --- a/src/contents/notebook.tsx +++ b/src/contents/notebook.tsx @@ -1,14 +1,49 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import H1 from "../components/headings"; export function Notebook() { - + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> <div className="col-lg-8"> - + <strong> + <H1 text="Ich bin ein Header!"/> + </strong> + <i> + <p> Ich bin ein Paragraph. </p> + </i> </div> - + </div> </> ); diff --git a/src/contents/partners.tsx b/src/contents/partners.tsx index dcbc7dfc0e34775128981dc1e40c1148d1ce82b9..4aac7844e693329493e3c027c6a6cea96989373d 100644 --- a/src/contents/partners.tsx +++ b/src/contents/partners.tsx @@ -1,9 +1,69 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import H1, { H2 } from "../components/headings"; export function Partners() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div id="sidebarbox" className="col-1 d-none d-lg-block"> </div> + <br/> + <H1 text="A big thank you to all our sponsors and partners!"></H1> + <br/> + <br/> + + <br/> + {/* GOLD */} + <H2 id="gold" text="Sponsor category Gold"/> + <br/> + <div className="col"> + <div className="row align-items-center"> + <div className="col"> + <a className="sponsor-container sp-a" href="https://www.uni-bielefeld.de/"> + <img className="img-sponsor-a" src="https://static.igem.wiki/teams/5247/logos-team/uni-bielefeld-dunkel.png"/> + </a> + </div> + <div className="col-1"></div> + <div className="col"> + <a className="sponsor-container sp-a" href="https://www.cebitec.uni-bielefeld.de/"> + <img className="img-sponsor-a" src="https://static.igem.wiki/teams/5247/sponsors/cebitec-farbe.png"/> + </a> + </div> + </div> + <div className="row align-items-center"> + <div className="col"> + <br/> + </div> + </div> + </div> <br/> <div className="row align-items-center"> <div id="zeiss-portrait" className="col-5 sponsor-portrait"> @@ -24,11 +84,8 @@ export function Partners() { <br/> <p> For more than 35 years, Integrated DNA Technologies (IDT) has empowered genomics laboratories with an oligonucleotide manufacturing process unlike anyone else in the industry, featuring the most advanced synthesis, modification, purification, and quality control capabilities available. IDT has supported iGEM team for over a decade with 20kb of free DNA to help accelerate their inspiring projects for the Grand Jamboree. Since its founding in 1987, IDT has progressed from a leading oligo manufacturer to a genomics solutions provider supporting key application areas such as next generation sequencing, CRISPR genome editing, synthetic biology, digital PCR, and RNA interference. IDT manufactures products used by scientists researching the toughest challenges facing our planet today as well as many forms of cancer and most inherited and infectious diseases. </p> </div> - <div id="idt-portrait" className="col-5 sponsor-portrait"> - <a href="www.idtdna.com"> - <img id="idt-portrait-logo" src="https://static.igem.wiki/teams/5247/sponsors/idt-logo.png"></img> - </a> - </div> + <a href="https://www.idtdna.com/" id="idt-portrait" className="col-5 sponsor-portrait"> + </a> </div> <br/> <br/> <div className="row align-items-center"> @@ -56,34 +113,79 @@ export function Partners() { </div> </div> <br/> <br/> - <div className="col" style={{textAlign: "center"}}> - <h4>And a big thank you to ...</h4> + {/* SILVER */} + <H2 text="Sponsor category silver" id="silver"/> + <br/> <br/> + <div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}> + <div className="row align-items-center"> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/zymo.png"/> + </a> + </div> + <div className="col"> + Stemcell + </div> + <div className="col"> + <a className="sponsor-container" href="https://www.plasmidfactory.com/"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/plasmidfactory.png"/> + </a> + </div> + </div> + <div className="row align-items-center"> + <div className="col"> + Wolff + </div> + <div className="col"> + <a className="sponsor-container" href="https://snapgene.com"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/snapgene.png"/> + </a> + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/bionrw-logo.png"/> + </a> + </div> + </div> + </div> + <br/> <br/> + {/* BRONZE */} + <H2 text="Sponsor category bronze" id="bronze"></H2> + <br/> <br/> + <div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}> + <div className="row align-items-center"> + <div className="col"> + <a className="sponsor-container" href="www.promega.com"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/promega-gelb.png"/> + </a> + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/microsynth-logo.png"/> + </a> + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/neb-logo.png"/> + </a> + </div> + </div> </div> <br/> <br/> <div className="row align-items-center"> <div id="project-text" className="col sponsor-text-left"> - <h4>... our other project sponsors!</h4> + <H2 text="BFH MeetUp sponsors..." id="bfh-sponsors"/> <br/> <p></p> </div> <div id="project-portrait" className="col-6 sponsor-portrait" style={{padding: "20px"}}> <div className="row align-items-center"> - {/* <div className="col"> - <a className="sponsor-container" href="https://www.carlroth.de/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/roth.jpg"/> - </a> - </div> */} - {/* <div className="col"> - <a className="sponsor-container" href="https://www.uni-bielefeld.de/fakultaeten/technische-fakultaet/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/techfak.jpg"/> - </a> - </div> */} </div> <div className="row align-items-center"> <div className="col"> - <a className="sponsor-container" href="www.snapgene.com"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/snapgene.png"/> + <a className="sponsor-container" href="https://www.gip.com/home/"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/gip.png" /> </a> </div> <div className="col"> @@ -94,16 +196,26 @@ export function Partners() { </div> <div className="row align-items-center"> <div className="col"> - <a className="sponsor-container" href="https://www.uni-bielefeld.de/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/logos-team/uni-bielefeld-dunkel.png"/> - </a> + V Bio </div> <div className="col"> - <a className="sponsor-container" href="https://www.cebitec.uni-bielefeld.de/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/cebitec-farbe.png"/> - </a> + MN </div> </div> + <div className="row align-items-center"> + <div className="col"> + fiz + </div> + <div className="col"> + cell signaling technologies + </div> + </div> + <div className="row align-items-center"> + <div className="col"> + GASB + </div> + </div> + </div> </div> <br/> <br/> @@ -117,7 +229,7 @@ export function Partners() { </div> <div className="col"> <a className="sponsor-container" href="https://www.uni-bielefeld.de/fakultaeten/technische-fakultaet/arbeitsgruppen/multiscale-bioengineering/campusbrauerei/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/campus-brauerei-hinterlegt.jpeg"/> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/campus-brauerei.png"/> </a> </div> <div className="col"> @@ -126,38 +238,6 @@ export function Partners() { </a> </div> </div> - <div className="row align-items-center"> - <div className="col"> - <a className="sponsor-container" href="www.promega.com"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/promega-gelb.png"/> - </a> - </div> - <div className="col"> - <a className="sponsor-container" href="https://www.plasmidfactory.com/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/plasmidfactory.png"/> - </a> - </div> - <div className="col"> - <a className="sponsor-container" href="https://www.gip.com/home/"> - <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/gip.png" /> - </a> - </div> - </div> - </div> - - <div id="meetup-text" className="col sponsor-text-right" style={{textAlign: "right"}}> - <h4> ... our MeetUp sponsors! </h4> - <br/> - </div> - </div> - <br/> <br/> - <div className="row align-items-center"> - <div id="partner-text" className="col sponsor-text-left"> - <h4>... our partners!</h4> - <br/> - <p></p> - </div> - <div id="partner-portrait" className="col-6 sponsor-portrait" style={{padding: "20px"}}> <div className="row align-items-center"> <div className="col"> <a className="sponsor-container" href=""> @@ -175,7 +255,7 @@ export function Partners() { </a> </div> </div> - <div className="row align-items-center"> + <div className="row align-items-center"> <div className="col"> <a className="sponsor-container" href=""> <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/studscicom-logo.png"/> @@ -183,7 +263,69 @@ export function Partners() { </div> </div> </div> + + <div id="meetup-text" className="col sponsor-text-right" style={{textAlign: "right"}}> + <H2 text="... and collaborators " id="bfh-collabs"/> + <br/> + </div> + </div> + <br/> <br/> + <H2 text="Other collaborators" id="otehrs"/> + <br/> <br/> + <div className="row align-items-center"> + <div id="idt-text" className="col sponsor-text-left"> + <h4>Changing CF lives around the world, one vest at a time.</h4> + <br/> + <p>After being contacted unexpectedly by two previously unknown Cystic Fibrosis patients in Chile and Lebanon months apart in early 2020 to request therapy vests, the great need for this equipment to CF patients around the world became quickly evident. CF Vests Worldwide was established in June 2020 to meet this need. The mission of CF Vests Worldwide is to donate lifesaving therapy vests, with a cost of nearly $20,000, for those with Cystic Fibrosis outside of the United States. The life expectancy of CF patients outside the U.S. can be as limited as approximately 24 years of age. These therapy vests mean everything to the CF patient and their family. Further, in most CF communities in the 59 countries where CF Vests Worldwide has donated over 330 therapy vests, access to the most basic Cystic Fibrosis medication is either limited or non-existent. In these cases, a therapy vest donated by CF Vests Worldwide is the only hope for comfort and an extended life.</p> + </div> + <div id="" className="col-5 sponsor-portrait"> + <a href="https://www.cfvww.org/"> + <img id="idt-portrait-logo" src="https://static.igem.wiki/teams/5247/sponsors/cfvestslogo.png"></img> + </a> + </div> </div> + <br/> <br/> + <div id="meetup-portrait" className="sponsor-portrait" style={{padding: "20px"}}> + <div className="row align-items-center"> + <div className="col"> + <a className="sponsor-container" href="https://www.carlroth.de/"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/roth.jpg"/> + </a> + </div> + <div className="col"> + <a className="sponsor-container" href="https://www.uni-bielefeld.de/fakultaeten/technische-fakultaet/"> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/techfak.jpg"/> + </a> + </div> + <div className="col"> + Sarstedt + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/corden-pharma-logo.png"/> + </a> + </div> + </div> + <div className="row align-items-center"> + <div className="col"> + {/* leer */} + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/capricorn-logo.png"/> + </a> + </div> + <div className="col"> + <a className="sponsor-container" href=""> + <img className="img-sponsor-partner-page" src="https://static.igem.wiki/teams/5247/sponsors/twist-bioscience-logo.png"/> + </a> + </div> + <div className="col"> + {/* leer */} + </div> + </div> + </div> + diff --git a/src/contents/parts.tsx b/src/contents/parts.tsx index 15807136c8697e4811828fa9701cfa36214dc7e9..4a0606a96fcc60e57b0a212046a3fbc5847b6342 100644 --- a/src/contents/parts.tsx +++ b/src/contents/parts.tsx @@ -1,12 +1,40 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Parts() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row"> <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + </div> </div> <div className="row"> diff --git a/src/contents/proof.tsx b/src/contents/proof.tsx index e87d968982644202cfcba19ab793182885b260d1..358b18e985db8728581e7ad22e16fd08bc720d28 100644 --- a/src/contents/proof.tsx +++ b/src/contents/proof.tsx @@ -1,11 +1,110 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import { H2, H3 } from "../components/headings"; export function Proof() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> - <div className="row mt-4"> - <div className="col"> - - </div> - </div> + <section > + <H2 text="Preliminary test with lipofectamine 2000" id="prelim-2000"/> + <H3 text="Seeding" id="prelim-2000-seeding"/> + <H3 text="Transfection" id="prelim-2000-transfection"/> + <H3 text="Microscopy" id="prelim-2000-microscopy"/> + <table> + <tr> + <th>Plasmid</th> + <th>Expected results</th> + <th>Results</th> + </tr> + <tr> + <th></th> + <th></th> + <th></th> + </tr> + </table> + </section> + <section > + <H2 text="Positiv control and optimization with lipofectamin 2000" id="pos-control-2000"/> + <H3 text="Seeding" id="pos-control-2000-seeding"/> + <H3 text="Transfection" id="pos-control-2000-transfection"/> + <H3 text="Microscopy" id="pos-control-2000-microscopy"/> + <table> + <tr> + <th>Plasmid</th> + <th>Expected results</th> + <th>Results</th> + </tr> + <tr> + <th></th> + <th></th> + <th></th> + </tr> + </table> + </section> + <section > + <H2 text="Positiv control and optimization with lipofectamin 3000" id="pos-control-3000"/> + <H3 text="Seeding" id="pos-control-3000-seeding"/> + <H3 text="Transfection" id="pos-control-3000-transfection"/> + <H3 text="Microscopy" id="pos-control-3000-microscopy"/> + <table> + <tr> + <th>Plasmid</th> + <th>Expected results</th> + <th>Results</th> + </tr> + <tr> + <th></th> + <th></th> + <th></th> + </tr> + </table> + </section> + <section id="poc-3000"> + <H2 text="Preliminary test with lipofectamine 3000" id="poc-3000"/> + <H3 text="Seeding" id="poc-3000-seeding"/> + <H3 text="Transfection" id="poc-3000-transfection"/> + <H3 text="Microscopy" id="poc-3000-microscopy"/> + <table> + <tr> + <th>Plasmid</th> + <th>Expected results</th> + <th>Results</th> + </tr> + <tr> + <th></th> + <th></th> + <th></th> + </tr> + </table> + </section> </> ); } diff --git a/src/contents/results.tsx b/src/contents/results.tsx index 95a0806977d56fe55d98f58109ffd603081088e7..6cb36fba1cdea20d61fd4159de26b70027af486d 100644 --- a/src/contents/results.tsx +++ b/src/contents/results.tsx @@ -1,13 +1,42 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Results() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row mt-4"> <div className="col-lg-5"> - + <p>test hallo welt</p> </div> </div> diff --git a/src/contents/safety.tsx b/src/contents/safety.tsx index 7b5abf97e527660e92629fd21cd674447b72fd4f..ced863d142cbecb819e00ac8a0c673239215e1e6 100644 --- a/src/contents/safety.tsx +++ b/src/contents/safety.tsx @@ -1,27 +1,76 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import { H2 } from "../components/headings"; export function Safety() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> - <div className="row mt-4"> + <div className="col"> + <section className="section"> + <div id="Role"><H2 text="Role in iGem"/></div> + </section> + </div> <div className="col"> - + <section className="section"> + <div id="Checks"><H2 text="Check-Ins"/></div> + </section> </div> - </div> - - <div className="row mt-4"> <div className="col"> - - + <section className="section"> + <div id="Lab"><H2 text="Our Lab"/></div> + </section> </div> - </div> - - <div className="row mt-4"> - <div className="col-lg-8"> - + <div className="col"> + <section id="BiosafetyH" className="section"> + <div id="Biosafety"><H2 text="Biosafety"/></div> + <div id="BS1"><h3>Mechanism</h3> </div> + <div id="BS2"><h3>Delivery</h3> </div> + </section> </div> - <div className="col-lg-4"> - + <div className="col"> + <section id="BiosecurityH" className="section"> + <div id="Biosecurity"><H2 text="Biosecurity"/></div> + <div id="BSec1"><h3>Our Project</h3> </div> + <div id="BSec2"><h3>Risk Assesment</h3> </div> + <div id="BSec3"><h3>Managing Risks</h3> </div> + </section> + </div> + <div className="col"> + <section id="BioethicsH" className="section"> + <div id="Bioethics"><H2 text="Bioethics"/></div> + <div id="BE1"><h3>Gene Therapy</h3> </div> + <div id="BE2"><h3>Primary cells</h3> </div> + <div id="BE3"><h3>Consent and Guidelines</h3> </div> + </section> </div> - </div> </> ); } diff --git a/src/contents/supplementary-material.tsx b/src/contents/supplementary-material.tsx index e57d30f0d733ad8da21603b255f7753a9c49c083..1a2d5b571f0ca0ad2c7f673e8318316ec8e119c3 100644 --- a/src/contents/supplementary-material.tsx +++ b/src/contents/supplementary-material.tsx @@ -1,12 +1,40 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Supplementary() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> <div className="row"> <div className="col"> - <h2>Wiki under construction!</h2> - <hr/> + </div> </div> <div className="row"> diff --git a/src/contents/survey.tsx b/src/contents/survey.tsx index f57d669f843131c1b5e68be45758aa8b7e75bd8d..2491d39209c9ef87719fbd5362c210bf1753bd81 100644 --- a/src/contents/survey.tsx +++ b/src/contents/survey.tsx @@ -1,4 +1,35 @@ +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; export function Survey() { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <div className="row mt-4"> diff --git a/src/contents/team.tsx b/src/contents/team.tsx index c7816f4ac331f657ed37e18b85e87e636ce65697..be217e832a54e6d45276dd0f49ed3e71988a212e 100644 --- a/src/contents/team.tsx +++ b/src/contents/team.tsx @@ -1,49 +1,241 @@ - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import { H2 } from "../components/headings"; export function Team() { - + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Scroll to the section specified by collapseId + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Open the tab specified by tabId + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); + return ( <> <br/> <br/> + <H2 text="Members" id="members"/> <div className="row center"> <div className="col"> <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" - + name="Anna Baack" + job="Job" > . </Steckbrief> </div> <div className="col"> - <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Asal Sahami Moghaddam" + job="Job" + > + . </Steckbrief> </div> <div className="col"> - <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Christian Michalek" + job="Job" + > + . + </Steckbrief> + </div> + </div> + <div className="row center"> + <div className="col"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Isabell Guckes" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Kai Kanthak" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Kathleen Susat" + job="Job" + > . </Steckbrief> </div> </div> <div className="row center"> <div className="col"> - <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Kaya Lange" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Liliana Sanfilippo" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Lisa Wiesner" + job="Job" + > + . + </Steckbrief> + </div> + </div> + <div className="row center"> + <div className="col"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Malte Lenger" + job="Job" + > . </Steckbrief> </div> <div className="col"> - <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Michael Gröning" + job="Job" + > . </Steckbrief> </div> <div className="col"> - <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Philip Mundt" + job="Job" + > . </Steckbrief> </div> </div> + <div className="row center"> + <div className="col"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Vera Köhler" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Vincent Stöckl" + job="Job" + > + . + </Steckbrief> + + </div> + </div> + <H2 text="Instructor" id="instructor"/> + <div className="row center"> + <div className="col"> + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Sinan Zimmermann" + job="Job" + > + . + </Steckbrief> + + </div> + <div className="col"> + + </div> + </div> + + <H2 text="Advisors" id="Advisors"/> + <div className="row center"> + <div className="col"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Felicitas Zimmer" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"> + + </div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Lucas Krause" + job="Job" + > + . + </Steckbrief> + + </div> + </div> + <H2 text="Principal Investigators" id="PIS"/> + <div className="row center"> + <div className="col"> + <Steckbrief + url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Jörn Kalinowski" + job="Job" + > + . + </Steckbrief> + </div> + <div className="col"></div> + <div className="col"> + <Steckbrief url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" + name="Kristian Müller" + job="Job" + > + . + </Steckbrief> + + </div> + </div> </> ); } @@ -53,19 +245,31 @@ interface SteckProps{ name?: string; url: string; children: React.ReactNode; + job: string, } -function Steckbrief({children, url, name}: SteckProps){ +function Steckbrief({children, url, name,job }: SteckProps){ return( <> - <div className="lnp center"> - <img src={url} className="img-round"></img> + <div className="row steckbrief"> + <div className="col-7 lnp center"> + <img src={url} className="img-round"></img> + </div> + <div className="col teamcolzwei"> + <div className="center"> + <p className="team-name">{name}</p> + <img className="team-socials" src="https://static.igem.wiki/teams/5247/design/icons/linkedin.png"/> + </div> + <div className="row"> + {job} + </div> </div> - <div className="center"> - <p>{name}</p> </div> + <div className="row" style={{marginTop: "1rem"}}> {children} + </div> + </> ) } diff --git a/src/contents/wiki.tsx b/src/contents/wiki.tsx index 0d50f258db1434b8278711e45b8c3acd4fdb8fab..5110c8367caad9186bf14e52f9456cfb0307d684 100644 --- a/src/contents/wiki.tsx +++ b/src/contents/wiki.tsx @@ -1,9 +1,38 @@ import { Box, Tab } from "@mui/material"; import {TabContext, TabList, TabPanel} from '@mui/lab'; -import React from "react"; import Collapsible from "../components/Collapsible"; - +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; +import { openFromOtherPage } from "../utils/openFromOtherpAge"; +import React from "react"; export function Wiki () { + const location = useLocation(); + + useEffect(() => { + const params = new URLSearchParams(location.search); + const collapseId = params.get('collapseId'); + const tabId = params.get('tab'); + + // Handle scroll to collapse section + if (collapseId) { + const collapseElement = document.getElementById(collapseId); + if (collapseElement) { + const elementTop = collapseElement.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - collapseElement.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + } + + // Handle opening the tab + if (tabId) { + openFromOtherPage(tabId)({ currentTarget: document.getElementById(tabId)! }); + } + }, [location.search]); return ( <> @@ -112,7 +141,7 @@ function Started(){ function Sources(){ return( <div> - <Collapsible title="Images and Icons" > + <Collapsible id="wiki-icons" title="Images and Icons" > Most teams need a lot of pictures, components, icons and alike. They can be difficult to find, especially free and open source ones. <ul> @@ -128,13 +157,13 @@ function Started(){ </ul> </Collapsible> - <Collapsible title="Colours" > - Need a slightly lighter version of one of your colours or a mix of two colours? + <Collapsible id="wiki-colors" title="Colours" > + Need a slightly lighter version of one of your colors or a mix of two colours? <ul> <li><a href="https://www.w3schools.com/colors/colors_mixer.asp"> https://www.w3schools.com/colors/colors_mixer.asp</a></li> </ul> </Collapsible> - <Collapsible title="Coding Tools"> + <Collapsible id="wiki-tools" title="Coding Tools"> Generators <ul> <li><a href="https://www.cssportal.com/">https://www.cssportal.com/</a></li> @@ -142,19 +171,19 @@ function Started(){ </ul> </Collapsible> - <Collapsible title="Placeholders"> + <Collapsible id="wiki-placeholder" title="Placeholders"> <ul> <li><a href="https://www.loremipsum.de/">https://www.loremipsum.de/</a></li> </ul> </Collapsible> - <Collapsible title="SVGs"> + <Collapsible id="wiki-svgs" title="SVGs"> <ul> <li><a href="https://superdesigner.co/tools/svg-backgrounds">https://superdesigner.co/tools/svg-backgrounds</a></li> </ul> </Collapsible> - <Collapsible title="Accessibility"> + <Collapsible id="wiki-accessibility" title="Accessibility"> <ul> <li><a href="https://schema.org">https://schema.org</a></li> </ul> @@ -167,7 +196,7 @@ function Started(){ import { WikiSelector } from "../components/Filter"; -import { Code } from "./code"; +import { Code } from "../components/code"; function Troubleshooting(){ return( @@ -177,56 +206,173 @@ function Troubleshooting(){ <div id="nono" className="noshow"> This combination returns no instances. </div> - {/* <div className="filterable all react type property"> - <Collapsible title="Argument of type X is not assignable to parameter of type Y."> + <div className="filterable all react type property"> + <Collapsible id="wiki-trouble-1" title="Argument of type X is not assignable to parameter of type Y. "> <h6>Example</h6> <h6>Solutions</h6> + </Collapsible> </div> <div className="filterable all react type"> - <Collapsible title="Type X is not assignable to type Y."> + <Collapsible id="wiki-trouble-2" title="Type X is not assignable to type Y."> <h6>Example</h6> <h6>Solutions</h6> </Collapsible> </div> + <div className="filterable all css"> + <Collapsible id="wiki-trouble-3" title="I added css styles but they do not show"> + <h6>Example</h6> + <p>The color is not showing on hover.</p> + <Code>.nav-link:hover { + color: var(--darkpurple); + background-color: var(--yellow) !important; + border-radius: 3px; + }</Code> + <h6>Solution</h6> + <p>Styles not showing is often a case of a different style overriding your style. Some styles are pre defined by bootstrap or other packages you may use. </p> + <p> If an external package is overriding your style, you need to add the <b>!important</b> tag to your style. </p> + <p> If one of your own styles is overriding the new style, you can change your old style or define a new, more specific style case. E.g. by using a more specific css path. But you may still need to add the <b>!important</b> tag. </p> + <Code> .nav-link:hover { + color: var(--darkpurple) <b>!important</b>; + background-color: var(--yellow) !important; + border-radius: 3px; + } + </Code> + </Collapsible> + </div> <div className="filterable all react type property"> - <Collapsible title="Property x is missing in type y but required in type z."> + <Collapsible id="wiki-trouble-4" title="Property x is missing in type y but required in type z."> <h6>Example</h6> + <p className="problem-error"> Argument of type '{ [x: string]: any; }' is not assignable to parameter of type '{ classNames: string[]; }'. + Property 'classNames' is missing in type '{ [x: string]: any; }' but required in type '{ classNames: string[]; }'.</p> + <p> for </p> + <Code>className={joinClassNames({['text-event', className]})} </Code> <h6>Solutions</h6> + <p>In this example, the problem was that the property "classNames" was not explicitly named.</p> + <p>Changing it to </p> + <Code>className={joinClassNames({<b>classNames:</b>['text-event ', className]})}</Code> </Collapsible> </div> <div className="filterable all react type property"> - <Collapsible title="Property x does not exist on type Y."> + <Collapsible id="wiki-trouble-5" title="Property x does not exist on type Y."> <h6>Example</h6> <h6>Solutions</h6> </Collapsible> </div> <div className="filterable all react type property"> - <Collapsible title="Type X is missing the following properties from type Y: a, b, c"> + <Collapsible id="wiki-trouble-6" title="Type X is missing the following properties from type Y: a, b, c"> <h6>Example</h6> + <p className="problem-error"> + Type '{ date: string; text: string; }' is missing the following properties from type 'TextEventProps': marker, card + </p> + <p>In reference of the interface TextEventProps:</p> + <Code> + <p>interface TextEventProps { </p> + <p>date: string; </p> + <p>text: string; </p> + <p>marker: React.ReactNode; </p> + <p>id: string; </p> + <p>card: Function; </p> + } + </Code> + <p>For the code:</p> + <Code> + <p> <TextEvent </p> + <p> id="05"</p> + <p> date="14-06-2024"</p> + <p> text="Test test"</p> + <p> /></p> + </Code> <h6>Solutions</h6> + <p>One solution could be getting rid of the properties you do not need everywhere and create new property interfaces for all cases.</p> + <p>If you want to stick to more general Interfaces, you can make properties optional:</p> + <Code> + <p>interface TextEventProps { </p> + <p>date: string; </p> + <p>text: string; </p> + <p>marker?: React.ReactNode; </p> + <p>id: string; </p> + <p>card?: Function; </p> + } + </Code> + <p>Remember that this can lead to different return cases for your functions.</p> </Collapsible> </div> <div className="filterable all react type"> - <Collapsible title="Type 'x | undefined' is not assignable to type 'x'."> + <Collapsible id="wiki-trouble-7" title="Type 'x | undefined' is not assignable to type 'x'."> <h6>Example</h6> <h6>Solutions</h6> </Collapsible> </div> + <div className="filterable all pipeline"> + <Collapsible id="wiki-trouble-8" title="The pipeline passed but the Wiki is not visible under the url"> + <p>This error could be a result of a wrong base url in the vite.config.js file.</p> + <p>E.g. if you switched from plain HTML to the react framework. </p> + <h6>Example</h6> + <Code> + <p>return defineConfig({</p> + <p>base: `/`,</p> + <p>...</p> + </Code> + <h6>Solution</h6> + <p>Change the base url to reflect the correct team url.</p> + <Code> + <p>return defineConfig({</p> + <p>base: `/${stringToSlug(env.VITE_TEAM_NAME)}/`,</p> + <p>...</p> + </Code> + </Collapsible> + </div> + <div className="filterable all console"> + <Collapsible id="wiki-trouble-9" title="NS_ERROR_CORRUPTED_CONTENT error in console"> + <p> → See also "The pipeline passed but the Wiki is not visible under the url" as these errors can be connected.</p> + <p> This error for css and js files can be the result of wrong <b>rollupOptions</b> in for the build, to be specific wrong <b>output</b> and <b>assetFileNames</b> options and possibly wrong/empty <b>css</b> options in your vite.config.js. </p> + <h6>Example</h6> + <p>In our case, we had the following code on our vite.config.js</p> + <Code> + <p>build: { </p> + <p>outDir: "dist",</p> + <p>rollupOptions: {</p> + <p>output: {</p> + <p> assetFileNames: `assets/[ext]/[name]-[hash].[ext]`</p> + <p>} } } , </p> + </Code> + <p> Our <b>css</b> options were empty, which could also have played a factor for the css files.</p> + <Code> + <p>css: {</p> + <p>preprocessorOptions: {</p> + <p>css: {</p> + <p> //javascriptEnabled: true, // Enable JavaScript in CSS (useful for certain CSS preprocessor plugins)</p> + <p> } } },</p> + </Code> + </Collapsible> + </div> + <div className="filterable all console"> + <Collapsible id="wiki-trouble-10" title="Blocked due to MIME type (“text/htmlâ€) mismatch (X-Content-Type-Options: nosniff) (Firefox)"> + <p> → See also "Refused to apply style from <<css file>> because its MIME type ('text/html') is not a supported stylesheet MIME type, strict MIME checking is enabled (Edge)"</p> + <p>This error could </p> + </Collapsible> + </div> + <div className="filterable all console"> + <Collapsible id="wiki-trouble-11" title="Refused to apply style from <<css file>> because its MIME type ('text/html') is not a supported stylesheet MIME type, strict MIME checking is enabled (Edge)"> + <p> → See also "Blocked due to MIME type (“text/htmlâ€) mismatch (X-Content-Type-Options: nosniff) (Firefox)"</p> + <p>This error could </p> + </Collapsible> + </div> <div className="filterable all react type"> - <Collapsible title="Type 'undefined' cannot be used as an index type"> + <Collapsible id="wiki-trouble-12" title="Type 'undefined' cannot be used as an index type"> <h6>Example</h6> <h6>Solutions</h6> </Collapsible> </div> <div className="filterable all react overload"> - <Collapsible title="No overload matches this call."> + <Collapsible id="wiki-trouble-13" title="No overload matches this call."> <h6>Example</h6> <h6>Solutions</h6> </Collapsible> - </div> */} + </div> <div className="filterable all react module"> - <Collapsible title="Module Z has already exported a member named A. Consider explicitly re-exporting to resolve the ambiguity."> + <Collapsible id="wiki-trouble-14" title="Module Z has already exported a member named A. Consider explicitly re-exporting to resolve the ambiguity."> <h6>Example</h6> index.tsx: <p className="problem-error"> Module "./Bfh.tsx" has already exported a member named 'LabTabs'. Consider explicitly re-exporting to resolve the ambiguity.</p> @@ -235,7 +381,7 @@ function Troubleshooting(){ </Collapsible> </div> <div className="filterable all pipeline"> - <Collapsible title="error TS6133: 'event' is declared but its value is never read."> + <Collapsible id="wiki-trouble-15" title="error TS6133: 'event' is declared but its value is never read."> <h6>Example</h6> HorizontalTimeline.tsx: <div className="terminal-box"> diff --git a/src/headers/dry-h.tsx b/src/headers/dry-h.tsx index b2493f1072f09237eac87daf8df8b027f5674e20..737a02195382096a4d865242b755e5ccbfdf2cb6 100644 --- a/src/headers/dry-h.tsx +++ b/src/headers/dry-h.tsx @@ -1,6 +1,6 @@ export function DRYH() { return ( - <HeaderBox> + <HeaderBox title="dry lab"> </HeaderBox> ); diff --git a/src/headers/home-h.tsx b/src/headers/home-h.tsx index 9fc5617326fe946bb68318af4581b384dd6ef63d..f7929d6ba018415da51a1be91d5f1486561dcef2 100644 --- a/src/headers/home-h.tsx +++ b/src/headers/home-h.tsx @@ -1,6 +1,6 @@ export function HOMEH() { return ( - <HeaderBox> + <HeaderBox title=" "> </HeaderBox> ); diff --git a/src/headers/imp-h.tsx b/src/headers/imp-h.tsx index 970527d3e9b5465dfb28208c8129b37296958a2b..af746cc69a937051dd42b023fb66bc9923f896ba 100644 --- a/src/headers/imp-h.tsx +++ b/src/headers/imp-h.tsx @@ -1,7 +1,7 @@ export function IMPH() { return ( - <HeaderBox> + <HeaderBox title=""> </HeaderBox> ); diff --git a/src/pages.ts b/src/pages.ts index b27498a9f0643e215ecbdce9ef8ca3bc70893cd2..38f1bad4ea58105185a606d825e9bb0747e66352 100644 --- a/src/pages.ts +++ b/src/pages.ts @@ -29,7 +29,7 @@ Collaborations } from "./contents"; -import { DescSidebar, NoSidebar, EngSide } from "./contents"; +import { DescSidebar, IntSidebar, EthicsSidebar, SafetySidebar, NoSidebar, EngSide } from "./contents"; import { BFHH, SURH, COLLH, EDUH, ETHH, JUDGEH, DESH, PROOFH, SUPH, PARTH, MESH, ENGH, DRYH, HOMEH, HPH, INTSH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH, WIKIH } from "./contents"; interface Base { @@ -129,7 +129,7 @@ const Pages: (Page | Folder)[] = [ path: "/ethics", component: Ethics, header: ETHH, - navlist: NoSidebar, + navlist: EthicsSidebar, }, { name: "Example", @@ -161,17 +161,17 @@ const Pages: (Page | Folder)[] = [ name: "Home", title: "Bielefeld CeBiTec", path: "/", - component: Description, - header: DESCH, - navlist: DescSidebar + component: Home, + header: HOMEH, + navlist: NoSidebar }, { name: "Home", title: "Bielefeld CeBiTec", path: "/index.html", - component: Description, - header: DESCH, - navlist: DescSidebar + component: Home, + header: HOMEH, + navlist: NoSidebar }, { name: "Impressum", @@ -187,7 +187,7 @@ const Pages: (Page | Folder)[] = [ path: "/interviews", component: Ints, header: INTSH, - navlist: NoSidebar, + navlist: IntSidebar, }, { name: "Judging", @@ -251,7 +251,7 @@ const Pages: (Page | Folder)[] = [ path: "/safety", component: Safety, header: SAFEH, - navlist: NoSidebar, + navlist: SafetySidebar, }, { name: "Supplementary", @@ -397,14 +397,6 @@ export const NavPages: (Page | Folder)[] = [ header: DESH, navlist: NoSidebar, }, - { - name: "Measurement", - title: "Measurement", - path: "/measurement", - component: Measurement, - header: MESH, - navlist: NoSidebar, - }, { name: "Supplementary", title: "Supplementary", @@ -429,7 +421,7 @@ export const NavPages: (Page | Folder)[] = [ path: "/safety", component: Safety, header: SAFEH, - navlist: NoSidebar, + navlist: SafetySidebar, }, { name: "Human Practices", @@ -442,21 +434,13 @@ export const NavPages: (Page | Folder)[] = [ header: HPH, navlist: NoSidebar }, - { - name: "Ethics", - title: "Ethics", - path: "/ethics", - component: Ethics, - header: ETHH, - navlist: NoSidebar, - }, { name: "Interviews", title: "Interviews", path: "/interviews", component: Ints, header: INTSH, - navlist: NoSidebar, + navlist: IntSidebar, }, { name: "Education and Outreach", diff --git a/src/sidebars/descS.tsx b/src/sidebars/descS.tsx index b3eb5db29ac1d8d6b3090b2deeed24f320b5060a..361e8aa75ce086589d8bc8bb227c6f15d1cdb6ea 100644 --- a/src/sidebars/descS.tsx +++ b/src/sidebars/descS.tsx @@ -1,12 +1,119 @@ -import Sidebar from "../components/Sidebar"; +import { useEffect } from "react"; +import { ScrollLink } from "../components/ScrollLink"; +import { Highlight } from "../components/Highlight"; +import { openAndScroll, openAndCloseAndScroll } from "../components/openAndScroll"; export function DescSidebar(){ + let nums = [ "del1"] + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + const handleScroll = () => { + for(let idx in nums){ + /* console.log("We are looking at 'item' = " + nums[idx]) */ + const item = nums[idx]; + let ind = nums.findIndex((e) => e == item) + /* console.log("ind is: " + ind) */ + let subdi = "subtitle" + ind + /* console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) */ + Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + /* */ + } + /* console.log(nums) */ + + return( <div className="col-2 d-none d-lg-block"> + <br/> <div className="sticky-top"> - <Sidebar nums={["Abstract", "Cystic Fibrosis", "Our motivation", - "Approach", "Delivery", "Our vision", "References"]}></Sidebar> + <nav className="sidebar"> + <div> + <a onClick={openAndCloseAndScroll({ it: "tab-Abstract", scrollTarget: "Abstract", close: ["Cystic-Fibrosis"] })}> + <div className="detail-sideitem"> + <div id="parent-Abstract" className="sideitem"> + <summary>Abstract</summary> + </div> + </div> + </a> + </div> + <div> + {/* Fznktioniert: <a onClick={openThem({it: "tab-Cystic-Fibrosis"})} > */} + <div className="detail-sideitem"> + <div id="parent-Cystic-Fibrosis" className="sideitem"> + <a onClick={openAndScroll({ it: "tab-Cystic-Fibrosis", scrollTarget: "Cystic-Fibrosis" })}><summary>Cystic Fibrosis</summary></a> + <span id="tab-Cystic-Fibrosis" className="sidesubtab" style={{display: "none"}}> + <ul> + <li><ScrollLink label="General" targetId="CF1"/></li> + <li><ScrollLink label="CFTR" targetId="CF2"/></li> + <li><ScrollLink label="ΔF508" targetId="CF3"/></li> + <li><ScrollLink label="Symptoms" targetId="CF4"/></li> + <li><ScrollLink label="Diagnosis" targetId="CF5"/></li> + <li><ScrollLink label="Treatment" targetId="CF6"/></li> + </ul> + </span> + </div> + </div> + </div> + <div> + <a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Our-motivation", close: ["Cystic-Fibrosis"]})}> + <div className="detail-sideitem"> + <div id="parent-pe-systems" className="sideitem"> + <summary>Our Motivation</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Approach", close: ["Cystic-Fibrosis"]})}> + <div className="detail-sideitem"> + <div id="parent-nikase" className="sideitem"> + <summary>Approach</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Delivery", close: ["Cystic-Fibrosis"]})}> + <div className="detail-sideitem"> + <div id="parent-delivery" className="sideitem"> + <summary>Delivery</summary> + </div> + </div> + </a> + </div> {/* */} + <div> + <a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Our-vision", close: ["Cystic-Fibrosis"]})}> + <div className="detail-sideitem"> + <div id="parent-pegrna" className="sideitem"> + <summary>Our vision</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "References", close: ["Cystic-Fibrosis"]})}> + <div className="detail-sideitem"> + <div id="parent-references" className="sideitem"> + <summary>References</summary> + </div> + </div> + </a> + </div> + </nav> + <br/> + <div className="col" style={{display: "flex", alignItems: "right"}}> + <a href='#' className="backtotop"> + Back to Top ↑ + </a> + </div> </div> </div> + ) -} \ No newline at end of file +} + + + diff --git a/src/sidebars/engS.tsx b/src/sidebars/engS.tsx index efc156193da292f08c44f4ba4e27332797db406e..fb5f494327d42c820a28724526fb800c84575f83 100644 --- a/src/sidebars/engS.tsx +++ b/src/sidebars/engS.tsx @@ -1,6 +1,186 @@ +import { useEffect } from "react"; +import { Highlight } from "../components/Highlight"; +import { openThem } from "../utils/openThem"; export function EngSide(){ + let nums = [ "del1"] + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + const handleScroll = () => { + for(let idx in nums){ + console.log("We are looking at 'item' = " + nums[idx]) + const item = nums[idx]; + let ind = nums.findIndex((e) => e == item) + console.log("ind is: " + ind) + let subdi = "subtitle" + ind + console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) + Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + console.log("function HighlightCheck") + } + console.log(nums) + + return( - <div className="col-1 d-none d-lg-block"> + <div className="col-2 d-none d-lg-block"> + <br/> + <div className="sticky-top"> + <nav className="sidebar"> + <div> + <a onClick={openThem({it: "our-cycle"})}> + <div className="detail-sideitem"> + <div id="parent-our-cycle" className="sideitem"> + <summary>Our Cycle</summary> + <span id="our-cycle" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "proof-of-concept"})}> + <div className="detail-sideitem"> + <div id="parent-proof-of-concept" className="sideitem"> + <summary>Proof Of Concept</summary> + <span id="proof-of-concept" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "pe-systems"})}> + <div className="detail-sideitem"> + <div id="parent-pe-systems" className="sideitem"> + <summary>PE Systems</summary> + <span id="pe-systems" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "nikase"})}> + <div className="detail-sideitem"> + <div id="parent-nikase" className="sideitem"> + <summary>Nikase</summary> + <span id="nikase" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "pegrna"})}> + <div className="detail-sideitem"> + <div id="parent-pegrna" className="sideitem"> + <summary>pegRNA</summary> + <span id="pegrna" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "delivery"})}> + <div className="detail-sideitem"> + <div id="parent-delivery" className="sideitem"> + <summary>Delivery</summary> + <span id="delivery" className="sidesubtab" style={{display: "none"}}> + <ul> + <li><a href="#del1"> + <span id="subtitle0" className='sideitem'>Iteration 1</span> + </a></li> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + <div> + <a onClick={openThem({it: "references"})}> + <div className="detail-sideitem"> + <div id="parent-references" className="sideitem"> + <summary>References</summary> + <span id="references" className="sidesubtab" style={{display: "none"}}> + <ul> + <li><a href="#subtitle1"> + <span id="" className='sideitem'>Iteration 1</span> + </a></li> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + </nav> + <br/> + <div className="col" style={{display: "flex", alignItems: "right"}}> + <a href='#' className="backtotop"> + Back to Top ↑ + </a> + </div> + </div> </div> + ) -} \ No newline at end of file +} + + + + +/* function SideItemEng({hesh, num}:{hesh: string; num: number}){ + let subdi = "subtitle" + num + let openmore = stringToSlug(hesh) + console.log("openmore: " + openmore) + return( + <div> + <a onClick={openThem({it: openmore})}> + <div className="detail-sideitem"> + <div id={subdi} className="sideitem"> + <summary>{hesh}</summary> + <span id={openmore} className="sidesubtab" style={{display: "none"}}> + <ul> + <li>Other</li> + </ul> + </span> + </div> + </div> + </a> + </div> + ) +} + */ + + diff --git a/src/sidebars/ethS.tsx b/src/sidebars/ethS.tsx new file mode 100644 index 0000000000000000000000000000000000000000..81684d6fe38336b09ed548f82c1dda0a373c8683 --- /dev/null +++ b/src/sidebars/ethS.tsx @@ -0,0 +1,99 @@ +import { useEffect } from "react"; +import { Highlight, NewHighlight } from "../components/Highlight"; + +export function EthicsSidebar(){ + let numsBig = [""] + let numsSub = [ "BS1", "BS2"] + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + const handleScroll = () => { + for(let idx in numsSub){ + + const item = numsSub[idx]; + let ind = numsSub.findIndex((e) => e == item) + let subdi = "newsubtitle" + ind + + console.log("We are looking at 'item' = " + numsSub[idx]) + console.log("ind is: " + ind) + console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) + NewHighlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + for(let idx in numsBig){ + + const item = numsBig[idx]; + let ind = numsBig.findIndex((e) => e == item) + let subdi = "subtitle" + ind + + console.log("We are looking at 'item' = " + numsBig[idx]) + console.log("ind is: " + ind) + console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) + Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + console.log("function HighlightCheck") + } + console.log(numsSub) + return( + <div className="col-2 d-none d-lg-block"> + <div className="sticky-top"> + <nav className="sidebar"> + <div> + <a onClick={openThem({it: "our-cycle"})}> + <div className="detail-sideitem"> + <div id="parent-our-cycle" className="sideitem"> + <summary>Our Cycle</summary> + <span id="our-cycle" className="sidesubtab" style={{display: "none"}}> + <ul> + <a href="#"><li>Iteration 1</li></a> + <a href="#"><li>Iteration 2</li></a> + <a href="#"><li>Iteration 3</li></a> + </ul> + </span> + </div> + </div> + </a> + </div> + </nav> + </div> + </div> + ) +} + + + + +function openThem({it}: {it: string}){ + const gotoandopen = (_event : React.MouseEvent<HTMLElement, MouseEvent>) => { + + console.log("it classname: " + document.getElementById(it)?.className) + console.log("it: " + it) + let contenttabid = "tab-" + it; + let parent = "parent-" + it; + console.log("we want to open " + it + " and " + contenttabid) + let sideitems = document.getElementsByClassName("sideitem"); + let subtabs = document.getElementsByClassName("sidesubtab"); + let contenttabs = document.getElementsByClassName("enginneeringtab"); + for (let i = 0; i < subtabs.length; i++) { + (subtabs[i] as HTMLElement).style.display = "none"; + console.log("Hiding sidebar subtab...") + } + for (let i = 0; i < contenttabs.length; i++) { + (contenttabs[i] as HTMLElement).style.display = "none"; + console.log("Hiding content tab...") + } + for (let i = 0; i < sideitems.length; i++) { + (sideitems[i] as HTMLElement)!.classList.remove("active-sideitem"); + console.log("Hiding sidebar subtab...") + } + + document.getElementById(it)!.style.display = "block"; + document.getElementById(parent)!.classList.add("active-sideitem"); + document.getElementById(contenttabid)!.style.display = "block"; + + + } + return gotoandopen; + } \ No newline at end of file diff --git a/src/sidebars/intS.tsx b/src/sidebars/intS.tsx new file mode 100644 index 0000000000000000000000000000000000000000..f0376166c9d646d381046b6d39b4b70a7ee1b7dd --- /dev/null +++ b/src/sidebars/intS.tsx @@ -0,0 +1,179 @@ +import { useEffect } from "react"; +import { Highlight } from "../components/Highlight"; + +export function IntSidebar(){ + let nums = [ "maxH", "olariuH", "joshuaH", "juliaH", "nicoleH", "mattijsH", "westhoffH", "berensH", "wischmeyerH"] + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + const handleScroll = () => { + for(let idx in nums){ + /* console.log("We are looking at 'item' = " + nums[idx]) */ + const item = nums[idx]; + let ind = nums.findIndex((e) => e == item) + /* console.log("ind is: " + ind) */ + let subdi = "subtitle" + ind + /* console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) */ + Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + /* */ + } + /* console.log(nums) */ + return( + <div className="col-2 d-none d-lg-block"> + <br/> + <div className="sticky-top"> + <nav className="sidebar"> + <div> + <a onClick={openAndScroll({ it: "tab-max", scrollTarget: "max" })}> + <div id="subtitle0" className="detail-sideitem"> + <div id="parent-max" className="sideitem"> + <summary>Max</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-olariu", scrollTarget: "olariu" })}> + <div id="subtitle1" className="detail-sideitem"> + <div id="parent-olariu" className="sideitem"> + <summary>Olariu</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-joshua", scrollTarget: "joshua" })}> + <div id="subtitle2" className="detail-sideitem"> + <div id="parent-joshua" className="sideitem"> + <summary>Joshua</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-julia", scrollTarget: "julia" })}> + <div id="subtitle3" className="detail-sideitem"> + <div id="parent-julia" className="sideitem"> + <summary>Julia</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-nicole", scrollTarget: "nicole" })}> + <div id="subtitle4" className="detail-sideitem"> + <div id="parent-nicole" className="sideitem"> + <summary > Nicole </summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-mattijs", scrollTarget: "mattijs" })}> + <div id="subtitle5" className="detail-sideitem"> + <div id="parent-mattijs" className="sideitem"> + <summary>mattijs</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-westhoff", scrollTarget: "westhoff" })}> + <div id="subtitle6" className="detail-sideitem"> + <div id="parent-westhoff" className="sideitem"> + <summary>Katrin</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-berens", scrollTarget: "berens" })}> + <div id="subtitle7" className="detail-sideitem"> + <div id="parent-berens" className="sideitem"> + <summary>Berens</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-wischmeyer", scrollTarget: "wischmeyer" })}> + <div id="subtitle8" className="detail-sideitem"> + <div id="parent-wischmeyer" className="sideitem"> + <summary>Wischmeyer</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndScroll({ it: "tab-olariu", scrollTarget: "olariu" })}> + <div id="subtitle9" className="detail-sideitem"> + <div id="parent-olariu" className="sideitem"> + <summary>Olariu</summary> + </div> + </div> + </a> + </div> + </nav> + </div> + </div> + ) +} + + + + export function openAndScroll({ it, scrollTarget }: { it: string, scrollTarget?: string }) { + const gotoandopen = (_event: React.MouseEvent<HTMLElement, MouseEvent>) => { + _event.preventDefault(); // Prevent default anchor behavior + + console.log(`openAndScroll called with it: ${it} and scrollTarget: ${scrollTarget}`); + + // Attempt to find the elements + const subtabElement = document.getElementById(it); + const parentElementId = "parent-" + it.replace("tab-", ""); + const parentElement = document.getElementById(parentElementId); + + console.log(`subtabElement with ID ${it}: `, subtabElement); + console.log(`parentElement with ID ${parentElementId}: `, parentElement); + + if (subtabElement && parentElement) { + console.log("Found subtabElement and parentElement."); + // Show the selected tab in the sidebar and add active class + subtabElement.style.display = "block"; + parentElement.classList.add("active-sideitem"); + } else { + console.error(`Subtab element or parent element not found for ID: ${it}`); + } + + // If a scroll target is provided, scroll to that element on the page + if (scrollTarget) { + const targetElement = document.getElementById(scrollTarget); + if (targetElement) { + console.log(`Scrolling to element with ID: ${scrollTarget}`); + + // Get the position of the element relative to the document + const elementRect = targetElement.getBoundingClientRect(); + const elementTop = elementRect.top + window.scrollY; + + // Calculate the middle of the viewport + const viewportHeight = window.innerHeight; + const scrollOffset = elementTop - (viewportHeight / 5 - targetElement.offsetHeight / 2); + /* + console.log(`Element Top: ${elementTop}`); + console.log(`Viewport Height: ${viewportHeight}`); + console.log(`Scroll Offset: ${scrollOffset}`); */ + + window.scrollTo({ + top: scrollOffset, + behavior: "smooth" + }); + } else { + console.error(`Scroll target element not found for ID: ${scrollTarget}`); + } + } + } + return gotoandopen; +} + diff --git a/src/sidebars/safeS.tsx b/src/sidebars/safeS.tsx new file mode 100644 index 0000000000000000000000000000000000000000..5b11e0da1c7b8ce2adf86028a139c2c9e93e0ac0 --- /dev/null +++ b/src/sidebars/safeS.tsx @@ -0,0 +1,138 @@ +import { useEffect } from "react"; +import { NewHighlight, Highlight } from "../components/Highlight"; +import { ScrollLink } from "../components/ScrollLink"; +import { openAndCloseAndScroll } from "../components/openAndScroll"; + + +export function SafetySidebar(){ + let numsBig = ["Role", "Checks", "Lab", "BiosafetyH", "BiosecurityH", "BioethicsH"] + let numsSub = [ "BS1", "BS2"] + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + const handleScroll = () => { + for(let idx in numsSub){ + + const item = numsSub[idx]; + let ind = numsSub.findIndex((e) => e == item) + let subdi = "newsubtitle" + ind + + console.log("We are looking at 'item' = " + numsSub[idx]) + console.log("ind is: " + ind) + console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) + NewHighlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + for(let idx in numsBig){ + + const item = numsBig[idx]; + let ind = numsBig.findIndex((e) => e == item) + let subdi = "subtitle" + ind + + console.log("We are looking at 'item' = " + numsBig[idx]) + console.log("ind is: " + ind) + console.log("subdi is: " + subdi) + console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) + Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!}); + } + console.log("function HighlightCheck") + } + /* console.log(nums) */ + + + return( + <div className="col-2 d-none d-lg-block"> + <br/> + <div className="sticky-top"> + <nav className="sidebar"> + <div> + <a onClick={openAndCloseAndScroll({ it: "tab-Role", scrollTarget: "Role", close: ["Bioethics", "Biosafety", "Biosecurity"]})}> + <div id="subtitle0" className="detail-sideitem"> + <div id="parent-Role" className="sideitem"> + <summary>Role in iGem</summary> + </div> + </div> + </a> + </div> + + <div> + <a onClick={openAndCloseAndScroll({ it: "tab-Checks", scrollTarget: "Checks", close: ["Bioethics", "Biosafety", "Biosecurity"] })}> + <div id="subtitle1" className="detail-sideitem"> + <div id="parent-Checks" className="sideitem"> + <summary>Check-Ins</summary> + </div> + </div> + </a> + </div> + <div> + <a onClick={openAndCloseAndScroll({ it: "tab-Lab", scrollTarget: "Lab", close: ["Bioethics", "Biosafety", "Biosecurity"] })}> + <div id="subtitle2" className="detail-sideitem"> + <div id="parent-Lab" className="sideitem"> + <summary>Our Lab</summary> + </div> + </div> + </a> + </div> + <div> + {/* Fznktioniert: <a onClick={openThem({it: "tab-Cystic-Fibrosis"})} > */} + <div className="detail-sideitem" id="subtitle3"> + <div id="parent-Biosafety" className="sideitem"> + <a onClick={openAndCloseAndScroll({ it: "tab-Biosafety", scrollTarget: "Biosafety", close: ["Bioethics", "Biosecurity"] })}><summary>Biosafety</summary></a> + <span id="tab-Biosafety" className="sidesubtab" style={{display: "none"}}> + <ul> + <li id="newsubtitle0"><ScrollLink label="Mechanism" targetId="BS1"/></li> + <li id="newsubtitle1"><ScrollLink label="Delivery" targetId="BS2"/></li> + </ul> + </span> + </div> + </div> + </div> + <div> + {/* Fznktioniert: <a onClick={openThem({it: "tab-Cystic-Fibrosis"})} > */} + <div className="detail-sideitem" id="subtitle4"> + <div id="parent-Biosecurity" className="sideitem"> + <a onClick={openAndCloseAndScroll({ it: "tab-Biosecurity", scrollTarget: "Biosecurity", close: ["Biosafety", "Bioethics"]})}><summary>Biosecurity</summary></a> + <span id="tab-Biosecurity" className="sidesubtab" style={{display: "none"}}> + <ul> + <li><ScrollLink label="Our Project" targetId="BSec1"/></li> + <li><ScrollLink label="Risk Assesment" targetId="BSec2"/></li> + <li><ScrollLink label="Managing Risks" targetId="BSec3"/></li> + </ul> + </span> + </div> + </div> + </div> + <div> + <div className="detail-sideitem" id="subtitle5"> + <div id="parent-Bioethics" className="sideitem"> + <a onClick={openAndCloseAndScroll({ it: "tab-Bioethics", scrollTarget: "Bioethics", close: ["Biosafety", "Biosecurity"]})}><summary>Bioethics</summary></a> + <span id="tab-Bioethics" className="sidesubtab" style={{display: "none"}}> + <ul> + <li><ScrollLink label="Gene Therapy" targetId="BE1"/></li> + <li><ScrollLink label="Primary Cells" targetId="BE2"/></li> + <li><ScrollLink label="Consent and Guidelines" targetId="BE3"/></li> + </ul> + </span> + </div> + </div> + </div> + </nav> + <br/> + <div className="col" style={{display: "flex", alignItems: "right"}}> + <a href='#' className="backtotop"> + Back to Top ↑ + </a> + </div> + </div> + </div> + + ) +} + + + + + + + diff --git a/src/utils/index.ts b/src/utils/index.ts index 11684e642da567e9f8791864a1be698694d31706..78fe809f2dd145210b52da59a6feb98568d7187b 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1,3 +1,4 @@ export * from "./getPathMapping"; export * from "./stringToSlug"; export * from "./useScript"; +export * from "./useNavigation" \ No newline at end of file diff --git a/src/utils/openElement.ts b/src/utils/openElement.ts new file mode 100644 index 0000000000000000000000000000000000000000..2945c9967985f5b2bb83ea5f887b87913fe59267 --- /dev/null +++ b/src/utils/openElement.ts @@ -0,0 +1,52 @@ +export function openElement({ + elementToOpen, + classToHide, /* tabcontent */ + elementToClose, + buttonClass, /* = "tablinks" */ + eventTargetClass = "active" + }: { + elementToOpen: string, + classToHide: string, + classToClose?: string, + elementToClose?: string, + buttonClass?: string, + eventTargetClass?: string + }) { + const openElement = (event: React.MouseEvent<HTMLElement, MouseEvent>) => { + let i, elementsToHide, elementsToClose, tabLinks; + + // Hide all elements with the classToHide (e.g., "tabcontent") + elementsToHide = document.getElementsByClassName(classToHide); + for (i = 0; i < elementsToHide.length; i++) { + (elementsToHide[i] as HTMLElement).style.display = "none"; + } + + // If elementToClose is provided, hide these elements too (optional) + if (elementToClose) { + elementsToClose = document.getElementsByClassName(elementToClose); + for (i = 0; i < elementsToClose.length; i++) { + (elementsToClose[i] as HTMLElement).style.display = "none"; + } + } + + // Clear the "active" class from elements with the buttonClass (e.g., "tablinks") + if (buttonClass) { + tabLinks = document.getElementsByClassName(buttonClass); + for (i = 0; i < tabLinks.length; i++) { + tabLinks[i].className = tabLinks[i].className.replace(` ${eventTargetClass}`, ""); + } + } + + // Display the element to open (elementToOpen, e.g., a city tab or content section) + const element = document.getElementById(elementToOpen); + if (element) { + element.style.display = "block"; + } + + // Add the "active" class to the clicked element + event.currentTarget.className += ` ${eventTargetClass}`; + }; + + return openElement; + } + \ No newline at end of file diff --git a/src/utils/openFromOtherpAge.ts b/src/utils/openFromOtherpAge.ts new file mode 100644 index 0000000000000000000000000000000000000000..17702904465bfe56d414dd035946dbc9cb2c116c --- /dev/null +++ b/src/utils/openFromOtherpAge.ts @@ -0,0 +1,33 @@ +export function openFromOtherPage(it: string) { + return (event: React.MouseEvent<HTMLElement> | { currentTarget: HTMLElement }) => { + // Get all elements with class "cycletab" and hide them + let tabcontent = document.getElementsByClassName("cycletab"); + for (let i = 0; i < tabcontent.length; i++) { + (tabcontent[i] as HTMLElement).style.display = "none"; + } + + // Show the specific tab content based on the "it" parameter + const tabToOpen = document.getElementById(it); + if (tabToOpen) { + tabToOpen.style.display = "block"; + + // Scroll the tab content into view + const elementTop = tabToOpen.getBoundingClientRect().top + window.pageYOffset; + const offset = window.innerHeight / 2 - tabToOpen.offsetHeight / 2; + const scrollPosition = elementTop - offset; + + window.scrollTo({ + top: scrollPosition, + behavior: 'smooth', + }); + } + // Optionally, add an "active" class to the clicked button (if needed) + const tabs = document.querySelectorAll('.btn-new'); + tabs.forEach(tab => tab.classList.remove('active')); + + if (event.currentTarget) { + event.currentTarget.classList.add('active'); + } + + } +} \ No newline at end of file diff --git a/src/utils/openThem.ts b/src/utils/openThem.ts new file mode 100644 index 0000000000000000000000000000000000000000..80ea4f4ec95767c3482510d5555fd3d8840d5791 --- /dev/null +++ b/src/utils/openThem.ts @@ -0,0 +1,32 @@ +export function openThem({it}: {it: string}){ + const gotoandopen = (_event : React.MouseEvent<HTMLElement, MouseEvent>) => { + + console.log("it classname: " + document.getElementById(it)?.className) + console.log("it: " + it) + let contenttabid = "tab-" + it; + let parent = "parent-" + it; + console.log("we want to open " + it + " and " + contenttabid) + let sideitems = document.getElementsByClassName("sideitem"); + let subtabs = document.getElementsByClassName("sidesubtab"); + let contenttabs = document.getElementsByClassName("enginneeringtab"); + for (let i = 0; i < subtabs.length; i++) { + (subtabs[i] as HTMLElement).style.display = "none"; + console.log("Hiding sidebar subtab...") + } + for (let i = 0; i < contenttabs.length; i++) { + (contenttabs[i] as HTMLElement).style.display = "none"; + console.log("Hiding content tab...") + } + for (let i = 0; i < sideitems.length; i++) { + (sideitems[i] as HTMLElement)!.classList.remove("active-sideitem"); + console.log("Hiding sidebar subtab...") + } + + document.getElementById(it)!.style.display = "block"; + document.getElementById(parent)!.classList.add("active-sideitem"); + document.getElementById(contenttabid)!.style.display = "block"; + + + } + return gotoandopen; + } \ No newline at end of file diff --git a/src/utils/useNavigation.ts b/src/utils/useNavigation.ts new file mode 100644 index 0000000000000000000000000000000000000000..293857dfa64d2a1ddb67f27c70b14e1456eb8deb --- /dev/null +++ b/src/utils/useNavigation.ts @@ -0,0 +1,25 @@ +import { useNavigate } from "react-router-dom"; + +export const useNavigation = () => { + const navigate = useNavigate(); + + const goToPagesAndOpenTab = (tabId: string, path: string) => { + navigate(`${path}${tabId}`); + }; + + const goToTextsAndOpenCollapsible = (collapseId: string, path: string) => { + navigate(`${path}${collapseId}`); + }; + const goToPageWithTabAndCollapsible = ({ path, tabId, collapseId }: { path: string, tabId: string, collapseId?: string }) => { + const navigate = useNavigate(); + navigate(`${path}?tab=${tabId}${collapseId ? `&collapseId=${collapseId}` : ''}`); + }; +/* <a onClick={() => goToPageWithTabAndCollapsible({ + path: "/human-practices", + tabId: "InvWesthoff", + collapseId: "collapse-1" // ID of the collapsible to open +})}> + Go to Human Practices and Open Collapsible 1 +</a> */ + return { goToPagesAndOpenTab, goToTextsAndOpenCollapsible, goToPageWithTabAndCollapsible }; +}; \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index cb7a2805876d44cfdf1079482de55853775d17cc..7001068b5f856d283b5df877ec52c8bfa7833b2a 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,43 +1,30 @@ import { defineConfig, loadEnv } from "vite"; import react from "@vitejs/plugin-react"; import { stringToSlug } from "./src/utils"; -import path from 'path'; // https://vitejs.dev/config/ export default () => { const env = loadEnv("dev", process.cwd()); + // Sicherstellen, dass die Umgebungsvariable vorhanden ist if (!env.VITE_TEAM_NAME) { throw new Error("VITE_TEAM_NAME environment variable is not defined"); } + // Debugging-Log, um den Wert der Umgebungsvariable zu überprüfen + console.log(`VITE_TEAM_NAME: ${env.VITE_TEAM_NAME}`); + const baseSlug = stringToSlug(env.VITE_TEAM_NAME); - console.log(`Base URL: /${baseSlug}/`); - console.log(`Output directory: ${path.resolve(__dirname, 'dist')}`); + console.log("VITE_TEAM_NAME:", env.VITE_TEAM_NAME); // Debugging-Ausgabe + console.log("Base Slug:", baseSlug); // Debugging-Ausgabe - return defineConfig({ - base: `/`, + base: `/${stringToSlug(env.VITE_TEAM_NAME)}/`, plugins: [react()], - resolve: { - alias: { - '@': path.resolve(__dirname, './src'), // Simplifies imports - } - }, - css: { - preprocessorOptions: { - css: { - //javascriptEnabled: true, // Enable JavaScript in CSS (useful for certain CSS preprocessor plugins) - } - } }, build: { outDir: "dist", - rollupOptions: { - output: { - assetFileNames: `assets/[ext]/[name]-[hash].[ext]` - } - } - }, + }, publicDir: 'pubpub', }); + }; diff --git a/yarn.lock b/yarn.lock index d9aeaa37ba856acfd5b62f8d9500f1ac7190bc2c..c2de35569bb5ee91a563d358164db1d8b636fb66 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10,15 +10,7 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" -"@babel/code-frame@^7.0.0": - version "7.24.2" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz" - integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== - dependencies: - "@babel/highlight" "^7.24.2" - picocolors "^1.0.0" - -"@babel/code-frame@^7.24.7": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== @@ -73,14 +65,7 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-module-imports@^7.16.7": - version "7.24.3" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz" - integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== - dependencies: - "@babel/types" "^7.24.0" - -"@babel/helper-module-imports@^7.24.7": +"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== @@ -144,12 +129,7 @@ js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.20.7": - version "7.24.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz" - integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== - -"@babel/parser@^7.25.0", "@babel/parser@^7.25.3": +"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3": version "7.25.3" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.3.tgz#91fb126768d944966263f0657ab222a642b82065" integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw== @@ -199,16 +179,7 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.0": - version "7.24.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz" - integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ== - dependencies: - "@babel/helper-string-parser" "^7.24.1" - "@babel/helper-validator-identifier" "^7.24.5" - to-fast-properties "^2.0.0" - -"@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2": +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125" integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q== @@ -571,26 +542,6 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@kurkle/color@^0.3.0": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@kurkle/color/-/color-0.3.2.tgz#5acd38242e8bde4f9986e7913c8fdf49d3aa199f" - integrity sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw== - -"@mapbox/node-pre-gyp@^1.0.0": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa" - integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ== - dependencies: - detect-libc "^2.0.0" - https-proxy-agent "^5.0.0" - make-dir "^3.1.0" - node-fetch "^2.6.7" - nopt "^5.0.0" - npmlog "^5.0.1" - rimraf "^3.0.2" - semver "^7.3.5" - tar "^6.1.11" - "@mui/base@5.0.0-beta.40": version "5.0.0-beta.40" resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-beta.40.tgz#1f8a782f1fbf3f84a961e954c8176b187de3dae2" @@ -604,41 +555,41 @@ clsx "^2.1.0" prop-types "^15.8.1" -"@mui/core-downloads-tracker@^5.16.6": - version "5.16.6" - resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.6.tgz#f029e12ffda8eb79838cc85897f03a628010037c" - integrity sha512-kytg6LheUG42V8H/o/Ptz3olSO5kUXW9zF0ox18VnblX6bO2yif1FPItgc3ey1t5ansb1+gbe7SatntqusQupg== +"@mui/core-downloads-tracker@^5.16.7": + version "5.16.7" + resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.7.tgz#182a325a520f7ebd75de051fceabfc0314cfd004" + integrity sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ== "@mui/icons-material@^5.16.5": - version "5.16.5" - resolved "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.16.5.tgz" - integrity sha512-bn88xxU/J9UV0s6+eutq7o3TTOrOlbCX+KshFb8kxgIxJZZfYz3JbAXVMivvoMF4Md6jCVUzM9HEkf4Ajab4tw== + version "5.16.7" + resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.16.7.tgz#e27f901af792065efc9f3d75d74a66af7529a10a" + integrity sha512-UrGwDJCXEszbDI7yV047BYU5A28eGJ79keTCP4cc74WyncuVrnurlmIRxaHL8YK+LI1Kzq+/JM52IAkNnv4u+Q== dependencies: "@babel/runtime" "^7.23.9" "@mui/lab@^5.0.0-alpha.171": - version "5.0.0-alpha.171" - resolved "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.171.tgz" - integrity sha512-/ZRnx0wB7hWHMsy76AAUJREVHZ7v5kOKwgJKCQrqOcaPNyo3WiwtTqKaM4Pgj+2r7O10IrC6zOniq8kTRqVAlA== + version "5.0.0-alpha.173" + resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.173.tgz#a0f9696d93a765b48d69a7da5aaca0affa510ae8" + integrity sha512-Gt5zopIWwxDgGy/MXcp6GueD84xFFugFai4hYiXY0zowJpTVnIrTQCQXV004Q7rejJ7aaCntX9hpPJqCrioshA== dependencies: "@babel/runtime" "^7.23.9" "@mui/base" "5.0.0-beta.40" - "@mui/system" "^5.16.0" - "@mui/types" "^7.2.14" - "@mui/utils" "^5.16.0" + "@mui/system" "^5.16.5" + "@mui/types" "^7.2.15" + "@mui/utils" "^5.16.5" clsx "^2.1.0" prop-types "^15.8.1" "@mui/material@^5.16.5": - version "5.16.5" - resolved "https://registry.npmjs.org/@mui/material/-/material-5.16.5.tgz" - integrity sha512-eQrjjg4JeczXvh/+8yvJkxWIiKNHVptB/AqpsKfZBWp5mUD5U3VsjODMuUl1K2BSq0omV3CiO/mQmWSSMKSmaA== + version "5.16.7" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.16.7.tgz#6e814e2eefdaf065a769cecf549c3569e107a50b" + integrity sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg== dependencies: "@babel/runtime" "^7.23.9" - "@mui/core-downloads-tracker" "^5.16.5" - "@mui/system" "^5.16.5" + "@mui/core-downloads-tracker" "^5.16.7" + "@mui/system" "^5.16.7" "@mui/types" "^7.2.15" - "@mui/utils" "^5.16.5" + "@mui/utils" "^5.16.6" "@popperjs/core" "^2.11.8" "@types/react-transition-group" "^4.4.10" clsx "^2.1.0" @@ -666,24 +617,10 @@ csstype "^3.1.3" prop-types "^15.8.1" -"@mui/system@^5.16.5": - version "5.16.5" - resolved "https://registry.npmjs.org/@mui/system/-/system-5.16.5.tgz" - integrity sha512-uzIUGdrWddUx1HPxW4+B2o4vpgKyRxGe/8BxbfXVDPNPHX75c782TseoCnR/VyfnZJfqX87GcxDmnZEE1c031g== - dependencies: - "@babel/runtime" "^7.23.9" - "@mui/private-theming" "^5.16.5" - "@mui/styled-engine" "^5.16.4" - "@mui/types" "^7.2.15" - "@mui/utils" "^5.16.5" - clsx "^2.1.0" - csstype "^3.1.3" - prop-types "^15.8.1" - -"@mui/system@^5.16.6": - version "5.16.6" - resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.16.6.tgz#2dabe63d2e45816ce611c40d6e3f79b9c2ccbcd7" - integrity sha512-5xgyJjBIMPw8HIaZpfbGAaFYPwImQn7Nyh+wwKWhvkoIeDosQ1ZMVrbTclefi7G8hNmqhip04duYwYpbBFnBgw== +"@mui/system@^5.16.5", "@mui/system@^5.16.7": + version "5.16.7" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.16.7.tgz#4583ca5bf3b38942e02c15a1e622ba869ac51393" + integrity sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA== dependencies: "@babel/runtime" "^7.23.9" "@mui/private-theming" "^5.16.6" @@ -699,19 +636,7 @@ resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.15.tgz#dadd232fe9a70be0d526630675dff3b110f30b53" integrity sha512-nbo7yPhtKJkdf9kcVOF8JZHPZTmqXjJ/tI0bdWgHg5tp9AnIN4Y7f7wm9T+0SyGYJk76+GYZ8Q5XaTYAsUHN0Q== -"@mui/utils@^5.15.14", "@mui/utils@^5.16.5": - version "5.16.5" - resolved "https://registry.npmjs.org/@mui/utils/-/utils-5.16.5.tgz" - integrity sha512-CwhcA9y44XwK7k2joL3Y29mRUnoBt+gOZZdGyw7YihbEwEErJYBtDwbZwVgH68zAljGe/b+Kd5bzfl63Gi3R2A== - dependencies: - "@babel/runtime" "^7.23.9" - "@mui/types" "^7.2.15" - "@types/prop-types" "^15.7.12" - clsx "^2.1.1" - prop-types "^15.8.1" - react-is "^18.3.1" - -"@mui/utils@^5.16.6": +"@mui/utils@^5.15.14", "@mui/utils@^5.16.5", "@mui/utils@^5.16.6": version "5.16.6" resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.16.6.tgz#905875bbc58d3dcc24531c3314a6807aba22a711" integrity sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA== @@ -723,10 +648,10 @@ prop-types "^15.8.1" react-is "^18.3.1" -"@mui/x-charts-vendor@7.12.0": - version "7.12.0" - resolved "https://registry.yarnpkg.com/@mui/x-charts-vendor/-/x-charts-vendor-7.12.0.tgz#d279b0bbc14c433a31fa7227ca04ca21f9df2c9a" - integrity sha512-05J1o0T3/7iNd0I4LnXLjGwxybzJN8hF2qr/n8XduJYWxYIXRbGsD/Y0nVnHh/EjIGe3aHqCYbt1Ob9E/RQUtQ== +"@mui/x-charts-vendor@7.12.1": + version "7.12.1" + resolved "https://registry.yarnpkg.com/@mui/x-charts-vendor/-/x-charts-vendor-7.12.1.tgz#e9aaa91e134ca23741f7ea018dfcc552f5690e7b" + integrity sha512-YlB/NNHCABeWPG8lAdN982XBkANE06WLJRk+nKNCoWLxAKTMFfbQd2+CM5GGtNclHs/fYHllxRKDWGWkewi0nA== dependencies: "@babel/runtime" "^7.25.0" "@types/d3-color" "^3.1.3" @@ -745,14 +670,14 @@ robust-predicates "^3.0.2" "@mui/x-charts@^7.11.0": - version "7.12.0" - resolved "https://registry.yarnpkg.com/@mui/x-charts/-/x-charts-7.12.0.tgz#9f7005019bbbd3bfc5dc52b32452300053029b55" - integrity sha512-N0Q83vXinNsdVJ4l8f1WcPdbsSxO7iOIvwn6URW/iCvDx6ZxZOxw2AKAerM5l2lPr9N3G8dYWMz5aG3DrVpNjg== + version "7.12.1" + resolved "https://registry.yarnpkg.com/@mui/x-charts/-/x-charts-7.12.1.tgz#3737e552dbe5162f34e421bfee74b534d10c7552" + integrity sha512-JAIltGAHourYFnRX5IyvUw8A3FV5j3aNb+m8tK+YXYq7GQoVTqHfgixrQ7BVCNoCZkH7sQwy7Q79Lo65xeB7XQ== dependencies: "@babel/runtime" "^7.25.0" "@mui/system" "^5.16.5" "@mui/utils" "^5.16.5" - "@mui/x-charts-vendor" "7.12.0" + "@mui/x-charts-vendor" "7.12.1" "@react-spring/rafz" "^9.7.4" "@react-spring/web" "^9.7.4" clsx "^2.1.1" @@ -836,38 +761,6 @@ "@react-spring/shared" "~9.7.4" "@react-spring/types" "~9.7.4" -"@refinedev/core@^4.53.0": - version "4.54.0" - resolved "https://registry.yarnpkg.com/@refinedev/core/-/core-4.54.0.tgz#c2277e2b2fdc14792f9cf85f57cee152e912add0" - integrity sha512-wGJXZnOXQBc1A4y374BBkfAoehOTurL4Ga5EYcRGqOsjoeiOVNnAsFHx90nmuZXKAxNhV4uyaC3rIgJk+PULGg== - dependencies: - "@refinedev/devtools-internal" "1.1.14" - "@tanstack/react-query" "^4.10.1" - lodash "^4.17.21" - lodash-es "^4.17.21" - papaparse "^5.3.0" - pluralize "^8.0.0" - qs "^6.10.1" - tslib "^2.6.2" - warn-once "^0.1.0" - -"@refinedev/devtools-internal@1.1.14": - version "1.1.14" - resolved "https://registry.yarnpkg.com/@refinedev/devtools-internal/-/devtools-internal-1.1.14.tgz#64a889d9aba077c1cf3f6636d8e512c65f9d3f2a" - integrity sha512-uIIAVA7sLoy0gm49nDGvIFRrJnAW1z8NOSKgYc1HoOBNvOLlnZ8TwPmHF2aJji/iQrwyOH9Z0gLKEvD/qIOPSg== - dependencies: - "@refinedev/devtools-shared" "1.1.12" - "@tanstack/react-query" "^4.10.1" - error-stack-parser "^2.1.4" - -"@refinedev/devtools-shared@1.1.12": - version "1.1.12" - resolved "https://registry.yarnpkg.com/@refinedev/devtools-shared/-/devtools-shared-1.1.12.tgz#e20e03e405422cccf49282500c2dbb9bcb852ada" - integrity sha512-F4fn6KTfETSFqQdP1Zvp4NHfoOUDYxdsx5BQUi0uFRQLm+gE3FfDBl4avyMCeE0xcuChF1qmmEXXrUBCLyj43w== - dependencies: - "@tanstack/react-query" "^4.10.1" - error-stack-parser "^2.1.4" - "@remix-run/router@1.19.0": version "1.19.0" resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.19.0.tgz#745dbffbce67f05386d57ca22c51dfd85c979593" @@ -982,19 +875,6 @@ dependencies: tslib "^2.4.0" -"@tanstack/query-core@4.36.1": - version "4.36.1" - resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.36.1.tgz#79f8c1a539d47c83104210be2388813a7af2e524" - integrity sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA== - -"@tanstack/react-query@^4.10.1": - version "4.36.1" - resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.36.1.tgz#acb589fab4085060e2e78013164868c9c785e5d2" - integrity sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw== - dependencies: - "@tanstack/query-core" "4.36.1" - use-sync-external-store "^1.2.0" - "@types/babel__core@^7.20.5": version "7.20.5" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" @@ -1263,9 +1143,9 @@ "@types/sizzle" "*" "@types/node@^20.12.10": - version "20.12.10" - resolved "https://registry.npmjs.org/@types/node/-/node-20.12.10.tgz" - integrity sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw== + version "20.14.15" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.15.tgz#e59477ab7bc7db1f80c85540bfd192a0becc588b" + integrity sha512-Fz1xDMCF/B00/tYSVMlmK7hVeLh7jE5f3B7X1/hmV0MJBwE27KlS7EvD/Yp+z1lm8mVhwV5w+n8jOZG8AfTlKw== dependencies: undici-types "~5.26.4" @@ -1301,16 +1181,16 @@ "@types/react" "*" "@types/react-transition-group@^4.4.0", "@types/react-transition-group@^4.4.10", "@types/react-transition-group@^4.4.6": - version "4.4.10" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.10.tgz#6ee71127bdab1f18f11ad8fb3322c6da27c327ac" - integrity sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q== + version "4.4.11" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.11.tgz#d963253a611d757de01ebb241143b1017d5d63d5" + integrity sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA== dependencies: "@types/react" "*" "@types/react@*", "@types/react@>=16.9.11", "@types/react@^18.2.66": - version "18.3.1" - resolved "https://registry.npmjs.org/@types/react/-/react-18.3.1.tgz" - integrity sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw== + version "18.3.3" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.3.tgz#9679020895318b0915d7a3ab004d92d33375c45f" + integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw== dependencies: "@types/prop-types" "*" csstype "^3.0.2" @@ -1331,31 +1211,29 @@ integrity sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q== "@typescript-eslint/eslint-plugin@^7.2.0": - version "7.8.0" - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.8.0.tgz" - integrity sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg== + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz#b16d3cf3ee76bf572fdf511e79c248bdec619ea3" + integrity sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw== dependencies: "@eslint-community/regexpp" "^4.10.0" - "@typescript-eslint/scope-manager" "7.8.0" - "@typescript-eslint/type-utils" "7.8.0" - "@typescript-eslint/utils" "7.8.0" - "@typescript-eslint/visitor-keys" "7.8.0" - debug "^4.3.4" + "@typescript-eslint/scope-manager" "7.18.0" + "@typescript-eslint/type-utils" "7.18.0" + "@typescript-eslint/utils" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" graphemer "^1.4.0" ignore "^5.3.1" natural-compare "^1.4.0" - semver "^7.6.0" ts-api-utils "^1.3.0" "@typescript-eslint/parser@^7.2.0": - version "7.8.0" - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.8.0.tgz" - integrity sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ== - dependencies: - "@typescript-eslint/scope-manager" "7.8.0" - "@typescript-eslint/types" "7.8.0" - "@typescript-eslint/typescript-estree" "7.8.0" - "@typescript-eslint/visitor-keys" "7.8.0" + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.18.0.tgz#83928d0f1b7f4afa974098c64b5ce6f9051f96a0" + integrity sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg== + dependencies: + "@typescript-eslint/scope-manager" "7.18.0" + "@typescript-eslint/types" "7.18.0" + "@typescript-eslint/typescript-estree" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" debug "^4.3.4" "@typescript-eslint/scope-manager@7.18.0": @@ -1429,27 +1307,15 @@ "@types/babel__core" "^7.20.5" react-refresh "^0.14.2" -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn@^8.9.0: - version "8.11.3" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz" - integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" + version "8.12.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== ajv@^6.12.4: version "6.12.6" @@ -1488,19 +1354,6 @@ anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -are-we-there-yet@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" - integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - argparse@^1.0.10: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" @@ -1606,30 +1459,15 @@ browserslist@^4.23.1: node-releases "^2.0.18" update-browserslist-db "^1.1.0" -call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - set-function-length "^1.2.1" - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -canvas@^2.11.2: - version "2.11.2" - resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.11.2.tgz#553d87b1e0228c7ac0fc72887c3adbac4abbd860" - integrity sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw== - dependencies: - "@mapbox/node-pre-gyp" "^1.0.0" - nan "^2.17.0" - simple-get "^3.0.3" +caniuse-lite@^1.0.30001646: + version "1.0.30001651" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz#52de59529e8b02b1aedcaaf5c05d9e23c0c28138" + integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg== chalk@^2.4.2: version "2.4.2" @@ -1648,13 +1486,6 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chart.js@^4.4.3: - version "4.4.3" - resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-4.4.3.tgz#3b2e11e7010fefa99b07d0349236f5098e5226ad" - integrity sha512-qK1gkGSRYcJzqrrzdR6a+I0vQ4/R+SoODXyAjscQ/4mzuNzySaMCd+hyVxitSY1+L2fjPD1Gbn+ibNqRmwQeLw== - dependencies: - "@kurkle/color" "^0.3.0" - cheerio-select@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" @@ -1695,17 +1526,12 @@ cheerio@1.0.0-rc.12: optionalDependencies: fsevents "~2.3.2" -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - classnames@^2.2.5, classnames@^2.2.6, classnames@^2.3.2: version "2.5.1" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== -clsx@^2.0.0, clsx@^2.1.0, clsx@^2.1.1: +clsx@^2.1.0, clsx@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999" integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== @@ -1731,17 +1557,12 @@ color-name@1.1.3: color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-support@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - commander@7: version "7.2.0" - resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== commander@^2.19.0: @@ -1766,11 +1587,6 @@ concat-with-sourcemaps@*: dependencies: source-map "^0.6.1" -console-control-strings@^1.0.0, console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - convert-source-map@^1.5.0: version "1.9.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" @@ -1945,7 +1761,7 @@ d3-hierarchy@3: d3-hierarchy@^1.1.5: version "1.1.9" - resolved "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83" integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== "d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3, d3-interpolate@^3.0.1: @@ -2054,7 +1870,7 @@ d3-zoom@3: d3@3.5.6: version "3.5.6" - resolved "https://registry.npmjs.org/d3/-/d3-3.5.6.tgz" + resolved "https://registry.yarnpkg.com/d3/-/d3-3.5.6.tgz#9451c651ca733fb9672c81fb7f2655164a73a42d" integrity sha512-i1x8Q3lGerBazuvWsImnUKrjfCdBnRnk8aq7hqOK/5+CAWJTt/zr9CaR1mlJf17oH8l/v4mOaDLU+F/l2dq1Vg== d3@^7.8.5: @@ -2098,34 +1914,18 @@ dangerously-set-html-content@^1.1.0: resolved "https://registry.yarnpkg.com/dangerously-set-html-content/-/dangerously-set-html-content-1.1.0.tgz#cffd83f2a8e3d59eca7302feecad1b068e94a4c3" integrity sha512-kUHpnYZ9EgT6BKUEgrgccg17Pa0YdI9MlWdDYeu49HIXYONCxZpKr6Tj24q+LwFmbmtL3IJ1Rvj+aaTTzFOepg== -debug@4, debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== +debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== dependencies: ms "2.1.2" -decompress-response@^4.2.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" - integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== - dependencies: - mimic-response "^2.0.0" - deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -define-data-property@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" - integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - gopd "^1.0.1" - delaunator@5, delaunator@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.1.tgz#39032b08053923e924d6094fe2cde1a99cc51278" @@ -2135,7 +1935,7 @@ delaunator@5, delaunator@^5.0.1: delaunator@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-4.0.1.tgz#3d779687f57919a7a418f8ab947d3bddb6846957" integrity sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag== delaunay-find@0.0.6: @@ -2145,21 +1945,11 @@ delaunay-find@0.0.6: dependencies: delaunator "^4.0.0" -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - dequal@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== -detect-libc@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" - integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== - dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -2217,10 +2007,10 @@ domutils@^3.0.1: domelementtype "^2.3.0" domhandler "^5.0.3" -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +electron-to-chromium@^1.5.4: + version "1.5.7" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.7.tgz#425d2a7f76ecfa564fdca1040d11fb1979851f3c" + integrity sha512-6FTNWIWMxMy/ZY6799nBlPtF1DFDQ6VQJ7yyDP27SJNt5lwtQ5ufqVvHylb3fdQefvRcgA3fKcFMJi9OLwBRNw== enquire.js@^2.1.6: version "2.1.6" @@ -2239,53 +2029,39 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -error-stack-parser@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" - integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== - dependencies: - stackframe "^1.3.4" - -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" - -es-errors@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" - integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== - -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" + +escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== escape-string-regexp@^1.0.5: version "1.0.5" @@ -2472,19 +2248,12 @@ flatted@^3.2.9: integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== framer-motion@^11.2.13: - version "11.3.23" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.3.23.tgz#4d05deee36498cfe93ed8f51ac7a45f409ef5513" - integrity sha512-jlUDZmNgB2i5vjze7Yezlne0OBSRVfk9J+5JXsujP3mogwCAhAQO+JBokWCPoO2XkNZOrPf7NuZKJtrNRgc/qQ== + version "11.3.27" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.3.27.tgz#6e10205beb18fe678ea4c0e26d79645c38955856" + integrity sha512-Uf72PFEZuei/1IeCmGJ236EIl6VUri7SLovtTGg/cOAzMHG01CXXg1aL3ofuTuYr6Sq1QALlcEDaTig0PXb4Dw== dependencies: tslib "^2.4.0" -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -2500,37 +2269,11 @@ function-bind@^1.1.2: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -gauge@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" - integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.2" - console-control-strings "^1.0.0" - has-unicode "^2.0.1" - object-assign "^4.1.1" - signal-exit "^3.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.2" - gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -2581,13 +2324,6 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - graphemer@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" @@ -2617,29 +2353,7 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" - integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== - dependencies: - es-define-property "^1.0.0" - -has-proto@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -hasown@^2.0.0, hasown@^2.0.2: +hasown@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== @@ -2668,14 +2382,6 @@ htmlparser2@^8.0.1: domutils "^3.0.1" entities "^4.4.0" -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - iconv-lite@0.6: version "0.6.3" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" @@ -2684,9 +2390,9 @@ iconv-lite@0.6: safer-buffer ">= 2.1.2 < 3.0.0" ignore@^5.2.0, ignore@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" - integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== immutable@^4.0.0: version "4.3.7" @@ -2714,7 +2420,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@~2.0.3: +inherits@2, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -2755,11 +2461,6 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -2889,11 +2590,6 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - lodash._reinterpolate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" @@ -2946,7 +2642,7 @@ lodash@4.17.4: lodash@^4.17.19, lodash@^4.17.21: version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: @@ -2963,30 +2659,6 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -make-cancellable-promise@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/make-cancellable-promise/-/make-cancellable-promise-1.3.2.tgz#993c8c8b79cff13c74fa93de0bd8a17fe66685c1" - integrity sha512-GCXh3bq/WuMbS+Ky4JBPW1hYTOU+znU+Q5m9Pu+pI8EoUqIHk9+tviOKC6/qhHh8C4/As3tzJ69IF32kdz85ww== - -make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-event-props@^1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/make-event-props/-/make-event-props-1.6.2.tgz#c8e0e48eb28b9b808730de38359f6341de7ec5a2" - integrity sha512-iDwf7mA03WPiR8QxvcVHmVWEPfMY1RZXerDVNCRYW7dUr2ppH3J58Rwb39/WG39yTZdRSxr3x+2v22tvI0VEvA== - markdown-it-ins@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-4.0.0.tgz#f4c805e6ba911f12793c0f99af3ebfda8f19021b" @@ -3092,11 +2764,6 @@ memoize-one@^6.0.0: resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== -merge-refs@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/merge-refs/-/merge-refs-1.3.0.tgz#65d7f8c5058917b9d1fc204ae4b9a727614d0119" - integrity sha512-nqXPXbso+1dcKDpPCXvwZyJILz+vSLqGGOnDrYHQYE+B8n9JTCekVLC65AfCpR4ggVyA/45Y0iR9LDyS2iI+zA== - merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" @@ -3110,11 +2777,6 @@ micromatch@^4.0.4: braces "^3.0.3" picomatch "^2.3.1" -mimic-response@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" - integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== - minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -3129,41 +2791,11 @@ minimatch@^9.0.4: dependencies: brace-expansion "^2.0.1" -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -nan@^2.17.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.20.0.tgz#08c5ea813dd54ed16e5bd6505bf42af4f7838ca3" - integrity sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw== - nanoid@^3.3.7: version "3.3.7" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" @@ -3174,19 +2806,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -node-fetch@^2.6.7: - version "2.7.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" - integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== - dependencies: - whatwg-url "^5.0.0" - -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" @@ -3198,16 +2821,6 @@ npm2url@^0.2.4: resolved "https://registry.yarnpkg.com/npm2url/-/npm2url-0.2.4.tgz#50a4fa97eb1a39882cb598a1e92775a1f27a7910" integrity sha512-arzGp/hQz0Ey+ZGhF64XVH7Xqwd+1Q/po5uGiBbzph8ebX6T0uvt3N7c1nBHQNsQVykQgHhqoRTX7JFcHecGuw== -npmlog@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" - integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== - dependencies: - are-we-there-yet "^2.0.0" - console-control-strings "^1.1.0" - gauge "^3.0.0" - set-blocking "^2.0.0" - nth-check@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" @@ -3220,12 +2833,7 @@ object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== - -once@^1.3.0, once@^1.3.1: +once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== @@ -3258,11 +2866,6 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -papaparse@^5.3.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/papaparse/-/papaparse-5.4.1.tgz#f45c0f871853578bd3a30f92d96fdcfb6ebea127" - integrity sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw== - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -3320,25 +2923,7 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -path2d@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/path2d/-/path2d-0.2.1.tgz#faf98e5e2222541805a6ac232adc026332330765" - integrity sha512-Fl2z/BHvkTNvkuBzYTpTuirHZg6wW9z8+4SND/3mDTEcYbbNKWAy21dz9D3ePNNwrrK8pqZO5vLPZ1hLF6T7XA== - -pdfjs-dist@4.4.168: - version "4.4.168" - resolved "https://registry.yarnpkg.com/pdfjs-dist/-/pdfjs-dist-4.4.168.tgz#4487716376a33c68753ed37f782ae91d1c9ef8fa" - integrity sha512-MbkAjpwka/dMHaCfQ75RY1FXX3IewBVu6NGZOcxerRFlaBiIkZmUoR0jotX5VUzYZEXAGzSFtknWs5xRKliXPA== - optionalDependencies: - canvas "^2.11.2" - path2d "^0.2.0" - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picocolors@^1.0.1: +picocolors@^1.0.0, picocolors@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== @@ -3348,18 +2933,13 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -pluralize@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" - integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== - -postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.40: + version "8.4.41" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681" + integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" + picocolors "^1.0.1" source-map-js "^1.2.0" prelude-ls@^1.2.1: @@ -3368,9 +2948,9 @@ prelude-ls@^1.2.1: integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^3.2.5: - version "3.2.5" - resolved "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz" - integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== + version "3.3.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" + integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== prismjs@^1.29.0: version "1.29.0" @@ -3409,26 +2989,19 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -qs@^6.10.1: - version "6.13.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" - integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== - dependencies: - side-channel "^1.0.6" - queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== react-bootstrap@^2.10.2: - version "2.10.2" - resolved "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.10.2.tgz" - integrity sha512-UvB7mRqQjivdZNxJNEA2yOQRB7L9N43nBnKc33K47+cH90/ujmnMwatTCwQLu83gLhrzAl8fsa6Lqig/KLghaA== + version "2.10.4" + resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-2.10.4.tgz#ed92f5f8225a44919a7707829bac879558b71b70" + integrity sha512-W3398nBM2CBfmGP2evneEO3ZZwEMPtHs72q++eNw60uDGDAdiGn0f9yNys91eo7/y8CTF5Ke1C0QO8JFVPU40Q== dependencies: - "@babel/runtime" "^7.22.5" + "@babel/runtime" "^7.24.7" "@restart/hooks" "^0.4.9" - "@restart/ui" "^1.6.8" + "@restart/ui" "^1.6.9" "@types/react-transition-group" "^4.4.6" classnames "^2.3.2" dom-helpers "^5.2.1" @@ -3439,11 +3012,6 @@ react-bootstrap@^2.10.2: uncontrollable "^7.2.1" warning "^4.0.3" -react-chartjs-2@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/react-chartjs-2/-/react-chartjs-2-5.2.0.tgz#43c1e3549071c00a1a083ecbd26c1ad34d385f5d" - integrity sha512-98iN5aguJyVSxp5U3CblRLH67J8gkfyGNbiK3c+l1QI/G4irHMPQw44aEPmjVag+YKTyQ260NcF82GTQ3bdscA== - react-collapsed@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/react-collapsed/-/react-collapsed-4.1.2.tgz#a82e5032eeecc085a05d6ed0be63bbc851f2a517" @@ -3486,20 +3054,6 @@ react-lifecycles-compat@^3.0.4: resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== -react-pdf@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/react-pdf/-/react-pdf-9.1.0.tgz#2a1456646d2eb4e4a246e83121d195775bbfa5dc" - integrity sha512-KhPDQE3QshkLdS3b48S5Bldv0N5flob6qwvsiADWdZOS5TMDaIrkRtEs+Dyl6ubRf2jTf9jWmFb6RjWu46lSSg== - dependencies: - clsx "^2.0.0" - dequal "^2.0.3" - make-cancellable-promise "^1.3.1" - make-event-props "^1.6.0" - merge-refs "^1.3.0" - pdfjs-dist "4.4.168" - tiny-invariant "^1.0.0" - warning "^4.0.0" - react-photo-album@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/react-photo-album/-/react-photo-album-2.4.1.tgz#9754b22501a157c3c1774260bd3da8a38d88cf4b" @@ -3568,15 +3122,6 @@ react@>=16, react@^18.2.0: dependencies: loose-envify "^1.1.0" -readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" @@ -3688,20 +3233,15 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.77.6: - version "1.77.6" - resolved "https://registry.npmjs.org/sass/-/sass-1.77.6.tgz" - integrity sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q== + version "1.77.8" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.8.tgz#9f18b449ea401759ef7ec1752a16373e296b52bd" + integrity sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -3714,34 +3254,15 @@ scheduler@^0.23.2: dependencies: loose-envify "^1.1.0" -semver@^6.0.0, semver@^6.3.1: +semver@^6.3.1: version "6.3.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.5, semver@^7.6.0: - version "7.6.0" - resolved "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz" - integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== - dependencies: - lru-cache "^6.0.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -set-function-length@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" +semver@^7.6.0: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== shebang-command@^2.0.0: version "2.0.0" @@ -3755,35 +3276,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -side-channel@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" - -signal-exit@^3.0.0: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.1.tgz#cc7ba77cfbe761036fbfce3d021af25fc5584d55" - integrity sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA== - dependencies: - decompress-response "^4.2.0" - once "^1.3.1" - simple-concat "^1.0.0" - slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -3809,35 +3301,14 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== -stackframe@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" - integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== - string-convert@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97" integrity sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A== -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" @@ -3878,18 +3349,6 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -tar@^6.1.11: - version "6.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" - integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -3903,11 +3362,6 @@ through2@^2.0.0: readable-stream "~2.3.6" xtend "~4.0.1" -tiny-invariant@^1.0.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" - integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== - tiny-warning@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" @@ -3925,17 +3379,12 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - ts-api-utils@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== -tslib@^2.4.0, tslib@^2.6.2: +tslib@^2.4.0: version "2.6.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== @@ -3953,9 +3402,9 @@ type-fest@^0.20.2: integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== typescript@^5.2.2: - version "5.4.5" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz" - integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + version "5.5.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" + integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== uc.micro@^2.0.0, uc.micro@^2.1.0: version "2.1.0" @@ -3982,6 +3431,14 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -3994,12 +3451,7 @@ use-isomorphic-layout-effect@^1.1.2: resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== -use-sync-external-store@^1.2.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz#c3b6390f3a30eba13200d2302dcdf1e7b57b2ef9" - integrity sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw== - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== @@ -4305,21 +3757,16 @@ victory@^37.0.2: victory-zoom-container "^37.0.2" vite@^5.2.0: - version "5.2.11" - resolved "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz" - integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== + version "5.4.0" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.0.tgz#11dca8a961369ba8b5cae42d068c7ad684d5370f" + integrity sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" + esbuild "^0.21.3" + postcss "^8.4.40" rollup "^4.13.0" optionalDependencies: fsevents "~2.3.3" -warn-once@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.1.tgz#952088f4fb56896e73fd4e6a3767272a3fccce43" - integrity sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q== - warning@^4.0.0, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" @@ -4327,19 +3774,6 @@ warning@^4.0.0, warning@^4.0.3: dependencies: loose-envify "^1.0.0" -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -4347,13 +3781,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -wide-align@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - word-wrap@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" @@ -4374,11 +3801,6 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - yaml@^1.10.0: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"