├── .env ├── .env.example ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── greetings.yml │ └── json-check.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── data └── users.json ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── faizan.png ├── favicon.ico ├── next.svg ├── thirteen.svg ├── vercel.svg ├── x_large.png ├── x_logo_dark.png └── x_nobg.png ├── src ├── ThemeContext.js ├── ThemeProvider.js ├── components │ ├── Card.js │ ├── LoadingCard.js │ └── Spinner.js ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ ├── explore.js │ │ ├── user.js │ │ └── users.js │ └── index.js └── styles │ └── globals.css ├── tailwind.config.js └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | # Environment variables declared in this file are automatically made available to Prisma. 2 | # See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema 3 | 4 | # Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. 5 | # See the documentation for all the connection string options: https://pris.ly/d/connection-strings 6 | 7 | DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public" -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL=postgres://user:password@host:port/database_name -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: hellofaizan 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## What does this PR do? 2 | 3 | 4 | 5 | Fixes #(issue) 6 | 7 | 8 | 9 | 10 | ## Type of change 11 | 12 | 13 | 14 | - Bug fix (non-breaking change which fixes an issue) 15 | - Chore (refactoring code, technical debt, workflow improvements) 16 | - New feature (non-breaking change which adds functionality) 17 | - Breaking change (fix or feature that would cause existing functionality to not work as expected) 18 | - This change requires a documentation update 19 | 20 | ## How should this be tested? 21 | 22 | 23 | 24 | - [ ] Test A 25 | - [ ] Test B 26 | 27 | ## Mandatory Tasks 28 | 29 | - [ ] Make sure you have self-reviewed the code. A decent size PR without self-review might be rejected. 30 | 31 | ## Checklist 32 | 33 | 34 | 35 | - I haven't read the [contributing guide](https://github.com/hellofaizan/xprofile/blob/main/CONTRIBUTING.MD) 36 | - My code doesn't follow the style guidelines of this project 37 | - I haven't commented my code, particularly in hard-to-understand areas 38 | - I haven't checked if my PR needs changes to the documentation 39 | - I haven't checked if my changes generate no new warnings 40 | - I haven't added tests that prove my fix is effective or that my feature works 41 | - I haven't checked if new and existing unit tests pass locally with my changes -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: 'Greetings' 2 | 3 | on: 4 | fork: 5 | push: 6 | branches: [main] 7 | issues: 8 | types: [opened] 9 | pull_request_target: 10 | types: [opened] 11 | 12 | jobs: 13 | welcome: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v1 17 | - uses: EddieHubCommunity/gh-action-community/src/welcome@main 18 | with: 19 | github-token: ${{ secrets.GITHUB_TOKEN }} 20 | issue-message: "Welcome, @${{ github.actor }}! Soon the maintainers/owner will review it and provide you with feedback/suggestions. We're thrilled to dive into it and work together to find a solution." 21 | pr-message: 'Great job, @${{ github.actor }}! 🎉 Thank you for opening a pull request. Your contribution is valuable and we appreciate your efforts to improve our project. Drop a ⭐ Star to the repository' 22 | footer: 'Actually we been working on V2 of XProfile, want to join us [Join our Discord - Youth Icon](https://l.hellofaizan.me/discord).' 23 | -------------------------------------------------------------------------------- /.github/workflows/json-check.yml: -------------------------------------------------------------------------------- 1 | name: JSON check 2 | 3 | on: 4 | pull_request: 5 | paths: 6 | - "data/users.json" 7 | 8 | jobs: 9 | check: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | - name: json-syntax-check 14 | uses: limitusus/json-syntax-check@v2 15 | with: 16 | pattern: "\\.json$" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | faizancurious@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guide 2 | 3 | ## Issues & Pull Requests (not for Profiles) 4 | 5 | ### Creating an Issue 6 | 7 | Before **creating** an Issue for `features`/`bugs`/`improvements` please follow these steps: 8 | 9 | > _Note: this does not apply to creating/editing your profile_ 10 | 11 | 1. search existing Issues before creating a new issue (has someone raised this already) 12 | 1. if it doesn't exist create a new issue giving as much context as possible (please select the correct Issue type, for example `bug` or `feature`) 13 | 1. if you wish to work on the Issue once it has been opened, please include this in your Issue description 14 | 15 | ### Working on an Issue (get it assigned to you) 16 | 17 | Before working on an existing Issue please follow these steps: 18 | 19 | 1. only ask to be assigned 1 issue at a time 20 | 1. comment asking for the issue to be assigned to you (do not tag maintainers on GitHub or Discord as all maintainers receive your comment notifications) 21 | 1. after the Issue is assigned to you, you can start working on it 22 | 1. **only** start working on this Issue (and open a Pull Request) when it has been assigned to you - this will prevent confusion, multiple people working on the same issue and work not being used 23 | 1. do **not** enable GitHub Actions on your fork 24 | 1. reference the Issue in your Pull Request (for example `closes #123`) 25 | 26 | > Notes: 27 | > 28 | > - check the `Assignees` box at the top of the page to see if the issue has been assigned to someone else before requesting this be assigned to you 29 | > - if an Issue is unclear, ask questions to get more clarity before asking to have the Issue assigned to you 30 | > - only request to be assigned an Issue if you know how to work on it 31 | > - an Issue can be assigned to multiple people, if you all agree to collaborate on the issue (the Pull Request can contain commits from different collaborators) 32 | > - any Issues that have no activity after 2 weeks will be unassigned and re-assigned to someone else 33 | 34 | ## Reviewing Pull Requests 35 | 36 | We welcome everyone to review Pull Requests, it is a great way to learn, network and support each other. 37 | 38 | ### DOs 39 | 40 | - be kind and respectful, we use inclusive, gender neutral language (for example `they/them` instead of `guy/man`) 41 | - use inline comments to explain your suggestions 42 | - use inline suggestions to propose changes 43 | 44 | ### DON'Ts 45 | 46 | - do not be rude, disrespectful or aggressive 47 | - do not repeat feedback, this creates more noise than value (check the existing conversation), use GitHub reactions if you agree/disagree with a comment 48 | - do not blindly approve pull requests to improve your GitHub contributors graph 49 | 50 | --- 51 | 52 | Please refer to the `Contributing` section of the website's documentation for more details https://x.hellofaizan.me 53 | 54 | --- 55 | 56 | > Note: Persistent non-compliance with this Contributing Guide can lead to a warning and/or ban under the [Code of Conduct](https://github.com/EddieHubCommunity/BioDrop/blob/main/CODE_OF_CONDUCT.md) 57 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Mohammad Faizan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 𝕏 Profile Card 2 | 3 | > [!NOTE] 4 | > Working on version 2 with a lot of features. [Have a look by clicking here](https://github.com/Youth-Icon/xprofile) 5 | > also [join Discord](https://discord.gg/vUHMxPvege) to discuss upcoming features 6 | 7 | A website to list your Twitter ( 𝕏 ) and Github profile to the world 8 | 9 | 10 | ![image](https://github.com/hellofaizan/xprofile/assets/84437051/5b463c7d-4488-4743-8e56-f0cf31c6ba3d) 11 | 12 | 13 | 14 | ## Languages/Tools 15 | 16 | 17 | 18 | 19 | 20 | ## 👩🏽‍💻 Demo 21 | 22 | Check out the website: [𝕏 Profiles](https://x.hellofaizan.me) 23 | 24 | ## 👇🏽 File Format 25 | ```json 26 | ,{ 27 | "username": "hellofaizaan", 28 | "name": "Hello Faizan", 29 | "github": "hellofaizan", 30 | "banner_color": "#ff2500", 31 | "about": "I am a full stack developer and a competitive programmer. I love Chess♟️ also https://hellofaizan.me/" 32 | } 33 | ``` 34 | 35 | | Key | Value | 36 | | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | 37 | | username | This value should be your Twitter (𝕏) username.| 38 | | name | This value should be your real name. | 39 | | github | The value should be your Github username | 40 | | banner_color | The value should contain any hex code for background just like Twitter eg: #fff, #000 | 41 | | about | Short simple `max 2 lines` about yourself, You can also include links which are clickable | 42 | 43 | 44 | ## 🛠️ Installation Steps 45 | 46 | ### 🔥 Add your profile using 47 | 48 | 1. Fork the project: 49 | 50 | - [Fork](https://github.com/hellofaizan/xprofile/fork) the project. Click on the icon in the top right to get started. 51 | 52 | 2. Create a New Branch: 53 | 54 | - On your new repository's page, click the gray `main` button in the upper left to reveal a dropdown menu. 55 | - Enter the name of your new branch in the text box. (Branch names usually make a reference to what is being changed. Example: `profileAdd`). 56 | - Click on `Create branch ` and this will automatically take you to your new branch. You can make edits on the main branch, but this may cause issues down the line. Best practice is to create a new branch for each separate issue you work on. That way, your `main` branch remains in sync with `xprofile` `main` branch. 57 | 58 | 3. Navigate to file: 59 | 60 | - Navigate to the `data/users.json` file. 61 | 62 | 4. Edit: 63 | 64 | - On the top right of the JSON file, click on the pencil icon to edit the file by adding your image, name and username. 65 | - You can add JSON object wherever you want in the file, it will automatically arrange according to alphabetical order. 66 | - After editing the JSON file, add a commit message and click on the green button saying "Commit Changes". Make sure you have selected the branch you have created. 67 | 68 | 5. Raise a Pull Request: 69 | 70 | - And finally, create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)! 71 | - Great job! You did it! 72 | - Remember to PR in ```addProfile branch of repository``` 73 | 74 | 75 | ## 🚀 Running locally 76 | To run locally, just `cd` into the project and run the following commands to run node modules and serve the website locally. 77 | ```bash 78 | yarn 79 | ``` 80 | 81 | ```bash 82 | yarn run dev 83 | ``` 84 | 85 | ## 💪🏽 Contributors 86 | 87 | Thank you all so much for spending your time to improve 𝕏 Profile. 88 | 89 | 90 | 91 | 92 | 93 | ## Repository Activity 94 | 95 | ![Alt](https://repobeats.axiom.co/api/embed/3c905c2b26fc447eb080acba085a899468acd7e3.svg "Repobeats analytics image") 96 | 97 | ## Star History 98 | 99 | 100 | 101 | 102 | 103 | Star History Chart 104 | 105 | 106 | 107 | 108 | # Join Discord 💻 109 | 110 | 111 | 112 | 113 |
114 | 115 | ## Drop a ⭐ if you like this project 116 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | - Please do not create GitHub issues to report security vulnerabilities. 4 | - Instead, report them via . 5 | -------------------------------------------------------------------------------- /data/users.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "username": "aman_sahu", 4 | "name": "Aman Sahu", 5 | "github": "AMAN2001SAHU", 6 | "banner_color": "#ff2500", 7 | "about": "I'm a aspiring frontend developer" 8 | }, 9 | { 10 | "username": "therahmaan", 11 | "name": "Aqueel ur rahman Khan", 12 | "github": "Rahmaaaan", 13 | "banner_color": "#1B191A", 14 | "about": "I am a full stack developer and a competitive programmer visit my portfolio https://portfolio-nine-silk-97.vercel.app/" 15 | }, 16 | { 17 | "username": "shafi_mohammad_", 18 | "name": "Shafi Mohammad", 19 | "github": "shafimohammad09", 20 | "banner_color": "#ff2500", 21 | "about": "I'm a MERN Full Stack Web Developer -->https://www.linkedin.com/in/shafi-mohammad9/" 22 | }, 23 | { 24 | "username": "jay009", 25 | "name": "Jay Thakur", 26 | "github": "Jay90123", 27 | "banner_color": "#ff2500", 28 | "about": "I am a python programmer and also have interest in cloud compputing" 29 | }, 30 | { 31 | "username": "aatifcs13", 32 | "name": "Aatif Arsalan", 33 | "github": "aatifcs13", 34 | "banner_color": "#ff2500", 35 | "about": "Cricket🏏 Coding☕ Boxing🥊 Tech🧑‍💻 <> I'm Web Dev Enthusiast. Find me => https://aatif-arsalan.netlify.app/" 36 | }, 37 | { 38 | "username": "VimalDu88372352", 39 | "name": "Vimal Dubey", 40 | "github": "vimal-Dubey", 41 | "banner_color": "#ff2500", 42 | "about": "I am a Blockchain Developer developer" 43 | }, 44 | { 45 | "username": "gprs1022", 46 | "name": "Pradeep Singh", 47 | "github": "gprs1022", 48 | "banner_color": "#ff2500", 49 | "about": "I am a Mobile App developer" 50 | }, 51 | { 52 | "username": "Veersen_2001", 53 | "name": "Veerbahadur Sen", 54 | "github": "Veersen2001", 55 | "banner_color": "#2BEBF4", 56 | "about": "I am a Full Stack Web Developer" 57 | }, 58 | { 59 | "username": "aumiidutta", 60 | "name": "Saumili Dutta", 61 | "github": "aumii01codes", 62 | "banner_color": "#800000", 63 | "about": "Final year undergraduate student preparing to be a front-end developer, also co-manager of OS community" 64 | }, 65 | { 66 | "username": "Muskan_s2004", 67 | "name": "Muskan Shukla", 68 | "github": "Muskan0739", 69 | "banner_color": "#ff2500", 70 | "about": "I am a Java Developer" 71 | }, 72 | { 73 | "username": "sahdev04", 74 | "name": "Sahdev Patel", 75 | "github": "sahdev04", 76 | "banner_color": "#2BEBF4", 77 | "about": "Hello I am Sahdev student co-ordinator NAAC." 78 | }, 79 | { 80 | "username": "avinash03082003", 81 | "name": "Avinash Agrawal", 82 | "github": "Avinash0308", 83 | "banner_color": "#2BEBF4", 84 | "about": "Main Kaun Hoon, Main Kya Hoon, Main bhi aap hoon." 85 | }, 86 | { 87 | "username": "anishaga", 88 | "name": "Anish Agarwal", 89 | "github": "anishaga", 90 | "banner_color": "#09458f", 91 | "about": "Developer 👨🏻‍💻 " 92 | }, 93 | { 94 | "username": "trapti77", 95 | "name": "trapti patel", 96 | "github": "trapti77", 97 | "banner_color": "#ff2500", 98 | "about": "I am frontend developer and also learnig bakend development.i'm competitive programmer ." 99 | }, 100 | { 101 | "username": "_jinx_vi_", 102 | "name": "Adarsh", 103 | "github": "jinx-vi-0", 104 | "banner_color": "#800080", 105 | "about": "EAT - SLEEP - CODE - REPEAT" 106 | }, 107 | { 108 | "username": "geekyAyushi", 109 | "name": "Ayushi Choudhary", 110 | "github": "ayushichoudhary-19", 111 | "banner_color": "rgb(238, 255, 142)", 112 | "about": "Front-End Developer learning React👩‍💻| CS @IGDTUW 🏢 | Mentor at @GDSC |Anime🩵 |" 113 | }, 114 | { 115 | "username": "heyhimansh", 116 | "name": "Himanshu Rathore", 117 | "github": "heyhimansh", 118 | "banner_color": "#b1ff91", 119 | "about": "CP | Navigating the Full-stack Universe 👀🚀" 120 | }, 121 | { 122 | "username": "Adonijah_Kimut", 123 | "name": "Adonijah Kiplimo", 124 | "github": "adonijah01", 125 | "banner_color": "#0085ca", 126 | "about": "Full-Stack Developer who uses MERN Stack " 127 | }, 128 | { 129 | "username": "Brandon4Tenn", 130 | "name": "Brandon Thomas", 131 | "github": "BThomas22tech", 132 | "banner_color": "#0085ca", 133 | "about": "Full-Stack Python Developer who loves to play the piano🎶 " 134 | }, 135 | { 136 | "username": "hellofaizaan", 137 | "name": "Hello Faizan", 138 | "github": "hellofaizan", 139 | "banner_color": "#ff2500", 140 | "about": "Chess♟ Coding☕ Football⚽ Tech🧑‍💻 <> I do random stuff just to make other person laugh. Find me => https://hellofaizan.me/" 141 | }, 142 | { 143 | "username": "zainab_nisa_", 144 | "name": "Zainab Nisa", 145 | "github": "ZainabNisa786", 146 | "banner_color": "#f5f5f5", 147 | "about": "I'm زينب | • learning Code • ui/ux-design" 148 | }, 149 | { 150 | "username": "Esemonday1", 151 | "name": "Ese Monday", 152 | "github": "ESE-MONDAY", 153 | "banner_color": "#2BEBF4", 154 | "about": "Frontend Developer | Technical Writer | Nextjs, TypeScript , Tailwindcss Web3 | Building the digital world one project at a time 🚀💻" 155 | }, 156 | { 157 | "username": "iaminfinil", 158 | "name": "Infinil", 159 | "github": "infinil", 160 | "banner_color": "#800080", 161 | "about": "Built Animenetic & SpaceVoid • Solo Developer 👨🏻‍💻 • Anime Otaku 📺 • Space Enthusiast 🚀 • CSE Student 👨🏻‍🎓" 162 | }, 163 | { 164 | "username": "nindri_mott", 165 | "name": "Ikhlaq Malik", 166 | "github": "ikhlaqmalik13", 167 | "banner_color": "#000080", 168 | "about": "1+1=10, 19: 48 | Koshur | Software Developer | CSE AMU | Lost in code, electronics, machines, graphs." 169 | }, 170 | { 171 | "username": "Neutron975", 172 | "name": "Shiva", 173 | "github": "Shiva953", 174 | "banner_color": "#3b41ff", 175 | "about": "Paradoxically Naive Rational Optimist | Likes Technology,Open Source and Exploring Finance | Loves Podcasts, Books and Memes" 176 | }, 177 | { 178 | "username": "bhavaygarg", 179 | "name": "Bhavay Garg", 180 | "github": "0takugod", 181 | "banner_color": "#48D1CC", 182 | "about": "CSE + Games + Anime + Open source = Me. | I love coffee. " 183 | }, 184 | { 185 | "username": "farfa7886", 186 | "name": "Farfa", 187 | "github": "Farfa7886", 188 | "banner_color": "#09458f", 189 | "about": "15 y/o kid from Italy that has a passion for programming" 190 | }, 191 | { 192 | "username": "Sxamoecode", 193 | "name": "Samuel", 194 | "github": "Sxamoecode", 195 | "banner_color": "#86098f", 196 | "about": "Software engineer | Backend development | Problem Solver | Loves contributing to Open Source && Collaborating" 197 | }, 198 | { 199 | "username": "okkattiboy", 200 | "name": "Akshara Hegde", 201 | "github": "aksharahegde", 202 | "banner_color": "#00dbda", 203 | "about": "Senior Fullstack Engineer | Writer | Visit aksharahegde.xyz" 204 | }, 205 | { 206 | "username": "BacotMath", 207 | "name": "Bang Domath", 208 | "github": "DomathID", 209 | "banner_color": "#008080", 210 | "about": "I I'am just an NPC | Anime Enthusiast | Write yukinoshita.web.id" 211 | }, 212 | { 213 | "username": "dev_mannuu", 214 | "name": "Mannu", 215 | "github": "MannuVilasara", 216 | "banner_color": "#ff1493", 217 | "about": "Mannu | 16yo from India currenty working in cyber security | Chess, Anime, Coffee | Cats 🐈‍⬛ | Community Manager (Moderator at DEV communtiy)" 218 | }, 219 | { 220 | "username": "prabhurupe", 221 | "name": "Rupesh Prabhu", 222 | "github": "rupeshprabhu", 223 | "banner_color": "#00dbda", 224 | "about": "Rupesh Prabhu | Frontend Developer currently in India | Loves to review and understand technology" 225 | }, 226 | { 227 | "username": "GurnavChaudhary", 228 | "name": "Gurnav chaudhary", 229 | "github": "Gurnav224", 230 | "banner_color": "#00dbda", 231 | "about": "I'm an aspiring full-stack MERN developer from India, currently in my final year of BCA studies" 232 | }, 233 | { 234 | "username": "salman_codes", 235 | "name": "Salman Akhtar", 236 | "github": "salmanakhtar57", 237 | "banner_color": "#00dbda", 238 | "about": "Web Developer | Machine Learning Enthusiast | Tech Writer" 239 | }, 240 | { 241 | "username": "AsharMallick86", 242 | "name": "Ashar Mallick", 243 | "github": "AsharMallick", 244 | "banner_color": "#d4d319", 245 | "about": "I'm an aspiring full-stack MERN developer from Pakistan who converts coffee into code" 246 | }, 247 | { 248 | "username": "abdulqu87130365", 249 | "name": "Abdul Quadir", 250 | "github": "cdxgh", 251 | "banner_color": "#ff2501", 252 | "about": " Coding☕ cricket Tech🧑‍💻. Innovative Developer & Entrepreneur shaping impactful tech solutions for a better future. https://abdulquadir-portfolio-website.netlify.app/" 253 | }, 254 | { 255 | "username": "ibrahimSetup", 256 | "name": "Ibrahim", 257 | "github": "adebayoibrahim", 258 | "banner_color": "#212121", 259 | "about": " An ambitious web programmer. https://ibrahim-setup.netlify.app/" 260 | }, 261 | { 262 | "username": "joeimproves", 263 | "name": "Joe", 264 | "github": "JoePelusoImproves", 265 | "banner_color": "#e62d34", 266 | "about": " An Optimistic Futurist Committed To Changing The World One Line of Code, One Perspective, and One Person At A Time! GT Industrial Eng. 2014 and GT Computer Science 2026 (in progress)" 267 | }, 268 | { 269 | "username": "Sarcas_tik", 270 | "name": "Pratik Warhade", 271 | "github": "nexuspy", 272 | "banner_color": "#BC7AF9", 273 | "about": "Making magic happen through lines of code ✨" 274 | }, 275 | { 276 | "username": "Hahaha138189188", 277 | "name": "Hashir Kashif", 278 | "github": "ihashir", 279 | "banner_color": "#f57f3b", 280 | "about": "A passionate coder making futuristic projects for the world." 281 | }, 282 | { 283 | "username": "anonymous_403__", 284 | "name": "404", 285 | "github": "DUMBANIKET", 286 | "banner_color": "#212121", 287 | "about": "A vim user" 288 | }, 289 | { 290 | "username": "charan_kodali", 291 | "name": "Charan", 292 | "github": "charankodali", 293 | "banner_color": "#f2f2f2", 294 | "about": "Undergraduate🦀 | Looking into the Front-end 👀🤺" 295 | }, 296 | { 297 | "username": "sueii__", 298 | "name": "Folarin Raphael", 299 | "github": "darksuei", 300 | "banner_color": "#0579C3", 301 | "about": "Passionate FullStack Software developer. I love cats ✨" 302 | }, 303 | { 304 | "username": "nrmnqdds", 305 | "name": "NURIMAN QUDDUS", 306 | "github": "qryskalyst20", 307 | "banner_color": "#00FFFF", 308 | "about": "Next.js Dev" 309 | }, 310 | { 311 | "username": "TammyAlok2", 312 | "name": "Alok Tamrakar ", 313 | "github": "TammyAlok2", 314 | "banner_color": "#ff2500", 315 | "about": "I am a full stack developer and a competitive programmer. I love Chess♟️ also I am backend lead of Adsc" 316 | }, 317 | { 318 | "username": "rancho2002", 319 | "name": "Arijit Ghosh", 320 | "github": "rancho2002", 321 | "banner_color": "#0579C3", 322 | "about": "I am a python programmer and a lamp stack developer" 323 | }, 324 | { 325 | "username": "Divya4879", 326 | "name": "Divya", 327 | "github": "Divya4879", 328 | "banner_color": "#0579C3", 329 | "about": "I am a python programmer , web developer and I am learning data analysis at the moment." 330 | }, 331 | { 332 | "username": "princedncg", 333 | "name": "Prince Kumar", 334 | "github": "prince-63", 335 | "banner_color": "#abeb7a", 336 | "about": "I am a software developer and microsoft learn student ambassador" 337 | }, 338 | { 339 | "username": "ashu_rai_06", 340 | "name": "Ashutosh Rai", 341 | "github": "Ashutosh0602", 342 | "banner_color": "#C2442D", 343 | "about": "Full Stack Javascript | Python Developer" 344 | }, 345 | { 346 | "username": "AnkurGattani", 347 | "name": "Ankur Gattani", 348 | "github": "AnkurGattani", 349 | "banner_color": "#71c4cf", 350 | "about": "Java Developer" 351 | }, 352 | { 353 | "username": "_sudhanshu97", 354 | "name": "Sudhanshu Singh", 355 | "github": "sudhanshusingh-g", 356 | "banner_color": "#ffb000", 357 | "about": "Frontend Developer | Open Source Contributor | https://sudhanshusingh-g.github.io./" 358 | }, 359 | { 360 | "username": "ArnabGH62449074", 361 | "name": "Arnab Ghosh", 362 | "github": "ArnabBCA", 363 | "banner_color": "#5222c9", 364 | "about": "I am a Full Stack (MERN) React.js Web Developer" 365 | }, 366 | { 367 | "username": "AkshajAgarwal6", 368 | "name": "Akshaj Agarwal", 369 | "github": "Akshaj1017", 370 | "banner_color": "#0155FE", 371 | "about": "I am an AI/ML enthusiast who has contributed to the field of data science and data analytics." 372 | }, 373 | { 374 | "username": "khuzhi_sharma", 375 | "name": "Khushi Sharma", 376 | "github": "khushi2762", 377 | "banner_color": "#DEA6E4", 378 | "about": "Driven by a desire to create positive change through technology, I am on a mission to become a software engineer." 379 | }, 380 | { 381 | "username": "gaurav911", 382 | "name": "Gaurav Yadav", 383 | "github": "gaurav9117", 384 | "banner_color": "#323273", 385 | "about": "MERN developer | ReactJS 🚀 MongoDB 📊 Express 🛠️ NodeJS 💻 | AR Developer | MetaSpark " 386 | }, 387 | { 388 | "username": "donib_irakihda", 389 | "name": "Binod Adhikari", 390 | "github": "iDonib", 391 | "banner_color": "#d7e5ff", 392 | "about": "Node JS Backend Developer | https://binodadk.com.np" 393 | }, 394 | { 395 | "username": "Devanshu_Koli", 396 | "name": "Devanshu Koli", 397 | "github": "Devanshukoli", 398 | "banner_color": "#3b41ff", 399 | "about": "I am Back-End Engineer and Also a Open-Source contributor. " 400 | }, 401 | { 402 | "username": "aman_rana0", 403 | "name": "Aman Raj Rana", 404 | "github": "amanrajranra", 405 | "banner_color": "#b931fc", 406 | "about": "MERN developer | ReactJS 🚀 MongoDB 📊 Express 🛠️ NodeJS 💻 | Clean code enthusiast | Agile methodologies | Let's build amazing web apps! 🌐" 407 | }, 408 | { 409 | "username": "united_emotion", 410 | "name": "Abhay", 411 | "github": "darkbits018", 412 | "banner_color": "#b931fc", 413 | "about": "Student, Aspiring Developer, Web 3 and Open Source Enthusiasist" 414 | }, 415 | { 416 | "username": "PrathmKusalkr1", 417 | "name": "Prathamesh Kusalkar", 418 | "github": "KPrathamesh-27", 419 | "banner_color": "#281d6c", 420 | "about": "Hi 👋 I'am Open Source + MERN + Coffee => Me 👨‍💻 | https://www.linkedin.com/in/prathamesh-kusalkar-05788a219/" 421 | }, 422 | { 423 | "username": "SanketNaitam1", 424 | "name": "Sanket Naitam", 425 | "github": "SankN22", 426 | "banner_color": "#481d6c", 427 | "about": "A passionate geek with a strong ambition to change the world through coding. | https://www.linkedin.com/in/sanket-naitam-8aba47207/ ;)." 428 | }, 429 | { 430 | "username": "KomSenapati", 431 | "name": "K.om Senapati", 432 | "github": "kom-senapati", 433 | "banner_color": "#0579C3", 434 | "about": "I am a Python programmer. I love open source also https://linktr.ee/kom_senapati" 435 | }, 436 | { 437 | "username": "harshsinghcs", 438 | "name": "Harsh Singh", 439 | "github": "harshsinghcs", 440 | "banner_color": "#ff2500", 441 | "about": "I am a full stack developer and a competitive programmer. https://linktr.ee/harshsinghcs" 442 | }, 443 | { 444 | "username": "SharmaNishant_", 445 | "name": "Nishant Sharma", 446 | "github": "NishantSharma48", 447 | "banner_color": "#E4E4E4", 448 | "about": "Student, Aspiring software Developer, Web 3 and Open Source Enthusiasist My linkedin https://www.linkedin.com/in/nishant-sharma48/" 449 | }, 450 | { 451 | "username": "FabianCristancho", 452 | "name": "Fabian Cristancho", 453 | "github": "FabianCristancho", 454 | "banner_color": "#1a78a3", 455 | "about": "Professional in software development, and I like to create multiple apps. My link is https://github.com/FabianCristancho" 456 | }, 457 | { 458 | "username": "jcquieta_158", 459 | "name": "John Carl Quieta", 460 | "github": "jcgaming-official", 461 | "banner_color": "#00dbda", 462 | "about": "An Android Modder who loves to Reverse Engineer the Applications. Check it out also https://jcquieta.is-a.dev/" 463 | }, 464 | { 465 | "username": "ItsVinjk", 466 | "name": "Vineet Karni", 467 | "github": "vineetjk", 468 | "banner_color": "#F4C430", 469 | "about": "🌟 Crafting digital dreams in the Garden City of India, one line of code at a time! 💻✨" 470 | }, 471 | { 472 | "username": "Psycopomp1051", 473 | "name": "Psycopomp1051", 474 | "github": "Psycopomp1051", 475 | "banner_color": "#ff2500", 476 | "about": "I am a full stack developer." 477 | }, 478 | { 479 | "username": "VICKYTHOMBRE", 480 | "name": "Vivek Thombre", 481 | "github": "VICKYTHOMBRE", 482 | "banner_color": "#ff2500", 483 | "about": "I am a ethical hacker" 484 | }, 485 | { 486 | "username": "oyepriyansh", 487 | "name": "Priyansh Prajapat", 488 | "github": "oyepriyansh", 489 | "banner_color": "#ff2500", 490 | "about": "HTML Hacker | https://oyepriyansh.github.io" 491 | }, 492 | { 493 | "username": "ariyoaresa", 494 | "name": "Olatunji-Aresa Ariyo", 495 | "github": "ariyoaresa", 496 | "banner_color": "#ffff6aa9", 497 | "about": "Frontend website developer | https://ariyoaresa.github.io/portfolio" 498 | }, 499 | { 500 | "username": "harjasae2001", 501 | "name": "Harjas Singh", 502 | "github": "harjasae2001", 503 | "banner_color": "#D88373", 504 | "about": "Passionate web developer and tech enthusiast. Crafting stunning websites and dynamic applications. Meticulous problem-solver, turning complexity into elegance." 505 | } 506 | ] 507 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/*": ["./src/*"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = { 7 | images: { 8 | remotePatterns: [ 9 | { 10 | protocol: 'https', 11 | hostname: 'images-ext-1.discordapp.net', 12 | port: '', 13 | pathname: '/**', 14 | }, 15 | { 16 | protocol: 'https', 17 | hostname: 'avatars.githubusercontent.com', 18 | port: '', 19 | pathname: '/**', 20 | }, 21 | { 22 | protocol: 'https', 23 | hostname: 'i.imgur.com', 24 | port: '', 25 | pathname: '/**', 26 | }, 27 | ], 28 | }, 29 | } 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "apis", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@next/font": "13.1.6", 13 | "@nextui-org/react": "^1.0.0-beta.12", 14 | "@tailwindcss/forms": "^0.5.4", 15 | "@tailwindcss/line-clamp": "^0.4.4", 16 | "@vercel/analytics": "^1.0.1", 17 | "axios": "^1.3.4", 18 | "bootstrap-icons": "^1.10.3", 19 | "dotenv": "^16.0.3", 20 | "eslint": "8.33.0", 21 | "eslint-config-next": "13.1.6", 22 | "framer-motion": "^10.1.0", 23 | "next": "13.1.6", 24 | "pg": "^8.10.0", 25 | "react": "18.2.0", 26 | "react-dom": "18.2.0", 27 | "react-infinite-scroll-component": "^6.1.0", 28 | "swr": "^2.2.0" 29 | }, 30 | "devDependencies": { 31 | "autoprefixer": "^10.4.13", 32 | "postcss": "^8.4.21", 33 | "tailwindcss": "^3.2.6" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/faizan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellofaizan/xprofile/e36d7050e6c88ca253488bb0be3efee6060bf823/public/faizan.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellofaizan/xprofile/e36d7050e6c88ca253488bb0be3efee6060bf823/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/x_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellofaizan/xprofile/e36d7050e6c88ca253488bb0be3efee6060bf823/public/x_large.png -------------------------------------------------------------------------------- /public/x_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellofaizan/xprofile/e36d7050e6c88ca253488bb0be3efee6060bf823/public/x_logo_dark.png -------------------------------------------------------------------------------- /public/x_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellofaizan/xprofile/e36d7050e6c88ca253488bb0be3efee6060bf823/public/x_nobg.png -------------------------------------------------------------------------------- /src/ThemeContext.js: -------------------------------------------------------------------------------- 1 | import { createContext } from "react"; 2 | 3 | const ThemeContext = createContext({}); 4 | 5 | export default ThemeContext; 6 | -------------------------------------------------------------------------------- /src/ThemeProvider.js: -------------------------------------------------------------------------------- 1 | import ThemeContext from "./ThemeContext"; 2 | import { useState } from "react"; 3 | 4 | const ThemeProvider = ({ children }) => { 5 | const [theme, setTheme] = useState(""); 6 | 7 | const toggleTheme = () => { 8 | setTheme(theme == "light" ? "dark" : "light"); 9 | }; 10 | const data = { 11 | toggleTheme, 12 | theme, 13 | setTheme, 14 | }; 15 | return {children}; 16 | }; 17 | 18 | export default ThemeProvider; 19 | -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import Image from "next/image"; 3 | import Link from "next/link"; 4 | import ThemeContext from "@/ThemeContext"; 5 | 6 | const Card = (props) => { 7 | const { bannerColor, github, name, username, about } = props; 8 | const aboutLink = about.includes("http"); 9 | const { theme } = useContext(ThemeContext); 10 | 11 | let aboutLinkMain; 12 | let aboutWithoutLink; 13 | // if aboutLink is true, then make it clickable 14 | if (aboutLink) { 15 | const aboutArray = about.split(" "); 16 | aboutLinkMain = aboutArray.find((element) => element.includes("http")); 17 | const aboutLinkIndex = aboutArray.indexOf(aboutLinkMain); 18 | aboutArray.splice(aboutLinkIndex, 1); 19 | aboutWithoutLink = aboutArray.join(" "); 20 | } 21 | return ( 22 | <> 23 | {/* design a card using tailwind css good ui */} 24 |
25 |
30 |
31 |
35 | 36 |
37 | {name} 46 |
47 |

{name}

48 | 56 | @{username} 57 | 58 |
59 |
60 | 61 | {aboutLink ? ( 62 |

63 | {aboutWithoutLink}{" "} 64 | 70 | {aboutLinkMain} 71 | 72 |

73 | ) : ( 74 |
75 | {about} 76 |
77 | )} 78 | 79 | {/* Follow on github and on twitter button 2 in column */} 80 |
81 | 91 | Follow on 92 | 93 | 103 | Follow on 𝕏 104 | 105 |
106 |
107 |
108 |
109 | 110 | ); 111 | }; 112 | 113 | export default Card; 114 | -------------------------------------------------------------------------------- /src/components/LoadingCard.js: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import ThemeContext from "@/ThemeContext"; 3 | 4 | export default function Skeleton({ number }) { 5 | const { theme } = useContext(ThemeContext); 6 | return Array(number) 7 | .fill(0) 8 | .map((_,index) => ( 9 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | )); 36 | } 37 | -------------------------------------------------------------------------------- /src/components/Spinner.js: -------------------------------------------------------------------------------- 1 | const Spinner = () => { 2 | return ( 3 |
4 |
5 | 21 | Loading... 22 |
23 |
24 | ); 25 | }; 26 | 27 | export default Spinner; 28 | -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- 1 | import "@/styles/globals.css"; 2 | import Head from "next/head"; 3 | import "bootstrap-icons/font/bootstrap-icons.css"; 4 | import Script from "next/script"; 5 | // 1. import `NextUIProvider` component 6 | import { Analytics } from "@vercel/analytics/react"; 7 | import ThemeProvider from "@/ThemeProvider"; 8 | 9 | // 2. create a custom theme 10 | 11 | export default function App({ Component, pageProps }) { 12 | return ( 13 | <> 14 | 15 | 16 | 𝕏 Profile - Your Twitter Profile Card 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 32 | 36 | 37 | 38 | 42 | 43 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 61 | 66 | 67 | 68 | 69 | 74 | 75 | 84 | 85 | 86 | 87 | 88 | ); 89 | } 90 | -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Document, { Html, Head, Main, NextScript } from 'next/document'; 3 | import { CssBaseline } from '@nextui-org/react'; 4 | 5 | class MyDocument extends Document { 6 | static async getInitialProps(ctx) { 7 | const initialProps = await Document.getInitialProps(ctx); 8 | return { 9 | ...initialProps, 10 | styles: React.Children.toArray([initialProps.styles]) 11 | }; 12 | } 13 | 14 | render() { 15 | return ( 16 | 17 | {CssBaseline.flush()} 18 | 19 |
20 | 21 | 22 | 23 | ); 24 | } 25 | } 26 | 27 | export default MyDocument; -------------------------------------------------------------------------------- /src/pages/api/explore.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | 3 | export default function handler(req, res) { 4 | // read users from a local JSON file 5 | let users = require('/data/users.json') 6 | // const numberOfRandomUsers = 12 7 | 8 | const numberOfRandomUsers = users.length; 9 | const count = parseInt(req.query.count || 9); 10 | const start = parseInt(req.query._start || 0); 11 | 12 | // finding the last index 13 | const end = Math.min(start + count, numberOfRandomUsers); 14 | 15 | let randomUserSubset = users.slice(start, end); 16 | 17 | 18 | if (req.query._start === "undefined") { 19 | randomUserSubset = users.slice(0, req.query.count); 20 | res.status(200).json(randomUserSubset); 21 | } else { 22 | randomUserSubset = users.slice(req.query._start, req.query.count); 23 | res.status(200).json(randomUserSubset); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/pages/api/user.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | 3 | export default function handler(req, res) { 4 | // http://x.hellofaizan.me/api/user?user=hellofaizaan 5 | // read users from a local JSON file 6 | let users = require('/data/users.json') 7 | const user = req.query.user 8 | 9 | users = users.filter(users => users.username === user) 10 | 11 | if (users.length === 0) { 12 | return res.status(404).json({ success: false, message: "Username not found" }) 13 | } 14 | 15 | if (!user) { 16 | return res.status(404).json({ success: false, message: "Username is necessary to mention" }) 17 | } 18 | return res.status(200).json(users) 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/api/users.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | 3 | export default function handler(req, res) { 4 | // read users from a local JSON file 5 | let users = require('/data/users.json') 6 | if (req.query.count) { 7 | users = users.slice(0, parseInt(req.query.count)) 8 | } 9 | 10 | res.status(200).json(users) 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useState, useEffect, useContext } from "react"; 3 | import Image from "next/image"; 4 | import { motion } from "framer-motion"; 5 | import Link from "next/link"; 6 | import Card from "../components/Card"; 7 | import LoadingCard from "../components/LoadingCard"; 8 | import ThemeContext from "@/ThemeContext"; 9 | import { NextUIProvider, createTheme } from "@nextui-org/react"; 10 | import InfiniteScroll from "react-infinite-scroll-component"; 11 | import Spinner from "@/components/Spinner"; 12 | 13 | const Home = () => { 14 | const [search, setSearch] = useState(false); 15 | const [data, setData] = useState([]); 16 | const [uiTheme, setUiTheme] = useState(""); 17 | const [allUsers, setAllUsers] = useState([]); 18 | const [loading, setLoading] = useState(false); 19 | const { toggleTheme, theme, setTheme } = useContext(ThemeContext); 20 | 21 | useEffect(() => { 22 | if (!theme && localStorage.getItem("theme")) { 23 | setTheme(localStorage.getItem("theme")); 24 | } else if (!localStorage.getItem("theme")) { 25 | setTheme("dark"); 26 | } else { 27 | setUiTheme(theme); 28 | } 29 | localStorage.setItem("theme", theme); 30 | }, [theme, setTheme]); 31 | 32 | useEffect(() => { 33 | if (localStorage.getItem("theme")) { 34 | setTheme(localStorage.getItem("theme")); 35 | let UItheme = createTheme({ type: localStorage.getItem("theme") }); 36 | setUiTheme(UItheme); 37 | } else { 38 | let UItheme = createTheme({ type: "dark" }); 39 | setUiTheme(UItheme); 40 | } 41 | }, [theme, setTheme]); 42 | 43 | 44 | useEffect(() => { 45 | const fetchAllUsers = async () => { 46 | try { 47 | setLoading(true); 48 | 49 | const getAllUsers = await fetch(`/api/explore`); 50 | const allUsers = await getAllUsers.json(); 51 | 52 | const shuffledUsers = shuffleUsers(allUsers); 53 | 54 | setAllUsers(shuffledUsers); 55 | setLoading(false); 56 | setData(shuffledUsers.slice(0, 9)); 57 | } catch (error) { 58 | console.error("Error fetching all users:", error); 59 | } 60 | }; 61 | 62 | fetchAllUsers(); 63 | }, []); 64 | 65 | function shuffleUsers(array) { 66 | // Fisher-Yates (aka Knuth) Shuffle 67 | const shuffledArray = [...array]; 68 | for (let i = shuffledArray.length - 1; i > 0; i--) { 69 | const j = Math.floor(Math.random() * (i + 1)); 70 | [shuffledArray[i], shuffledArray[j]] = [shuffledArray[j], shuffledArray[i]]; 71 | } 72 | return shuffledArray; 73 | } 74 | 75 | 76 | const fetchMoreData = () => { 77 | try { 78 | setTimeout(() => { 79 | const newData = allUsers.slice(data.length, data.length + 9); 80 | setData((data) => [...data, ...newData]); 81 | }, 500); 82 | } catch (error) { 83 | console.error("Error while fetching more data", error); 84 | } 85 | }; 86 | 87 | return ( 88 | <> 89 | 90 | 95 |
96 |
97 |
98 |
99 |
100 | Home 101 | Logo 110 |
111 |
112 |
113 |
114 | 117 |
118 | setSearch(e.target.value)} 121 | id="simple-search" 122 | className={`border border-gray text-sm rounded-lg block shadow w-full pl-3 p-2.5 ${theme == "light" ? "bg-white" : "bg-[#0e0e0e]" 123 | } border-gray-600 placeholder-gray-400 ${theme == "dark" ? "text-white" : "text-black" 124 | } focus:ring-blue-500 focus:border-blue-500`} 125 | placeholder="Search by Name or Username..." 126 | required 127 | > 128 |
129 |
130 |
131 |
132 |
133 | 148 | 157 | 𝕏 158 | 159 | 168 | 169 | 170 | 179 | 180 | 181 | 191 | Contribute ⭐ 192 | 193 |
194 |
195 |
196 | 199 |
200 | setSearch(e.target.value)} 203 | id="simple-search" 204 | className={`border border-gray text-sm rounded-lg block w-full pl-3 p-2.5 ${theme == "light" ? "bg-white" : "bg-[#0e0e0e]" 205 | } border-gray-600 placeholder-gray-400 ${theme == "dark" ? "text-white" : "text-black" 206 | } focus:ring-blue-500 shadow focus:border-blue-500`} 207 | placeholder="Search user profile..." 208 | required 209 | > 210 |
211 | 218 | ⭐ 219 | 220 |
221 |
222 |
223 |
224 |
225 |
226 | 227 | <> 228 | data?.length ? true : false} 232 | loader={} 233 | endMessage={ 234 |

242 | You are end of list 243 |

244 | } 245 | > 246 |
247 |
248 |
249 |
250 | {loading ? ( 251 | 252 | ) : ( 253 | data 254 | .filter((user) => { 255 | if (search == "") { 256 | return user; 257 | } else if ( 258 | user.name 259 | .toLowerCase() 260 | .includes(search.toLowerCase()) || 261 | user.username 262 | .toLowerCase() 263 | .includes(search.toLowerCase()) 264 | ) { 265 | return user; 266 | } 267 | }) 268 | .map((user, index) => ( 269 | 278 | )) 279 | )} 280 |
281 |
282 |
283 |
284 |
285 | 286 |
287 |
288 | 289 | ); 290 | }; 291 | 292 | export default Home; 293 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | ::-webkit-scrollbar { 6 | display: none; 7 | } -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./app/**/*.{js,ts,jsx,tsx}", 5 | "./pages/**/*.{js,ts,jsx,tsx}", 6 | "./components/**/*.{js,ts,jsx,tsx}", 7 | 8 | // Or if using `src` directory: 9 | "./src/**/*.{js,ts,jsx,tsx}", 10 | ], 11 | mode: "jit", 12 | theme: { 13 | extend: { 14 | colors: { 15 | primary: "#1E90FF", 16 | secondary: "#FF6347", 17 | danger: "#DC143C", 18 | dimWhite: "rgba(255, 255, 255, 0.7)", 19 | dimBlue: "rgba(9, 151, 255, 0.7)", 20 | }, 21 | fontFamily: { 22 | poppins: ["Poppins", "sans-serif"], 23 | } 24 | }, 25 | scale: { 26 | xs: "480px", 27 | ss: "620px", 28 | sm: "768px", 29 | md: "1060px", 30 | lg: "1200px", 31 | xl: "1736px", 32 | } 33 | }, 34 | plugins: [ 35 | require('@tailwindcss/forms'), 36 | require('@tailwindcss/line-clamp'), 37 | ], 38 | } 39 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime@^7.20.1", "@babel/runtime@^7.6.2": 6 | version "7.21.0" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" 8 | integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== 9 | dependencies: 10 | regenerator-runtime "^0.13.11" 11 | 12 | "@babel/runtime@^7.20.7": 13 | version "7.20.13" 14 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz" 15 | integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== 16 | dependencies: 17 | regenerator-runtime "^0.13.11" 18 | 19 | "@emotion/is-prop-valid@^0.8.2": 20 | version "0.8.8" 21 | resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" 22 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== 23 | dependencies: 24 | "@emotion/memoize" "0.7.4" 25 | 26 | "@emotion/memoize@0.7.4": 27 | version "0.7.4" 28 | resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" 29 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== 30 | 31 | "@eslint/eslintrc@^1.4.1": 32 | version "1.4.1" 33 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz" 34 | integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== 35 | dependencies: 36 | ajv "^6.12.4" 37 | debug "^4.3.2" 38 | espree "^9.4.0" 39 | globals "^13.19.0" 40 | ignore "^5.2.0" 41 | import-fresh "^3.2.1" 42 | js-yaml "^4.1.0" 43 | minimatch "^3.1.2" 44 | strip-json-comments "^3.1.1" 45 | 46 | "@formatjs/ecma402-abstract@1.14.3": 47 | version "1.14.3" 48 | resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.14.3.tgz#6428f243538a11126180d121ce8d4b2f17465738" 49 | integrity sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg== 50 | dependencies: 51 | "@formatjs/intl-localematcher" "0.2.32" 52 | tslib "^2.4.0" 53 | 54 | "@formatjs/fast-memoize@2.0.1": 55 | version "2.0.1" 56 | resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-2.0.1.tgz#f15aaa73caad5562899c69bdcad8db82adcd3b0b" 57 | integrity sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA== 58 | dependencies: 59 | tslib "^2.4.0" 60 | 61 | "@formatjs/icu-messageformat-parser@2.3.1": 62 | version "2.3.1" 63 | resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.3.1.tgz#953080ea5c053bc73bdf55d0a524a3c3c133ae6b" 64 | integrity sha512-knF2AkAKN4Upv4oIiKY4Wd/dLH68TNMPgV/tJMu/T6FP9aQwbv8fpj7U3lkyniPaNVxvia56Gxax8MKOjtxLSQ== 65 | dependencies: 66 | "@formatjs/ecma402-abstract" "1.14.3" 67 | "@formatjs/icu-skeleton-parser" "1.3.18" 68 | tslib "^2.4.0" 69 | 70 | "@formatjs/icu-skeleton-parser@1.3.18": 71 | version "1.3.18" 72 | resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz#7aed3d60e718c8ad6b0e64820be44daa1e29eeeb" 73 | integrity sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg== 74 | dependencies: 75 | "@formatjs/ecma402-abstract" "1.14.3" 76 | tslib "^2.4.0" 77 | 78 | "@formatjs/intl-localematcher@0.2.32": 79 | version "0.2.32" 80 | resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz#00d4d307cd7d514b298e15a11a369b86c8933ec1" 81 | integrity sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ== 82 | dependencies: 83 | tslib "^2.4.0" 84 | 85 | "@humanwhocodes/config-array@^0.11.8": 86 | version "0.11.8" 87 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz" 88 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 89 | dependencies: 90 | "@humanwhocodes/object-schema" "^1.2.1" 91 | debug "^4.1.1" 92 | minimatch "^3.0.5" 93 | 94 | "@humanwhocodes/module-importer@^1.0.1": 95 | version "1.0.1" 96 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 97 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 98 | 99 | "@humanwhocodes/object-schema@^1.2.1": 100 | version "1.2.1" 101 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" 102 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 103 | 104 | "@internationalized/date@^3.0.1", "@internationalized/date@^3.2.0": 105 | version "3.2.0" 106 | resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.2.0.tgz#1d266e5e5543a059cf8cca9b954fa033c3e58a75" 107 | integrity sha512-VDMHN1m33L4eqPs5BaihzgQJXyaORbMoHOtrapFxx179J8ucY5CRIHYsq5RRLKPHZWgjNfa5v6amWWDkkMFywA== 108 | dependencies: 109 | "@swc/helpers" "^0.4.14" 110 | 111 | "@internationalized/message@^3.0.9", "@internationalized/message@^3.1.0": 112 | version "3.1.0" 113 | resolved "https://registry.yarnpkg.com/@internationalized/message/-/message-3.1.0.tgz#b284014cd8bbb430a648b76c87c62bdca968b04c" 114 | integrity sha512-Oo5m70FcBdADf7G8NkUffVSfuCdeAYVfsvNjZDi9ELpjvkc4YNJVTHt/NyTI9K7FgAVoELxiP9YmN0sJ+HNHYQ== 115 | dependencies: 116 | "@swc/helpers" "^0.4.14" 117 | intl-messageformat "^10.1.0" 118 | 119 | "@internationalized/number@^3.1.1", "@internationalized/number@^3.2.0": 120 | version "3.2.0" 121 | resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.2.0.tgz#dffb661cacd61a87b814c47b7d5240a286249066" 122 | integrity sha512-GUXkhXSX1Ee2RURnzl+47uvbOxnlMnvP9Er+QePTjDjOPWuunmLKlEkYkEcLiiJp7y4l9QxGDLOlVr8m69LS5w== 123 | dependencies: 124 | "@swc/helpers" "^0.4.14" 125 | 126 | "@internationalized/string@^3.0.0", "@internationalized/string@^3.1.0": 127 | version "3.1.0" 128 | resolved "https://registry.yarnpkg.com/@internationalized/string/-/string-3.1.0.tgz#0b365906a8c3f44800b0db52c2e990cff345abce" 129 | integrity sha512-TJQKiyUb+wyAfKF59UNeZ/kELMnkxyecnyPCnBI1ma4NaXReJW+7Cc2mObXAqraIBJUVv7rgI46RLKrLgi35ng== 130 | dependencies: 131 | "@swc/helpers" "^0.4.14" 132 | 133 | "@next/env@13.1.6": 134 | version "13.1.6" 135 | resolved "https://registry.npmjs.org/@next/env/-/env-13.1.6.tgz" 136 | integrity sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg== 137 | 138 | "@next/eslint-plugin-next@13.1.6": 139 | version "13.1.6" 140 | resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz" 141 | integrity sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw== 142 | dependencies: 143 | glob "7.1.7" 144 | 145 | "@next/font@13.1.6": 146 | version "13.1.6" 147 | resolved "https://registry.npmjs.org/@next/font/-/font-13.1.6.tgz" 148 | integrity sha512-AITjmeb1RgX1HKMCiA39ztx2mxeAyxl4ljv2UoSBUGAbFFMg8MO7YAvjHCgFhD39hL7YTbFjol04e/BPBH5RzQ== 149 | 150 | "@next/swc-android-arm-eabi@13.1.6": 151 | version "13.1.6" 152 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.1.6.tgz#d766dfc10e27814d947b20f052067c239913dbcc" 153 | integrity sha512-F3/6Z8LH/pGlPzR1AcjPFxx35mPqjE5xZcf+IL+KgbW9tMkp7CYi1y7qKrEWU7W4AumxX/8OINnDQWLiwLasLQ== 154 | 155 | "@next/swc-android-arm64@13.1.6": 156 | version "13.1.6" 157 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.1.6.tgz#f37a98d5f18927d8c9970d750d516ac779465176" 158 | integrity sha512-cMwQjnB8vrYkWyK/H0Rf2c2pKIH4RGjpKUDvbjVAit6SbwPDpmaijLio0LWFV3/tOnY6kvzbL62lndVA0mkYpw== 159 | 160 | "@next/swc-darwin-arm64@13.1.6": 161 | version "13.1.6" 162 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.6.tgz#ec1b90fd9bf809d8b81004c5182e254dced4ad96" 163 | integrity sha512-KKRQH4DDE4kONXCvFMNBZGDb499Hs+xcFAwvj+rfSUssIDrZOlyfJNy55rH5t2Qxed1e4K80KEJgsxKQN1/fyw== 164 | 165 | "@next/swc-darwin-x64@13.1.6": 166 | version "13.1.6" 167 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.1.6.tgz#e869ac75d16995eee733a7d1550322d9051c1eb4" 168 | integrity sha512-/uOky5PaZDoaU99ohjtNcDTJ6ks/gZ5ykTQDvNZDjIoCxFe3+t06bxsTPY6tAO6uEAw5f6vVFX5H5KLwhrkZCA== 169 | 170 | "@next/swc-freebsd-x64@13.1.6": 171 | version "13.1.6" 172 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.1.6.tgz#84a7b2e423a2904afc2edca21c2f1ba6b53fa4c1" 173 | integrity sha512-qaEALZeV7to6weSXk3Br80wtFQ7cFTpos/q+m9XVRFggu+8Ib895XhMWdJBzew6aaOcMvYR6KQ6JmHA2/eMzWw== 174 | 175 | "@next/swc-linux-arm-gnueabihf@13.1.6": 176 | version "13.1.6" 177 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.1.6.tgz#980eed1f655ff8a72187d8a6ef9e73ac39d20d23" 178 | integrity sha512-OybkbC58A1wJ+JrJSOjGDvZzrVEQA4sprJejGqMwiZyLqhr9Eo8FXF0y6HL+m1CPCpPhXEHz/2xKoYsl16kNqw== 179 | 180 | "@next/swc-linux-arm64-gnu@13.1.6": 181 | version "13.1.6" 182 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.1.6.tgz#87a71db21cded3f7c63d1d19079845c59813c53d" 183 | integrity sha512-yCH+yDr7/4FDuWv6+GiYrPI9kcTAO3y48UmaIbrKy8ZJpi7RehJe3vIBRUmLrLaNDH3rY1rwoHi471NvR5J5NQ== 184 | 185 | "@next/swc-linux-arm64-musl@13.1.6": 186 | version "13.1.6" 187 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.1.6.tgz#c5aac8619331b9fd030603bbe2b36052011e11de" 188 | integrity sha512-ECagB8LGX25P9Mrmlc7Q/TQBb9rGScxHbv/kLqqIWs2fIXy6Y/EiBBiM72NTwuXUFCNrWR4sjUPSooVBJJ3ESQ== 189 | 190 | "@next/swc-linux-x64-gnu@13.1.6": 191 | version "13.1.6" 192 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.1.6.tgz#9513d36d540bbfea575576746736054c31aacdea" 193 | integrity sha512-GT5w2mruk90V/I5g6ScuueE7fqj/d8Bui2qxdw6lFxmuTgMeol5rnzAv4uAoVQgClOUO/MULilzlODg9Ib3Y4Q== 194 | 195 | "@next/swc-linux-x64-musl@13.1.6": 196 | version "13.1.6" 197 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.1.6.tgz#d61fc6884899f5957251f4ce3f522e34a2c479b7" 198 | integrity sha512-keFD6KvwOPzmat4TCnlnuxJCQepPN+8j3Nw876FtULxo8005Y9Ghcl7ACcR8GoiKoddAq8gxNBrpjoxjQRHeAQ== 199 | 200 | "@next/swc-win32-arm64-msvc@13.1.6": 201 | version "13.1.6" 202 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.1.6.tgz#fac2077a8ae9768e31444c9ae90807e64117cda7" 203 | integrity sha512-OwertslIiGQluFvHyRDzBCIB07qJjqabAmINlXUYt7/sY7Q7QPE8xVi5beBxX/rxTGPIbtyIe3faBE6Z2KywhQ== 204 | 205 | "@next/swc-win32-ia32-msvc@13.1.6": 206 | version "13.1.6" 207 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.1.6.tgz#498bc11c91b4c482a625bf4b978f98ae91111e46" 208 | integrity sha512-g8zowiuP8FxUR9zslPmlju7qYbs2XBtTLVSxVikPtUDQedhcls39uKYLvOOd1JZg0ehyhopobRoH1q+MHlIN/w== 209 | 210 | "@next/swc-win32-x64-msvc@13.1.6": 211 | version "13.1.6" 212 | resolved "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.1.6.tgz" 213 | integrity sha512-Ls2OL9hi3YlJKGNdKv8k3X/lLgc3VmLG3a/DeTkAd+lAituJp8ZHmRmm9f9SL84fT3CotlzcgbdaCDfFwFA6bA== 214 | 215 | "@nextui-org/react@^1.0.0-beta.12": 216 | version "1.0.0-beta.12" 217 | resolved "https://registry.yarnpkg.com/@nextui-org/react/-/react-1.0.0-beta.12.tgz#a9674cfd4bdeab3ed3e81339b56664730393fb71" 218 | integrity sha512-ay6LrdRDwIFiZDvFH6nQjRuzLWE9yPQfI3W3qEfaY1I8e+CGYm0fc8RPSj3rrfZTa9OLeV+Defh/+/ysrwrloQ== 219 | dependencies: 220 | "@babel/runtime" "^7.20.1" 221 | "@react-aria/button" "3.6.2" 222 | "@react-aria/checkbox" "3.6.0" 223 | "@react-aria/dialog" "3.4.0" 224 | "@react-aria/focus" "3.7.0" 225 | "@react-aria/i18n" "3.6.1" 226 | "@react-aria/interactions" "3.12.0" 227 | "@react-aria/label" "3.4.2" 228 | "@react-aria/link" "3.3.4" 229 | "@react-aria/menu" "3.6.2" 230 | "@react-aria/overlays" "3.11.0" 231 | "@react-aria/radio" "3.4.0" 232 | "@react-aria/ssr" "3.3.0" 233 | "@react-aria/table" "3.5.0" 234 | "@react-aria/utils" "3.14.0" 235 | "@react-aria/visually-hidden" "3.5.0" 236 | "@react-stately/checkbox" "3.3.0" 237 | "@react-stately/collections" "3.4.4" 238 | "@react-stately/data" "3.7.0" 239 | "@react-stately/menu" "3.4.2" 240 | "@react-stately/overlays" "3.4.2" 241 | "@react-stately/radio" "3.6.0" 242 | "@react-stately/table" "3.5.0" 243 | "@react-stately/toggle" "3.4.2" 244 | "@react-stately/tree" "3.3.4" 245 | "@react-types/button" "^3.6.2" 246 | "@react-types/checkbox" "3.4.0" 247 | "@react-types/grid" "3.1.4" 248 | "@react-types/menu" "3.7.2" 249 | "@react-types/overlays" "3.6.4" 250 | "@react-types/shared" "3.15.0" 251 | "@stitches/react" "1.2.8" 252 | 253 | "@nodelib/fs.scandir@2.1.5": 254 | version "2.1.5" 255 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 256 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 257 | dependencies: 258 | "@nodelib/fs.stat" "2.0.5" 259 | run-parallel "^1.1.9" 260 | 261 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 262 | version "2.0.5" 263 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 264 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 265 | 266 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 267 | version "1.2.8" 268 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 269 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 270 | dependencies: 271 | "@nodelib/fs.scandir" "2.1.5" 272 | fastq "^1.6.0" 273 | 274 | "@pkgr/utils@^2.3.1": 275 | version "2.3.1" 276 | resolved "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz" 277 | integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== 278 | dependencies: 279 | cross-spawn "^7.0.3" 280 | is-glob "^4.0.3" 281 | open "^8.4.0" 282 | picocolors "^1.0.0" 283 | tiny-glob "^0.2.9" 284 | tslib "^2.4.0" 285 | 286 | "@react-aria/button@3.6.2": 287 | version "3.6.2" 288 | resolved "https://registry.yarnpkg.com/@react-aria/button/-/button-3.6.2.tgz#ac2e70b46eb12138945146e9e68108c80ddeaca6" 289 | integrity sha512-8XRcPR5qXKNmnBO6u9FSY8vYa7P1FIgVix07EHBCTZiJYHYxcUsFYRWG9qf2aShGotJs4957unqGH1L1ncRYKQ== 290 | dependencies: 291 | "@babel/runtime" "^7.6.2" 292 | "@react-aria/focus" "^3.9.0" 293 | "@react-aria/interactions" "^3.12.0" 294 | "@react-aria/utils" "^3.14.0" 295 | "@react-stately/toggle" "^3.4.2" 296 | "@react-types/button" "^3.6.2" 297 | "@react-types/shared" "^3.15.0" 298 | 299 | "@react-aria/checkbox@3.6.0": 300 | version "3.6.0" 301 | resolved "https://registry.yarnpkg.com/@react-aria/checkbox/-/checkbox-3.6.0.tgz#5c09f7be3de2d91e2f6ab0f14d2e588793afc1da" 302 | integrity sha512-E2MZoMZhtHtlS1mYjxTI29JRq4s3Y6d92KHj7tzvcC308d4Bzz0IHJd0bMz/8whoNteU02pQyZ3rDAcGf92bHQ== 303 | dependencies: 304 | "@babel/runtime" "^7.6.2" 305 | "@react-aria/label" "^3.4.2" 306 | "@react-aria/toggle" "^3.4.0" 307 | "@react-aria/utils" "^3.14.0" 308 | "@react-stately/checkbox" "^3.3.0" 309 | "@react-stately/toggle" "^3.4.2" 310 | "@react-types/checkbox" "^3.4.0" 311 | "@react-types/shared" "^3.15.0" 312 | 313 | "@react-aria/dialog@3.4.0": 314 | version "3.4.0" 315 | resolved "https://registry.yarnpkg.com/@react-aria/dialog/-/dialog-3.4.0.tgz#769f6425fa74792ed445e734baad2d5247228616" 316 | integrity sha512-h1D7OOe20PhSb4DD40ABVgHMbSA2Y9rSU5lrGf9zuNSYkQIwDz6pTSXp/9roy7SEvf5KAN6zPa1inSVBOTzf3w== 317 | dependencies: 318 | "@babel/runtime" "^7.6.2" 319 | "@react-aria/focus" "^3.9.0" 320 | "@react-aria/overlays" "^3.11.0" 321 | "@react-aria/utils" "^3.14.0" 322 | "@react-stately/overlays" "^3.4.2" 323 | "@react-types/dialog" "^3.4.4" 324 | "@react-types/shared" "^3.15.0" 325 | 326 | "@react-aria/focus@3.7.0": 327 | version "3.7.0" 328 | resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.7.0.tgz#6a90dc99da64bd145e3eeacf3097a29a0342f709" 329 | integrity sha512-LydZSLBLEUklakM0Ogdk17F3f/Uwaj5Nl1mfcK8HhrroGT8A8XH0KjA9D6gM6JGHgxZemx0ufOgxhQZeBGQMQw== 330 | dependencies: 331 | "@babel/runtime" "^7.6.2" 332 | "@react-aria/interactions" "^3.10.0" 333 | "@react-aria/utils" "^3.13.2" 334 | "@react-types/shared" "^3.14.0" 335 | clsx "^1.1.1" 336 | 337 | "@react-aria/focus@^3.12.0", "@react-aria/focus@^3.9.0": 338 | version "3.12.0" 339 | resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.12.0.tgz#ac01f13782c608d0ed24a3f0b39c96b4a0031716" 340 | integrity sha512-nY6/2lpXzLep6dzQEESoowiSqNcy7DFWuRD/qHj9uKcQwWpYH/rqBrHVS/RNvL6Cz/fBA7L/4AzByJ6pTBtoeA== 341 | dependencies: 342 | "@react-aria/interactions" "^3.15.0" 343 | "@react-aria/utils" "^3.16.0" 344 | "@react-types/shared" "^3.18.0" 345 | "@swc/helpers" "^0.4.14" 346 | clsx "^1.1.1" 347 | 348 | "@react-aria/grid@^3.5.0": 349 | version "3.7.0" 350 | resolved "https://registry.yarnpkg.com/@react-aria/grid/-/grid-3.7.0.tgz#f09f3a1697fe39c246cb6aa4bfd47aa8ab00f8c8" 351 | integrity sha512-jXo+/wQotHDSaMSVdVT7Hxzz65Nj2yK1wssIUQPEZalRhcosGWI1vhdQOD0g9GQL1l5DLyw0m55sych6naeBlw== 352 | dependencies: 353 | "@react-aria/focus" "^3.12.0" 354 | "@react-aria/i18n" "^3.7.1" 355 | "@react-aria/interactions" "^3.15.0" 356 | "@react-aria/live-announcer" "^3.3.0" 357 | "@react-aria/selection" "^3.14.0" 358 | "@react-aria/utils" "^3.16.0" 359 | "@react-stately/collections" "^3.7.0" 360 | "@react-stately/grid" "^3.6.0" 361 | "@react-stately/selection" "^3.13.0" 362 | "@react-stately/virtualizer" "^3.5.1" 363 | "@react-types/checkbox" "^3.4.3" 364 | "@react-types/grid" "^3.1.7" 365 | "@react-types/shared" "^3.18.0" 366 | "@swc/helpers" "^0.4.14" 367 | 368 | "@react-aria/i18n@3.6.1": 369 | version "3.6.1" 370 | resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.6.1.tgz#b97e78e3ec040a5ca08d166033f2d358ef1af4c5" 371 | integrity sha512-kAetWsj9HOqwaqLhmFU2udhZ+4QGGYkQOgGBJYdrB7GfLZQ1GPBlZjv3QFdkX4oSf/k9cFqgftxvVQQDYZLOew== 372 | dependencies: 373 | "@babel/runtime" "^7.6.2" 374 | "@internationalized/date" "^3.0.1" 375 | "@internationalized/message" "^3.0.9" 376 | "@internationalized/number" "^3.1.1" 377 | "@internationalized/string" "^3.0.0" 378 | "@react-aria/ssr" "^3.3.0" 379 | "@react-aria/utils" "^3.14.0" 380 | "@react-types/shared" "^3.15.0" 381 | 382 | "@react-aria/i18n@^3.6.1", "@react-aria/i18n@^3.7.1": 383 | version "3.7.1" 384 | resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.7.1.tgz#bd52869f67a5847f2dbe89603255a2dfc5ef45b4" 385 | integrity sha512-2fu1cv8yD3V+rlhOqstTdGAubadoMFuPE7lA1FfYdaJNxXa09iWqvpipUPlxYJrahW0eazkesOPDKFwOEMF1iA== 386 | dependencies: 387 | "@internationalized/date" "^3.2.0" 388 | "@internationalized/message" "^3.1.0" 389 | "@internationalized/number" "^3.2.0" 390 | "@internationalized/string" "^3.1.0" 391 | "@react-aria/ssr" "^3.6.0" 392 | "@react-aria/utils" "^3.16.0" 393 | "@react-types/shared" "^3.18.0" 394 | "@swc/helpers" "^0.4.14" 395 | 396 | "@react-aria/interactions@3.12.0": 397 | version "3.12.0" 398 | resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.12.0.tgz#b16a392c3dc23351c8fd33a16cef0ef93dc4682d" 399 | integrity sha512-KcKurjPZwme9ggvGQjbjqZtZtuyXipTBVMHUah9a3+Dz7vXxhRg5vFaEdM79oQnNsrGFW5xS6SKBehl/JG6BMw== 400 | dependencies: 401 | "@babel/runtime" "^7.6.2" 402 | "@react-aria/utils" "^3.14.0" 403 | "@react-types/shared" "^3.15.0" 404 | 405 | "@react-aria/interactions@^3.10.0", "@react-aria/interactions@^3.12.0", "@react-aria/interactions@^3.15.0": 406 | version "3.15.0" 407 | resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.15.0.tgz#db638d6ae0407be52ecaa1882c2ebc2931880da8" 408 | integrity sha512-8br5uatPDISEWMINKGs7RhNPtqLhRsgwQsooaH7Jgxjs0LBlylODa8l7D3NA1uzVzlvfnZm/t2YN/y8ieRSDcQ== 409 | dependencies: 410 | "@react-aria/ssr" "^3.6.0" 411 | "@react-aria/utils" "^3.16.0" 412 | "@react-types/shared" "^3.18.0" 413 | "@swc/helpers" "^0.4.14" 414 | 415 | "@react-aria/label@3.4.2": 416 | version "3.4.2" 417 | resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.4.2.tgz#c66761891aa7aabe1893608f367c1bab0b8b2d28" 418 | integrity sha512-ctygLrA4yY31440UMZdw21Iz4ogXupLJB5xpTU1KFXcvybSu+H3gvVCOJu1jFwR12bTKnkVogTWT6wwVYH2nFw== 419 | dependencies: 420 | "@babel/runtime" "^7.6.2" 421 | "@react-aria/utils" "^3.14.0" 422 | "@react-types/label" "^3.7.0" 423 | "@react-types/shared" "^3.15.0" 424 | 425 | "@react-aria/label@^3.4.2": 426 | version "3.5.1" 427 | resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.5.1.tgz#ad7f9c141a1d5af143957716e01404ed4ab558e0" 428 | integrity sha512-3KNg6/MJNMN25o0psBbCWzhJNFjtT5NtYJPrFwGHbAfVWvMTRqNftoyrhR490Ac0q2eMKIXkULl1HVn3izrAuw== 429 | dependencies: 430 | "@react-aria/utils" "^3.16.0" 431 | "@react-types/label" "^3.7.3" 432 | "@react-types/shared" "^3.18.0" 433 | "@swc/helpers" "^0.4.14" 434 | 435 | "@react-aria/link@3.3.4": 436 | version "3.3.4" 437 | resolved "https://registry.yarnpkg.com/@react-aria/link/-/link-3.3.4.tgz#705d581c0fe83c37e3a15439839d5d2ebbc1add2" 438 | integrity sha512-Op0usCd5SAg5OHkCl1+TYbsvT/wWhqadd/3Pi0VD0kKmaSy4GhUNJkTo8n0hS2k3vIq+qRq7zwnON2h5eLVkHA== 439 | dependencies: 440 | "@babel/runtime" "^7.6.2" 441 | "@react-aria/focus" "^3.9.0" 442 | "@react-aria/interactions" "^3.12.0" 443 | "@react-aria/utils" "^3.14.0" 444 | "@react-types/link" "^3.3.4" 445 | "@react-types/shared" "^3.15.0" 446 | 447 | "@react-aria/live-announcer@^3.1.1", "@react-aria/live-announcer@^3.3.0": 448 | version "3.3.0" 449 | resolved "https://registry.yarnpkg.com/@react-aria/live-announcer/-/live-announcer-3.3.0.tgz#04a2a233c2f48c53994f83cafdc4336ec1ea3700" 450 | integrity sha512-6diTS6mIf70KdxfGqiDxHV+9Qv8a9A88EqBllzXGF6HWPdcwde/GIEmfpTwj8g1ImNGZYUwDkv4Hd9lFj0MXEg== 451 | dependencies: 452 | "@swc/helpers" "^0.4.14" 453 | 454 | "@react-aria/menu@3.6.2": 455 | version "3.6.2" 456 | resolved "https://registry.yarnpkg.com/@react-aria/menu/-/menu-3.6.2.tgz#9061a603075dcb25bc916843a697d6c5dcb5c69b" 457 | integrity sha512-uBZHGuFAtOdoocBVZzoBpZQFJmkt5axlEUKjBgh2BuR5JX8aZiSxyKnfgAeb3aDEi9PZpOp6RWxHzOMBRg4TsA== 458 | dependencies: 459 | "@babel/runtime" "^7.6.2" 460 | "@react-aria/i18n" "^3.6.1" 461 | "@react-aria/interactions" "^3.12.0" 462 | "@react-aria/overlays" "^3.11.0" 463 | "@react-aria/selection" "^3.11.0" 464 | "@react-aria/utils" "^3.14.0" 465 | "@react-stately/collections" "^3.4.4" 466 | "@react-stately/menu" "^3.4.2" 467 | "@react-stately/tree" "^3.3.4" 468 | "@react-types/button" "^3.6.2" 469 | "@react-types/menu" "^3.7.2" 470 | "@react-types/shared" "^3.15.0" 471 | 472 | "@react-aria/overlays@3.11.0": 473 | version "3.11.0" 474 | resolved "https://registry.yarnpkg.com/@react-aria/overlays/-/overlays-3.11.0.tgz#9ecab7fbaf88b7c315215d55a3eb1ae1aa5b78f2" 475 | integrity sha512-NqLqxSiEW9AuUPcEHCIp2lHH1moNxlkP0CkuUMkT2/T5MCPm/Iq+uD53VSR+NyeCWU/aGH3ykj2kq9NSITJkOA== 476 | dependencies: 477 | "@babel/runtime" "^7.6.2" 478 | "@react-aria/focus" "^3.9.0" 479 | "@react-aria/i18n" "^3.6.1" 480 | "@react-aria/interactions" "^3.12.0" 481 | "@react-aria/ssr" "^3.3.0" 482 | "@react-aria/utils" "^3.14.0" 483 | "@react-aria/visually-hidden" "^3.5.0" 484 | "@react-stately/overlays" "^3.4.2" 485 | "@react-types/button" "^3.6.2" 486 | "@react-types/overlays" "^3.6.4" 487 | "@react-types/shared" "^3.15.0" 488 | 489 | "@react-aria/overlays@^3.11.0": 490 | version "3.14.0" 491 | resolved "https://registry.yarnpkg.com/@react-aria/overlays/-/overlays-3.14.0.tgz#2206ca33010dbf6f1986dac6019caeeb5632c03d" 492 | integrity sha512-lt4vOj44ho0LpmpaHwQ4VgX7eNfKXig9VD7cvE9u7uyECG51jqt9go19s4+/O+otX7pPrhdYlEB2FxLFJocxfw== 493 | dependencies: 494 | "@react-aria/focus" "^3.12.0" 495 | "@react-aria/i18n" "^3.7.1" 496 | "@react-aria/interactions" "^3.15.0" 497 | "@react-aria/ssr" "^3.6.0" 498 | "@react-aria/utils" "^3.16.0" 499 | "@react-aria/visually-hidden" "^3.8.0" 500 | "@react-stately/overlays" "^3.5.1" 501 | "@react-types/button" "^3.7.2" 502 | "@react-types/overlays" "^3.7.1" 503 | "@react-types/shared" "^3.18.0" 504 | "@swc/helpers" "^0.4.14" 505 | 506 | "@react-aria/radio@3.4.0": 507 | version "3.4.0" 508 | resolved "https://registry.yarnpkg.com/@react-aria/radio/-/radio-3.4.0.tgz#4cc930dee71b3bae70f9ceaed7085f7db4d448b4" 509 | integrity sha512-DUccHQxfI0PikXXQKarh/hLS/G+ZzfdQ00/sd57jzWsuRyukb+WywQhud29p5uO3wT33/MH9LZgSmb9dlvfabQ== 510 | dependencies: 511 | "@babel/runtime" "^7.6.2" 512 | "@react-aria/focus" "^3.9.0" 513 | "@react-aria/i18n" "^3.6.1" 514 | "@react-aria/interactions" "^3.12.0" 515 | "@react-aria/label" "^3.4.2" 516 | "@react-aria/utils" "^3.14.0" 517 | "@react-stately/radio" "^3.6.0" 518 | "@react-types/radio" "^3.3.0" 519 | "@react-types/shared" "^3.15.0" 520 | 521 | "@react-aria/selection@^3.11.0", "@react-aria/selection@^3.14.0": 522 | version "3.14.0" 523 | resolved "https://registry.yarnpkg.com/@react-aria/selection/-/selection-3.14.0.tgz#33520cee7d3f67da0f1c718694c8f557f03a487f" 524 | integrity sha512-4/cq3mP75/qbhz2OkWmrfL6MJ+7+KfFsT6wvVNvxgOWR0n4jivHToKi3DXo2TzInvNU+10Ha7FCWavZoUNgSlA== 525 | dependencies: 526 | "@react-aria/focus" "^3.12.0" 527 | "@react-aria/i18n" "^3.7.1" 528 | "@react-aria/interactions" "^3.15.0" 529 | "@react-aria/utils" "^3.16.0" 530 | "@react-stately/collections" "^3.7.0" 531 | "@react-stately/selection" "^3.13.0" 532 | "@react-types/shared" "^3.18.0" 533 | "@swc/helpers" "^0.4.14" 534 | 535 | "@react-aria/ssr@3.3.0": 536 | version "3.3.0" 537 | resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.3.0.tgz#25e81daf0c7a270a4a891159d8d984578e4512d8" 538 | integrity sha512-yNqUDuOVZIUGP81R87BJVi/ZUZp/nYOBXbPsRe7oltJOfErQZD+UezMpw4vM2KRz18cURffvmC8tJ6JTeyDtaQ== 539 | dependencies: 540 | "@babel/runtime" "^7.6.2" 541 | 542 | "@react-aria/ssr@^3.3.0", "@react-aria/ssr@^3.6.0": 543 | version "3.6.0" 544 | resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.6.0.tgz#e5d52bd1686ff229f68f806cf94ee29dd9f54fb7" 545 | integrity sha512-OFiYQdv+Yk7AO7IsQu/fAEPijbeTwrrEYvdNoJ3sblBBedD5j5fBTNWrUPNVlwC4XWWnWTCMaRIVsJujsFiWXg== 546 | dependencies: 547 | "@swc/helpers" "^0.4.14" 548 | 549 | "@react-aria/table@3.5.0": 550 | version "3.5.0" 551 | resolved "https://registry.yarnpkg.com/@react-aria/table/-/table-3.5.0.tgz#e7d8bf14de8d7ccb76090fd4bf9338764ed52690" 552 | integrity sha512-oYcsIEYbbjAzojRWUsAdtfxPzlEKBmk6o4svDHnGqC9HSj8/yExn8b8RB0veDP7E+5IdO62pUwUy48jBwWu2uw== 553 | dependencies: 554 | "@babel/runtime" "^7.6.2" 555 | "@react-aria/focus" "^3.9.0" 556 | "@react-aria/grid" "^3.5.0" 557 | "@react-aria/i18n" "^3.6.1" 558 | "@react-aria/interactions" "^3.12.0" 559 | "@react-aria/live-announcer" "^3.1.1" 560 | "@react-aria/selection" "^3.11.0" 561 | "@react-aria/utils" "^3.14.0" 562 | "@react-stately/table" "^3.5.0" 563 | "@react-stately/virtualizer" "^3.3.1" 564 | "@react-types/checkbox" "^3.4.0" 565 | "@react-types/grid" "^3.1.4" 566 | "@react-types/shared" "^3.15.0" 567 | "@react-types/table" "^3.3.2" 568 | 569 | "@react-aria/toggle@^3.4.0": 570 | version "3.6.0" 571 | resolved "https://registry.yarnpkg.com/@react-aria/toggle/-/toggle-3.6.0.tgz#c80b5743b58ab11daf3f46a2142fd87e898b3a2a" 572 | integrity sha512-W6xncx5zzqCaPU2XsgjWnACHL3WBpxphYLvF5XlICRg0nZVjGPIWPDDUGyDoPsSUeGMW2vxtFY6erKXtcy4Kgw== 573 | dependencies: 574 | "@react-aria/focus" "^3.12.0" 575 | "@react-aria/interactions" "^3.15.0" 576 | "@react-aria/utils" "^3.16.0" 577 | "@react-stately/toggle" "^3.5.1" 578 | "@react-types/checkbox" "^3.4.3" 579 | "@react-types/shared" "^3.18.0" 580 | "@react-types/switch" "^3.3.1" 581 | "@swc/helpers" "^0.4.14" 582 | 583 | "@react-aria/utils@3.14.0": 584 | version "3.14.0" 585 | resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.14.0.tgz#87877e89e959c8b6299da953ec3a7167de2192c3" 586 | integrity sha512-DHgmwNBNEhnb6DEYYAfbt99wprBqJJOBBeIpQ2g3+pxwlw4BZ+v4Qr+rDD0ZibWV0mYzt8zOhZ9StpId7iTF0Q== 587 | dependencies: 588 | "@babel/runtime" "^7.6.2" 589 | "@react-aria/ssr" "^3.3.0" 590 | "@react-stately/utils" "^3.5.1" 591 | "@react-types/shared" "^3.15.0" 592 | clsx "^1.1.1" 593 | 594 | "@react-aria/utils@^3.13.2", "@react-aria/utils@^3.14.0", "@react-aria/utils@^3.16.0": 595 | version "3.16.0" 596 | resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.16.0.tgz#0394f575e47b1c48a15844dc58e1775a9f72f8f5" 597 | integrity sha512-BumpgENDlXuoRPQm1OfVUYRcxY9vwuXw1AmUpwF61v55gAZT3LvJWsfF8jgfQNzLJr5jtr7xvUx7pXuEyFpJMA== 598 | dependencies: 599 | "@react-aria/ssr" "^3.6.0" 600 | "@react-stately/utils" "^3.6.0" 601 | "@react-types/shared" "^3.18.0" 602 | "@swc/helpers" "^0.4.14" 603 | clsx "^1.1.1" 604 | 605 | "@react-aria/visually-hidden@3.5.0": 606 | version "3.5.0" 607 | resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.5.0.tgz#aa8669545464cdb6a4b2ba47c9695d1405864a06" 608 | integrity sha512-tF/kCZCGv1yebwgH21cKbhjSV5CmB5/SAHOUM5YkO5V/lIFjaPtywcamIPI8F0JSfrwGF/Z9EqvqBxvIYGRlCA== 609 | dependencies: 610 | "@babel/runtime" "^7.6.2" 611 | "@react-aria/interactions" "^3.12.0" 612 | "@react-aria/utils" "^3.14.0" 613 | "@react-types/shared" "^3.15.0" 614 | clsx "^1.1.1" 615 | 616 | "@react-aria/visually-hidden@^3.5.0", "@react-aria/visually-hidden@^3.8.0": 617 | version "3.8.0" 618 | resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.8.0.tgz#9bdcf708e4e628041d8fbac66c7dcb98b9529da9" 619 | integrity sha512-Ox7VcO8vfdA1rCHPcUuP9DWfCI9bNFVlvN/u66AfjwBLH40MnGGdob5hZswQnbxOY4e0kwkMQDmZwNPYzBQgsg== 620 | dependencies: 621 | "@react-aria/interactions" "^3.15.0" 622 | "@react-aria/utils" "^3.16.0" 623 | "@react-types/shared" "^3.18.0" 624 | "@swc/helpers" "^0.4.14" 625 | clsx "^1.1.1" 626 | 627 | "@react-stately/checkbox@3.3.0": 628 | version "3.3.0" 629 | resolved "https://registry.yarnpkg.com/@react-stately/checkbox/-/checkbox-3.3.0.tgz#31cb5dedbb10b9ab7358f79228f34d09e0f1bf5f" 630 | integrity sha512-hYFJzEoreAmUKkcgd3ErDXtEqp65pfawfcygOr/3pe7MUGzl+MaauVUOg6Dh02Bxt+mdSX4mQXbJSfvm+8bmfA== 631 | dependencies: 632 | "@babel/runtime" "^7.6.2" 633 | "@react-stately/toggle" "^3.4.2" 634 | "@react-stately/utils" "^3.5.1" 635 | "@react-types/checkbox" "^3.4.0" 636 | "@react-types/shared" "^3.15.0" 637 | 638 | "@react-stately/checkbox@^3.3.0": 639 | version "3.4.1" 640 | resolved "https://registry.yarnpkg.com/@react-stately/checkbox/-/checkbox-3.4.1.tgz#3b0930ce773d64c465a8ddfdb0d461d4ea8a79b5" 641 | integrity sha512-Ju1EBuIE/JJbuhd8xMkgqf3KuSNpRrwXsgtI+Ur42F+lAedZH7vqy+5bZPo0Q3u0yHcNJzexZXOxHZNqq1ij8w== 642 | dependencies: 643 | "@react-stately/toggle" "^3.5.1" 644 | "@react-stately/utils" "^3.6.0" 645 | "@react-types/checkbox" "^3.4.3" 646 | "@react-types/shared" "^3.18.0" 647 | "@swc/helpers" "^0.4.14" 648 | 649 | "@react-stately/collections@3.4.4": 650 | version "3.4.4" 651 | resolved "https://registry.yarnpkg.com/@react-stately/collections/-/collections-3.4.4.tgz#9df0b690bac0d3a95bc01352937ec74160c6bd29" 652 | integrity sha512-gryUYCe6uzqE0ea5frTwOxOPpx/6Z42PRk7KetOh3ddN3Ts0j8XQP08jP1IB/7BC1QidrkHWvDCqGHxRiEjiIg== 653 | dependencies: 654 | "@babel/runtime" "^7.6.2" 655 | "@react-types/shared" "^3.15.0" 656 | 657 | "@react-stately/collections@^3.4.4", "@react-stately/collections@^3.7.0": 658 | version "3.7.0" 659 | resolved "https://registry.yarnpkg.com/@react-stately/collections/-/collections-3.7.0.tgz#5f032ba5e8b554e90bf1a2077220d2560618dbf7" 660 | integrity sha512-xZHJxjGXFe3LUbuNgR1yATBVSIQnm+ItLq2DJZo3JzTtRu3gEwLoRRoapPsBQnC5VsjcaimgoqvT05P0AlvCTQ== 661 | dependencies: 662 | "@react-types/shared" "^3.18.0" 663 | "@swc/helpers" "^0.4.14" 664 | 665 | "@react-stately/data@3.7.0": 666 | version "3.7.0" 667 | resolved "https://registry.yarnpkg.com/@react-stately/data/-/data-3.7.0.tgz#dc7267d8fa58537880bb23ad8d62cb38b295ae82" 668 | integrity sha512-+u5rKjraR7R6aMMXSDwH61jRRELnGGWr6xMFlk6G9fr8uAmil+AWrv8Dh8nZlJfy5I2hT1d8lbS9j5TRp/QFKg== 669 | dependencies: 670 | "@babel/runtime" "^7.6.2" 671 | "@react-types/shared" "^3.15.0" 672 | 673 | "@react-stately/grid@^3.4.0", "@react-stately/grid@^3.6.0": 674 | version "3.6.0" 675 | resolved "https://registry.yarnpkg.com/@react-stately/grid/-/grid-3.6.0.tgz#210d09efc4df415cfcffb73b6c8cfa18f5bab0f4" 676 | integrity sha512-Sq/ivfq9Kskghoe6rYh2PfhB9/jBGfoj8wUZ4bqHcalTrBjfUvkcWMSFosibYPNZFDkA7r00bbJPDJVf1VLhuw== 677 | dependencies: 678 | "@react-stately/collections" "^3.7.0" 679 | "@react-stately/selection" "^3.13.0" 680 | "@react-types/grid" "^3.1.7" 681 | "@react-types/shared" "^3.18.0" 682 | "@swc/helpers" "^0.4.14" 683 | 684 | "@react-stately/menu@3.4.2": 685 | version "3.4.2" 686 | resolved "https://registry.yarnpkg.com/@react-stately/menu/-/menu-3.4.2.tgz#5bb6847c9bf4a6140d561114b5f8709a4df12a51" 687 | integrity sha512-vFC8EloVEcqf6sgiP6ABIkC41ytjoJiGtj7Ws5OS7PvZNyxxDgJr4V0O3Pxd1T0AjlHCloBbojnvoTRwZiSr/A== 688 | dependencies: 689 | "@babel/runtime" "^7.6.2" 690 | "@react-stately/overlays" "^3.4.2" 691 | "@react-stately/utils" "^3.5.1" 692 | "@react-types/menu" "^3.7.2" 693 | "@react-types/shared" "^3.15.0" 694 | 695 | "@react-stately/menu@^3.4.2": 696 | version "3.5.1" 697 | resolved "https://registry.yarnpkg.com/@react-stately/menu/-/menu-3.5.1.tgz#2cffe84d8c93920822fdd92bf716205460873db7" 698 | integrity sha512-nnuZlDBFIc3gB34kofbKDStFg9r8rijY+7ez2VWQmss72I9D7+JTn7OXJxV0oQt2lBYmNfS5W6bC9uXk3Z4dLg== 699 | dependencies: 700 | "@react-stately/overlays" "^3.5.1" 701 | "@react-stately/utils" "^3.6.0" 702 | "@react-types/menu" "^3.9.0" 703 | "@react-types/shared" "^3.18.0" 704 | "@swc/helpers" "^0.4.14" 705 | 706 | "@react-stately/overlays@3.4.2": 707 | version "3.4.2" 708 | resolved "https://registry.yarnpkg.com/@react-stately/overlays/-/overlays-3.4.2.tgz#c6df94a65551137075263eeef70beba8b90b52a0" 709 | integrity sha512-UTCnn0aT+JL4ZhYPQYUWHwhmuR2T3vKTFUEZeZN9sTuDCctg08VfGoASJx8qofqkLwYJXeb8D5PMhhTDPiUQPw== 710 | dependencies: 711 | "@babel/runtime" "^7.6.2" 712 | "@react-stately/utils" "^3.5.1" 713 | "@react-types/overlays" "^3.6.4" 714 | 715 | "@react-stately/overlays@^3.4.2", "@react-stately/overlays@^3.5.1": 716 | version "3.5.1" 717 | resolved "https://registry.yarnpkg.com/@react-stately/overlays/-/overlays-3.5.1.tgz#7d876261fe288cfbc4cc56869481b7cd7a14e30f" 718 | integrity sha512-lDKqqpdaIQdJb8DS4+tT7p0TLyCeaUaFpEtWZNjyv1/nguoqYtSeRwnyPR4p/YM4AW7SJspNiTJSLQxkTMIa8w== 719 | dependencies: 720 | "@react-stately/utils" "^3.6.0" 721 | "@react-types/overlays" "^3.7.1" 722 | "@swc/helpers" "^0.4.14" 723 | 724 | "@react-stately/radio@3.6.0": 725 | version "3.6.0" 726 | resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.6.0.tgz#85846c0d3bd906cddccfb897eb900a5fd527d962" 727 | integrity sha512-hzNwIapDSnbk5mCim/AgHQTtHRgy2QiW95okfVnGflzO7nnws8WH/s2Va4f7UupWObPv8XTqHADUEng86mVBJA== 728 | dependencies: 729 | "@babel/runtime" "^7.6.2" 730 | "@react-stately/utils" "^3.5.1" 731 | "@react-types/radio" "^3.3.0" 732 | "@react-types/shared" "^3.15.0" 733 | 734 | "@react-stately/radio@^3.6.0": 735 | version "3.8.0" 736 | resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.8.0.tgz#0d67dc499b2bebf2411e5ac272bf98e4911f2d24" 737 | integrity sha512-3xNocZ8jlS8JcQtlS+pGhGLmrTA/P6zWs7Xi3Cx/I6ialFVL7IE0W37Z0XTYrvpNhE9hmG4+j63ZqQDNj2nu6A== 738 | dependencies: 739 | "@react-stately/utils" "^3.6.0" 740 | "@react-types/radio" "^3.4.1" 741 | "@react-types/shared" "^3.18.0" 742 | "@swc/helpers" "^0.4.14" 743 | 744 | "@react-stately/selection@^3.11.0", "@react-stately/selection@^3.13.0": 745 | version "3.13.0" 746 | resolved "https://registry.yarnpkg.com/@react-stately/selection/-/selection-3.13.0.tgz#a4efe8ebebd99cc38fa5cfe90c9038bbe155192a" 747 | integrity sha512-F6FiB5GIS6wdmDDJtD2ofr+y6ysLHcvHVyUZHm00aEup2hcNjtNx3x4MlFIc3tO1LvxDSIIWXJhPXdB4sb32uw== 748 | dependencies: 749 | "@react-stately/collections" "^3.7.0" 750 | "@react-stately/utils" "^3.6.0" 751 | "@react-types/shared" "^3.18.0" 752 | "@swc/helpers" "^0.4.14" 753 | 754 | "@react-stately/table@3.5.0": 755 | version "3.5.0" 756 | resolved "https://registry.yarnpkg.com/@react-stately/table/-/table-3.5.0.tgz#6c436be31c5de13ef6a179934296d85ed96dd21c" 757 | integrity sha512-C0HFfKMCOomqPtRCPs85AtoJGPnGu9mzFfwksFxAssdIatw3t66h5SJS0vSSql7Ku9h70scmvJR+nIOckx0IeA== 758 | dependencies: 759 | "@babel/runtime" "^7.6.2" 760 | "@react-stately/collections" "^3.4.4" 761 | "@react-stately/grid" "^3.4.0" 762 | "@react-stately/selection" "^3.11.0" 763 | "@react-types/grid" "^3.1.4" 764 | "@react-types/shared" "^3.15.0" 765 | "@react-types/table" "^3.3.2" 766 | 767 | "@react-stately/table@^3.5.0": 768 | version "3.9.0" 769 | resolved "https://registry.yarnpkg.com/@react-stately/table/-/table-3.9.0.tgz#8e8e60adec80f943d0f842b1629bfe84b0bef16b" 770 | integrity sha512-Cl0jmC5eCEhWBAhCjhGklsgYluziNZHF34lHnc99T/DPP+OxwrgwS9rJKTW7L6UOvHU/ADKjEwkE/fZuqVBohg== 771 | dependencies: 772 | "@react-stately/collections" "^3.7.0" 773 | "@react-stately/grid" "^3.6.0" 774 | "@react-stately/selection" "^3.13.0" 775 | "@react-types/grid" "^3.1.7" 776 | "@react-types/shared" "^3.18.0" 777 | "@react-types/table" "^3.6.0" 778 | "@swc/helpers" "^0.4.14" 779 | 780 | "@react-stately/toggle@3.4.2": 781 | version "3.4.2" 782 | resolved "https://registry.yarnpkg.com/@react-stately/toggle/-/toggle-3.4.2.tgz#8c70922ad559d9ef32ecf3cc3d122a66eb858f0d" 783 | integrity sha512-+pO13Ap/tj4optu6VjQrEAaAoZvJAEwarMUaZvrkc0kdvMTNPdiT/2vhN32yvsSW0ssuFqToa3jMrTylCbpo8w== 784 | dependencies: 785 | "@babel/runtime" "^7.6.2" 786 | "@react-stately/utils" "^3.5.1" 787 | "@react-types/checkbox" "^3.4.0" 788 | "@react-types/shared" "^3.15.0" 789 | 790 | "@react-stately/toggle@^3.4.2", "@react-stately/toggle@^3.5.1": 791 | version "3.5.1" 792 | resolved "https://registry.yarnpkg.com/@react-stately/toggle/-/toggle-3.5.1.tgz#9e8a2c55f8e18c5904c07f724cf7c056fd55660c" 793 | integrity sha512-PF4ZaATpXWu7DkneGSZ2/PA6LJ1MrhKNiaENTZlbojXMRr5kK33wPzaDW7I8O25IUm0+rvQicv7A6QkEOxgOPg== 794 | dependencies: 795 | "@react-stately/utils" "^3.6.0" 796 | "@react-types/checkbox" "^3.4.3" 797 | "@react-types/shared" "^3.18.0" 798 | "@swc/helpers" "^0.4.14" 799 | 800 | "@react-stately/tree@3.3.4": 801 | version "3.3.4" 802 | resolved "https://registry.yarnpkg.com/@react-stately/tree/-/tree-3.3.4.tgz#2b71436dd7ed3bd42983f4fd29a9417f947876f9" 803 | integrity sha512-CBgXvwa9qYBsJuxrAiVgGnm48eSxLe/6OjPMwH1pWf4s383Mx73MbbN4fS0oWDeXBVgdqz5/Xg/p8nvPIvl3WQ== 804 | dependencies: 805 | "@babel/runtime" "^7.6.2" 806 | "@react-stately/collections" "^3.4.4" 807 | "@react-stately/selection" "^3.11.0" 808 | "@react-stately/utils" "^3.5.1" 809 | "@react-types/shared" "^3.15.0" 810 | 811 | "@react-stately/tree@^3.3.4": 812 | version "3.6.0" 813 | resolved "https://registry.yarnpkg.com/@react-stately/tree/-/tree-3.6.0.tgz#bdcb645ca2e566d0a7e3dc1cdde13b491f34dfc1" 814 | integrity sha512-9ekYGaebgMmd2p6PGRzsvr8KsDsDnrJF2uLV1GMq9hBaMxOLN5/dpxgfZGdHWoF3MXgeHeLloqrleMNfO6g64Q== 815 | dependencies: 816 | "@react-stately/collections" "^3.7.0" 817 | "@react-stately/selection" "^3.13.0" 818 | "@react-stately/utils" "^3.6.0" 819 | "@react-types/shared" "^3.18.0" 820 | "@swc/helpers" "^0.4.14" 821 | 822 | "@react-stately/utils@^3.5.1", "@react-stately/utils@^3.6.0": 823 | version "3.6.0" 824 | resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.6.0.tgz#f273e7fcb348254347d2e88c8f0c45571060c207" 825 | integrity sha512-rptF7iUWDrquaYvBAS4QQhOBQyLBncDeHF03WnHXAxnuPJXNcr9cXJtjJPGCs036ZB8Q2hc9BGG5wNyMkF5v+Q== 826 | dependencies: 827 | "@swc/helpers" "^0.4.14" 828 | 829 | "@react-stately/virtualizer@^3.3.1", "@react-stately/virtualizer@^3.5.1": 830 | version "3.5.1" 831 | resolved "https://registry.yarnpkg.com/@react-stately/virtualizer/-/virtualizer-3.5.1.tgz#176516da9b97f2a78159655d95412e98f1226c82" 832 | integrity sha512-TVszEl8+os5eAwoETAJ0ndz5cnYFQs52OIcWonKRYbNp5KvWAV+OA2HuIrB3SSC29ZRB2bDqpj4S2LY4wWJPCw== 833 | dependencies: 834 | "@react-aria/utils" "^3.16.0" 835 | "@react-types/shared" "^3.18.0" 836 | "@swc/helpers" "^0.4.14" 837 | 838 | "@react-types/button@^3.6.2", "@react-types/button@^3.7.2": 839 | version "3.7.2" 840 | resolved "https://registry.yarnpkg.com/@react-types/button/-/button-3.7.2.tgz#954566e9b576780bda0c018d7f5046a1d44f5677" 841 | integrity sha512-P7L+r+k4yVrvsfEWx3wlzbb+G7c9XNWzxEBfy6WX9HnKb/J5bo4sP5Zi8/TFVaKTlaG60wmVhdr+8KWSjL0GuQ== 842 | dependencies: 843 | "@react-types/shared" "^3.18.0" 844 | 845 | "@react-types/checkbox@3.4.0": 846 | version "3.4.0" 847 | resolved "https://registry.yarnpkg.com/@react-types/checkbox/-/checkbox-3.4.0.tgz#f2d6acabdf953cf2f7b8b874dab9ac8ae1c020fa" 848 | integrity sha512-ZDqbtAYWWSGPjL4ydinaWHrD65Qft9yEGA6BCKQTxdJCgxiXxgGkA3pI7Sxwk+OulR+O0CYJ1JROExM9cSJyyQ== 849 | dependencies: 850 | "@react-types/shared" "^3.15.0" 851 | 852 | "@react-types/checkbox@^3.4.0", "@react-types/checkbox@^3.4.3": 853 | version "3.4.3" 854 | resolved "https://registry.yarnpkg.com/@react-types/checkbox/-/checkbox-3.4.3.tgz#fb1585030b000a9fcc87d624a218dd3f2e3038d1" 855 | integrity sha512-kn2f8mK88yvRrCfh8jYCDL2xpPhSApFWk9+qjWGsX/bnGGob7D5n71YYQ4cS58117YK2nrLc/AyQJXcZnJiA7Q== 856 | dependencies: 857 | "@react-types/shared" "^3.18.0" 858 | 859 | "@react-types/dialog@^3.4.4": 860 | version "3.5.1" 861 | resolved "https://registry.yarnpkg.com/@react-types/dialog/-/dialog-3.5.1.tgz#0e1faa133238e026c4ba52c62fd2c8d748539b1f" 862 | integrity sha512-a0eeGIITFuOxY2fIL1WkJT5yWIMIQ+VM4vE5MtS59zV9JynDaiL4uNL4yg08kJZm8oyzxIWwrov4gAbEVVWbDQ== 863 | dependencies: 864 | "@react-types/overlays" "^3.7.1" 865 | "@react-types/shared" "^3.18.0" 866 | 867 | "@react-types/grid@3.1.4": 868 | version "3.1.4" 869 | resolved "https://registry.yarnpkg.com/@react-types/grid/-/grid-3.1.4.tgz#2275b2f83716e4a0f8aab3e53c5cbc27734b7531" 870 | integrity sha512-i9f2VEnlex5BFV/AdSUGg71xoukn2i/XT2VLxUXUagy23gFxKJk9Xr3BT9bw+pRRLPwm/Ib+h9ELUdgi8lUAKA== 871 | dependencies: 872 | "@react-types/shared" "^3.15.0" 873 | 874 | "@react-types/grid@^3.1.4", "@react-types/grid@^3.1.7": 875 | version "3.1.7" 876 | resolved "https://registry.yarnpkg.com/@react-types/grid/-/grid-3.1.7.tgz#f031b7c258550610cc3ba2e197b95214c1472177" 877 | integrity sha512-YKo/AbJrgWErPmr5y0K4o6Ts9ModFv5+2FVujecIydu3zLuHsVcx//6uVeHSy2W+uTV9vU/dpMP+GGgg+vWQhw== 878 | dependencies: 879 | "@react-types/shared" "^3.18.0" 880 | 881 | "@react-types/label@^3.7.0", "@react-types/label@^3.7.3": 882 | version "3.7.3" 883 | resolved "https://registry.yarnpkg.com/@react-types/label/-/label-3.7.3.tgz#adab02949088a450f9dd947319bc5ca66eef5c4b" 884 | integrity sha512-TKuQ2REPl4UVq/wl3CAujzixeNVVso0Kob+0T1nP8jIt9k9ssdLMAgSh8Z4zNNfR+oBIngYOA9IToMnbx6qACA== 885 | dependencies: 886 | "@react-types/shared" "^3.18.0" 887 | 888 | "@react-types/link@^3.3.4": 889 | version "3.4.1" 890 | resolved "https://registry.yarnpkg.com/@react-types/link/-/link-3.4.1.tgz#e6aa92b640f8e09c29c84b6954f9da3f89a965e1" 891 | integrity sha512-ZoCfuS+0A0QrCG5kfp4ZeqXCMW39WCyTRSD9FCQvtTYOgCT4G5rvXBnCKIaN8T8w6WbgEbkg2wpRSG3Qd0GZJQ== 892 | dependencies: 893 | "@react-aria/interactions" "^3.15.0" 894 | "@react-types/shared" "^3.18.0" 895 | 896 | "@react-types/menu@3.7.2": 897 | version "3.7.2" 898 | resolved "https://registry.yarnpkg.com/@react-types/menu/-/menu-3.7.2.tgz#04a0447f791a7ffa0a6c8dc160cbff3bbeeedefd" 899 | integrity sha512-BXMWrT3VCP6NTf0y7v1YYqRJNXkUKLzGXI+n7Qv9+aiZZfd3NNMyk20byHczhFoT2yuCcU5xhyOXzkxSo6ew3A== 900 | dependencies: 901 | "@react-types/overlays" "^3.6.4" 902 | "@react-types/shared" "^3.15.0" 903 | 904 | "@react-types/menu@^3.7.2", "@react-types/menu@^3.9.0": 905 | version "3.9.0" 906 | resolved "https://registry.yarnpkg.com/@react-types/menu/-/menu-3.9.0.tgz#2c98335e9e563f06a25996cde73b99a8920ef6a9" 907 | integrity sha512-aalUYwOkzcHn8X59vllgtH96YLqZvAr4mTj5GEs8chv5JVlmArUzcDiOymNrYZ0p9JzshzSUqxxXyCFpnnxghw== 908 | dependencies: 909 | "@react-types/overlays" "^3.7.1" 910 | "@react-types/shared" "^3.18.0" 911 | 912 | "@react-types/overlays@3.6.4": 913 | version "3.6.4" 914 | resolved "https://registry.yarnpkg.com/@react-types/overlays/-/overlays-3.6.4.tgz#4ae4d7b3b38c45d122b0ca2dc88a57f08e89fd0e" 915 | integrity sha512-REC4IyDUHS5WhwxMxcvTo+LdrvlSYpJKjyYkPFtJoDBpM3gmXfakTY3KW6K5eZkFv3TnmXjDF9Q2yboEk2u6WQ== 916 | dependencies: 917 | "@react-types/shared" "^3.15.0" 918 | 919 | "@react-types/overlays@^3.6.4", "@react-types/overlays@^3.7.1": 920 | version "3.7.1" 921 | resolved "https://registry.yarnpkg.com/@react-types/overlays/-/overlays-3.7.1.tgz#f06bf0b7845e5a609c3a3eda0bb3f2aea71a143a" 922 | integrity sha512-2AwYQkelr4p1uXR1KJIGQEbubOumzM853Hsyup2y/TaMbjvBWOVyzYWSrQURex667JZmpwUb0qjkEH+4z3Q74g== 923 | dependencies: 924 | "@react-types/shared" "^3.18.0" 925 | 926 | "@react-types/radio@^3.3.0", "@react-types/radio@^3.4.1": 927 | version "3.4.1" 928 | resolved "https://registry.yarnpkg.com/@react-types/radio/-/radio-3.4.1.tgz#e79efb40c35109d888d3aa8de4d8dd0f4c4028e3" 929 | integrity sha512-8r7s+Zj0JoIpYgbuHjhE/eWUHKiptaFvYXMH986yKAg969VQlQiP9Dm4oWv2d+p26WbGK7oJDQJCt8NjASWl8g== 930 | dependencies: 931 | "@react-types/shared" "^3.18.0" 932 | 933 | "@react-types/shared@3.15.0": 934 | version "3.15.0" 935 | resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.15.0.tgz#a4a78f36bc8daaefe6e9a9df1f453271639c2233" 936 | integrity sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA== 937 | 938 | "@react-types/shared@^3.14.0", "@react-types/shared@^3.15.0", "@react-types/shared@^3.18.0": 939 | version "3.18.0" 940 | resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.18.0.tgz#4f2bacad5912eba6667695ee3f9e8ac9f79849f7" 941 | integrity sha512-WJj7RAPj7NLdR/VzFObgvCju9NMDktWSruSPJ3DrL5qyrrvJoyMW67L4YjNoVp2b7Y+k10E0q4fSMV0PlJoL0w== 942 | 943 | "@react-types/switch@^3.3.1": 944 | version "3.3.1" 945 | resolved "https://registry.yarnpkg.com/@react-types/switch/-/switch-3.3.1.tgz#76f644391918d3035c7dc3228724b462dfd81924" 946 | integrity sha512-EvKWPtcOLTF7Wh8YCxJEtmqRZX3qSLRYPaIntl/CKF+14QXErPXwOn0ObLfy6VNda5jDJBOecWpgC69JEjkvfw== 947 | dependencies: 948 | "@react-types/checkbox" "^3.4.3" 949 | "@react-types/shared" "^3.18.0" 950 | 951 | "@react-types/table@^3.3.2", "@react-types/table@^3.6.0": 952 | version "3.6.0" 953 | resolved "https://registry.yarnpkg.com/@react-types/table/-/table-3.6.0.tgz#f71718ac85a9352a5f52a2d8d8bdf98883cf1f54" 954 | integrity sha512-jUp8yTWJuJlqpJY+EIEppgjFsZ3oj4y9zg1oUO+l1rqRWEqmAdoq42g3dTZHmnz9hQJkUeo34I1HGaB9kxNqvg== 955 | dependencies: 956 | "@react-types/grid" "^3.1.7" 957 | "@react-types/shared" "^3.18.0" 958 | 959 | "@rushstack/eslint-patch@^1.1.3": 960 | version "1.2.0" 961 | resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz" 962 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 963 | 964 | "@stitches/react@1.2.8": 965 | version "1.2.8" 966 | resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.8.tgz#954f8008be8d9c65c4e58efa0937f32388ce3a38" 967 | integrity sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA== 968 | 969 | "@swc/helpers@0.4.14", "@swc/helpers@^0.4.14": 970 | version "0.4.14" 971 | resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz" 972 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 973 | dependencies: 974 | tslib "^2.4.0" 975 | 976 | "@tailwindcss/forms@^0.5.4": 977 | version "0.5.4" 978 | resolved "https://registry.yarnpkg.com/@tailwindcss/forms/-/forms-0.5.4.tgz#5316a782fd95369eb5b6fd01d46323b3dce656a2" 979 | integrity sha512-YAm12D3R7/9Mh4jFbYSMnsd6jG++8KxogWgqs7hbdo/86aWjjlIEvL7+QYdVELmAI0InXTpZqFIg5e7aDVWI2Q== 980 | dependencies: 981 | mini-svg-data-uri "^1.2.3" 982 | 983 | "@tailwindcss/line-clamp@^0.4.4": 984 | version "0.4.4" 985 | resolved "https://registry.yarnpkg.com/@tailwindcss/line-clamp/-/line-clamp-0.4.4.tgz#767cf8e5d528a5d90c9740ca66eb079f5e87d423" 986 | integrity sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g== 987 | 988 | "@types/json5@^0.0.29": 989 | version "0.0.29" 990 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" 991 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 992 | 993 | "@typescript-eslint/parser@^5.42.0": 994 | version "5.51.0" 995 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz" 996 | integrity sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA== 997 | dependencies: 998 | "@typescript-eslint/scope-manager" "5.51.0" 999 | "@typescript-eslint/types" "5.51.0" 1000 | "@typescript-eslint/typescript-estree" "5.51.0" 1001 | debug "^4.3.4" 1002 | 1003 | "@typescript-eslint/scope-manager@5.51.0": 1004 | version "5.51.0" 1005 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz" 1006 | integrity sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ== 1007 | dependencies: 1008 | "@typescript-eslint/types" "5.51.0" 1009 | "@typescript-eslint/visitor-keys" "5.51.0" 1010 | 1011 | "@typescript-eslint/types@5.51.0": 1012 | version "5.51.0" 1013 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz" 1014 | integrity sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw== 1015 | 1016 | "@typescript-eslint/typescript-estree@5.51.0": 1017 | version "5.51.0" 1018 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz" 1019 | integrity sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA== 1020 | dependencies: 1021 | "@typescript-eslint/types" "5.51.0" 1022 | "@typescript-eslint/visitor-keys" "5.51.0" 1023 | debug "^4.3.4" 1024 | globby "^11.1.0" 1025 | is-glob "^4.0.3" 1026 | semver "^7.3.7" 1027 | tsutils "^3.21.0" 1028 | 1029 | "@typescript-eslint/visitor-keys@5.51.0": 1030 | version "5.51.0" 1031 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz" 1032 | integrity sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ== 1033 | dependencies: 1034 | "@typescript-eslint/types" "5.51.0" 1035 | eslint-visitor-keys "^3.3.0" 1036 | 1037 | "@vercel/analytics@^1.0.1": 1038 | version "1.0.1" 1039 | resolved "https://registry.yarnpkg.com/@vercel/analytics/-/analytics-1.0.1.tgz#38308a626c91866cb00a249c08bf65251e9b9d81" 1040 | integrity sha512-Ux0c9qUfkcPqng3vrR0GTrlQdqNJ2JREn/2ydrVuKwM3RtMfF2mWX31Ijqo1opSjNAq6rK76PwtANw6kl6TAow== 1041 | 1042 | acorn-jsx@^5.3.2: 1043 | version "5.3.2" 1044 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 1045 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 1046 | 1047 | acorn-node@^1.8.2: 1048 | version "1.8.2" 1049 | resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz" 1050 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 1051 | dependencies: 1052 | acorn "^7.0.0" 1053 | acorn-walk "^7.0.0" 1054 | xtend "^4.0.2" 1055 | 1056 | acorn-walk@^7.0.0: 1057 | version "7.2.0" 1058 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" 1059 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1060 | 1061 | acorn@^7.0.0: 1062 | version "7.4.1" 1063 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" 1064 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1065 | 1066 | acorn@^8.8.0: 1067 | version "8.8.2" 1068 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz" 1069 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 1070 | 1071 | ajv@^6.10.0, ajv@^6.12.4: 1072 | version "6.12.6" 1073 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 1074 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 1075 | dependencies: 1076 | fast-deep-equal "^3.1.1" 1077 | fast-json-stable-stringify "^2.0.0" 1078 | json-schema-traverse "^0.4.1" 1079 | uri-js "^4.2.2" 1080 | 1081 | ansi-regex@^5.0.1: 1082 | version "5.0.1" 1083 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 1084 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1085 | 1086 | ansi-styles@^4.1.0: 1087 | version "4.3.0" 1088 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 1089 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1090 | dependencies: 1091 | color-convert "^2.0.1" 1092 | 1093 | anymatch@~3.1.2: 1094 | version "3.1.3" 1095 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" 1096 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 1097 | dependencies: 1098 | normalize-path "^3.0.0" 1099 | picomatch "^2.0.4" 1100 | 1101 | arg@^5.0.2: 1102 | version "5.0.2" 1103 | resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" 1104 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 1105 | 1106 | argparse@^2.0.1: 1107 | version "2.0.1" 1108 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 1109 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 1110 | 1111 | aria-query@^5.1.3: 1112 | version "5.1.3" 1113 | resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz" 1114 | integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== 1115 | dependencies: 1116 | deep-equal "^2.0.5" 1117 | 1118 | array-includes@^3.1.5, array-includes@^3.1.6: 1119 | version "3.1.6" 1120 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" 1121 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 1122 | dependencies: 1123 | call-bind "^1.0.2" 1124 | define-properties "^1.1.4" 1125 | es-abstract "^1.20.4" 1126 | get-intrinsic "^1.1.3" 1127 | is-string "^1.0.7" 1128 | 1129 | array-union@^2.1.0: 1130 | version "2.1.0" 1131 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 1132 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 1133 | 1134 | array.prototype.flat@^1.3.1: 1135 | version "1.3.1" 1136 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" 1137 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 1138 | dependencies: 1139 | call-bind "^1.0.2" 1140 | define-properties "^1.1.4" 1141 | es-abstract "^1.20.4" 1142 | es-shim-unscopables "^1.0.0" 1143 | 1144 | array.prototype.flatmap@^1.3.1: 1145 | version "1.3.1" 1146 | resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" 1147 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 1148 | dependencies: 1149 | call-bind "^1.0.2" 1150 | define-properties "^1.1.4" 1151 | es-abstract "^1.20.4" 1152 | es-shim-unscopables "^1.0.0" 1153 | 1154 | array.prototype.tosorted@^1.1.1: 1155 | version "1.1.1" 1156 | resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" 1157 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 1158 | dependencies: 1159 | call-bind "^1.0.2" 1160 | define-properties "^1.1.4" 1161 | es-abstract "^1.20.4" 1162 | es-shim-unscopables "^1.0.0" 1163 | get-intrinsic "^1.1.3" 1164 | 1165 | ast-types-flow@^0.0.7: 1166 | version "0.0.7" 1167 | resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" 1168 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 1169 | 1170 | asynckit@^0.4.0: 1171 | version "0.4.0" 1172 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" 1173 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 1174 | 1175 | autoprefixer@^10.4.13: 1176 | version "10.4.13" 1177 | resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz" 1178 | integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== 1179 | dependencies: 1180 | browserslist "^4.21.4" 1181 | caniuse-lite "^1.0.30001426" 1182 | fraction.js "^4.2.0" 1183 | normalize-range "^0.1.2" 1184 | picocolors "^1.0.0" 1185 | postcss-value-parser "^4.2.0" 1186 | 1187 | available-typed-arrays@^1.0.5: 1188 | version "1.0.5" 1189 | resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz" 1190 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 1191 | 1192 | axe-core@^4.6.2: 1193 | version "4.6.3" 1194 | resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz" 1195 | integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== 1196 | 1197 | axios@^1.3.4: 1198 | version "1.3.4" 1199 | resolved "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz" 1200 | integrity sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ== 1201 | dependencies: 1202 | follow-redirects "^1.15.0" 1203 | form-data "^4.0.0" 1204 | proxy-from-env "^1.1.0" 1205 | 1206 | axobject-query@^3.1.1: 1207 | version "3.1.1" 1208 | resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz" 1209 | integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== 1210 | dependencies: 1211 | deep-equal "^2.0.5" 1212 | 1213 | balanced-match@^1.0.0: 1214 | version "1.0.2" 1215 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 1216 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1217 | 1218 | binary-extensions@^2.0.0: 1219 | version "2.2.0" 1220 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 1221 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 1222 | 1223 | bootstrap-icons@^1.10.3: 1224 | version "1.10.3" 1225 | resolved "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.10.3.tgz" 1226 | integrity sha512-7Qvj0j0idEm/DdX9Q0CpxAnJYqBCFCiUI6qzSPYfERMcokVuV9Mdm/AJiVZI8+Gawe4h/l6zFcOzvV7oXCZArw== 1227 | 1228 | brace-expansion@^1.1.7: 1229 | version "1.1.11" 1230 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 1231 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1232 | dependencies: 1233 | balanced-match "^1.0.0" 1234 | concat-map "0.0.1" 1235 | 1236 | braces@^3.0.2, braces@~3.0.2: 1237 | version "3.0.2" 1238 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 1239 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1240 | dependencies: 1241 | fill-range "^7.0.1" 1242 | 1243 | browserslist@^4.21.4: 1244 | version "4.21.5" 1245 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz" 1246 | integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== 1247 | dependencies: 1248 | caniuse-lite "^1.0.30001449" 1249 | electron-to-chromium "^1.4.284" 1250 | node-releases "^2.0.8" 1251 | update-browserslist-db "^1.0.10" 1252 | 1253 | buffer-writer@2.0.0: 1254 | version "2.0.0" 1255 | resolved "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz" 1256 | integrity sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw== 1257 | 1258 | call-bind@^1.0.0, call-bind@^1.0.2: 1259 | version "1.0.2" 1260 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 1261 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1262 | dependencies: 1263 | function-bind "^1.1.1" 1264 | get-intrinsic "^1.0.2" 1265 | 1266 | callsites@^3.0.0: 1267 | version "3.1.0" 1268 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 1269 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1270 | 1271 | camelcase-css@^2.0.1: 1272 | version "2.0.1" 1273 | resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" 1274 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 1275 | 1276 | caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: 1277 | version "1.0.30001451" 1278 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz" 1279 | integrity sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w== 1280 | 1281 | chalk@^4.0.0: 1282 | version "4.1.2" 1283 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 1284 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1285 | dependencies: 1286 | ansi-styles "^4.1.0" 1287 | supports-color "^7.1.0" 1288 | 1289 | chokidar@^3.5.3: 1290 | version "3.5.3" 1291 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 1292 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 1293 | dependencies: 1294 | anymatch "~3.1.2" 1295 | braces "~3.0.2" 1296 | glob-parent "~5.1.2" 1297 | is-binary-path "~2.1.0" 1298 | is-glob "~4.0.1" 1299 | normalize-path "~3.0.0" 1300 | readdirp "~3.6.0" 1301 | optionalDependencies: 1302 | fsevents "~2.3.2" 1303 | 1304 | client-only@0.0.1: 1305 | version "0.0.1" 1306 | resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" 1307 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== 1308 | 1309 | clsx@^1.1.1: 1310 | version "1.2.1" 1311 | resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" 1312 | integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== 1313 | 1314 | color-convert@^2.0.1: 1315 | version "2.0.1" 1316 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 1317 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1318 | dependencies: 1319 | color-name "~1.1.4" 1320 | 1321 | color-name@^1.1.4, color-name@~1.1.4: 1322 | version "1.1.4" 1323 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1324 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1325 | 1326 | combined-stream@^1.0.8: 1327 | version "1.0.8" 1328 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" 1329 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1330 | dependencies: 1331 | delayed-stream "~1.0.0" 1332 | 1333 | concat-map@0.0.1: 1334 | version "0.0.1" 1335 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 1336 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 1337 | 1338 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 1339 | version "7.0.3" 1340 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 1341 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1342 | dependencies: 1343 | path-key "^3.1.0" 1344 | shebang-command "^2.0.0" 1345 | which "^2.0.1" 1346 | 1347 | cssesc@^3.0.0: 1348 | version "3.0.0" 1349 | resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" 1350 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 1351 | 1352 | damerau-levenshtein@^1.0.8: 1353 | version "1.0.8" 1354 | resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" 1355 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 1356 | 1357 | debug@^3.2.7: 1358 | version "3.2.7" 1359 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" 1360 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 1361 | dependencies: 1362 | ms "^2.1.1" 1363 | 1364 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 1365 | version "4.3.4" 1366 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 1367 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1368 | dependencies: 1369 | ms "2.1.2" 1370 | 1371 | deep-equal@^2.0.5: 1372 | version "2.2.0" 1373 | resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz" 1374 | integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== 1375 | dependencies: 1376 | call-bind "^1.0.2" 1377 | es-get-iterator "^1.1.2" 1378 | get-intrinsic "^1.1.3" 1379 | is-arguments "^1.1.1" 1380 | is-array-buffer "^3.0.1" 1381 | is-date-object "^1.0.5" 1382 | is-regex "^1.1.4" 1383 | is-shared-array-buffer "^1.0.2" 1384 | isarray "^2.0.5" 1385 | object-is "^1.1.5" 1386 | object-keys "^1.1.1" 1387 | object.assign "^4.1.4" 1388 | regexp.prototype.flags "^1.4.3" 1389 | side-channel "^1.0.4" 1390 | which-boxed-primitive "^1.0.2" 1391 | which-collection "^1.0.1" 1392 | which-typed-array "^1.1.9" 1393 | 1394 | deep-is@^0.1.3: 1395 | version "0.1.4" 1396 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1397 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1398 | 1399 | define-lazy-prop@^2.0.0: 1400 | version "2.0.0" 1401 | resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" 1402 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== 1403 | 1404 | define-properties@^1.1.3, define-properties@^1.1.4: 1405 | version "1.1.4" 1406 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" 1407 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 1408 | dependencies: 1409 | has-property-descriptors "^1.0.0" 1410 | object-keys "^1.1.1" 1411 | 1412 | defined@^1.0.0: 1413 | version "1.0.1" 1414 | resolved "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz" 1415 | integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== 1416 | 1417 | delayed-stream@~1.0.0: 1418 | version "1.0.0" 1419 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" 1420 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 1421 | 1422 | detective@^5.2.1: 1423 | version "5.2.1" 1424 | resolved "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz" 1425 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 1426 | dependencies: 1427 | acorn-node "^1.8.2" 1428 | defined "^1.0.0" 1429 | minimist "^1.2.6" 1430 | 1431 | didyoumean@^1.2.2: 1432 | version "1.2.2" 1433 | resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" 1434 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 1435 | 1436 | dir-glob@^3.0.1: 1437 | version "3.0.1" 1438 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" 1439 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1440 | dependencies: 1441 | path-type "^4.0.0" 1442 | 1443 | dlv@^1.1.3: 1444 | version "1.1.3" 1445 | resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" 1446 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 1447 | 1448 | doctrine@^2.1.0: 1449 | version "2.1.0" 1450 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 1451 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1452 | dependencies: 1453 | esutils "^2.0.2" 1454 | 1455 | doctrine@^3.0.0: 1456 | version "3.0.0" 1457 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 1458 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1459 | dependencies: 1460 | esutils "^2.0.2" 1461 | 1462 | dotenv@^16.0.3: 1463 | version "16.0.3" 1464 | resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz" 1465 | integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== 1466 | 1467 | electron-to-chromium@^1.4.284: 1468 | version "1.4.292" 1469 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.292.tgz" 1470 | integrity sha512-ESWOSyJy5odDlE8wvh5NNAMORv4r6assPwIPGHEMWrWD0SONXcG/xT+9aD9CQyeRwyYDPo6dJT4Bbeg5uevVQQ== 1471 | 1472 | emoji-regex@^9.2.2: 1473 | version "9.2.2" 1474 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" 1475 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 1476 | 1477 | enhanced-resolve@^5.10.0: 1478 | version "5.12.0" 1479 | resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz" 1480 | integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== 1481 | dependencies: 1482 | graceful-fs "^4.2.4" 1483 | tapable "^2.2.0" 1484 | 1485 | es-abstract@^1.19.0, es-abstract@^1.20.4: 1486 | version "1.21.1" 1487 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz" 1488 | integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== 1489 | dependencies: 1490 | available-typed-arrays "^1.0.5" 1491 | call-bind "^1.0.2" 1492 | es-set-tostringtag "^2.0.1" 1493 | es-to-primitive "^1.2.1" 1494 | function-bind "^1.1.1" 1495 | function.prototype.name "^1.1.5" 1496 | get-intrinsic "^1.1.3" 1497 | get-symbol-description "^1.0.0" 1498 | globalthis "^1.0.3" 1499 | gopd "^1.0.1" 1500 | has "^1.0.3" 1501 | has-property-descriptors "^1.0.0" 1502 | has-proto "^1.0.1" 1503 | has-symbols "^1.0.3" 1504 | internal-slot "^1.0.4" 1505 | is-array-buffer "^3.0.1" 1506 | is-callable "^1.2.7" 1507 | is-negative-zero "^2.0.2" 1508 | is-regex "^1.1.4" 1509 | is-shared-array-buffer "^1.0.2" 1510 | is-string "^1.0.7" 1511 | is-typed-array "^1.1.10" 1512 | is-weakref "^1.0.2" 1513 | object-inspect "^1.12.2" 1514 | object-keys "^1.1.1" 1515 | object.assign "^4.1.4" 1516 | regexp.prototype.flags "^1.4.3" 1517 | safe-regex-test "^1.0.0" 1518 | string.prototype.trimend "^1.0.6" 1519 | string.prototype.trimstart "^1.0.6" 1520 | typed-array-length "^1.0.4" 1521 | unbox-primitive "^1.0.2" 1522 | which-typed-array "^1.1.9" 1523 | 1524 | es-get-iterator@^1.1.2: 1525 | version "1.1.3" 1526 | resolved "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz" 1527 | integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== 1528 | dependencies: 1529 | call-bind "^1.0.2" 1530 | get-intrinsic "^1.1.3" 1531 | has-symbols "^1.0.3" 1532 | is-arguments "^1.1.1" 1533 | is-map "^2.0.2" 1534 | is-set "^2.0.2" 1535 | is-string "^1.0.7" 1536 | isarray "^2.0.5" 1537 | stop-iteration-iterator "^1.0.0" 1538 | 1539 | es-set-tostringtag@^2.0.1: 1540 | version "2.0.1" 1541 | resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz" 1542 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 1543 | dependencies: 1544 | get-intrinsic "^1.1.3" 1545 | has "^1.0.3" 1546 | has-tostringtag "^1.0.0" 1547 | 1548 | es-shim-unscopables@^1.0.0: 1549 | version "1.0.0" 1550 | resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" 1551 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 1552 | dependencies: 1553 | has "^1.0.3" 1554 | 1555 | es-to-primitive@^1.2.1: 1556 | version "1.2.1" 1557 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 1558 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1559 | dependencies: 1560 | is-callable "^1.1.4" 1561 | is-date-object "^1.0.1" 1562 | is-symbol "^1.0.2" 1563 | 1564 | escalade@^3.1.1: 1565 | version "3.1.1" 1566 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1567 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1568 | 1569 | escape-string-regexp@^4.0.0: 1570 | version "4.0.0" 1571 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 1572 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1573 | 1574 | eslint-config-next@13.1.6: 1575 | version "13.1.6" 1576 | resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.6.tgz" 1577 | integrity sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw== 1578 | dependencies: 1579 | "@next/eslint-plugin-next" "13.1.6" 1580 | "@rushstack/eslint-patch" "^1.1.3" 1581 | "@typescript-eslint/parser" "^5.42.0" 1582 | eslint-import-resolver-node "^0.3.6" 1583 | eslint-import-resolver-typescript "^3.5.2" 1584 | eslint-plugin-import "^2.26.0" 1585 | eslint-plugin-jsx-a11y "^6.5.1" 1586 | eslint-plugin-react "^7.31.7" 1587 | eslint-plugin-react-hooks "^4.5.0" 1588 | 1589 | eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: 1590 | version "0.3.7" 1591 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz" 1592 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 1593 | dependencies: 1594 | debug "^3.2.7" 1595 | is-core-module "^2.11.0" 1596 | resolve "^1.22.1" 1597 | 1598 | eslint-import-resolver-typescript@^3.5.2: 1599 | version "3.5.3" 1600 | resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz" 1601 | integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== 1602 | dependencies: 1603 | debug "^4.3.4" 1604 | enhanced-resolve "^5.10.0" 1605 | get-tsconfig "^4.2.0" 1606 | globby "^13.1.2" 1607 | is-core-module "^2.10.0" 1608 | is-glob "^4.0.3" 1609 | synckit "^0.8.4" 1610 | 1611 | eslint-module-utils@^2.7.4: 1612 | version "2.7.4" 1613 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz" 1614 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 1615 | dependencies: 1616 | debug "^3.2.7" 1617 | 1618 | eslint-plugin-import@^2.26.0: 1619 | version "2.27.5" 1620 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz" 1621 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 1622 | dependencies: 1623 | array-includes "^3.1.6" 1624 | array.prototype.flat "^1.3.1" 1625 | array.prototype.flatmap "^1.3.1" 1626 | debug "^3.2.7" 1627 | doctrine "^2.1.0" 1628 | eslint-import-resolver-node "^0.3.7" 1629 | eslint-module-utils "^2.7.4" 1630 | has "^1.0.3" 1631 | is-core-module "^2.11.0" 1632 | is-glob "^4.0.3" 1633 | minimatch "^3.1.2" 1634 | object.values "^1.1.6" 1635 | resolve "^1.22.1" 1636 | semver "^6.3.0" 1637 | tsconfig-paths "^3.14.1" 1638 | 1639 | eslint-plugin-jsx-a11y@^6.5.1: 1640 | version "6.7.1" 1641 | resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz" 1642 | integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== 1643 | dependencies: 1644 | "@babel/runtime" "^7.20.7" 1645 | aria-query "^5.1.3" 1646 | array-includes "^3.1.6" 1647 | array.prototype.flatmap "^1.3.1" 1648 | ast-types-flow "^0.0.7" 1649 | axe-core "^4.6.2" 1650 | axobject-query "^3.1.1" 1651 | damerau-levenshtein "^1.0.8" 1652 | emoji-regex "^9.2.2" 1653 | has "^1.0.3" 1654 | jsx-ast-utils "^3.3.3" 1655 | language-tags "=1.0.5" 1656 | minimatch "^3.1.2" 1657 | object.entries "^1.1.6" 1658 | object.fromentries "^2.0.6" 1659 | semver "^6.3.0" 1660 | 1661 | eslint-plugin-react-hooks@^4.5.0: 1662 | version "4.6.0" 1663 | resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" 1664 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 1665 | 1666 | eslint-plugin-react@^7.31.7: 1667 | version "7.32.2" 1668 | resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz" 1669 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 1670 | dependencies: 1671 | array-includes "^3.1.6" 1672 | array.prototype.flatmap "^1.3.1" 1673 | array.prototype.tosorted "^1.1.1" 1674 | doctrine "^2.1.0" 1675 | estraverse "^5.3.0" 1676 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1677 | minimatch "^3.1.2" 1678 | object.entries "^1.1.6" 1679 | object.fromentries "^2.0.6" 1680 | object.hasown "^1.1.2" 1681 | object.values "^1.1.6" 1682 | prop-types "^15.8.1" 1683 | resolve "^2.0.0-next.4" 1684 | semver "^6.3.0" 1685 | string.prototype.matchall "^4.0.8" 1686 | 1687 | eslint-scope@^7.1.1: 1688 | version "7.1.1" 1689 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz" 1690 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 1691 | dependencies: 1692 | esrecurse "^4.3.0" 1693 | estraverse "^5.2.0" 1694 | 1695 | eslint-utils@^3.0.0: 1696 | version "3.0.0" 1697 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" 1698 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 1699 | dependencies: 1700 | eslint-visitor-keys "^2.0.0" 1701 | 1702 | eslint-visitor-keys@^2.0.0: 1703 | version "2.1.0" 1704 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" 1705 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 1706 | 1707 | eslint-visitor-keys@^3.3.0: 1708 | version "3.3.0" 1709 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" 1710 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 1711 | 1712 | eslint@8.33.0: 1713 | version "8.33.0" 1714 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz" 1715 | integrity sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA== 1716 | dependencies: 1717 | "@eslint/eslintrc" "^1.4.1" 1718 | "@humanwhocodes/config-array" "^0.11.8" 1719 | "@humanwhocodes/module-importer" "^1.0.1" 1720 | "@nodelib/fs.walk" "^1.2.8" 1721 | ajv "^6.10.0" 1722 | chalk "^4.0.0" 1723 | cross-spawn "^7.0.2" 1724 | debug "^4.3.2" 1725 | doctrine "^3.0.0" 1726 | escape-string-regexp "^4.0.0" 1727 | eslint-scope "^7.1.1" 1728 | eslint-utils "^3.0.0" 1729 | eslint-visitor-keys "^3.3.0" 1730 | espree "^9.4.0" 1731 | esquery "^1.4.0" 1732 | esutils "^2.0.2" 1733 | fast-deep-equal "^3.1.3" 1734 | file-entry-cache "^6.0.1" 1735 | find-up "^5.0.0" 1736 | glob-parent "^6.0.2" 1737 | globals "^13.19.0" 1738 | grapheme-splitter "^1.0.4" 1739 | ignore "^5.2.0" 1740 | import-fresh "^3.0.0" 1741 | imurmurhash "^0.1.4" 1742 | is-glob "^4.0.0" 1743 | is-path-inside "^3.0.3" 1744 | js-sdsl "^4.1.4" 1745 | js-yaml "^4.1.0" 1746 | json-stable-stringify-without-jsonify "^1.0.1" 1747 | levn "^0.4.1" 1748 | lodash.merge "^4.6.2" 1749 | minimatch "^3.1.2" 1750 | natural-compare "^1.4.0" 1751 | optionator "^0.9.1" 1752 | regexpp "^3.2.0" 1753 | strip-ansi "^6.0.1" 1754 | strip-json-comments "^3.1.0" 1755 | text-table "^0.2.0" 1756 | 1757 | espree@^9.4.0: 1758 | version "9.4.1" 1759 | resolved "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz" 1760 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 1761 | dependencies: 1762 | acorn "^8.8.0" 1763 | acorn-jsx "^5.3.2" 1764 | eslint-visitor-keys "^3.3.0" 1765 | 1766 | esquery@^1.4.0: 1767 | version "1.4.0" 1768 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" 1769 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1770 | dependencies: 1771 | estraverse "^5.1.0" 1772 | 1773 | esrecurse@^4.3.0: 1774 | version "4.3.0" 1775 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1776 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1777 | dependencies: 1778 | estraverse "^5.2.0" 1779 | 1780 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1781 | version "5.3.0" 1782 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1783 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1784 | 1785 | esutils@^2.0.2: 1786 | version "2.0.3" 1787 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1788 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1789 | 1790 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1791 | version "3.1.3" 1792 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1793 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1794 | 1795 | fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: 1796 | version "3.2.12" 1797 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" 1798 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 1799 | dependencies: 1800 | "@nodelib/fs.stat" "^2.0.2" 1801 | "@nodelib/fs.walk" "^1.2.3" 1802 | glob-parent "^5.1.2" 1803 | merge2 "^1.3.0" 1804 | micromatch "^4.0.4" 1805 | 1806 | fast-json-stable-stringify@^2.0.0: 1807 | version "2.1.0" 1808 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1809 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1810 | 1811 | fast-levenshtein@^2.0.6: 1812 | version "2.0.6" 1813 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1814 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1815 | 1816 | fastq@^1.6.0: 1817 | version "1.15.0" 1818 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" 1819 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1820 | dependencies: 1821 | reusify "^1.0.4" 1822 | 1823 | file-entry-cache@^6.0.1: 1824 | version "6.0.1" 1825 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 1826 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1827 | dependencies: 1828 | flat-cache "^3.0.4" 1829 | 1830 | fill-range@^7.0.1: 1831 | version "7.0.1" 1832 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1833 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1834 | dependencies: 1835 | to-regex-range "^5.0.1" 1836 | 1837 | find-up@^5.0.0: 1838 | version "5.0.0" 1839 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1840 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1841 | dependencies: 1842 | locate-path "^6.0.0" 1843 | path-exists "^4.0.0" 1844 | 1845 | flat-cache@^3.0.4: 1846 | version "3.0.4" 1847 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" 1848 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1849 | dependencies: 1850 | flatted "^3.1.0" 1851 | rimraf "^3.0.2" 1852 | 1853 | flatted@^3.1.0: 1854 | version "3.2.7" 1855 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" 1856 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1857 | 1858 | follow-redirects@^1.15.0: 1859 | version "1.15.2" 1860 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz" 1861 | integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 1862 | 1863 | for-each@^0.3.3: 1864 | version "0.3.3" 1865 | resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" 1866 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1867 | dependencies: 1868 | is-callable "^1.1.3" 1869 | 1870 | form-data@^4.0.0: 1871 | version "4.0.0" 1872 | resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" 1873 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 1874 | dependencies: 1875 | asynckit "^0.4.0" 1876 | combined-stream "^1.0.8" 1877 | mime-types "^2.1.12" 1878 | 1879 | fraction.js@^4.2.0: 1880 | version "4.2.0" 1881 | resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" 1882 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1883 | 1884 | framer-motion@^10.1.0: 1885 | version "10.1.0" 1886 | resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-10.1.0.tgz" 1887 | integrity sha512-A+xTdsLam8AMiXBfE7/VCy55BwG8Wvedx5c9k/J+LNM8dGm+/wObw+td4RUrhY+hUsPmgadUFYW7zuSe7RyG8Q== 1888 | dependencies: 1889 | tslib "^2.4.0" 1890 | optionalDependencies: 1891 | "@emotion/is-prop-valid" "^0.8.2" 1892 | 1893 | fs.realpath@^1.0.0: 1894 | version "1.0.0" 1895 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1896 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1897 | 1898 | fsevents@~2.3.2: 1899 | version "2.3.2" 1900 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1901 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1902 | 1903 | function-bind@^1.1.1: 1904 | version "1.1.1" 1905 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1906 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1907 | 1908 | function.prototype.name@^1.1.5: 1909 | version "1.1.5" 1910 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" 1911 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1912 | dependencies: 1913 | call-bind "^1.0.2" 1914 | define-properties "^1.1.3" 1915 | es-abstract "^1.19.0" 1916 | functions-have-names "^1.2.2" 1917 | 1918 | functions-have-names@^1.2.2: 1919 | version "1.2.3" 1920 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" 1921 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1922 | 1923 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 1924 | version "1.2.0" 1925 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz" 1926 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 1927 | dependencies: 1928 | function-bind "^1.1.1" 1929 | has "^1.0.3" 1930 | has-symbols "^1.0.3" 1931 | 1932 | get-symbol-description@^1.0.0: 1933 | version "1.0.0" 1934 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 1935 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1936 | dependencies: 1937 | call-bind "^1.0.2" 1938 | get-intrinsic "^1.1.1" 1939 | 1940 | get-tsconfig@^4.2.0: 1941 | version "4.4.0" 1942 | resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz" 1943 | integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== 1944 | 1945 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1946 | version "5.1.2" 1947 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1948 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1949 | dependencies: 1950 | is-glob "^4.0.1" 1951 | 1952 | glob-parent@^6.0.2: 1953 | version "6.0.2" 1954 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1955 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1956 | dependencies: 1957 | is-glob "^4.0.3" 1958 | 1959 | glob@7.1.7: 1960 | version "7.1.7" 1961 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 1962 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1963 | dependencies: 1964 | fs.realpath "^1.0.0" 1965 | inflight "^1.0.4" 1966 | inherits "2" 1967 | minimatch "^3.0.4" 1968 | once "^1.3.0" 1969 | path-is-absolute "^1.0.0" 1970 | 1971 | glob@^7.1.3: 1972 | version "7.2.3" 1973 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1974 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1975 | dependencies: 1976 | fs.realpath "^1.0.0" 1977 | inflight "^1.0.4" 1978 | inherits "2" 1979 | minimatch "^3.1.1" 1980 | once "^1.3.0" 1981 | path-is-absolute "^1.0.0" 1982 | 1983 | globals@^13.19.0: 1984 | version "13.20.0" 1985 | resolved "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz" 1986 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1987 | dependencies: 1988 | type-fest "^0.20.2" 1989 | 1990 | globalthis@^1.0.3: 1991 | version "1.0.3" 1992 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz" 1993 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1994 | dependencies: 1995 | define-properties "^1.1.3" 1996 | 1997 | globalyzer@0.1.0: 1998 | version "0.1.0" 1999 | resolved "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz" 2000 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 2001 | 2002 | globby@^11.1.0: 2003 | version "11.1.0" 2004 | resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" 2005 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 2006 | dependencies: 2007 | array-union "^2.1.0" 2008 | dir-glob "^3.0.1" 2009 | fast-glob "^3.2.9" 2010 | ignore "^5.2.0" 2011 | merge2 "^1.4.1" 2012 | slash "^3.0.0" 2013 | 2014 | globby@^13.1.2: 2015 | version "13.1.3" 2016 | resolved "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz" 2017 | integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== 2018 | dependencies: 2019 | dir-glob "^3.0.1" 2020 | fast-glob "^3.2.11" 2021 | ignore "^5.2.0" 2022 | merge2 "^1.4.1" 2023 | slash "^4.0.0" 2024 | 2025 | globrex@^0.1.2: 2026 | version "0.1.2" 2027 | resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz" 2028 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 2029 | 2030 | gopd@^1.0.1: 2031 | version "1.0.1" 2032 | resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" 2033 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 2034 | dependencies: 2035 | get-intrinsic "^1.1.3" 2036 | 2037 | graceful-fs@^4.2.4: 2038 | version "4.2.10" 2039 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" 2040 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 2041 | 2042 | grapheme-splitter@^1.0.4: 2043 | version "1.0.4" 2044 | resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz" 2045 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 2046 | 2047 | has-bigints@^1.0.1, has-bigints@^1.0.2: 2048 | version "1.0.2" 2049 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" 2050 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 2051 | 2052 | has-flag@^4.0.0: 2053 | version "4.0.0" 2054 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 2055 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 2056 | 2057 | has-property-descriptors@^1.0.0: 2058 | version "1.0.0" 2059 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" 2060 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 2061 | dependencies: 2062 | get-intrinsic "^1.1.1" 2063 | 2064 | has-proto@^1.0.1: 2065 | version "1.0.1" 2066 | resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" 2067 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 2068 | 2069 | has-symbols@^1.0.2, has-symbols@^1.0.3: 2070 | version "1.0.3" 2071 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 2072 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 2073 | 2074 | has-tostringtag@^1.0.0: 2075 | version "1.0.0" 2076 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 2077 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 2078 | dependencies: 2079 | has-symbols "^1.0.2" 2080 | 2081 | has@^1.0.3: 2082 | version "1.0.3" 2083 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 2084 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 2085 | dependencies: 2086 | function-bind "^1.1.1" 2087 | 2088 | ignore@^5.2.0: 2089 | version "5.2.4" 2090 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" 2091 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 2092 | 2093 | import-fresh@^3.0.0, import-fresh@^3.2.1: 2094 | version "3.3.0" 2095 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 2096 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 2097 | dependencies: 2098 | parent-module "^1.0.0" 2099 | resolve-from "^4.0.0" 2100 | 2101 | imurmurhash@^0.1.4: 2102 | version "0.1.4" 2103 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 2104 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 2105 | 2106 | inflight@^1.0.4: 2107 | version "1.0.6" 2108 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 2109 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 2110 | dependencies: 2111 | once "^1.3.0" 2112 | wrappy "1" 2113 | 2114 | inherits@2: 2115 | version "2.0.4" 2116 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 2117 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2118 | 2119 | internal-slot@^1.0.3, internal-slot@^1.0.4: 2120 | version "1.0.4" 2121 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz" 2122 | integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ== 2123 | dependencies: 2124 | get-intrinsic "^1.1.3" 2125 | has "^1.0.3" 2126 | side-channel "^1.0.4" 2127 | 2128 | intl-messageformat@^10.1.0: 2129 | version "10.3.4" 2130 | resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-10.3.4.tgz#20f064c28b46fa6d352a4c4ba5e9bfc597af3eba" 2131 | integrity sha512-/FxUIrlbPtuykSNX85CB5sp2FjLVeTmdD7TfRkVFPft2n4FgcSlAcilFytYiFAEmPHc+0PvpLCIPXeaGFzIvOg== 2132 | dependencies: 2133 | "@formatjs/ecma402-abstract" "1.14.3" 2134 | "@formatjs/fast-memoize" "2.0.1" 2135 | "@formatjs/icu-messageformat-parser" "2.3.1" 2136 | tslib "^2.4.0" 2137 | 2138 | is-arguments@^1.1.1: 2139 | version "1.1.1" 2140 | resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" 2141 | integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== 2142 | dependencies: 2143 | call-bind "^1.0.2" 2144 | has-tostringtag "^1.0.0" 2145 | 2146 | is-array-buffer@^3.0.1: 2147 | version "3.0.1" 2148 | resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz" 2149 | integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== 2150 | dependencies: 2151 | call-bind "^1.0.2" 2152 | get-intrinsic "^1.1.3" 2153 | is-typed-array "^1.1.10" 2154 | 2155 | is-bigint@^1.0.1: 2156 | version "1.0.4" 2157 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 2158 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 2159 | dependencies: 2160 | has-bigints "^1.0.1" 2161 | 2162 | is-binary-path@~2.1.0: 2163 | version "2.1.0" 2164 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 2165 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 2166 | dependencies: 2167 | binary-extensions "^2.0.0" 2168 | 2169 | is-boolean-object@^1.1.0: 2170 | version "1.1.2" 2171 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 2172 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 2173 | dependencies: 2174 | call-bind "^1.0.2" 2175 | has-tostringtag "^1.0.0" 2176 | 2177 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 2178 | version "1.2.7" 2179 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" 2180 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 2181 | 2182 | is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: 2183 | version "2.11.0" 2184 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" 2185 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 2186 | dependencies: 2187 | has "^1.0.3" 2188 | 2189 | is-date-object@^1.0.1, is-date-object@^1.0.5: 2190 | version "1.0.5" 2191 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 2192 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 2193 | dependencies: 2194 | has-tostringtag "^1.0.0" 2195 | 2196 | is-docker@^2.0.0, is-docker@^2.1.1: 2197 | version "2.2.1" 2198 | resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" 2199 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 2200 | 2201 | is-extglob@^2.1.1: 2202 | version "2.1.1" 2203 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 2204 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 2205 | 2206 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 2207 | version "4.0.3" 2208 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 2209 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 2210 | dependencies: 2211 | is-extglob "^2.1.1" 2212 | 2213 | is-map@^2.0.1, is-map@^2.0.2: 2214 | version "2.0.2" 2215 | resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz" 2216 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 2217 | 2218 | is-negative-zero@^2.0.2: 2219 | version "2.0.2" 2220 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" 2221 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 2222 | 2223 | is-number-object@^1.0.4: 2224 | version "1.0.7" 2225 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" 2226 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 2227 | dependencies: 2228 | has-tostringtag "^1.0.0" 2229 | 2230 | is-number@^7.0.0: 2231 | version "7.0.0" 2232 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 2233 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2234 | 2235 | is-path-inside@^3.0.3: 2236 | version "3.0.3" 2237 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" 2238 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 2239 | 2240 | is-regex@^1.1.4: 2241 | version "1.1.4" 2242 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 2243 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 2244 | dependencies: 2245 | call-bind "^1.0.2" 2246 | has-tostringtag "^1.0.0" 2247 | 2248 | is-set@^2.0.1, is-set@^2.0.2: 2249 | version "2.0.2" 2250 | resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz" 2251 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 2252 | 2253 | is-shared-array-buffer@^1.0.2: 2254 | version "1.0.2" 2255 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" 2256 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 2257 | dependencies: 2258 | call-bind "^1.0.2" 2259 | 2260 | is-string@^1.0.5, is-string@^1.0.7: 2261 | version "1.0.7" 2262 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 2263 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 2264 | dependencies: 2265 | has-tostringtag "^1.0.0" 2266 | 2267 | is-symbol@^1.0.2, is-symbol@^1.0.3: 2268 | version "1.0.4" 2269 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 2270 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 2271 | dependencies: 2272 | has-symbols "^1.0.2" 2273 | 2274 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 2275 | version "1.1.10" 2276 | resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz" 2277 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 2278 | dependencies: 2279 | available-typed-arrays "^1.0.5" 2280 | call-bind "^1.0.2" 2281 | for-each "^0.3.3" 2282 | gopd "^1.0.1" 2283 | has-tostringtag "^1.0.0" 2284 | 2285 | is-weakmap@^2.0.1: 2286 | version "2.0.1" 2287 | resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz" 2288 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 2289 | 2290 | is-weakref@^1.0.2: 2291 | version "1.0.2" 2292 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" 2293 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 2294 | dependencies: 2295 | call-bind "^1.0.2" 2296 | 2297 | is-weakset@^2.0.1: 2298 | version "2.0.2" 2299 | resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz" 2300 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 2301 | dependencies: 2302 | call-bind "^1.0.2" 2303 | get-intrinsic "^1.1.1" 2304 | 2305 | is-wsl@^2.2.0: 2306 | version "2.2.0" 2307 | resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" 2308 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 2309 | dependencies: 2310 | is-docker "^2.0.0" 2311 | 2312 | isarray@^2.0.5: 2313 | version "2.0.5" 2314 | resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" 2315 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 2316 | 2317 | isexe@^2.0.0: 2318 | version "2.0.0" 2319 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 2320 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 2321 | 2322 | js-sdsl@^4.1.4: 2323 | version "4.3.0" 2324 | resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz" 2325 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 2326 | 2327 | "js-tokens@^3.0.0 || ^4.0.0": 2328 | version "4.0.0" 2329 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 2330 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2331 | 2332 | js-yaml@^4.1.0: 2333 | version "4.1.0" 2334 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 2335 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 2336 | dependencies: 2337 | argparse "^2.0.1" 2338 | 2339 | json-schema-traverse@^0.4.1: 2340 | version "0.4.1" 2341 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 2342 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2343 | 2344 | json-stable-stringify-without-jsonify@^1.0.1: 2345 | version "1.0.1" 2346 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 2347 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 2348 | 2349 | json5@^1.0.1: 2350 | version "1.0.2" 2351 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" 2352 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 2353 | dependencies: 2354 | minimist "^1.2.0" 2355 | 2356 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: 2357 | version "3.3.3" 2358 | resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz" 2359 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 2360 | dependencies: 2361 | array-includes "^3.1.5" 2362 | object.assign "^4.1.3" 2363 | 2364 | language-subtag-registry@~0.3.2: 2365 | version "0.3.22" 2366 | resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" 2367 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 2368 | 2369 | language-tags@=1.0.5: 2370 | version "1.0.5" 2371 | resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" 2372 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 2373 | dependencies: 2374 | language-subtag-registry "~0.3.2" 2375 | 2376 | levn@^0.4.1: 2377 | version "0.4.1" 2378 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 2379 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2380 | dependencies: 2381 | prelude-ls "^1.2.1" 2382 | type-check "~0.4.0" 2383 | 2384 | lilconfig@^2.0.5, lilconfig@^2.0.6: 2385 | version "2.0.6" 2386 | resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" 2387 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== 2388 | 2389 | locate-path@^6.0.0: 2390 | version "6.0.0" 2391 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 2392 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 2393 | dependencies: 2394 | p-locate "^5.0.0" 2395 | 2396 | lodash.merge@^4.6.2: 2397 | version "4.6.2" 2398 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 2399 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2400 | 2401 | loose-envify@^1.1.0, loose-envify@^1.4.0: 2402 | version "1.4.0" 2403 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 2404 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2405 | dependencies: 2406 | js-tokens "^3.0.0 || ^4.0.0" 2407 | 2408 | lru-cache@^6.0.0: 2409 | version "6.0.0" 2410 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 2411 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2412 | dependencies: 2413 | yallist "^4.0.0" 2414 | 2415 | merge2@^1.3.0, merge2@^1.4.1: 2416 | version "1.4.1" 2417 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 2418 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 2419 | 2420 | micromatch@^4.0.4, micromatch@^4.0.5: 2421 | version "4.0.5" 2422 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 2423 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 2424 | dependencies: 2425 | braces "^3.0.2" 2426 | picomatch "^2.3.1" 2427 | 2428 | mime-db@1.52.0: 2429 | version "1.52.0" 2430 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" 2431 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 2432 | 2433 | mime-types@^2.1.12: 2434 | version "2.1.35" 2435 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" 2436 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 2437 | dependencies: 2438 | mime-db "1.52.0" 2439 | 2440 | mini-svg-data-uri@^1.2.3: 2441 | version "1.4.4" 2442 | resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" 2443 | integrity sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg== 2444 | 2445 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 2446 | version "3.1.2" 2447 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 2448 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2449 | dependencies: 2450 | brace-expansion "^1.1.7" 2451 | 2452 | minimist@^1.2.0, minimist@^1.2.6: 2453 | version "1.2.7" 2454 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz" 2455 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 2456 | 2457 | ms@2.1.2: 2458 | version "2.1.2" 2459 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 2460 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2461 | 2462 | ms@^2.1.1: 2463 | version "2.1.3" 2464 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" 2465 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 2466 | 2467 | nanoid@^3.3.4: 2468 | version "3.3.4" 2469 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" 2470 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 2471 | 2472 | natural-compare@^1.4.0: 2473 | version "1.4.0" 2474 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 2475 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 2476 | 2477 | next@13.1.6: 2478 | version "13.1.6" 2479 | resolved "https://registry.npmjs.org/next/-/next-13.1.6.tgz" 2480 | integrity sha512-hHlbhKPj9pW+Cymvfzc15lvhaOZ54l+8sXDXJWm3OBNBzgrVj6hwGPmqqsXg40xO1Leq+kXpllzRPuncpC0Phw== 2481 | dependencies: 2482 | "@next/env" "13.1.6" 2483 | "@swc/helpers" "0.4.14" 2484 | caniuse-lite "^1.0.30001406" 2485 | postcss "8.4.14" 2486 | styled-jsx "5.1.1" 2487 | optionalDependencies: 2488 | "@next/swc-android-arm-eabi" "13.1.6" 2489 | "@next/swc-android-arm64" "13.1.6" 2490 | "@next/swc-darwin-arm64" "13.1.6" 2491 | "@next/swc-darwin-x64" "13.1.6" 2492 | "@next/swc-freebsd-x64" "13.1.6" 2493 | "@next/swc-linux-arm-gnueabihf" "13.1.6" 2494 | "@next/swc-linux-arm64-gnu" "13.1.6" 2495 | "@next/swc-linux-arm64-musl" "13.1.6" 2496 | "@next/swc-linux-x64-gnu" "13.1.6" 2497 | "@next/swc-linux-x64-musl" "13.1.6" 2498 | "@next/swc-win32-arm64-msvc" "13.1.6" 2499 | "@next/swc-win32-ia32-msvc" "13.1.6" 2500 | "@next/swc-win32-x64-msvc" "13.1.6" 2501 | 2502 | node-releases@^2.0.8: 2503 | version "2.0.10" 2504 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz" 2505 | integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== 2506 | 2507 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2508 | version "3.0.0" 2509 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 2510 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2511 | 2512 | normalize-range@^0.1.2: 2513 | version "0.1.2" 2514 | resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" 2515 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 2516 | 2517 | object-assign@^4.1.1: 2518 | version "4.1.1" 2519 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 2520 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 2521 | 2522 | object-hash@^3.0.0: 2523 | version "3.0.0" 2524 | resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" 2525 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 2526 | 2527 | object-inspect@^1.12.2, object-inspect@^1.9.0: 2528 | version "1.12.3" 2529 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" 2530 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 2531 | 2532 | object-is@^1.1.5: 2533 | version "1.1.5" 2534 | resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" 2535 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== 2536 | dependencies: 2537 | call-bind "^1.0.2" 2538 | define-properties "^1.1.3" 2539 | 2540 | object-keys@^1.1.1: 2541 | version "1.1.1" 2542 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 2543 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2544 | 2545 | object.assign@^4.1.3, object.assign@^4.1.4: 2546 | version "4.1.4" 2547 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz" 2548 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 2549 | dependencies: 2550 | call-bind "^1.0.2" 2551 | define-properties "^1.1.4" 2552 | has-symbols "^1.0.3" 2553 | object-keys "^1.1.1" 2554 | 2555 | object.entries@^1.1.6: 2556 | version "1.1.6" 2557 | resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" 2558 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 2559 | dependencies: 2560 | call-bind "^1.0.2" 2561 | define-properties "^1.1.4" 2562 | es-abstract "^1.20.4" 2563 | 2564 | object.fromentries@^2.0.6: 2565 | version "2.0.6" 2566 | resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" 2567 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 2568 | dependencies: 2569 | call-bind "^1.0.2" 2570 | define-properties "^1.1.4" 2571 | es-abstract "^1.20.4" 2572 | 2573 | object.hasown@^1.1.2: 2574 | version "1.1.2" 2575 | resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" 2576 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 2577 | dependencies: 2578 | define-properties "^1.1.4" 2579 | es-abstract "^1.20.4" 2580 | 2581 | object.values@^1.1.6: 2582 | version "1.1.6" 2583 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" 2584 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 2585 | dependencies: 2586 | call-bind "^1.0.2" 2587 | define-properties "^1.1.4" 2588 | es-abstract "^1.20.4" 2589 | 2590 | once@^1.3.0: 2591 | version "1.4.0" 2592 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2593 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2594 | dependencies: 2595 | wrappy "1" 2596 | 2597 | open@^8.4.0: 2598 | version "8.4.1" 2599 | resolved "https://registry.npmjs.org/open/-/open-8.4.1.tgz" 2600 | integrity sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg== 2601 | dependencies: 2602 | define-lazy-prop "^2.0.0" 2603 | is-docker "^2.1.1" 2604 | is-wsl "^2.2.0" 2605 | 2606 | optionator@^0.9.1: 2607 | version "0.9.1" 2608 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" 2609 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2610 | dependencies: 2611 | deep-is "^0.1.3" 2612 | fast-levenshtein "^2.0.6" 2613 | levn "^0.4.1" 2614 | prelude-ls "^1.2.1" 2615 | type-check "^0.4.0" 2616 | word-wrap "^1.2.3" 2617 | 2618 | p-limit@^3.0.2: 2619 | version "3.1.0" 2620 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 2621 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2622 | dependencies: 2623 | yocto-queue "^0.1.0" 2624 | 2625 | p-locate@^5.0.0: 2626 | version "5.0.0" 2627 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 2628 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2629 | dependencies: 2630 | p-limit "^3.0.2" 2631 | 2632 | packet-reader@1.0.0: 2633 | version "1.0.0" 2634 | resolved "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz" 2635 | integrity sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ== 2636 | 2637 | parent-module@^1.0.0: 2638 | version "1.0.1" 2639 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2640 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2641 | dependencies: 2642 | callsites "^3.0.0" 2643 | 2644 | path-exists@^4.0.0: 2645 | version "4.0.0" 2646 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2647 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2648 | 2649 | path-is-absolute@^1.0.0: 2650 | version "1.0.1" 2651 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2652 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2653 | 2654 | path-key@^3.1.0: 2655 | version "3.1.1" 2656 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2657 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2658 | 2659 | path-parse@^1.0.7: 2660 | version "1.0.7" 2661 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2662 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2663 | 2664 | path-type@^4.0.0: 2665 | version "4.0.0" 2666 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" 2667 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2668 | 2669 | pg-connection-string@^2.5.0: 2670 | version "2.5.0" 2671 | resolved "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz" 2672 | integrity sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ== 2673 | 2674 | pg-int8@1.0.1: 2675 | version "1.0.1" 2676 | resolved "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz" 2677 | integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== 2678 | 2679 | pg-pool@^3.6.0: 2680 | version "3.6.0" 2681 | resolved "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.0.tgz" 2682 | integrity sha512-clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ== 2683 | 2684 | pg-protocol@^1.6.0: 2685 | version "1.6.0" 2686 | resolved "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.0.tgz" 2687 | integrity sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q== 2688 | 2689 | pg-types@^2.1.0: 2690 | version "2.2.0" 2691 | resolved "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz" 2692 | integrity sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA== 2693 | dependencies: 2694 | pg-int8 "1.0.1" 2695 | postgres-array "~2.0.0" 2696 | postgres-bytea "~1.0.0" 2697 | postgres-date "~1.0.4" 2698 | postgres-interval "^1.1.0" 2699 | 2700 | pg@^8.10.0: 2701 | version "8.10.0" 2702 | resolved "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz" 2703 | integrity sha512-ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ== 2704 | dependencies: 2705 | buffer-writer "2.0.0" 2706 | packet-reader "1.0.0" 2707 | pg-connection-string "^2.5.0" 2708 | pg-pool "^3.6.0" 2709 | pg-protocol "^1.6.0" 2710 | pg-types "^2.1.0" 2711 | pgpass "1.x" 2712 | 2713 | pgpass@1.x: 2714 | version "1.0.5" 2715 | resolved "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz" 2716 | integrity sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug== 2717 | dependencies: 2718 | split2 "^4.1.0" 2719 | 2720 | picocolors@^1.0.0: 2721 | version "1.0.0" 2722 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 2723 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2724 | 2725 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 2726 | version "2.3.1" 2727 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2728 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2729 | 2730 | pify@^2.3.0: 2731 | version "2.3.0" 2732 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" 2733 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 2734 | 2735 | postcss-import@^14.1.0: 2736 | version "14.1.0" 2737 | resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz" 2738 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 2739 | dependencies: 2740 | postcss-value-parser "^4.0.0" 2741 | read-cache "^1.0.0" 2742 | resolve "^1.1.7" 2743 | 2744 | postcss-js@^4.0.0: 2745 | version "4.0.1" 2746 | resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz" 2747 | integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== 2748 | dependencies: 2749 | camelcase-css "^2.0.1" 2750 | 2751 | postcss-load-config@^3.1.4: 2752 | version "3.1.4" 2753 | resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz" 2754 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 2755 | dependencies: 2756 | lilconfig "^2.0.5" 2757 | yaml "^1.10.2" 2758 | 2759 | postcss-nested@6.0.0: 2760 | version "6.0.0" 2761 | resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz" 2762 | integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== 2763 | dependencies: 2764 | postcss-selector-parser "^6.0.10" 2765 | 2766 | postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11: 2767 | version "6.0.11" 2768 | resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz" 2769 | integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== 2770 | dependencies: 2771 | cssesc "^3.0.0" 2772 | util-deprecate "^1.0.2" 2773 | 2774 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 2775 | version "4.2.0" 2776 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" 2777 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 2778 | 2779 | postcss@8.4.14: 2780 | version "8.4.14" 2781 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" 2782 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 2783 | dependencies: 2784 | nanoid "^3.3.4" 2785 | picocolors "^1.0.0" 2786 | source-map-js "^1.0.2" 2787 | 2788 | postcss@^8.0.9, postcss@^8.4.21: 2789 | version "8.4.21" 2790 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz" 2791 | integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== 2792 | dependencies: 2793 | nanoid "^3.3.4" 2794 | picocolors "^1.0.0" 2795 | source-map-js "^1.0.2" 2796 | 2797 | postgres-array@~2.0.0: 2798 | version "2.0.0" 2799 | resolved "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz" 2800 | integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== 2801 | 2802 | postgres-bytea@~1.0.0: 2803 | version "1.0.0" 2804 | resolved "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz" 2805 | integrity sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w== 2806 | 2807 | postgres-date@~1.0.4: 2808 | version "1.0.7" 2809 | resolved "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz" 2810 | integrity sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== 2811 | 2812 | postgres-interval@^1.1.0: 2813 | version "1.2.0" 2814 | resolved "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz" 2815 | integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== 2816 | dependencies: 2817 | xtend "^4.0.0" 2818 | 2819 | prelude-ls@^1.2.1: 2820 | version "1.2.1" 2821 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2822 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2823 | 2824 | prop-types@^15.8.1: 2825 | version "15.8.1" 2826 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" 2827 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 2828 | dependencies: 2829 | loose-envify "^1.4.0" 2830 | object-assign "^4.1.1" 2831 | react-is "^16.13.1" 2832 | 2833 | proxy-from-env@^1.1.0: 2834 | version "1.1.0" 2835 | resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" 2836 | integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== 2837 | 2838 | punycode@^2.1.0: 2839 | version "2.3.0" 2840 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" 2841 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 2842 | 2843 | queue-microtask@^1.2.2: 2844 | version "1.2.3" 2845 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2846 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2847 | 2848 | quick-lru@^5.1.1: 2849 | version "5.1.1" 2850 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz" 2851 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 2852 | 2853 | react-dom@18.2.0: 2854 | version "18.2.0" 2855 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" 2856 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 2857 | dependencies: 2858 | loose-envify "^1.1.0" 2859 | scheduler "^0.23.0" 2860 | 2861 | react-infinite-scroll-component@^6.1.0: 2862 | version "6.1.0" 2863 | resolved "https://registry.yarnpkg.com/react-infinite-scroll-component/-/react-infinite-scroll-component-6.1.0.tgz#7e511e7aa0f728ac3e51f64a38a6079ac522407f" 2864 | integrity sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ== 2865 | dependencies: 2866 | throttle-debounce "^2.1.0" 2867 | 2868 | react-is@^16.13.1: 2869 | version "16.13.1" 2870 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" 2871 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2872 | 2873 | react@18.2.0: 2874 | version "18.2.0" 2875 | resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" 2876 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2877 | dependencies: 2878 | loose-envify "^1.1.0" 2879 | 2880 | read-cache@^1.0.0: 2881 | version "1.0.0" 2882 | resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" 2883 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 2884 | dependencies: 2885 | pify "^2.3.0" 2886 | 2887 | readdirp@~3.6.0: 2888 | version "3.6.0" 2889 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 2890 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2891 | dependencies: 2892 | picomatch "^2.2.1" 2893 | 2894 | regenerator-runtime@^0.13.11: 2895 | version "0.13.11" 2896 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" 2897 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 2898 | 2899 | regexp.prototype.flags@^1.4.3: 2900 | version "1.4.3" 2901 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" 2902 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 2903 | dependencies: 2904 | call-bind "^1.0.2" 2905 | define-properties "^1.1.3" 2906 | functions-have-names "^1.2.2" 2907 | 2908 | regexpp@^3.2.0: 2909 | version "3.2.0" 2910 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" 2911 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 2912 | 2913 | resolve-from@^4.0.0: 2914 | version "4.0.0" 2915 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2916 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2917 | 2918 | resolve@^1.1.7, resolve@^1.22.1: 2919 | version "1.22.1" 2920 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" 2921 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2922 | dependencies: 2923 | is-core-module "^2.9.0" 2924 | path-parse "^1.0.7" 2925 | supports-preserve-symlinks-flag "^1.0.0" 2926 | 2927 | resolve@^2.0.0-next.4: 2928 | version "2.0.0-next.4" 2929 | resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" 2930 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 2931 | dependencies: 2932 | is-core-module "^2.9.0" 2933 | path-parse "^1.0.7" 2934 | supports-preserve-symlinks-flag "^1.0.0" 2935 | 2936 | reusify@^1.0.4: 2937 | version "1.0.4" 2938 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2939 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2940 | 2941 | rimraf@^3.0.2: 2942 | version "3.0.2" 2943 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2944 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2945 | dependencies: 2946 | glob "^7.1.3" 2947 | 2948 | run-parallel@^1.1.9: 2949 | version "1.2.0" 2950 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2951 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2952 | dependencies: 2953 | queue-microtask "^1.2.2" 2954 | 2955 | safe-regex-test@^1.0.0: 2956 | version "1.0.0" 2957 | resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" 2958 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 2959 | dependencies: 2960 | call-bind "^1.0.2" 2961 | get-intrinsic "^1.1.3" 2962 | is-regex "^1.1.4" 2963 | 2964 | scheduler@^0.23.0: 2965 | version "0.23.0" 2966 | resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" 2967 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2968 | dependencies: 2969 | loose-envify "^1.1.0" 2970 | 2971 | semver@^6.3.0: 2972 | version "6.3.0" 2973 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 2974 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2975 | 2976 | semver@^7.3.7: 2977 | version "7.3.8" 2978 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" 2979 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2980 | dependencies: 2981 | lru-cache "^6.0.0" 2982 | 2983 | shebang-command@^2.0.0: 2984 | version "2.0.0" 2985 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2986 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2987 | dependencies: 2988 | shebang-regex "^3.0.0" 2989 | 2990 | shebang-regex@^3.0.0: 2991 | version "3.0.0" 2992 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2993 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2994 | 2995 | side-channel@^1.0.4: 2996 | version "1.0.4" 2997 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 2998 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2999 | dependencies: 3000 | call-bind "^1.0.0" 3001 | get-intrinsic "^1.0.2" 3002 | object-inspect "^1.9.0" 3003 | 3004 | slash@^3.0.0: 3005 | version "3.0.0" 3006 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 3007 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3008 | 3009 | slash@^4.0.0: 3010 | version "4.0.0" 3011 | resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" 3012 | integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== 3013 | 3014 | source-map-js@^1.0.2: 3015 | version "1.0.2" 3016 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" 3017 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 3018 | 3019 | split2@^4.1.0: 3020 | version "4.1.0" 3021 | resolved "https://registry.npmjs.org/split2/-/split2-4.1.0.tgz" 3022 | integrity sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ== 3023 | 3024 | stop-iteration-iterator@^1.0.0: 3025 | version "1.0.0" 3026 | resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz" 3027 | integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== 3028 | dependencies: 3029 | internal-slot "^1.0.4" 3030 | 3031 | string.prototype.matchall@^4.0.8: 3032 | version "4.0.8" 3033 | resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" 3034 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 3035 | dependencies: 3036 | call-bind "^1.0.2" 3037 | define-properties "^1.1.4" 3038 | es-abstract "^1.20.4" 3039 | get-intrinsic "^1.1.3" 3040 | has-symbols "^1.0.3" 3041 | internal-slot "^1.0.3" 3042 | regexp.prototype.flags "^1.4.3" 3043 | side-channel "^1.0.4" 3044 | 3045 | string.prototype.trimend@^1.0.6: 3046 | version "1.0.6" 3047 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" 3048 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 3049 | dependencies: 3050 | call-bind "^1.0.2" 3051 | define-properties "^1.1.4" 3052 | es-abstract "^1.20.4" 3053 | 3054 | string.prototype.trimstart@^1.0.6: 3055 | version "1.0.6" 3056 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" 3057 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 3058 | dependencies: 3059 | call-bind "^1.0.2" 3060 | define-properties "^1.1.4" 3061 | es-abstract "^1.20.4" 3062 | 3063 | strip-ansi@^6.0.1: 3064 | version "6.0.1" 3065 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 3066 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3067 | dependencies: 3068 | ansi-regex "^5.0.1" 3069 | 3070 | strip-bom@^3.0.0: 3071 | version "3.0.0" 3072 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" 3073 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 3074 | 3075 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 3076 | version "3.1.1" 3077 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 3078 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3079 | 3080 | styled-jsx@5.1.1: 3081 | version "5.1.1" 3082 | resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" 3083 | integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== 3084 | dependencies: 3085 | client-only "0.0.1" 3086 | 3087 | supports-color@^7.1.0: 3088 | version "7.2.0" 3089 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 3090 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3091 | dependencies: 3092 | has-flag "^4.0.0" 3093 | 3094 | supports-preserve-symlinks-flag@^1.0.0: 3095 | version "1.0.0" 3096 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 3097 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3098 | 3099 | swr@^2.2.0: 3100 | version "2.2.0" 3101 | resolved "https://registry.yarnpkg.com/swr/-/swr-2.2.0.tgz#575c6ac1bec087847f4c86a39ccbc0043c834d6a" 3102 | integrity sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ== 3103 | dependencies: 3104 | use-sync-external-store "^1.2.0" 3105 | 3106 | synckit@^0.8.4: 3107 | version "0.8.5" 3108 | resolved "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz" 3109 | integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== 3110 | dependencies: 3111 | "@pkgr/utils" "^2.3.1" 3112 | tslib "^2.5.0" 3113 | 3114 | tailwindcss@^3.2.6: 3115 | version "3.2.6" 3116 | resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.6.tgz" 3117 | integrity sha512-BfgQWZrtqowOQMC2bwaSNe7xcIjdDEgixWGYOd6AL0CbKHJlvhfdbINeAW76l1sO+1ov/MJ93ODJ9yluRituIw== 3118 | dependencies: 3119 | arg "^5.0.2" 3120 | chokidar "^3.5.3" 3121 | color-name "^1.1.4" 3122 | detective "^5.2.1" 3123 | didyoumean "^1.2.2" 3124 | dlv "^1.1.3" 3125 | fast-glob "^3.2.12" 3126 | glob-parent "^6.0.2" 3127 | is-glob "^4.0.3" 3128 | lilconfig "^2.0.6" 3129 | micromatch "^4.0.5" 3130 | normalize-path "^3.0.0" 3131 | object-hash "^3.0.0" 3132 | picocolors "^1.0.0" 3133 | postcss "^8.0.9" 3134 | postcss-import "^14.1.0" 3135 | postcss-js "^4.0.0" 3136 | postcss-load-config "^3.1.4" 3137 | postcss-nested "6.0.0" 3138 | postcss-selector-parser "^6.0.11" 3139 | postcss-value-parser "^4.2.0" 3140 | quick-lru "^5.1.1" 3141 | resolve "^1.22.1" 3142 | 3143 | tapable@^2.2.0: 3144 | version "2.2.1" 3145 | resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" 3146 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 3147 | 3148 | text-table@^0.2.0: 3149 | version "0.2.0" 3150 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 3151 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 3152 | 3153 | throttle-debounce@^2.1.0: 3154 | version "2.3.0" 3155 | resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2" 3156 | integrity sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ== 3157 | 3158 | tiny-glob@^0.2.9: 3159 | version "0.2.9" 3160 | resolved "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz" 3161 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 3162 | dependencies: 3163 | globalyzer "0.1.0" 3164 | globrex "^0.1.2" 3165 | 3166 | to-regex-range@^5.0.1: 3167 | version "5.0.1" 3168 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 3169 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3170 | dependencies: 3171 | is-number "^7.0.0" 3172 | 3173 | tsconfig-paths@^3.14.1: 3174 | version "3.14.1" 3175 | resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz" 3176 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 3177 | dependencies: 3178 | "@types/json5" "^0.0.29" 3179 | json5 "^1.0.1" 3180 | minimist "^1.2.6" 3181 | strip-bom "^3.0.0" 3182 | 3183 | tslib@^1.8.1: 3184 | version "1.14.1" 3185 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" 3186 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 3187 | 3188 | tslib@^2.4.0, tslib@^2.5.0: 3189 | version "2.5.0" 3190 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz" 3191 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== 3192 | 3193 | tsutils@^3.21.0: 3194 | version "3.21.0" 3195 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" 3196 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 3197 | dependencies: 3198 | tslib "^1.8.1" 3199 | 3200 | type-check@^0.4.0, type-check@~0.4.0: 3201 | version "0.4.0" 3202 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 3203 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 3204 | dependencies: 3205 | prelude-ls "^1.2.1" 3206 | 3207 | type-fest@^0.20.2: 3208 | version "0.20.2" 3209 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 3210 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 3211 | 3212 | typed-array-length@^1.0.4: 3213 | version "1.0.4" 3214 | resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz" 3215 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 3216 | dependencies: 3217 | call-bind "^1.0.2" 3218 | for-each "^0.3.3" 3219 | is-typed-array "^1.1.9" 3220 | 3221 | unbox-primitive@^1.0.2: 3222 | version "1.0.2" 3223 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" 3224 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 3225 | dependencies: 3226 | call-bind "^1.0.2" 3227 | has-bigints "^1.0.2" 3228 | has-symbols "^1.0.3" 3229 | which-boxed-primitive "^1.0.2" 3230 | 3231 | update-browserslist-db@^1.0.10: 3232 | version "1.0.10" 3233 | resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz" 3234 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 3235 | dependencies: 3236 | escalade "^3.1.1" 3237 | picocolors "^1.0.0" 3238 | 3239 | uri-js@^4.2.2: 3240 | version "4.4.1" 3241 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 3242 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 3243 | dependencies: 3244 | punycode "^2.1.0" 3245 | 3246 | use-sync-external-store@^1.2.0: 3247 | version "1.2.0" 3248 | resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" 3249 | integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== 3250 | 3251 | util-deprecate@^1.0.2: 3252 | version "1.0.2" 3253 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 3254 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 3255 | 3256 | which-boxed-primitive@^1.0.2: 3257 | version "1.0.2" 3258 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 3259 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 3260 | dependencies: 3261 | is-bigint "^1.0.1" 3262 | is-boolean-object "^1.1.0" 3263 | is-number-object "^1.0.4" 3264 | is-string "^1.0.5" 3265 | is-symbol "^1.0.3" 3266 | 3267 | which-collection@^1.0.1: 3268 | version "1.0.1" 3269 | resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz" 3270 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 3271 | dependencies: 3272 | is-map "^2.0.1" 3273 | is-set "^2.0.1" 3274 | is-weakmap "^2.0.1" 3275 | is-weakset "^2.0.1" 3276 | 3277 | which-typed-array@^1.1.9: 3278 | version "1.1.9" 3279 | resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz" 3280 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 3281 | dependencies: 3282 | available-typed-arrays "^1.0.5" 3283 | call-bind "^1.0.2" 3284 | for-each "^0.3.3" 3285 | gopd "^1.0.1" 3286 | has-tostringtag "^1.0.0" 3287 | is-typed-array "^1.1.10" 3288 | 3289 | which@^2.0.1: 3290 | version "2.0.2" 3291 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 3292 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3293 | dependencies: 3294 | isexe "^2.0.0" 3295 | 3296 | word-wrap@^1.2.3: 3297 | version "1.2.3" 3298 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 3299 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3300 | 3301 | wrappy@1: 3302 | version "1.0.2" 3303 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 3304 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 3305 | 3306 | xtend@^4.0.0, xtend@^4.0.2: 3307 | version "4.0.2" 3308 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" 3309 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3310 | 3311 | yallist@^4.0.0: 3312 | version "4.0.0" 3313 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 3314 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3315 | 3316 | yaml@^1.10.2: 3317 | version "1.10.2" 3318 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" 3319 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 3320 | 3321 | yocto-queue@^0.1.0: 3322 | version "0.1.0" 3323 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 3324 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 3325 | --------------------------------------------------------------------------------