index_id
int64
0
2.16k
repo
stringclasses
65 values
file
stringlengths
48
153
content
stringlengths
4
919k
0
streamlit_public_repos
/content/streamlit_public_repos/streamlit/.pre-commit-config.yaml
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Pre-commit configuration file, # when Streamlit's pre-commit detects that one of the linters has failed, # it automatically lints the files and does not allow the commit to pass. # Please review the changes after lint has failed and commit them again, # the second commit should pass, # because the files were linted after trying to do the first commit. repos: - repo: https://github.com/astral-sh/ruff-pre-commit # We fix ruff to a version to be in sync with the dev-requirements: rev: v0.14.5 hooks: # Run the linter. - id: ruff args: [--fix] files: \.py$|\.pyi$ # Run the formatter. - id: ruff-format files: \.py$|\.pyi$ - repo: local hooks: # Script ./scripts/run_in_subdirectory.py was used to work around a # known problem with hooks in subdirectories when pass_filenames option # is set to true # See: https://github.com/pre-commit/pre-commit/issues/1417 - id: prettier-app name: Prettier App # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist entry: ./scripts/run_in_subdirectory.py frontend/app yarn run format files: ^frontend/app/.*\.(js|jsx|ts|tsx)$ exclude: /vendor/ language: node pass_filenames: true - id: prettier-lib name: Prettier Lib # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist entry: ./scripts/run_in_subdirectory.py frontend/lib yarn run format files: ^frontend/lib/.*\.(js|jsx|ts|tsx)$ exclude: /vendor/ language: node pass_filenames: true - id: prettier-connection name: Prettier Connection # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist entry: ./scripts/run_in_subdirectory.py frontend/connection yarn run format files: ^frontend/connection/.*\.(js|jsx|ts|tsx)$ exclude: /vendor/ language: node pass_filenames: true - id: prettier-utils name: Prettier Utils # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist entry: ./scripts/run_in_subdirectory.py frontend/utils yarn run format files: ^frontend/utils/.*\.(js|jsx|ts|tsx)$ exclude: /vendor/ language: node pass_filenames: true - id: prettier-yaml name: Prettier-yaml # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist # We perform this in the app directory because prettier is installed there. TODO: Break this out to a new package entry: ./scripts/run_in_subdirectory.py frontend/app yarn prettier "../../.github/**/*.{yml,yaml}" --write files: ^.github/.*\.(yml|yaml)$ language: node pass_filenames: false - id: prettier-vscode-devcontainer-json name: Prettier VSCode/devcontainer JSON # NOTE: This hook currently does not work on Windows due to "yarn" not being an executable and win32api.CreateProcess # turning `subprocess.run(["yarn", "prettier", "--write"])` into a call to `yarn.exe prettier --write` which does not exist # We perform this in the app directory because prettier is installed there. TODO: Break this out to a new package entry: ./scripts/run_in_subdirectory.py frontend/app yarn prettier "../../.vscode/*.json" "../../.devcontainer/*.json" --write --config ../.prettierrc files: ^(.vscode/.*\.json|\.devcontainer/.*\.json)$ language: node pass_filenames: false - id: license-headers name: Checks license headers entry: ./scripts/check_license_headers.py language: system always_run: true pass_filenames: false - id: generate-agent-rules name: Check generated agent rules entry: ./scripts/generate_agent_rules.py language: system pass_filenames: false files: | (?x) (^|.*/)AGENTS\.md$ |^scripts/generate_agent_rules\.py$ |^Makefile$ - id: vscode-devcontainer-sync name: Check VSCode/devcontainer sync entry: ./scripts/sync_vscode_devcontainer.py --check language: system files: ^(.vscode/(settings|extensions)\.json|\.devcontainer/devcontainer\.json)$ pass_filenames: false - repo: https://github.com/Lucas-C/pre-commit-hooks rev: v1.5.5 hooks: - id: insert-license name: Add license for all (S)CSS/JS(X)/TS(X) files files: \.(s?css|jsx?|tsx?)$ args: - --comment-style - "/**| *| */" - --license-filepath - scripts/assets/license-template.txt - --fuzzy-match-generates-todo exclude: | (?x) /vendor/ |^vendor/ |^component-lib/declarations/apache-arrow |^frontend/app/src/assets/css/variables\.scss |^lib/tests/streamlit/elements/test_html\.js |^lib/tests/streamlit/elements/test_html\.css |^e2e_playwright/test_assets/ - id: insert-license name: Add license for all Proto files files: \.proto$ args: - --comment-style - "/**!| *| */" - --license-filepath - scripts/assets/license-template.txt - --fuzzy-match-generates-todo exclude: | (?x) /vendor/ |^vendor/ |^component-lib/declarations/apache-arrow |^proto/streamlit/proto/openmetrics_data_model\.proto - id: insert-license name: Add license for all shell files files: \.sh$ args: - --comment-style - "|#|" - --license-filepath - scripts/assets/license-template.txt - --fuzzy-match-generates-todo exclude: | (?x) /vendor/ |^vendor/ |^component-lib/declarations/apache-arrow - id: insert-license name: Add license for all Python files files: \.py$|\.pyi$ args: - --comment-style - "|#|" - --license-filepath - scripts/assets/license-template.txt - --fuzzy-match-generates-todo exclude: | (?x) /vendor/ |^vendor/ |^component-lib/declarations/apache-arrow - id: insert-license name: Add license for all HTML files files: \.html$ args: - --comment-style - "<!--||-->" - --license-filepath - scripts/assets/license-template.txt - --fuzzy-match-generates-todo exclude: | (?x) /vendor/ |^vendor/ |^component-lib/declarations/apache-arrow - repo: https://gitlab.com/bmares/check-json5 rev: v1.0.0 hooks: # Check JSON files that are allowed to have comments - id: check-json5 # Note that this should be the same as the check-json hook's exclude # property files: | (?x) ^\.vscode/.*\.json$ |tsconfig.*\.json$ |.*tsconfig\.json$ - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: trailing-whitespace exclude: | (?x) ^frontend/app/src/assets/ |^NOTICES$ |^proto/streamlit/proto/openmetrics_data_model.proto$ |\.snap$ - id: check-added-large-files - id: check-json # Note that this should be the same as the check-json5 hook's files # property exclude: | (?x) ^\.vscode/.*\.json$ |tsconfig.*\.json$ |.*tsconfig\.json$ - id: check-toml - id: check-yaml exclude: lib/conda-recipe/meta.yaml - id: check-symlinks - id: check-case-conflict - id: check-merge-conflict - id: fix-byte-order-marker - id: end-of-file-fixer exclude: | (?x) /vendor/ |^NOTICES$ |^e2e_playwright/test_assets/ |^LICENSE$ - id: mixed-line-ending args: [--fix=lf] exclude: | (?x) ^NOTICES$
1
streamlit_public_repos
/content/streamlit_public_repos/streamlit/CODE_OF_CONDUCT.md
# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: - Using welcoming and inclusive language - Being respectful of differing viewpoints and experiences - Gracefully accepting constructive criticism - Focusing on what is best for the community - Showing empathy towards other community members Examples of unacceptable behavior by participants include: - The use of sexualized language or imagery and unwelcome sexual attention or advances - Trolling, insulting/derogatory comments, and personal or political attacks - Public or private harassment - Publishing others' private information, such as a physical or electronic address, without explicit permission - Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hello@streamlit.io. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq
2
streamlit_public_repos
/content/streamlit_public_repos/streamlit/mypy.ini
[mypy] python_version = 3.10 cache_dir = .mypy_cache incremental = true files = lib/streamlit/, lib/tests/streamlit/typing/, scripts/, e2e_playwright/ exclude = (?x)( # The compilation error test file cannot breaks mypy # because it the syntax error. ^e2e_playwright/compilation_error_dialog\.py$ ) # strict mode settings: warn_unused_configs = true disallow_any_generics = true disallow_subclassing_any = true disallow_untyped_calls = true disallow_untyped_defs = true disallow_incomplete_defs = true disallow_untyped_decorators = true check_untyped_defs = true warn_redundant_casts = true warn_unused_ignores = true warn_return_any = true no_implicit_reexport = true strict_equality = true extra_checks = true # other settings: allow_redefinition = false no_implicit_optional = true strict_optional = true warn_unreachable = true warn_no_return = true scripts_are_modules = true namespace_packages = true show_error_context = true show_column_numbers = true show_error_codes = true pretty = true [mypy-e2e_playwright.*] # We don't want to enforce return types for test functions disallow_incomplete_defs = false disallow_untyped_calls = false disallow_untyped_defs = false [mypy-tests.*] # Ignore all error in unit tests ignore_errors = true [mypy-tests.streamlit.typing.*] # Explicitly enable type checking for the typing tests ignore_errors = false [mypy-shared.*] ignore_missing_imports = true # We need to set ignore_missing_imports to true for all optional dependencies, [mypy-vega_datasets.*] ignore_missing_imports = true [mypy-sympy.*] ignore_missing_imports = true [mypy-plotly.*] ignore_missing_imports = true [mypy-pydeck.*] ignore_missing_imports = true [mypy-pyarrow.*] ignore_missing_imports = true [mypy-graphviz.*] ignore_missing_imports = true [mypy-authlib.*] ignore_missing_imports = true [mypy-uvloop.*] ignore_missing_imports = true
3
streamlit_public_repos
/content/streamlit_public_repos/streamlit/NOTICES
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE STREAMLIT PRODUCT. ----- The following software may be included in this product: @babel/code-frame, @babel/generator, @babel/helper-module-imports, @babel/helper-string-parser, @babel/helper-validator-identifier, @babel/runtime, @babel/template, @babel/traverse, @babel/types. A copy of the source code may be downloaded from https://github.com/babel/babel.git (@babel/code-frame), https://github.com/babel/babel.git (@babel/generator), https://github.com/babel/babel.git (@babel/helper-module-imports), https://github.com/babel/babel.git (@babel/helper-string-parser), https://github.com/babel/babel.git (@babel/helper-validator-identifier), https://github.com/babel/babel.git (@babel/runtime), https://github.com/babel/babel.git (@babel/template), https://github.com/babel/babel.git (@babel/traverse), https://github.com/babel/babel.git (@babel/types). This software contains the following license and notice below: MIT License Copyright (c) 2014-present Sebastian McKenzie and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @babel/parser. A copy of the source code may be downloaded from https://github.com/babel/babel.git. This software contains the following license and notice below: Copyright (C) 2012-2014 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @carto/api-client. A copy of the source code may be downloaded from git+https://github.com/CartoDB/carto-api-client.git. This software contains the following license and notice below: MIT License Copyright (c) 2024 CARTO Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @date-io/core. A copy of the source code may be downloaded from https://github.com/dmtrKovalenko/date-io. This software contains the following license and notice below: MIT License Copyright (c) 2017 Dmitriy Kovalenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @deck.gl/aggregation-layers, @deck.gl/arcgis, @deck.gl/carto, @deck.gl/core, @deck.gl/extensions, @deck.gl/geo-layers, @deck.gl/google-maps, @deck.gl/json, @deck.gl/layers, @deck.gl/mapbox, @deck.gl/mesh-layers, @deck.gl/react, @deck.gl/widgets, @probe.gl/env, @probe.gl/log, @probe.gl/stats, deck.gl. A copy of the source code may be downloaded from https://github.com/visgl/deck.gl.git (@deck.gl/aggregation-layers), https://github.com/visgl/deck.gl.git (@deck.gl/arcgis), https://github.com/visgl/deck.gl.git (@deck.gl/carto), https://github.com/visgl/deck.gl.git (@deck.gl/core), https://github.com/visgl/deck.gl.git (@deck.gl/extensions), https://github.com/visgl/deck.gl.git (@deck.gl/geo-layers), https://github.com/visgl/deck.gl.git (@deck.gl/google-maps), https://github.com/visgl/deck.gl.git (@deck.gl/json), https://github.com/visgl/deck.gl.git (@deck.gl/layers), https://github.com/visgl/deck.gl.git (@deck.gl/mapbox), https://github.com/visgl/deck.gl.git (@deck.gl/mesh-layers), https://github.com/visgl/deck.gl.git (@deck.gl/react), https://github.com/visgl/deck.gl.git (@deck.gl/widgets), https://github.com/visgl/probe.gl.git (@probe.gl/env), https://github.com/visgl/probe.gl.git (@probe.gl/log), https://github.com/visgl/probe.gl.git (@probe.gl/stats), https://github.com/visgl/deck.gl.git (deck.gl). This software contains the following license and notice below: Copyright Vis.gl contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @emotion/babel-plugin, @emotion/cache, @emotion/hash, @emotion/is-prop-valid, @emotion/memoize, @emotion/react, @emotion/serialize, @emotion/sheet, @emotion/styled, @emotion/unitless, @emotion/utils, @emotion/weak-memoize. A copy of the source code may be downloaded from https://github.com/emotion-js/emotion/tree/main/packages/babel-plugin (@emotion/babel-plugin), https://github.com/emotion-js/emotion/tree/main/packages/cache (@emotion/cache), https://github.com/emotion-js/emotion/tree/main/packages/hash (@emotion/hash), https://github.com/emotion-js/emotion/tree/main/packages/is-prop-valid (@emotion/is-prop-valid), https://github.com/emotion-js/emotion/tree/main/packages/memoize (@emotion/memoize), https://github.com/emotion-js/emotion/tree/main/packages/react (@emotion/react), https://github.com/emotion-js/emotion/tree/main/packages/serialize (@emotion/serialize), https://github.com/emotion-js/emotion/tree/main/packages/sheet (@emotion/sheet), https://github.com/emotion-js/emotion/tree/main/packages/styled (@emotion/styled), https://github.com/emotion-js/emotion/tree/main/packages/unitless (@emotion/unitless), https://github.com/emotion-js/emotion/tree/main/packages/utils (@emotion/utils), https://github.com/emotion-js/emotion/tree/main/packages/weak-memoize (@emotion/weak-memoize). This software contains the following license and notice below: MIT License Copyright (c) Emotion team and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @floating-ui/core, @floating-ui/dom, @floating-ui/utils. A copy of the source code may be downloaded from https://github.com/floating-ui/floating-ui.git (@floating-ui/core), https://github.com/floating-ui/floating-ui.git (@floating-ui/dom), https://github.com/floating-ui/floating-ui.git (@floating-ui/utils). This software contains the following license and notice below: MIT License Copyright (c) 2021-present Floating UI contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @glideapps/glide-data-grid, @glideapps/glide-data-grid-cells, @glideapps/glide-data-grid-source. A copy of the source code may be downloaded from git+https://github.com/glideapps/glide-data-grid.git (@glideapps/glide-data-grid), git+https://github.com/glideapps/glide-data-grid.git (@glideapps/glide-data-grid-cells), git+https://github.com/glideapps/glide-data-grid.git (@glideapps/glide-data-grid-source). This software contains the following license and notice below: MIT License Copyright (c) 2021 typeguard, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @hpcc-js/wasm. A copy of the source code may be downloaded from git+https://github.com/hpcc-systems/hpcc-js-wasm.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: @jridgewell/gen-mapping, @jridgewell/set-array. A copy of the source code may be downloaded from https://github.com/jridgewell/gen-mapping (@jridgewell/gen-mapping), https://github.com/jridgewell/set-array (@jridgewell/set-array). This software contains the following license and notice below: Copyright 2022 Justin Ridgewell <jridgewell@google.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @jridgewell/resolve-uri. A copy of the source code may be downloaded from https://github.com/jridgewell/resolve-uri. This software contains the following license and notice below: Copyright 2019 Justin Ridgewell <jridgewell@google.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @jridgewell/sourcemap-codec. A copy of the source code may be downloaded from git+https://github.com/jridgewell/sourcemap-codec.git. This software contains the following license and notice below: The MIT License Copyright (c) 2015 Rich Harris Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @jridgewell/trace-mapping. A copy of the source code may be downloaded from git+https://github.com/jridgewell/trace-mapping.git. This software contains the following license and notice below: Copyright 2022 Justin Ridgewell <justin@ridgewell.name> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @linaria/core, @linaria/react. A copy of the source code may be downloaded from git@github.com:callstack/linaria.git (@linaria/core), git@github.com:callstack/linaria.git (@linaria/react). This software contains the following license and notice below: MIT License Copyright (c) 2017 Callstack Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @loaders.gl/3d-tiles, @loaders.gl/compression, @loaders.gl/core, @loaders.gl/crypto, @loaders.gl/csv, @loaders.gl/draco, @loaders.gl/gis, @loaders.gl/gltf, @loaders.gl/images, @loaders.gl/loader-utils, @loaders.gl/math, @loaders.gl/mvt, @loaders.gl/schema, @loaders.gl/terrain, @loaders.gl/textures, @loaders.gl/tiles, @loaders.gl/wms, @loaders.gl/worker-utils, @loaders.gl/xml, @loaders.gl/zip. A copy of the source code may be downloaded from https://github.com/visgl/loaders.gl (@loaders.gl/3d-tiles), https://github.com/visgl/loaders.gl (@loaders.gl/compression), https://github.com/visgl/loaders.gl (@loaders.gl/core), https://github.com/visgl/loaders.gl (@loaders.gl/crypto), https://github.com/visgl/loaders.gl (@loaders.gl/csv), https://github.com/visgl/loaders.gl (@loaders.gl/draco), https://github.com/visgl/loaders.gl (@loaders.gl/gis), https://github.com/visgl/loaders.gl (@loaders.gl/gltf), https://github.com/visgl/loaders.gl (@loaders.gl/images), https://github.com/visgl/loaders.gl (@loaders.gl/loader-utils), https://github.com/visgl/loaders.gl (@loaders.gl/math), https://github.com/visgl/loaders.gl (@loaders.gl/mvt), https://github.com/visgl/loaders.gl (@loaders.gl/schema), https://github.com/visgl/loaders.gl (@loaders.gl/terrain), https://github.com/visgl/loaders.gl (@loaders.gl/textures), https://github.com/visgl/loaders.gl (@loaders.gl/tiles), https://github.com/visgl/loaders.gl (@loaders.gl/wms), https://github.com/visgl/loaders.gl (@loaders.gl/worker-utils), https://github.com/visgl/loaders.gl (@loaders.gl/xml), https://github.com/visgl/loaders.gl (@loaders.gl/zip). This software contains the following license and notice below: loaders.gl is licensed under the MIT license Copyright (c) vis.gl contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Copyright (c) 2015 Uber Technologies, Inc. loaders.gl includes certain files from Cesium (https://github.com/AnalyticalGraphicsInc/cesium) under the Apache 2 License (found in the submodule: modules/3d-tiles):) Copyright 2011-2018 CesiumJS Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: @luma.gl/constants, @luma.gl/core, @luma.gl/engine, @luma.gl/gltf, @luma.gl/shadertools, @luma.gl/webgl. A copy of the source code may be downloaded from https://github.com/visgl/luma.gl (@luma.gl/constants), https://github.com/visgl/luma.gl (@luma.gl/core), https://github.com/visgl/luma.gl (@luma.gl/engine), https://github.com/visgl/luma.gl (@luma.gl/gltf), https://github.com/visgl/luma.gl (@luma.gl/shadertools), https://github.com/visgl/luma.gl (@luma.gl/webgl). This software contains the following license and notice below: luma.gl is provided under the MIT license Copyright (c) 2020 vis.gl contributors This software includes parts initially developed by Uber and open sourced under MIT license. Copyright (c) 2015 Uber Technologies, Inc. This software includes parts of PhiloGL (https://github.com/philogb/philogl) under MIT license. PhiloGL parts Copyright © 2013 Sencha Labs. This software includes adaptations of some postprocessing code from THREE.js (https://github.com/mrdoob/three.js/) under MIT license. THREE.js parts Copyright © 2010-2018 three.js authors. Additional attribution given in specific source files. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @mapbox/geojson-rewind. A copy of the source code may be downloaded from git://github.com/mapbox/geojson-rewind.git. This software contains the following license and notice below: Copyright (c) 2020, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: @mapbox/geojson-types. This software contains the following license and notice below: MIT License Copyright (c) 2018 Mapbox Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @mapbox/mapbox-gl-supported. A copy of the source code may be downloaded from git+https://github.com/mapbox/mapbox-gl-supported.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2017, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @mapbox/martini. This software contains the following license and notice below: ISC License Copyright (c) 2019, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: @mapbox/point-geometry. A copy of the source code may be downloaded from git@github.com:mapbox/point-geometry.git. This software contains the following license and notice below: Copyright (c) 2015, Mapbox <> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: @mapbox/tile-cover, tilebelt. A copy of the source code may be downloaded from https://github.com/mapbox/tile-cover.git (@mapbox/tile-cover), https://github.com/mapbox/tilebelt.git (tilebelt). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Morgan Herlocker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @mapbox/tiny-sdf. A copy of the source code may be downloaded from git+https://github.com/mapbox/tiny-sdf.git. This software contains the following license and notice below: Copyright © 2016-2021 Mapbox, Inc. This code available under the terms of the BSD 2-Clause license. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @mapbox/tiny-sdf. A copy of the source code may be downloaded from git+https://github.com/mapbox/tiny-sdf.git. This software contains the following license and notice below: BSD-2-Clause Copyright (c) 2016-2022 Mapbox, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @mapbox/unitbezier. A copy of the source code may be downloaded from git@github.com:mapbox/unitbezier.git. This software contains the following license and notice below: BSD-2-Clause Copyright (C) 2008 Apple Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Ported from Webkit http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/platform/graphics/UnitBezier.h ----- The following software may be included in this product: @mapbox/vector-tile. A copy of the source code may be downloaded from https://github.com/mapbox/vector-tile-js.git. This software contains the following license and notice below: Copyright (c) 2014, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @mapbox/whoots-js, delaunator. A copy of the source code may be downloaded from git+https://github.com/mapbox/whoots-js.git (@mapbox/whoots-js), https://github.com/mapbox/delaunator.git (delaunator). This software contains the following license and notice below: ISC License Copyright (c) 2017, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: @maplibre/maplibre-gl-style-spec. A copy of the source code may be downloaded from git@github.com:maplibre/maplibre-gl-style-spec.git. This software contains the following license and notice below: Copyright (c) 2020, MapLibre contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of MapLibre GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from mapbox-gl-js v1.13 and earlier Version v1.13 of mapbox-gl-js and earlier are licensed under a BSD-3-Clause license Copyright (c) 2020, Mapbox Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from glfx.js Copyright (C) 2011 by Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Contains a portion of d3-color https://github.com/d3/d3-color Copyright 2010-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @math.gl/core, @math.gl/culling, @math.gl/geospatial, @math.gl/polygon, @math.gl/sun, @math.gl/types, @math.gl/web-mercator. A copy of the source code may be downloaded from https://github.com/visgl/math.gl.git (@math.gl/core), https://github.com/visgl/math.gl.git (@math.gl/culling), https://github.com/visgl/math.gl.git (@math.gl/geospatial), https://github.com/visgl/math.gl.git (@math.gl/polygon), https://github.com/visgl/math.gl.git (@math.gl/sun), https://github.com/visgl/math.gl.git (@math.gl/types), https://github.com/visgl/math.gl.git (@math.gl/web-mercator). This software contains the following license and notice below: MIT License Copyright (c) 2017 Uber Technologies, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- math.gl builds on docs and code from "gl-matrix", which is MIT licensed as follows: Copyright (c) 2015, Brandon Jones, Colin MacKenzie IV. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- math.gl builds on docs and code from THREE.js, which is MIT licensed as follows: The MIT License Copyright © 2010-2017 three.js authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- math.gl includes certain files from Cesium (https://github.com/AnalyticalGraphicsInc/cesium) under the Apache 2 License: Copyright 2011-2018 CesiumJS Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Cesium-derived code can be found in the submodule: modules/3d-tiles ----- The following software may be included in this product: @plotly/d3. A copy of the source code may be downloaded from https://github.com/plotly/d3.git. This software contains the following license and notice below: Copyright (c) 2010-2016, Michael Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The name Michael Bostock may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @plotly/d3-sankey. A copy of the source code may be downloaded from https://github.com/d3/d3-sankey.git. This software contains the following license and notice below: Copyright 2015, Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @plotly/d3-sankey-circular. A copy of the source code may be downloaded from git+https://github.com/plotly/d3-sankey-circular.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Tom Shanley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @plotly/mapbox-gl, mapbox-gl. A copy of the source code may be downloaded from git://github.com/plotly/mapbox-gl-js.git (@plotly/mapbox-gl), git://github.com/mapbox/mapbox-gl-js.git (mapbox-gl). This software contains the following license and notice below: Copyright (c) 2020, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from glfx.js Copyright (C) 2011 by Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Contains a portion of d3-color https://github.com/d3/d3-color Copyright 2010-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @plotly/point-cluster, regl-error2d, regl-line2d, regl-scatter2d. A copy of the source code may be downloaded from git://github.com/plotly/point-cluster.git (@plotly/point-cluster), git+https://github.com/dy/regl-error2d.git (regl-error2d), git+https://github.com/dy/regl-line2d.git (regl-line2d), git+https://github.com/dy/regl-scatter2d.git (regl-scatter2d). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @plotly/regl, regl. A copy of the source code may be downloaded from git+https://github.com/plotly/regl.git (@plotly/regl), git+https://github.com/regl-project/regl.git (regl). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Mikola Lysenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @probe.gl/env, @probe.gl/log, @probe.gl/stats. A copy of the source code may be downloaded from https://github.com/uber-web/probe.gl.git (@probe.gl/env), https://github.com/uber-web/probe.gl.git (@probe.gl/log), https://github.com/uber-web/probe.gl.git (@probe.gl/stats). This software contains the following license and notice below: Copyright (c) 2017 Uber Technologies, Inc. This software includes parts of PhiloGL (https://github.com/philogb/philogl) under MIT license. PhiloGL parts Copyright (c) 2013 Sencha Labs. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @protobufjs/aspromise, @protobufjs/base64, @protobufjs/codegen, @protobufjs/eventemitter, @protobufjs/fetch, @protobufjs/float, @protobufjs/inquire, @protobufjs/path, @protobufjs/pool, @protobufjs/utf8. A copy of the source code may be downloaded from https://github.com/dcodeIO/protobuf.js.git (@protobufjs/aspromise), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/base64), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/codegen), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/eventemitter), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/fetch), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/float), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/inquire), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/path), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/pool), https://github.com/dcodeIO/protobuf.js.git (@protobufjs/utf8). This software contains the following license and notice below: Copyright (c) 2016, Daniel Wirtz All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of its author, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: @rtsao/csstype, csstype. A copy of the source code may be downloaded from https://github.com/frenic/csstype (@rtsao/csstype), https://github.com/frenic/csstype (csstype). This software contains the following license and notice below: Copyright (c) 2017-2018 Fredrik Nicol Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @sindresorhus/is, @sindresorhus/slugify, @sindresorhus/transliterate, ansi-regex, ansi-styles, decamelize, escape-string-regexp, filter-obj, find-up, get-east-asian-width, get-stream, humanize-string, import-fresh, is-plain-obj, locate-path, p-limit, p-locate, parse-json, query-string, split-on-first, string-width, strip-ansi, wrap-ansi, yocto-queue. A copy of the source code may be downloaded from git+https://github.com/sindresorhus/is.git (@sindresorhus/is), git+https://github.com/sindresorhus/slugify.git (@sindresorhus/slugify), git+https://github.com/sindresorhus/transliterate.git (@sindresorhus/transliterate), git+https://github.com/chalk/ansi-regex.git (ansi-regex), git+https://github.com/chalk/ansi-styles.git (ansi-styles), git+https://github.com/sindresorhus/decamelize.git (decamelize), git+https://github.com/sindresorhus/escape-string-regexp.git (escape-string-regexp), git+https://github.com/sindresorhus/filter-obj.git (filter-obj), git+https://github.com/sindresorhus/find-up.git (find-up), git+https://github.com/sindresorhus/get-east-asian-width.git (get-east-asian-width), git+https://github.com/sindresorhus/get-stream.git (get-stream), git+https://github.com/sindresorhus/humanize-string.git (humanize-string), git+https://github.com/sindresorhus/import-fresh.git (import-fresh), git+https://github.com/sindresorhus/is-plain-obj.git (is-plain-obj), git+https://github.com/sindresorhus/locate-path.git (locate-path), git+https://github.com/sindresorhus/p-limit.git (p-limit), git+https://github.com/sindresorhus/p-locate.git (p-locate), git+https://github.com/sindresorhus/parse-json.git (parse-json), git+https://github.com/sindresorhus/query-string.git (query-string), git+https://github.com/sindresorhus/split-on-first.git (split-on-first), git+https://github.com/sindresorhus/string-width.git (string-width), git+https://github.com/chalk/strip-ansi.git (strip-ansi), git+https://github.com/chalk/wrap-ansi.git (wrap-ansi), git+https://github.com/sindresorhus/yocto-queue.git (yocto-queue). This software contains the following license and notice below: MIT License Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @streamlit/component-v2-lib. A copy of the source code may be downloaded from git+https://github.com/streamlit/streamlit.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. ----- The following software may be included in this product: @swc/helpers. A copy of the source code may be downloaded from git+https://github.com/swc-project/swc.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2024 SWC contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: @turf/area, @turf/bbox, @turf/bbox-clip, @turf/bbox-polygon, @turf/boolean-clockwise, @turf/centroid, @turf/clone, @turf/helpers, @turf/invariant, @turf/meta, @turf/rewind, @turf/union. A copy of the source code may be downloaded from git://github.com/Turfjs/turf.git (@turf/area), git://github.com/Turfjs/turf.git (@turf/bbox), git://github.com/Turfjs/turf.git (@turf/bbox-clip), git://github.com/Turfjs/turf.git (@turf/bbox-polygon), git://github.com/Turfjs/turf.git (@turf/boolean-clockwise), git://github.com/Turfjs/turf.git (@turf/centroid), git://github.com/Turfjs/turf.git (@turf/clone), git://github.com/Turfjs/turf.git (@turf/helpers), git://github.com/Turfjs/turf.git (@turf/invariant), git://github.com/Turfjs/turf.git (@turf/meta), git://github.com/Turfjs/turf.git (@turf/rewind), git://github.com/Turfjs/turf.git (@turf/union). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: @types/brotli, @types/command-line-args, @types/command-line-usage, @types/crypto-js, @types/d3-array, @types/d3-color, @types/d3-scale, @types/d3-time, @types/debug, @types/estree, @types/estree-jsx, @types/geojson, @types/geojson-vt, @types/google.maps, @types/hammerjs, @types/hast, @types/katex, @types/mapbox-gl, @types/mapbox__point-geometry, @types/mapbox__vector-tile, @types/mdast, @types/ms, @types/node, @types/offscreencanvas, @types/pako, @types/parse-json, @types/pbf, @types/prop-types, @types/react, @types/react-transition-group, @types/react-virtualized-auto-sizer, @types/react-window, @types/supercluster, @types/trusted-types, @types/unist. A copy of the source code may be downloaded from https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/brotli), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/command-line-args), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/command-line-usage), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/crypto-js), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/d3-array), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/d3-color), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/d3-scale), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/d3-time), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/debug), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/estree), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/estree-jsx), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/geojson), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/geojson-vt), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/google.maps), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/hammerjs), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/hast), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/katex), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/mapbox-gl), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/mapbox__point-geometry), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/mapbox__vector-tile), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/mdast), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/ms), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/node), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/offscreencanvas), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/pako), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/parse-json), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/pbf), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/prop-types), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/react), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/react-transition-group), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/react-virtualized-auto-sizer), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/react-window), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/supercluster), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/trusted-types), https://github.com/DefinitelyTyped/DefinitelyTyped.git (@types/unist). This software contains the following license and notice below: MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE ----- The following software may be included in this product: @types/react-helmet-async. A copy of the source code may be downloaded from https://github.com/staylor/react-helmet-async. This software contains the following license and notice below: MIT License Copyright (c) Microsoft Corporation. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE ----- The following software may be included in this product: @ungap/structured-clone. A copy of the source code may be downloaded from git+https://github.com/ungap/structured-clone.git. This software contains the following license and notice below: ISC License Copyright (c) 2021, Andrea Giammarchi, @WebReflection Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: @wyw-in-js/processor-utils, @wyw-in-js/shared. This software contains the following license and notice below: MIT License Copyright (c) 2023 Anton Evzhakov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: acorn. A copy of the source code may be downloaded from https://github.com/acornjs/acorn.git. This software contains the following license and notice below: MIT License Copyright (C) 2012-2018 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ansi-regex, ansi-styles, callsites, chalk, globals, has-flag, is-finite, is-fullwidth-code-point, parent-module, path-exists, path-type, resolve-from, skin-tone, string-width, strip-ansi, supports-color. A copy of the source code may be downloaded from git+https://github.com/chalk/ansi-regex.git (ansi-regex), git+https://github.com/chalk/ansi-styles.git (ansi-styles), git+https://github.com/sindresorhus/callsites.git (callsites), git+https://github.com/chalk/chalk.git (chalk), git+https://github.com/sindresorhus/globals.git (globals), git+https://github.com/sindresorhus/has-flag.git (has-flag), git+https://github.com/sindresorhus/is-finite.git (is-finite), git+https://github.com/sindresorhus/is-fullwidth-code-point.git (is-fullwidth-code-point), git+https://github.com/sindresorhus/parent-module.git (parent-module), git+https://github.com/sindresorhus/path-exists.git (path-exists), git+https://github.com/sindresorhus/path-type.git (path-type), git+https://github.com/sindresorhus/resolve-from.git (resolve-from), git+https://github.com/sindresorhus/skin-tone.git (skin-tone), git+https://github.com/sindresorhus/string-width.git (string-width), git+https://github.com/chalk/strip-ansi.git (strip-ansi), git+https://github.com/chalk/supports-color.git (supports-color). This software contains the following license and notice below: MIT License Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: apache-arrow. A copy of the source code may be downloaded from git+https://github.com/apache/arrow-js.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. NOTICE Apache Arrow JavaScript Copyright 2017-2025 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). ----- The following software may be included in this product: argparse. A copy of the source code may be downloaded from git+https://github.com/nodeca/argparse.git. This software contains the following license and notice below: (The MIT License) Copyright (C) 2012 by Vitaly Puzrin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: arr-union, get-value. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/arr-union.git (arr-union), git+https://github.com/jonschlinkert/get-value.git (get-value). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2016, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: array-back. A copy of the source code may be downloaded from https://github.com/75lb/array-back.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-22 Lloyd Brookes <75pound@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: array-find-index, buf-compare, core-assert, deep-strict-equal, is-obj, is-plain-obj, math-log2, number-is-integer, object-assign, path-is-absolute. A copy of the source code may be downloaded from git+https://github.com/sindresorhus/array-find-index.git (array-find-index), git+https://github.com/sindresorhus/buf-compare.git (buf-compare), git+https://github.com/sindresorhus/core-assert.git (core-assert), git+https://github.com/sindresorhus/deep-strict-equal.git (deep-strict-equal), git+https://github.com/sindresorhus/is-obj.git (is-obj), git+https://github.com/sindresorhus/is-plain-obj.git (is-plain-obj), git+https://github.com/sindresorhus/math-log2.git (math-log2), git+https://github.com/sindresorhus/number-is-integer.git (number-is-integer), git+https://github.com/sindresorhus/object-assign.git (object-assign), git+https://github.com/sindresorhus/path-is-absolute.git (path-is-absolute). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: array-range, mouse-event-offset, parse-unit, webgl-context. A copy of the source code may be downloaded from git://github.com/mattdesl/array-range.git (array-range), git://github.com/mattdesl/mouse-event-offset.git (mouse-event-offset), git://github.com/mattdesl/parse-unit.git (parse-unit), git://github.com/mattdesl/webgl-context.git (webgl-context). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Matt DesLauriers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: array-rearrange. A copy of the source code may be downloaded from git+ssh://git@github.com/dfcreative/array-rearrange.git. This software contains the following license and notice below: The MIT License (MIT) 2018 (c) Dmitry Ivanov <df.creative@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: asap. A copy of the source code may be downloaded from https://github.com/kriskowal/asap.git. This software contains the following license and notice below: Copyright 2009–2014 Contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: assign-symbols, is-extendable. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/assign-symbols.git (assign-symbols), git+https://github.com/jonschlinkert/is-extendable.git (is-extendable). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: asynckit. A copy of the source code may be downloaded from git+https://github.com/alexindigo/asynckit.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Alex Indigo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: attr-accept. A copy of the source code may be downloaded from https://github.com/react-dropzone/attr-accept.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Andrey Okonetchnikov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: axios. A copy of the source code may be downloaded from https://github.com/axios/axios.git. This software contains the following license and notice below: # Copyright (c) 2014-present Matt Zabriskie & Collaborators Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: babel-plugin-macros. A copy of the source code may be downloaded from https://github.com/kentcdodds/babel-plugin-macros. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2020 Kent C. Dodds Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: bail, ccount, character-entities, character-entities-html4, character-entities-legacy, character-reference-invalid, fault, mdast-util-to-string, unist-util-find-after, unist-util-position, unist-util-visit. A copy of the source code may be downloaded from git+https://github.com/wooorm/bail.git (bail), git+https://github.com/wooorm/ccount.git (ccount), git+https://github.com/wooorm/character-entities.git (character-entities), git+https://github.com/wooorm/character-entities-html4.git (character-entities-html4), git+https://github.com/wooorm/character-entities-legacy.git (character-entities-legacy), git+https://github.com/wooorm/character-reference-invalid.git (character-reference-invalid), git+https://github.com/wooorm/fault.git (fault), git+https://github.com/syntax-tree/mdast-util-to-string.git (mdast-util-to-string), git+https://github.com/syntax-tree/unist-util-find-after.git (unist-util-find-after), git+https://github.com/syntax-tree/unist-util-position.git (unist-util-position), git+https://github.com/syntax-tree/unist-util-visit.git (unist-util-visit). This software contains the following license and notice below: (The MIT License) Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: balanced-match. A copy of the source code may be downloaded from git://github.com/juliangruber/balanced-match.git. This software contains the following license and notice below: (MIT) Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt; Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: base16. A copy of the source code may be downloaded from https://github.com/gaearon/base16-js.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Dan Abramov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: base64-arraybuffer. A copy of the source code may be downloaded from https://github.com/niklasvh/base64-arraybuffer. This software contains the following license and notice below: Copyright (c) 2012 Niklas von Hertzen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: base64-js. A copy of the source code may be downloaded from git://github.com/beatgammit/base64-js.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Jameson Little Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: binary-search-bounds. A copy of the source code may be downloaded from git://github.com/mikolalysenko/binary-search-bounds.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2013-2015 Mikola Lysenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: bit-twiddle, dup, signum, strongly-connected-components, typedarray-pool. A copy of the source code may be downloaded from git://github.com/mikolalysenko/bit-twiddle.git (bit-twiddle), git://github.com/mikolalysenko/dup.git (dup), git://github.com/mikolalysenko/signum.git (signum), git://github.com/mikolalysenko/strongly-connected-components.git (strongly-connected-components), git://github.com/mikolalysenko/typedarray-pool.git (typedarray-pool). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2013 Mikola Lysenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: bl. A copy of the source code may be downloaded from https://github.com/rvagg/bl.git. This software contains the following license and notice below: The MIT License (MIT) ===================== Copyright (c) 2013-2018 bl contributors ---------------------------------- *bl contributors listed at <https://github.com/rvagg/bl#contributors>* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: brace-expansion, isarray. A copy of the source code may be downloaded from git://github.com/juliangruber/brace-expansion.git (brace-expansion), git://github.com/juliangruber/isarray.git (isarray). This software contains the following license and notice below: MIT License Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: buffer-from. A copy of the source code may be downloaded from git+https://github.com/LinusU/buffer-from.git. This software contains the following license and notice below: MIT License Copyright (c) 2016, 2018 Linus Unnebäck Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: bytewise-core, typewise-core. A copy of the source code may be downloaded from https://github.com/deanlandolt/bytewise-core.git (bytewise-core), https://github.com/deanlandolt/typewise-core.git (typewise-core). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Dean Landolt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: call-bind-apply-helpers, es-define-property, es-errors, es-object-atoms. A copy of the source code may be downloaded from git+https://github.com/ljharb/call-bind-apply-helpers.git (call-bind-apply-helpers), git+https://github.com/ljharb/es-define-property.git (es-define-property), git+https://github.com/ljharb/es-errors.git (es-errors), git+https://github.com/ljharb/es-object-atoms.git (es-object-atoms). This software contains the following license and notice below: MIT License Copyright (c) 2024 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: canvas-fit, concat-map, defined, element-size, minimist, resolve, right-now, shallow-copy. A copy of the source code may be downloaded from git://github.com/hughsk/canvas-fit.git (canvas-fit), git://github.com/substack/node-concat-map.git (concat-map), git://github.com/inspect-js/defined.git (defined), git://github.com/hughsk/element-size.git (element-size), git://github.com/minimistjs/minimist.git (minimist), git://github.com/substack/node-resolve.git (resolve), git://github.com/hughsk/right-now.git (right-now), git://github.com/substack/shallow-copy.git (shallow-copy). This software contains the following license and notice below: This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: canvas-hypertxt. A copy of the source code may be downloaded from git+https://github.com/glideapps/canvas-hypertxt.git. This software contains the following license and notice below: MIT License Copyright (c) 2022 Glide Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: card-validator. A copy of the source code may be downloaded from git@github.com:braintree/card-validator. This software contains the following license and notice below: Copyright (c) 2009-2017 Braintree, a division of PayPal, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: chalk-template. A copy of the source code may be downloaded from git+https://github.com/chalk/chalk-template.git. This software contains the following license and notice below: MIT License Copyright (c) Josh Junon Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: char-regex. A copy of the source code may be downloaded from https://github.com/Richienb/char-regex.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 Richie Bendall Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: charenc, crypt. A copy of the source code may be downloaded from git://github.com/pvorb/node-charenc.git (charenc), git://github.com/pvorb/node-crypt.git (crypt). This software contains the following license and notice below: Copyright © 2011, Paul Vorbach. All rights reserved. Copyright © 2009, Jeff Mott. All rights reserved. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Crypto-JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: chokidar. A copy of the source code may be downloaded from git+https://github.com/paulmillr/chokidar.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2012 Paul Miller (https://paulmillr.com), Elan Shanker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: clamp. A copy of the source code may be downloaded from git://github.com/hughsk/clamp. This software contains the following license and notice below: ## The MIT License (MIT) ## Copyright (c) 2013 Hugh Kennedy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: classnames. A copy of the source code may be downloaded from git+https://github.com/JedWatson/classnames.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 Jed Watson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: cliui. A copy of the source code may be downloaded from git+https://github.com/yargs/cliui.git. This software contains the following license and notice below: Copyright (c) 2015, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: clsx, escalade. A copy of the source code may be downloaded from git+https://github.com/lukeed/clsx.git (clsx), git+https://github.com/lukeed/escalade.git (escalade). This software contains the following license and notice below: MIT License Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: color-convert. A copy of the source code may be downloaded from git+https://github.com/Qix-/color-convert.git. This software contains the following license and notice below: Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: color-name. A copy of the source code may be downloaded from git@github.com:colorjs/color-name.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: color-name. A copy of the source code may be downloaded from git@github.com:colorjs/color-name.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: color-parse. A copy of the source code may be downloaded from https://github.com/colorjs/color-parse. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: color-space. A copy of the source code may be downloaded from http://github.com/colorjs/color-space.git. This software contains the following license and notice below: This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to <http://unlicense.org/> ----- The following software may be included in this product: color2k. A copy of the source code may be downloaded from https://github.com/ricokahler/color2k.git. This software contains the following license and notice below: MIT License Copyright (c) 2020 Rico Kahler Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: colorbrewer. A copy of the source code may be downloaded from https://github.com/saikocat/colorbrewer. This software contains the following license and notice below: Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions as source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 4. The name "ColorBrewer" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact Cynthia Brewer at cbrewer@psu.edu. 5. Products derived from this software may not be called "ColorBrewer", nor may "ColorBrewer" appear in their name, without prior written permission of Cynthia Brewer. ----- The following software may be included in this product: combined-stream, delayed-stream. A copy of the source code may be downloaded from git://github.com/felixge/node-combined-stream.git (combined-stream), git://github.com/felixge/node-delayed-stream.git (delayed-stream). This software contains the following license and notice below: Copyright (c) 2011 Debuggable Limited <felix@debuggable.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: comma-separated-tokens, hast-util-is-element, hast-util-parse-selector, hast-util-to-parse5, hast-util-whitespace, hastscript, html-element-attributes, html-void-elements, is-alphabetical, is-alphanumerical, is-decimal, is-hexadecimal, lowlight, mdast-util-to-hast, rehype-raw, space-separated-tokens, unist-util-remove-position, unist-util-stringify-position, unist-util-visit-parents, vfile-location, web-namespaces, zwitch. A copy of the source code may be downloaded from git+https://github.com/wooorm/comma-separated-tokens.git (comma-separated-tokens), git+https://github.com/syntax-tree/hast-util-is-element.git (hast-util-is-element), git+https://github.com/syntax-tree/hast-util-parse-selector.git (hast-util-parse-selector), git+https://github.com/syntax-tree/hast-util-to-parse5.git (hast-util-to-parse5), git+https://github.com/syntax-tree/hast-util-whitespace.git (hast-util-whitespace), git+https://github.com/syntax-tree/hastscript.git (hastscript), git+https://github.com/wooorm/html-element-attributes.git (html-element-attributes), git+https://github.com/wooorm/html-void-elements.git (html-void-elements), git+https://github.com/wooorm/is-alphabetical.git (is-alphabetical), git+https://github.com/wooorm/is-alphanumerical.git (is-alphanumerical), git+https://github.com/wooorm/is-decimal.git (is-decimal), git+https://github.com/wooorm/is-hexadecimal.git (is-hexadecimal), git+https://github.com/wooorm/lowlight.git (lowlight), git+https://github.com/syntax-tree/mdast-util-to-hast.git (mdast-util-to-hast), git+https://github.com/rehypejs/rehype-raw.git (rehype-raw), git+https://github.com/wooorm/space-separated-tokens.git (space-separated-tokens), git+https://github.com/syntax-tree/unist-util-remove-position.git (unist-util-remove-position), git+https://github.com/syntax-tree/unist-util-stringify-position.git (unist-util-stringify-position), git+https://github.com/syntax-tree/unist-util-visit-parents.git (unist-util-visit-parents), git+https://github.com/vfile/vfile-location.git (vfile-location), git+https://github.com/wooorm/web-namespaces.git (web-namespaces), git+https://github.com/wooorm/zwitch.git (zwitch). This software contains the following license and notice below: (The MIT License) Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: command-line-args. A copy of the source code may be downloaded from https://github.com/75lb/command-line-args. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-24 Lloyd Brookes <opensource@75lb.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: command-line-usage, table-layout. A copy of the source code may be downloaded from https://github.com/75lb/command-line-usage (command-line-usage), https://github.com/75lb/table-layout (table-layout). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-24 Lloyd Brookes <75pound@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: commander. A copy of the source code may be downloaded from https://github.com/tj/commander.js.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: concat-stream. A copy of the source code may be downloaded from http://github.com/maxogden/concat-stream.git. This software contains the following license and notice below: The MIT License Copyright (c) 2013 Max Ogden Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: convert-source-map. A copy of the source code may be downloaded from git://github.com/thlorenz/convert-source-map.git. This software contains the following license and notice below: Copyright 2013 Thorsten Lorenz. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: Copyright (c) 2014-2020 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: core-util-is. A copy of the source code may be downloaded from git://github.com/isaacs/core-util-is. This software contains the following license and notice below: Copyright Node.js contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: cosmiconfig. A copy of the source code may be downloaded from git+https://github.com/davidtheclark/cosmiconfig.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 David Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: country-regex. A copy of the source code may be downloaded from git+https://github.com/etpinard/country-regex.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Étienne Tétreault-Pinard Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: credit-card-type. A copy of the source code may be downloaded from git@github.com:braintree/credit-card-type. This software contains the following license and notice below: Copyright (c) 2009-2018 Braintree, a division of PayPal, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: cross-fetch. A copy of the source code may be downloaded from https://github.com/lquixada/cross-fetch.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Leonardo Quixadá Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: css-font. A copy of the source code may be downloaded from git+https://github.com/dy/css-font.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Jed Mao Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: css-font-size-keywords, css-font-stretch-keywords, css-font-style-keywords, css-font-weight-keywords, css-global-keywords, css-system-font-keywords. A copy of the source code may be downloaded from git+https://github.com/jedmao/css-font-size-keywords.git (css-font-size-keywords), git+https://github.com/jedmao/css-font-stretch-keywords.git (css-font-stretch-keywords), git+https://github.com/jedmao/css-font-style-keywords.git (css-font-style-keywords), git+https://github.com/jedmao/css-font-weight-keywords.git (css-font-weight-keywords), git+https://github.com/jedmao/css-global-keywords.git (css-global-keywords), git+https://github.com/jedmao/css-system-font-keywords.git (css-system-font-keywords). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Jed Mao Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: css-in-js-utils. A copy of the source code may be downloaded from https://github.com/rofrischmann/css-in-js-utils.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Robin Frischmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: d, es6-symbol, esniff. A copy of the source code may be downloaded from git+https://github.com/medikoo/d.git (d), git+https://github.com/medikoo/es6-symbol.git (es6-symbol), git+https://github.com/medikoo/esniff.git (esniff). This software contains the following license and notice below: ISC License Copyright (c) 2013-2024, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3, d3-array. A copy of the source code may be downloaded from https://github.com/d3/d3.git (d3), https://github.com/d3/d3-array.git (d3-array). This software contains the following license and notice below: Copyright 2010-2020 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3, d3-array. A copy of the source code may be downloaded from https://github.com/d3/d3.git (d3), https://github.com/d3/d3-array.git (d3-array). This software contains the following license and notice below: Copyright 2010-2023 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-array, d3-axis, d3-brush, d3-chord, d3-dispatch, d3-drag, d3-force, d3-hierarchy, d3-interpolate, d3-polygon, d3-quadtree, d3-random, d3-time, d3-timer, d3-zoom. A copy of the source code may be downloaded from https://github.com/d3/d3-array.git (d3-array), https://github.com/d3/d3-axis.git (d3-axis), https://github.com/d3/d3-brush.git (d3-brush), https://github.com/d3/d3-chord.git (d3-chord), https://github.com/d3/d3-dispatch.git (d3-dispatch), https://github.com/d3/d3-drag.git (d3-drag), https://github.com/d3/d3-force.git (d3-force), https://github.com/d3/d3-hierarchy.git (d3-hierarchy), https://github.com/d3/d3-interpolate.git (d3-interpolate), https://github.com/d3/d3-polygon.git (d3-polygon), https://github.com/d3/d3-quadtree.git (d3-quadtree), https://github.com/d3/d3-random.git (d3-random), https://github.com/d3/d3-time.git (d3-time), https://github.com/d3/d3-timer.git (d3-timer), https://github.com/d3/d3-zoom.git (d3-zoom). This software contains the following license and notice below: Copyright 2010-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-axis, d3-brush, d3-chord, d3-dispatch, d3-drag, d3-force, d3-format, d3-hierarchy, d3-interpolate, d3-polygon, d3-quadtree, d3-random, d3-scale, d3-selection, d3-time-format, d3-timer, d3-transition, d3-zoom. A copy of the source code may be downloaded from https://github.com/d3/d3-axis.git (d3-axis), https://github.com/d3/d3-brush.git (d3-brush), https://github.com/d3/d3-chord.git (d3-chord), https://github.com/d3/d3-dispatch.git (d3-dispatch), https://github.com/d3/d3-drag.git (d3-drag), https://github.com/d3/d3-force.git (d3-force), https://github.com/d3/d3-format.git (d3-format), https://github.com/d3/d3-hierarchy.git (d3-hierarchy), https://github.com/d3/d3-interpolate.git (d3-interpolate), https://github.com/d3/d3-polygon.git (d3-polygon), https://github.com/d3/d3-quadtree.git (d3-quadtree), https://github.com/d3/d3-random.git (d3-random), https://github.com/d3/d3-scale.git (d3-scale), https://github.com/d3/d3-selection.git (d3-selection), https://github.com/d3/d3-time-format.git (d3-time-format), https://github.com/d3/d3-timer.git (d3-timer), https://github.com/d3/d3-transition.git (d3-transition), https://github.com/d3/d3-zoom.git (d3-zoom). This software contains the following license and notice below: Copyright 2010-2021 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-collection. A copy of the source code may be downloaded from https://github.com/d3/d3-collection.git. This software contains the following license and notice below: Copyright 2010-2016, Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-color, d3-shape, d3-time. A copy of the source code may be downloaded from https://github.com/d3/d3-color.git (d3-color), https://github.com/d3/d3-shape.git (d3-shape), https://github.com/d3/d3-time.git (d3-time). This software contains the following license and notice below: Copyright 2010-2022 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-contour. A copy of the source code may be downloaded from https://github.com/d3/d3-contour.git. This software contains the following license and notice below: Copyright 2012-2017 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-contour. A copy of the source code may be downloaded from https://github.com/d3/d3-contour.git. This software contains the following license and notice below: Copyright 2012-2023 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-delaunay. A copy of the source code may be downloaded from https://github.com/d3/d3-delaunay.git. This software contains the following license and notice below: Copyright 2018 Observable, Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-delaunay. A copy of the source code may be downloaded from https://github.com/d3/d3-delaunay.git. This software contains the following license and notice below: Copyright 2018-2021 Observable, Inc. Copyright 2021 Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-dsv. A copy of the source code may be downloaded from https://github.com/d3/d3-dsv.git. This software contains the following license and notice below: Copyright 2013-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-dsv. A copy of the source code may be downloaded from https://github.com/d3/d3-dsv.git. This software contains the following license and notice below: Copyright 2013-2021 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-ease. A copy of the source code may be downloaded from https://github.com/d3/d3-ease.git. This software contains the following license and notice below: Copyright 2010-2016 Mike Bostock Copyright 2001 Robert Penner All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-ease. A copy of the source code may be downloaded from https://github.com/d3/d3-ease.git. This software contains the following license and notice below: Copyright 2010-2021 Mike Bostock Copyright 2001 Robert Penner All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-fetch. A copy of the source code may be downloaded from https://github.com/d3/d3-fetch.git. This software contains the following license and notice below: Copyright 2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-fetch. A copy of the source code may be downloaded from https://github.com/d3/d3-fetch.git. This software contains the following license and notice below: Copyright 2016-2021 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-format, d3-scale, d3-shape. A copy of the source code may be downloaded from https://github.com/d3/d3-format.git (d3-format), https://github.com/d3/d3-scale.git (d3-scale), https://github.com/d3/d3-shape.git (d3-shape). This software contains the following license and notice below: Copyright 2010-2015 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-geo. A copy of the source code may be downloaded from https://github.com/d3/d3-geo.git. This software contains the following license and notice below: Copyright 2010-2024 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. This license applies to GeographicLib, versions 1.12 and later. Copyright 2008-2012 Charles Karney Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: d3-geo. A copy of the source code may be downloaded from https://github.com/d3/d3-geo.git. This software contains the following license and notice below: Copyright 2010-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This license applies to GeographicLib, versions 1.12 and later. Copyright (c) 2008-2012, Charles Karney Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: d3-geo-projection. A copy of the source code may be downloaded from https://github.com/d3/d3-geo-projection.git. This software contains the following license and notice below: Copyright 2013-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. MIT License for https://github.com/scijs/integrate-adaptive-simpson The MIT License (MIT) Copyright (c) 2015 Ricky Reusser Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: d3-geo-projection. A copy of the source code may be downloaded from https://github.com/d3/d3-geo-projection.git. This software contains the following license and notice below: Copyright 2013-2021 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. MIT License for https://github.com/scijs/integrate-adaptive-simpson The MIT License (MIT) Copyright 2015 Ricky Reusser Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: d3-graphviz. A copy of the source code may be downloaded from https://github.com/magjac/d3-graphviz.git. This software contains the following license and notice below: Copyright 2017, Magnus Jacobsson All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-hexbin. A copy of the source code may be downloaded from https://github.com/d3/d3-hexbin.git. This software contains the following license and notice below: Copyright Mike Bostock, 2012-2016 All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-path. A copy of the source code may be downloaded from https://github.com/d3/d3-path.git. This software contains the following license and notice below: Copyright 2015-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-path. A copy of the source code may be downloaded from https://github.com/d3/d3-path.git. This software contains the following license and notice below: Copyright 2015-2022 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: d3-scale-chromatic. A copy of the source code may be downloaded from https://github.com/d3/d3-scale-chromatic.git. This software contains the following license and notice below: Copyright 2010-2018 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: d3-scale-chromatic. A copy of the source code may be downloaded from https://github.com/d3/d3-scale-chromatic.git. This software contains the following license and notice below: Copyright 2010-2024 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes Copyright 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: d3-selection. A copy of the source code may be downloaded from https://github.com/d3/d3-selection.git. This software contains the following license and notice below: Copyright (c) 2010-2018, Michael Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The name Michael Bostock may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-time-format. A copy of the source code may be downloaded from https://github.com/d3/d3-time-format.git. This software contains the following license and notice below: Copyright 2010-2017 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: d3-transition. A copy of the source code may be downloaded from https://github.com/d3/d3-transition.git. This software contains the following license and notice below: Copyright (c) 2010-2015, Michael Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The name Michael Bostock may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. TERMS OF USE - EASING EQUATIONS Open source under the BSD License. Copyright 2001 Robert Penner All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: date-fns. A copy of the source code may be downloaded from https://github.com/date-fns/date-fns. This software contains the following license and notice below: MIT License Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: debug. A copy of the source code may be downloaded from git://github.com/visionmedia/debug.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: decode-named-character-reference, micromark-extension-gfm-footnote. A copy of the source code may be downloaded from git+https://github.com/wooorm/decode-named-character-reference.git (decode-named-character-reference), git+https://github.com/micromark/micromark-extension-gfm-footnote.git (micromark-extension-gfm-footnote). This software contains the following license and notice below: (The MIT License) Copyright (c) 2021 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: decode-uri-component. A copy of the source code may be downloaded from git+https://github.com/SamVerschueren/decode-uri-component.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017, Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: delaunator, supercluster. A copy of the source code may be downloaded from https://github.com/mapbox/delaunator.git (delaunator), git://github.com/mapbox/supercluster.git (supercluster). This software contains the following license and notice below: ISC License Copyright (c) 2021, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: dequal. A copy of the source code may be downloaded from git+https://github.com/lukeed/dequal.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: detect-node-es. A copy of the source code may be downloaded from https://github.com/thekashey/detect-node. This software contains the following license and notice below: MIT License Copyright (c) 2017 Ilya Kantor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: devlop. A copy of the source code may be downloaded from git+https://github.com/wooorm/devlop.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2023 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: dom-helpers. A copy of the source code may be downloaded from git+https://github.com/react-bootstrap/dom-helpers.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Jason Quense Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: dompurify. A copy of the source code may be downloaded from git://github.com/cure53/DOMPurify.git. This software contains the following license and notice below: DOMPurify Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53 DOMPurify is free software; you can redistribute it and/or modify it under the terms of either: a) the Apache License Version 2.0, or b) the Mozilla Public License Version 2.0 ----------------------------------------------------------------------------- Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----------------------------------------------------------------------------- Mozilla Public License, version 2.0 1. Definitions 1.1. “Contributor” means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. 1.2. “Contributor Version” means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. 1.3. “Contribution” means Covered Software of a particular Contributor. 1.4. “Covered Software” means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. 1.5. “Incompatible With Secondary Licenses” means a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. 1.6. “Executable Form” means any form of the work other than Source Code Form. 1.7. “Larger Work” means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. 1.8. “License” means this document. 1.9. “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. 1.10. “Modifications” means any of the following: a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or b. any new file in Source Code Form that contains any Covered Software. 1.11. “Patent Claims” of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. 1.12. “Secondary License” means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. 1.13. “Source Code Form” means the form of the work preferred for making modifications. 1.14. “You” (or “Your”) means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. 2. License Grants and Conditions 2.1. Grants Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. 2.2. Effective Date The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. 2.3. Limitations on Grant Scope The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a Contributor has removed from Covered Software; or b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or c. under Patent Claims infringed by Covered Software in the absence of its Contributions. This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). 2.4. Subsequent Licenses No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). 2.5. Representation Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. 2.6. Fair Use This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. 2.7. Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. 3. Responsibilities 3.1. Distribution of Source Form All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. 3.2. Distribution of Executable Form If You distribute Covered Software in Executable Form then: a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. 3.3. Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). 3.4. Notices You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. 3.5. Application of Additional Terms You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. 4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. 5. Termination 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. 6. Disclaimer of Warranty Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. 7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. 9. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. 10. Versions of the License 10.1. New Versions Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. 10.2. Effect of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. 10.3. Modified Versions If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. Exhibit B - “Incompatible With Secondary Licenses” Notice This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. ----- The following software may be included in this product: dunder-proto, math-intrinsics. A copy of the source code may be downloaded from git+https://github.com/es-shims/dunder-proto.git (dunder-proto), git+https://github.com/es-shims/math-intrinsics.git (math-intrinsics). This software contains the following license and notice below: MIT License Copyright (c) 2024 ECMAScript Shims Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: duplexify, end-of-stream, protocol-buffers-schema. A copy of the source code may be downloaded from git://github.com/mafintosh/duplexify (duplexify), git://github.com/mafintosh/end-of-stream.git (end-of-stream), https://github.com/mafintosh/protocol-buffers-schema (protocol-buffers-schema). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Mathias Buus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: earcut. A copy of the source code may be downloaded from git://github.com/mapbox/earcut.git. This software contains the following license and notice below: ISC License Copyright (c) 2016, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: elementary-circuits-directed-graph. A copy of the source code may be downloaded from git://github.com/antoinerg/elementary-circuits-directed-graph.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2019 Antoine Roy-Gobeil Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: emojilib. A copy of the source code may be downloaded from git+https://github.com/muan/emojilib.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Mu-An Chiou Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: emoticon, markdown-table. A copy of the source code may be downloaded from git+https://github.com/wooorm/emoticon.git (emoticon), git+https://github.com/wooorm/markdown-table.git (markdown-table). This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: entities. A copy of the source code may be downloaded from git://github.com/fb55/entities.git. This software contains the following license and notice below: Copyright (c) Felix Böhm All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: error-ex, is-arrayish. A copy of the source code may be downloaded from git+https://github.com/qix-/node-error-ex.git (error-ex), https://github.com/qix-/node-is-arrayish.git (is-arrayish). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 JD Ballard Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: es-set-tostringtag. A copy of the source code may be downloaded from git+https://github.com/es-shims/es-set-tostringtag.git. This software contains the following license and notice below: MIT License Copyright (c) 2022 ECMAScript Shims Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: es5-ext. A copy of the source code may be downloaded from git+https://github.com/medikoo/es5-ext.git. This software contains the following license and notice below: ISC License Copyright (c) 2011-2024, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: es6-iterator. A copy of the source code may be downloaded from git://github.com/medikoo/es6-iterator.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (C) 2013-2017 Mariusz Nowak (www.medikoo.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: es6-weak-map. A copy of the source code may be downloaded from git://github.com/medikoo/es6-weak-map.git. This software contains the following license and notice below: ISC License Copyright (c) 2013-2018, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: escodegen. A copy of the source code may be downloaded from http://github.com/estools/escodegen.git. This software contains the following license and notice below: Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: esprima. A copy of the source code may be downloaded from https://github.com/jquery/esprima.git. This software contains the following license and notice below: Copyright JS Foundation and other contributors, https://js.foundation/ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: esri-loader. A copy of the source code may be downloaded from git+https://github.com/Esri/esri-loader.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: estraverse, esutils. A copy of the source code may be downloaded from http://github.com/estools/estraverse.git (estraverse), http://github.com/estools/esutils.git (esutils). This software contains the following license and notice below: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: estree-util-is-identifier-name, mdast-util-gfm-autolink-literal, mdast-util-gfm-strikethrough, mdast-util-gfm-table, mdast-util-gfm-task-list-item, mdast-util-math, mdast-util-mdx-expression, mdast-util-mdx-jsx, mdast-util-mdxjs-esm, micromark-extension-gfm, micromark-extension-gfm-autolink-literal, micromark-extension-gfm-strikethrough, micromark-extension-gfm-tagfilter, micromark-extension-gfm-task-list-item, micromark-extension-math. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/estree-util-is-identifier-name.git (estree-util-is-identifier-name), git+https://github.com/syntax-tree/mdast-util-gfm-autolink-literal.git (mdast-util-gfm-autolink-literal), git+https://github.com/syntax-tree/mdast-util-gfm-strikethrough.git (mdast-util-gfm-strikethrough), git+https://github.com/syntax-tree/mdast-util-gfm-table.git (mdast-util-gfm-table), git+https://github.com/syntax-tree/mdast-util-gfm-task-list-item.git (mdast-util-gfm-task-list-item), git+https://github.com/syntax-tree/mdast-util-math.git (mdast-util-math), git+https://github.com/syntax-tree/mdast-util-mdx-expression.git (mdast-util-mdx-expression), git+https://github.com/syntax-tree/mdast-util-mdx-jsx.git (mdast-util-mdx-jsx), git+https://github.com/syntax-tree/mdast-util-mdxjs-esm.git (mdast-util-mdxjs-esm), git+https://github.com/micromark/micromark-extension-gfm.git (micromark-extension-gfm), git+https://github.com/micromark/micromark-extension-gfm-autolink-literal.git (micromark-extension-gfm-autolink-literal), git+https://github.com/micromark/micromark-extension-gfm-strikethrough.git (micromark-extension-gfm-strikethrough), git+https://github.com/micromark/micromark-extension-gfm-tagfilter.git (micromark-extension-gfm-tagfilter), git+https://github.com/micromark/micromark-extension-gfm-task-list-item.git (micromark-extension-gfm-task-list-item), git+https://github.com/micromark/micromark-extension-math.git (micromark-extension-math). This software contains the following license and notice below: (The MIT License) Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: event-emitter. A copy of the source code may be downloaded from git://github.com/medikoo/event-emitter.git. This software contains the following license and notice below: Copyright (C) 2012-2015 Mariusz Nowak (www.medikoo.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: events. A copy of the source code may be downloaded from git://github.com/Gozala/events.git. This software contains the following license and notice below: MIT Copyright Joyent, Inc. and other Node contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ext. A copy of the source code may be downloaded from https://github.com/medikoo/es5-ext#ext. This software contains the following license and notice below: ISC License Copyright (c) 2011-2022, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: extend. A copy of the source code may be downloaded from https://github.com/justmoon/node-extend.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Stefan Thomas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: extend-shallow. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/extend-shallow.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2015, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: extend-shallow. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/extend-shallow.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2015, 2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: falafel, resolve. A copy of the source code may be downloaded from git://github.com/substack/node-falafel.git (falafel), git://github.com/browserify/resolve.git (resolve). This software contains the following license and notice below: MIT License Copyright (c) 2012 James Halliday Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fast-isnumeric. A copy of the source code may be downloaded from git+https://github.com/plotly/fast-isnumeric.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Alex Johnson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fast-json-patch. A copy of the source code may be downloaded from git://github.com/Starcounter-Jack/JSON-Patch.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2013, 2014, 2020 Joachim Wester Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fast-xml-parser. A copy of the source code may be downloaded from https://github.com/NaturalIntelligence/fast-xml-parser. This software contains the following license and notice below: MIT License Copyright (c) 2017 Amit Kumar Gupta Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fbemitter. A copy of the source code may be downloaded from git+https://github.com/facebook/emitter.git. This software contains the following license and notice below: BSD License For emitter software Copyright (c) 2013-present, Facebook, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Facebook nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: fbjs, fbjs-css-vars, invariant, prop-types, warning. A copy of the source code may be downloaded from git+https://github.com/facebook/fbjs.git (fbjs), git+https://github.com/facebook/fbjs.git (fbjs-css-vars), https://github.com/zertosh/invariant (invariant), git+https://github.com/facebook/prop-types.git (prop-types), https://github.com/BerkeleyTrue/warning.git (warning). This software contains the following license and notice below: MIT License Copyright (c) 2013-present, Facebook, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fetch-blob. A copy of the source code may be downloaded from https://github.com/node-fetch/fetch-blob.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 David Frank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fflate. A copy of the source code may be downloaded from https://github.com/101arrowz/fflate. This software contains the following license and notice below: MIT License Copyright (c) 2020 Arjun Barrett Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: file-selector. A copy of the source code may be downloaded from https://github.com/react-dropzone/file-selector.git. This software contains the following license and notice below: MIT License Copyright (c) 2020 Roland Groza Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: find-replace. A copy of the source code may be downloaded from git+https://github.com/75lb/find-replace.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-25 Lloyd Brookes <75pound@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: find-root. A copy of the source code may be downloaded from git@github.com:js-n/find-root.git. This software contains the following license and notice below: Copyright © 2017 jsdnxx Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: flatbuffers, long. A copy of the source code may be downloaded from git+https://github.com/google/flatbuffers.git (flatbuffers), https://github.com/dcodeIO/long.js.git (long). This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: flatten-vertex-data. A copy of the source code may be downloaded from git://github.com/glo-js/flatten-vertex-data.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 glo-js Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: flux. A copy of the source code may be downloaded from https://github.com/facebook/flux. This software contains the following license and notice below: BSD License For Flux software Copyright (c) Facebook, Inc. and its affiliates. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Facebook nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: focus-lock. A copy of the source code may be downloaded from git+https://github.com/theKashey/focus-lock.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Anton Korzunov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: follow-redirects. A copy of the source code may be downloaded from git+ssh://git@github.com/follow-redirects/follow-redirects.git. This software contains the following license and notice below: Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: font-atlas. A copy of the source code may be downloaded from git://github.com/hughsk/font-atlas.git. This software contains the following license and notice below: This software is released under the MIT license: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: form-data. A copy of the source code may be downloaded from git://github.com/form-data/form-data.git. This software contains the following license and notice below: Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: from2, glsl-resolve, map-limit. A copy of the source code may be downloaded from git://github.com/hughsk/from2 (from2), git://github.com/hughsk/glsl-resolve (glsl-resolve), git://github.com/hughsk/map-limit (map-limit). This software contains the following license and notice below: ## The MIT License (MIT) ## Copyright (c) 2014 Hugh Kennedy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fs.realpath. A copy of the source code may be downloaded from git+https://github.com/isaacs/fs.realpath.git. This software contains the following license and notice below: The ISC License Copyright (c) Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ---- This library bundles a version of the `fs.realpath` and `fs.realpathSync` methods from Node.js v0.10 under the terms of the Node.js MIT license. Node's license follows, also included at the header of `old.js` which contains the licensed code: Copyright Joyent, Inc. and other Node contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: function-bind. A copy of the source code may be downloaded from https://github.com/Raynos/function-bind.git. This software contains the following license and notice below: Copyright (c) 2013 Raynos. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: geojson-vt. A copy of the source code may be downloaded from git://github.com/mapbox/geojson-vt.git. This software contains the following license and notice below: ISC License Copyright (c) 2015, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: get-caller-file. A copy of the source code may be downloaded from git+https://github.com/stefanpenner/get-caller-file.git. This software contains the following license and notice below: ISC License (ISC) Copyright 2018 Stefan Penner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: get-canvas-context, glsl-token-inject-block. A copy of the source code may be downloaded from git://github.com/Jam3/get-canvas-context.git (get-canvas-context), git://github.com/Jam3/glsl-token-inject-block.git (glsl-token-inject-block). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Jam3 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: get-intrinsic. A copy of the source code may be downloaded from git+https://github.com/ljharb/get-intrinsic.git. This software contains the following license and notice below: MIT License Copyright (c) 2020 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: get-proto. A copy of the source code may be downloaded from git+https://github.com/ljharb/get-proto.git. This software contains the following license and notice below: MIT License Copyright (c) 2025 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: gl-mat4. A copy of the source code may be downloaded from https://github.com/stackgl/gl-mat4. This software contains the following license and notice below: Copyright (c) 2013 Brandon Jones, Colin MacKenzie IV This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. ----- The following software may be included in this product: gl-matrix. A copy of the source code may be downloaded from https://github.com/toji/gl-matrix.git. This software contains the following license and notice below: Copyright (c) 2015-2021, Brandon Jones, Colin MacKenzie IV. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: gl-text, regl-splom. A copy of the source code may be downloaded from git+https://github.com/a-vis/gl-text.git (gl-text), git+https://github.com/gl-vis/regl-splom.git (regl-splom). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glob. A copy of the source code may be downloaded from git://github.com/isaacs/node-glob.git. This software contains the following license and notice below: The ISC License Copyright (c) Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ## Glob Logo Glob's logo created by Tanya Brassie <http://tanyabrassie.com/>, licensed under a Creative Commons Attribution-ShareAlike 4.0 International License https://creativecommons.org/licenses/by-sa/4.0/ ----- The following software may be included in this product: global-prefix. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/global-prefix.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glsl-inject-defines, glsl-token-assignments, glsl-token-defines, glsl-token-depth, glsl-token-descope, glsl-token-properties, glsl-token-scope, glsl-token-string. A copy of the source code may be downloaded from git://github.com/mattdesl/glsl-inject-defines.git (glsl-inject-defines), git://github.com/stackgl/glsl-token-assignments.git (glsl-token-assignments), git://github.com/stackgl/glsl-token-defines.git (glsl-token-defines), git://github.com/stackgl/glsl-token-depth.git (glsl-token-depth), git://github.com/stackgl/glsl-token-descope.git (glsl-token-descope), git://github.com/stackgl/glsl-token-properties.git (glsl-token-properties), git://github.com/stackgl/glsl-token-scope.git (glsl-token-scope), git://github.com/stackgl/glsl-token-string.git (glsl-token-string). This software contains the following license and notice below: The MIT License (MIT) ===================== Copyright (c) 2014 [stackgl](http://github.com/stackgl/) contributors *stackgl contributors listed at <https://github.com/stackgl/contributing/blob/master/CONTRIBUTING.md#contributors>* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glsl-token-whitespace-trim. A copy of the source code may be downloaded from git://github.com/hughsk/glsl-token-whitespace-trim.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Hugh Kennedy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glsl-tokenizer. A copy of the source code may be downloaded from git://github.com/gl-modules/glsl-tokenizer.git. This software contains the following license and notice below: The MIT License (MIT) ===================== Copyright (c) 2014 [Chris Dickinson](http://github.com/chrisdickinson) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glslify. A copy of the source code may be downloaded from git://github.com/stackgl/glslify.git. This software contains the following license and notice below: The MIT License (MIT) ===================== * Copyright &copy; 2015 [Chris Dickinson](http://github.com/chrisdickinson) * Copyright &copy; 2015 [stackgl](http://github.com/stackgl/) contributors *stackgl contributors listed at <https://github.com/stackgl/contributing/blob/master/CONTRIBUTING.md#contributors>* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: glslify-bundle. A copy of the source code may be downloaded from git://github.com/stackgl/glslify-bundle.git. This software contains the following license and notice below: The MIT License (MIT) ===================== Copyright (c) 2014 [stackgl](http://github.com/stackgl/) contributors *stackgl contributors listed at <https://github.com/stackgl/contributing/blob/master/CONTRIBUTING.md#contributors>* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: gopd. A copy of the source code may be downloaded from git+https://github.com/ljharb/gopd.git. This software contains the following license and notice below: MIT License Copyright (c) 2022 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: graceful-fs. A copy of the source code may be downloaded from https://github.com/isaacs/node-graceful-fs. This software contains the following license and notice below: The ISC License Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: grid-index. A copy of the source code may be downloaded from git+https://github.com/mapbox/grid-index.git. This software contains the following license and notice below: Copyright (c) 2016, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: h3-js. A copy of the source code may be downloaded from https://github.com/uber/h3-js.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. NOTICE Copyright 2017-2021 Uber Technologies, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: hammerjs. A copy of the source code may be downloaded from git://github.com/hammerjs/hammer.js.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: has-passive-events, parse-rect, to-float32. A copy of the source code may be downloaded from git+https://github.com/dfcreative/has-passive-events.git (has-passive-events), git+https://github.com/dfcreative/parse-rect.git (parse-rect), git+https://github.com/dy/to-float32.git (to-float32). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: has-symbols. A copy of the source code may be downloaded from git://github.com/inspect-js/has-symbols.git. This software contains the following license and notice below: MIT License Copyright (c) 2016 Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: has-tostringtag. A copy of the source code may be downloaded from git+https://github.com/inspect-js/has-tostringtag.git. This software contains the following license and notice below: MIT License Copyright (c) 2021 Inspect JS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hasown. A copy of the source code may be downloaded from git+https://github.com/inspect-js/hasOwn.git. This software contains the following license and notice below: MIT License Copyright (c) Jordan Harband and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hast-util-from-dom. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/hast-util-from-dom.git. This software contains the following license and notice below: (ISC License) Copyright (c) Keith McKnight <keith@mcknig.ht> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: hast-util-from-html. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/hast-util-from-html.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2022 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hast-util-from-html-isomorphic. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/hast-util-from-html-isomorphic.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2023 Remco Haszing <remcohaszing@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hast-util-from-parse5, hast-util-raw, hast-util-to-jsx-runtime, hastscript, mdast-util-directive, mdast-util-find-and-replace, mdast-util-from-markdown, mdast-util-gfm, mdast-util-gfm-footnote, mdast-util-to-markdown, micromark, micromark-core-commonmark, micromark-extension-directive, micromark-extension-gfm-table, micromark-factory-destination, micromark-factory-label, micromark-factory-space, micromark-factory-title, micromark-factory-whitespace, micromark-util-character, micromark-util-chunked, micromark-util-classify-character, micromark-util-combine-extensions, micromark-util-decode-numeric-character-reference, micromark-util-decode-string, micromark-util-encode, micromark-util-html-tag-name, micromark-util-normalize-identifier, micromark-util-resolve-all, micromark-util-sanitize-uri, micromark-util-subtokenize, micromark-util-symbol, micromark-util-types, remark-directive, remark-gfm, remark-rehype. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/hast-util-from-parse5.git (hast-util-from-parse5), git+https://github.com/syntax-tree/hast-util-raw.git (hast-util-raw), git+https://github.com/syntax-tree/hast-util-to-jsx-runtime.git (hast-util-to-jsx-runtime), git+https://github.com/syntax-tree/hastscript.git (hastscript), git+https://github.com/syntax-tree/mdast-util-directive.git (mdast-util-directive), git+https://github.com/syntax-tree/mdast-util-find-and-replace.git (mdast-util-find-and-replace), git+https://github.com/syntax-tree/mdast-util-from-markdown.git (mdast-util-from-markdown), git+https://github.com/syntax-tree/mdast-util-gfm.git (mdast-util-gfm), git+https://github.com/syntax-tree/mdast-util-gfm-footnote.git (mdast-util-gfm-footnote), git+https://github.com/syntax-tree/mdast-util-to-markdown.git (mdast-util-to-markdown), https://github.com/micromark/micromark/tree/main/packages/micromark (micromark), https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark (micromark-core-commonmark), git+https://github.com/micromark/micromark-extension-directive.git (micromark-extension-directive), git+https://github.com/micromark/micromark-extension-gfm-table.git (micromark-extension-gfm-table), https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination (micromark-factory-destination), https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label (micromark-factory-label), https://github.com/micromark/micromark/tree/main/packages/micromark-factory-space (micromark-factory-space), https://github.com/micromark/micromark/tree/main/packages/micromark-factory-title (micromark-factory-title), https://github.com/micromark/micromark/tree/main/packages/micromark-factory-whitespace (micromark-factory-whitespace), https://github.com/micromark/micromark/tree/main/packages/micromark-util-character (micromark-util-character), https://github.com/micromark/micromark/tree/main/packages/micromark-util-chunked (micromark-util-chunked), https://github.com/micromark/micromark/tree/main/packages/micromark-util-classify-character (micromark-util-classify-character), https://github.com/micromark/micromark/tree/main/packages/micromark-util-combine-extensions (micromark-util-combine-extensions), https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-numeric-character-reference (micromark-util-decode-numeric-character-reference), https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-string (micromark-util-decode-string), https://github.com/micromark/micromark/tree/main/packages/micromark-util-encode (micromark-util-encode), https://github.com/micromark/micromark/tree/main/packages/micromark-util-html-tag-name (micromark-util-html-tag-name), https://github.com/micromark/micromark/tree/main/packages/micromark-util-normalize-identifier (micromark-util-normalize-identifier), https://github.com/micromark/micromark/tree/main/packages/micromark-util-resolve-all (micromark-util-resolve-all), https://github.com/micromark/micromark/tree/main/packages/micromark-util-sanitize-uri (micromark-util-sanitize-uri), https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize (micromark-util-subtokenize), https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol (micromark-util-symbol), https://github.com/micromark/micromark/tree/main/packages/micromark-util-types (micromark-util-types), git+https://github.com/remarkjs/remark-directive.git (remark-directive), git+https://github.com/remarkjs/remark-gfm.git (remark-gfm), git+https://github.com/remarkjs/remark-rehype.git (remark-rehype). This software contains the following license and notice below: (The MIT License) Copyright (c) Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hast-util-to-text. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/hast-util-to-text.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2019 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: highlight.js. A copy of the source code may be downloaded from git://github.com/highlightjs/highlight.js.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2006, Ivan Sagalaev. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: hoist-non-react-statics. A copy of the source code may be downloaded from git://github.com/mridgway/hoist-non-react-statics.git. This software contains the following license and notice below: Software License Agreement (BSD License) ======================================== Copyright (c) 2015, Yahoo! Inc. All rights reserved. ---------------------------------------------------- Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: hotkeys-js. A copy of the source code may be downloaded from https://github.com/jaywcjlove/hotkeys-js.git. This software contains the following license and notice below: MIT License Copyright (c) 2015-present, Kenny Wong. Copyright (c) 2011-2013 Thomas Fuchs (https://github.com/madrobby/keymaster) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: html-url-attributes. A copy of the source code may be downloaded from https://github.com/rehypejs/rehype-minify/tree/main/packages/html-url-attributes. This software contains the following license and notice below: (The MIT License) Copyright (c) Titus Wormer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: hyphenate-style-name. A copy of the source code may be downloaded from git+ssh://git@github.com/rexxars/hyphenate-style-name.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2015, Espen Hovlandsdal All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: iconv-lite. A copy of the source code may be downloaded from git://github.com/ashtuchkin/iconv-lite.git. This software contains the following license and notice below: Copyright (c) 2011 Alexander Shtuchkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ieee754. A copy of the source code may be downloaded from git://github.com/feross/ieee754.git. This software contains the following license and notice below: Copyright 2008 Fair Oaks Labs, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: iframe-resizer. A copy of the source code may be downloaded from https://github.com/davidjbradshaw/iframe-resizer.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2013-2023 David J. Bradshaw Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: image-size. A copy of the source code may be downloaded from git+https://github.com/image-size/image-size.git. This software contains the following license and notice below: The MIT License (MIT) Copyright © 2017 Aditya Yadav, http://netroy.in Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: immediate. A copy of the source code may be downloaded from git://github.com/calvinmetcalf/immediate.git. This software contains the following license and notice below: Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: immer. A copy of the source code may be downloaded from https://github.com/immerjs/immer.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Michel Weststrate Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: immutable. A copy of the source code may be downloaded from git://github.com/immutable-js/immutable-js.git. This software contains the following license and notice below: MIT License Copyright (c) 2014-present, Lee Byron and other contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: inflight. A copy of the source code may be downloaded from https://github.com/npm/inflight.git. This software contains the following license and notice below: The ISC License Copyright (c) Isaac Z. Schlueter Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: inherits. A copy of the source code may be downloaded from git://github.com/isaacs/inherits. This software contains the following license and notice below: The ISC License Copyright (c) Isaac Z. Schlueter Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: ini, minimatch, once, semver, which, wrappy. A copy of the source code may be downloaded from git+https://github.com/npm/ini.git (ini), git://github.com/isaacs/minimatch.git (minimatch), git://github.com/isaacs/once (once), git+https://github.com/npm/node-semver.git (semver), https://github.com/npm/node-which.git (which), https://github.com/npm/wrappy (wrappy). This software contains the following license and notice below: The ISC License Copyright (c) Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: inline-style-parser. A copy of the source code may be downloaded from https://github.com/remarkablemark/inline-style-parser. This software contains the following license and notice below: (The MIT License) Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: inline-style-prefixer. A copy of the source code may be downloaded from https://github.com/rofrischmann/inline-style-prefixer. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Robin Frischmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: internmap. A copy of the source code may be downloaded from https://github.com/mbostock/internmap.git. This software contains the following license and notice below: Copyright 2021 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: is-browser. A copy of the source code may be downloaded from https://github.com/ForbesLindesay/is-browser.git. This software contains the following license and notice below: Copyright (c) 2013 Forbes Lindesay Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-buffer, safe-buffer. A copy of the source code may be downloaded from git://github.com/feross/is-buffer.git (is-buffer), git://github.com/feross/safe-buffer.git (safe-buffer). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Feross Aboukhadijeh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-core-module. A copy of the source code may be downloaded from git+https://github.com/inspect-js/is-core-module.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Dave Justice Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-error. A copy of the source code may be downloaded from git://github.com/mk-pmb/is-error-js.git. This software contains the following license and notice below: Copyright (c) 2015 is-error. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-extendable. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/is-extendable.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-firefox. A copy of the source code may be downloaded from git+https://github.com/gillstrom/is-firefox.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Andreas Gillström <andreasgillstrom@gmail.com> (github.com/gillstrom) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-iexplorer. A copy of the source code may be downloaded from git+https://github.com/kevva/is-iexplorer.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-plain-object, kind-of. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/is-plain-object.git (is-plain-object), git+https://github.com/jonschlinkert/kind-of.git (kind-of). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: is-string-blank. A copy of the source code may be downloaded from git+https://github.com/plotly/is-string-blank.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Alex Johnson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: isexe. A copy of the source code may be downloaded from https://github.com/isaacs/isexe. This software contains the following license and notice below: The ISC License Copyright (c) 2016-2022 Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: isobject. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/isobject.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: js-tokens. A copy of the source code may be downloaded from git+https://github.com/lydell/js-tokens.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: jsep. A copy of the source code may be downloaded from https://github.com/EricSmekens/jsep.git. This software contains the following license and notice below: Copyright (c) 2013 Stephen Oney, https://ericsmekens.github.io/jsep/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: json-bignum. A copy of the source code may be downloaded from https://github.com/datalanche/json-bignum.git. This software contains the following license and notice below: Copyright (c) 2012-2013 Datalanche, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: json-parse-even-better-errors. A copy of the source code may be downloaded from https://github.com/npm/json-parse-even-better-errors. This software contains the following license and notice below: Copyright 2017 Kat Marchán Copyright npm, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- This library is a fork of 'better-json-errors' by Kat Marchán, extended and distributed under the terms of the MIT license above. ----- The following software may be included in this product: json-stringify-pretty-compact. A copy of the source code may be downloaded from git+https://github.com/lydell/json-stringify-pretty-compact.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014, 2016, 2017, 2019, 2021, 2022 Simon Lydell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: json5. A copy of the source code may be downloaded from git+https://github.com/json5/json5.git. This software contains the following license and notice below: MIT License Copyright (c) 2012-2018 Aseem Kishore, and [others]. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [others]: https://github.com/json5/json5/contributors ----- The following software may be included in this product: jszip. A copy of the source code may be downloaded from https://github.com/Stuk/jszip.git. This software contains the following license and notice below: JSZip is dual licensed. At your choice you may use it under the MIT license *or* the GPLv3 license. The MIT License =============== Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. GPL version 3 ============= GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS ----- The following software may be included in this product: just-extend. A copy of the source code may be downloaded from https://github.com/angus-c/just. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 angus croll Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: katex. A copy of the source code may be downloaded from https://github.com/KaTeX/KaTeX.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2013-2020 Khan Academy and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: kdbush, quickselect. A copy of the source code may be downloaded from git://github.com/mourner/kdbush.git (kdbush). This software contains the following license and notice below: ISC License Copyright (c) 2018, Vladimir Agafonkin Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: ktx-parse. A copy of the source code may be downloaded from git+https://github.com/donmccurdy/ktx-parse.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2020 Don McCurdy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: lie. A copy of the source code may be downloaded from https://github.com/calvinmetcalf/lie.git. This software contains the following license and notice below: #Copyright (c) 2014-2018 Calvin Metcalf, Jordan Harband Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. **THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.** ----- The following software may be included in this product: lines-and-columns. A copy of the source code may be downloaded from https://github.com/eventualbuddha/lines-and-columns.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Brian Donovan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: lodash, lodash-es, lodash.merge. A copy of the source code may be downloaded from git+https://github.com/lodash/lodash.git (lodash), git+https://github.com/lodash/lodash.git (lodash-es), git+https://github.com/lodash/lodash.git (lodash.merge). This software contains the following license and notice below: Copyright OpenJS Foundation and other contributors <https://openjsf.org/> Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history available at https://github.com/lodash/lodash The following license applies to all parts of this software except as documented below: ==== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==== Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code displayed within the prose of the documentation. CC0: http://creativecommons.org/publicdomain/zero/1.0/ ==== Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. ----- The following software may be included in this product: lodash.camelcase, lodash.curry, lodash.flow. A copy of the source code may be downloaded from git+https://github.com/lodash/lodash.git (lodash.camelcase), git+https://github.com/lodash/lodash.git (lodash.curry), git+https://github.com/lodash/lodash.git (lodash.flow). This software contains the following license and notice below: Copyright jQuery Foundation and other contributors <https://jquery.org/> Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history available at https://github.com/lodash/lodash The following license applies to all parts of this software except as documented below: ==== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==== Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code displayed within the prose of the documentation. CC0: http://creativecommons.org/publicdomain/zero/1.0/ ==== Files located in the node_modules and vendor directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. ----- The following software may be included in this product: long. A copy of the source code may be downloaded from https://github.com/dcodeIO/long.js.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: longest-streak, parse-entities, property-information, stringify-entities, trim-lines. A copy of the source code may be downloaded from git+https://github.com/wooorm/longest-streak.git (longest-streak), git+https://github.com/wooorm/parse-entities.git (parse-entities), git+https://github.com/wooorm/property-information.git (property-information), git+https://github.com/wooorm/stringify-entities.git (stringify-entities), git+https://github.com/wooorm/trim-lines.git (trim-lines). This software contains the following license and notice below: (The MIT License) Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: loose-envify. A copy of the source code may be downloaded from git://github.com/zertosh/loose-envify.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Andres Suarez <zertosh@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: maplibre-gl. A copy of the source code may be downloaded from git://github.com/maplibre/maplibre-gl-js.git. This software contains the following license and notice below: Copyright (c) 2023, MapLibre contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of MapLibre GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from mapbox-gl-js v1.13 and earlier Version v1.13 of mapbox-gl-js and earlier are licensed under a BSD-3-Clause license Copyright (c) 2020, Mapbox Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from glfx.js Copyright (C) 2011 by Evan Wallace Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Contains a portion of d3-color https://github.com/d3/d3-color Copyright 2010-2016 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: material-colors. A copy of the source code may be downloaded from https://github.com/shuhei/material-colors.git. This software contains the following license and notice below: ISC License Copyright 2014 Shuhei Kagawa Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: md5. A copy of the source code may be downloaded from git://github.com/pvorb/node-md5.git. This software contains the following license and notice below: Copyright © 2011-2012, Paul Vorbach. Copyright © 2009, Jeff Mott. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Crypto-JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: mdast-util-phrasing. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/mdast-util-phrasing.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com> Copyright (c) 2017 Victor Felder <victor@draft.li> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: memoize-one. A copy of the source code may be downloaded from https://github.com/alexreardon/memoize-one.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 Alexander Reardon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: mime-db. A copy of the source code may be downloaded from git+https://github.com/jshttp/mime-db.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 Jonathan Ong <me@jongleberry.com> Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: mime-types. A copy of the source code may be downloaded from git+https://github.com/jshttp/mime-types.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 Jonathan Ong <me@jongleberry.com> Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: minimatch. A copy of the source code may be downloaded from git://github.com/isaacs/minimatch.git. This software contains the following license and notice below: The ISC License Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: mjolnir.js. A copy of the source code may be downloaded from https://github.com/visgl/mjolnir.js. This software contains the following license and notice below: MIT License Copyright (c) 2017 Uber Technologies, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: mockdate. A copy of the source code may be downloaded from https://github.com/boblauer/MockDate.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Bob Lauer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: moment. A copy of the source code may be downloaded from https://github.com/moment/moment.git. This software contains the following license and notice below: Copyright (c) JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: moment-duration-format. A copy of the source code may be downloaded from git://github.com/jsmreese/moment-duration-format.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2019 John Madhavan-Reese Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: moment-timezone. A copy of the source code may be downloaded from https://github.com/moment/moment-timezone.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) JS Foundation and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: mouse-change, mouse-event, mouse-wheel, superscript-text, to-px. A copy of the source code may be downloaded from https://github.com/mikolalysenko/mouse-change.git (mouse-change), https://github.com/mikolalysenko/mouse-event.git (mouse-event), https://github.com/mikolalysenko/mouse-wheel.git (mouse-wheel), https://github.com/mikolalysenko/superscript-text.git (superscript-text), https://github.com/mikolalysenko/to-px.git (to-px). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Mikola Lysenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ms. A copy of the source code may be downloaded from git+https://github.com/zeit/ms.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ms. A copy of the source code may be downloaded from git+https://github.com/vercel/ms.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2020 Vercel, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: native-file-system-adapter. A copy of the source code may be downloaded from git+https://github.com/jimmywarting/native-file-system-adapter.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 Jimmy Wärting Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: needle. A copy of the source code may be downloaded from https://github.com/tomas/needle.git. This software contains the following license and notice below: Copyright (c) Fork, Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: next-tick. A copy of the source code may be downloaded from git://github.com/medikoo/next-tick.git. This software contains the following license and notice below: ISC License Copyright (c) 2012-2020, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: node-domexception. A copy of the source code may be downloaded from git+https://github.com/jimmywarting/node-domexception.git. This software contains the following license and notice below: MIT License Copyright (c) 2021 Jimmy Wärting Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: node-emoji. A copy of the source code may be downloaded from https://github.com/omnidan/node-emoji. This software contains the following license and notice below: # MIT License Copyright (c) 2014-2023 Daniel Bugl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: node-fetch. A copy of the source code may be downloaded from https://github.com/bitinn/node-fetch.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 David Frank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: normalize-svg-path. A copy of the source code may be downloaded from git://github.com/jkroso/normalize-svg-path.git. This software contains the following license and notice below: The MIT License Copyright © 2008-2013 Dmitry Baranovskiy (http://raphaeljs.com) Copyright © 2008-2013 Sencha Labs (http://sencha.com) Copyright © 2013 Jake Rosoman <jkroso@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: numbro. A copy of the source code may be downloaded from https://github.com/BenjaminVanRyseghem/numbro. This software contains the following license and notice below: Copyright (c) 2017-2019 Benjamin Van Ryseghem<benjamin@vanryseghem.com> Copyright (c) 2015-2017 Företagsplatsen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: orderedmap, w3c-keyname. A copy of the source code may be downloaded from git+https://github.com/marijnh/orderedmap.git (orderedmap), git+https://github.com/marijnh/w3c-keyname.git (w3c-keyname). This software contains the following license and notice below: Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: pako. A copy of the source code may be downloaded from git+https://github.com/nodeca/pako.git. This software contains the following license and notice below: (The MIT License) Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: parenthesis. A copy of the source code may be downloaded from git://github.com/dy/parenthesis.git. This software contains the following license and notice below: The MIT License (MIT) Copyright © 2016 Dmitry Ivanov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: parse-svg-path. A copy of the source code may be downloaded from git://github.com/jkroso/parse-svg-path.git. This software contains the following license and notice below: The MIT License Copyright (c) 2013 Jake Rosoman <jkroso@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: parse5. A copy of the source code may be downloaded from git://github.com/inikulin/parse5.git. This software contains the following license and notice below: Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: path-parse. A copy of the source code may be downloaded from https://github.com/jbgutierrez/path-parse.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Javier Blanco Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: pbf. A copy of the source code may be downloaded from git@github.com:mapbox/pbf.git. This software contains the following license and notice below: Copyright (c) 2017, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of pbf nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: performance-now. A copy of the source code may be downloaded from git://github.com/braveg1rl/performance-now.git. This software contains the following license and notice below: Copyright (c) 2013 Braveg1rl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: picocolors. A copy of the source code may be downloaded from git+https://github.com/alexeyraspopov/picocolors.git. This software contains the following license and notice below: ISC License Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: plotly.js. A copy of the source code may be downloaded from https://github.com/plotly/plotly.js.git. This software contains the following license and notice below: MIT License Copyright (c) 2016-2024 Plotly Technologies Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: point-in-polygon. A copy of the source code may be downloaded from git://github.com/substack/point-in-polygon.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 James Halliday Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: polished. A copy of the source code may be downloaded from git+https://github.com/styled-components/polished.git. This software contains the following license and notice below: MIT License Copyright (c) 2016 - 2021 Brian Hough and Maximilian Stoiber Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: polybooljs. A copy of the source code may be downloaded from https://github.com/velipso/polybooljs. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Sean Connelly (@voidqk, web: syntheti.cc) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: polyclip-ts. A copy of the source code may be downloaded from https://github.com/luizbarboza/polyclip-ts.git. This software contains the following license and notice below: MIT License Copyright (c) 2022 Luiz Felipe Machado Barboza Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: potpack. A copy of the source code may be downloaded from git+https://github.com/mapbox/potpack.git. This software contains the following license and notice below: ISC License Copyright (c) 2018, Mapbox Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: preact. A copy of the source code may be downloaded from git+https://github.com/preactjs/preact.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-present Jason Miller Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: prismjs. A copy of the source code may be downloaded from git+https://github.com/PrismJS/prism.git. This software contains the following license and notice below: MIT LICENSE Copyright (c) 2012 Lea Verou Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: probe-image-size. A copy of the source code may be downloaded from git+https://github.com/nodeca/probe-image-size.git. This software contains the following license and notice below: Copyright (c) 2015 Vitaly Puzrin. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: process-nextick-args. A copy of the source code may be downloaded from https://github.com/calvinmetcalf/process-nextick-args.git. This software contains the following license and notice below: # Copyright (c) 2015 Calvin Metcalf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. **THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.** ----- The following software may be included in this product: promise. A copy of the source code may be downloaded from https://github.com/then/promise.git. This software contains the following license and notice below: Copyright (c) 2014 Forbes Lindesay Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: property-information. A copy of the source code may be downloaded from git+https://github.com/wooorm/property-information.git. This software contains the following license and notice below: (The MIT License) Copyright (c) Titus Wormer <mailto:tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: prosemirror-commands, prosemirror-history, prosemirror-inputrules, prosemirror-keymap, prosemirror-model, prosemirror-state, prosemirror-transform, prosemirror-view. A copy of the source code may be downloaded from git://github.com/prosemirror/prosemirror-commands.git (prosemirror-commands), git://github.com/prosemirror/prosemirror-history.git (prosemirror-history), git://github.com/prosemirror/prosemirror-inputrules.git (prosemirror-inputrules), git://github.com/prosemirror/prosemirror-keymap.git (prosemirror-keymap), git://github.com/prosemirror/prosemirror-model.git (prosemirror-model), git://github.com/prosemirror/prosemirror-state.git (prosemirror-state), git://github.com/prosemirror/prosemirror-transform.git (prosemirror-transform), git://github.com/prosemirror/prosemirror-view.git (prosemirror-view). This software contains the following license and notice below: Copyright (C) 2015-2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: protobufjs. A copy of the source code may be downloaded from git+https://github.com/protobufjs/protobuf.js.git. This software contains the following license and notice below: This license applies to all parts of protobuf.js except those files either explicitly including or referencing a different license or located in a directory containing a different LICENSE file. --- Copyright (c) 2016, Daniel Wirtz All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of its author, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- Code generated by the command line utilities is owned by the owner of the input file used when generating it. This code is not standalone and requires a support library to be linked with it. This support library is itself covered by the above license. ----- The following software may be included in this product: proxy-from-env. A copy of the source code may be downloaded from https://github.com/Rob--W/proxy-from-env.git. This software contains the following license and notice below: The MIT License Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: pure-color. A copy of the source code may be downloaded from http://github.com/WickyNilliams/pure-color.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Nick Williams Copyright (c) 2011 Heather Arthur <fayearthur@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: quickselect. A copy of the source code may be downloaded from git+https://github.com/mourner/quickselect.git. This software contains the following license and notice below: ISC License Copyright (c) 2024, Vladimir Agafonkin Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: raf. A copy of the source code may be downloaded from git://github.com/chrisdickinson/raf.git. This software contains the following license and notice below: Copyright 2013 Chris Dickinson <chris@neversaw.us> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: rc-overflow, rc-resize-observer. A copy of the source code may be downloaded from git@github.com:react-component/overflow.git (rc-overflow), git@github.com:react-component/resize-observer.git (rc-resize-observer). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2019-present afc163 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: rc-util. A copy of the source code may be downloaded from git@github.com:react-component/util.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-present yiminghe Copyright (c) 2015-present Alipay.com, https://www.alipay.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: re-resizable. A copy of the source code may be downloaded from https://github.com/bokuweb/react-resizable-box.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 @bokuweb Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react, react-dom, react-is, scheduler. A copy of the source code may be downloaded from https://github.com/facebook/react.git (react), https://github.com/facebook/react.git (react-dom), https://github.com/facebook/react.git (react-is), https://github.com/facebook/react.git (scheduler). This software contains the following license and notice below: MIT License Copyright (c) Facebook, Inc. and its affiliates. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-base16-styling. A copy of the source code may be downloaded from git+https://github.com/alexkuz/react-base16-styling.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Alexander Kuznetsov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-color, reactcss. A copy of the source code may be downloaded from git+https://github.com/casesandberg/react-color.git (react-color), https://github.com/casesandberg/reactcss (reactcss). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Case Sandberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-dropzone. A copy of the source code may be downloaded from https://github.com/react-dropzone/react-dropzone.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 Param Aggarwal Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-fast-compare. A copy of the source code may be downloaded from https://github.com/FormidableLabs/react-fast-compare. This software contains the following license and notice below: MIT License Copyright (c) 2018 Formidable Labs Copyright (c) 2017 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-feather. A copy of the source code may be downloaded from git+https://github.com/feathericons/react-feather.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Carmelo Pullara Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-helmet-async. A copy of the source code may be downloaded from http://github.com/staylor/react-helmet-async. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2018 The New York Times Company Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: react-html-attributes. A copy of the source code may be downloaded from https://github.com/jackyho112/react-html-attributes. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Jacky Ho Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-json-view. A copy of the source code may be downloaded from https://github.com/mac-s-g/react-json-view.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Mac Gainor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-lifecycles-compat. A copy of the source code may be downloaded from git+https://github.com/reactjs/react-lifecycles-compat.git. This software contains the following license and notice below: MIT License Copyright (c) 2013-present, Facebook, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-map-gl. A copy of the source code may be downloaded from https://github.com/visgl/react-map-gl.git. This software contains the following license and notice below: Copyright (c) 2020 Urban Computing Foundation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This contains code from MapboxGL-js Copyright (c) 2014, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- Contains code from Mapbox GL Style JSON Mapbox Open Styles are copyright (c) 2014, Mapbox, all rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: react-markdown. A copy of the source code may be downloaded from git+https://github.com/remarkjs/react-markdown.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) Espen Hovlandsdal Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-multi-ref. A copy of the source code may be downloaded from git+https://github.com/Macil/react-multi-ref.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 Chris Cowan <agentme49@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-number-format. A copy of the source code may be downloaded from https://github.com/s-yadav/react-number-format. This software contains the following license and notice below: MIT License Copyright (c) 2020-present Sudhanshu Yadav Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-plotly.js. A copy of the source code may be downloaded from https://github.com/plotly/react-plotly.js.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Plotly, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-responsive-carousel. A copy of the source code may be downloaded from https://github.com/leandrowd/react-responsive-carousel.git. This software contains the following license and notice below: MIT License Copyright (c) [year] [fullname] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-select. A copy of the source code may be downloaded from https://github.com/JedWatson/react-select/tree/master/packages/react-select. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2022 Jed Watson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-syntax-highlighter. A copy of the source code may be downloaded from git+https://github.com/react-syntax-highlighter/react-syntax-highlighter.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 Conor Hastings Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-textarea-autosize. A copy of the source code may be downloaded from git+https://github.com/Andarist/react-textarea-autosize.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2013 Andrey Popp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-transition-group. A copy of the source code may be downloaded from https://github.com/reactjs/react-transition-group.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2018, React Community Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: react-webcam. A copy of the source code may be downloaded from https://github.com/mozmorris/react-webcam.git. This software contains the following license and notice below: MIT License Copyright (c) 2018 Moz Morris Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react-window. A copy of the source code may be downloaded from https://github.com/bvaughn/react-window.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2018 Brian Vaughn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: readable-stream. A copy of the source code may be downloaded from git://github.com/isaacs/readable-stream. This software contains the following license and notice below: Copyright Joyent, Inc. and other Node contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: readable-stream. A copy of the source code may be downloaded from git://github.com/nodejs/readable-stream. This software contains the following license and notice below: Node.js is licensed for use as follows: """ Copyright Node.js contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ This license applies to parts of Node.js originating from the https://github.com/joyent/node repository: """ Copyright Joyent, Inc. and other Node contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ ----- The following software may be included in this product: readdirp. A copy of the source code may be downloaded from git://github.com/paulmillr/readdirp.git. This software contains the following license and notice below: MIT License Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: refractor, vfile-message. A copy of the source code may be downloaded from git+https://github.com/wooorm/refractor.git (refractor), git+https://github.com/vfile/vfile-message.git (vfile-message). This software contains the following license and notice below: (The MIT License) Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: regenerator-runtime. A copy of the source code may be downloaded from https://github.com/facebook/regenerator/tree/main/packages/runtime. This software contains the following license and notice below: MIT License Copyright (c) 2014-present, Facebook, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: remark-emoji. A copy of the source code may be downloaded from git+https://github.com/rhysd/remark-emoji.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 rhysd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: remark-parse, remark-stringify. A copy of the source code may be downloaded from https://github.com/remarkjs/remark/tree/main/packages/remark-parse (remark-parse), https://github.com/remarkjs/remark/tree/main/packages/remark-stringify (remark-stringify). This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: require-directory. A copy of the source code may be downloaded from git://github.com/troygoode/node-require-directory.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2011 Troy Goode <troygoode@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: resize-observer-polyfill. A copy of the source code may be downloaded from https://github.com/que-etc/resize-observer-polyfill.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Denis Rul Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: resolve-protobuf-schema. A copy of the source code may be downloaded from https://github.com/mafintosh/resolve-protobuf-schema.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Mathias Buus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: robust-predicates. A copy of the source code may be downloaded from https://github.com/mourner/robust-predicates.git. This software contains the following license and notice below: This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to <http://unlicense.org> ----- The following software may be included in this product: rope-sequence. A copy of the source code may be downloaded from git+https://github.com/marijnh/rope-sequence.git. This software contains the following license and notice below: Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: rw. A copy of the source code may be downloaded from http://github.com/mbostock/rw.git. This software contains the following license and notice below: Copyright (c) 2014-2016, Michael Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The name Michael Bostock may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: safer-buffer. A copy of the source code may be downloaded from git+https://github.com/ChALkeR/safer-buffer.git. This software contains the following license and notice below: MIT License Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: sass. A copy of the source code may be downloaded from https://github.com/sass/dart-sass. This software contains the following license and notice below: Dart Sass license: Copyright (c) 2016, Google Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Dart SDK license: Copyright 2012, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- _fe_analyzer_shared license: Copyright 2019, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- _macros and macros license: Copyright 2024, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- analyzer, protobuf and protoc_plugin license: Copyright 2013, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- archive license: The MIT License Copyright (c) 2013-2021 Brendan Duncan. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- args, csslib and logging license: Copyright 2013, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- async, cli_util, collection, mime, stream_channel and typed_data license: Copyright 2015, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boolean_selector, meta and shelf_packages_handler license: Copyright 2016, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- charcode license: Copyright 2014, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- checked_yaml license: Copyright 2019, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- cli_pkg license: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -------------------------------------------------------------------------------- cli_repl license: Copyright (c) 2018, Jennifer Thakar. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- convert, crypto, shelf_static, source_map_stack_trace and vm_service license: Copyright 2015, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- coverage, dart_style, dartdoc, glob, http, http_parser, matcher, path, pool, pub_semver, source_span, string_scanner, test and watcher license: Copyright 2014, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- dart_mappable and type_plus license: MIT License Copyright (c) 2021 Kilian Schulte Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- ffi and package_config license: Copyright 2019, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- file license: Copyright 2017, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- fixnum, http_multi_server, oauth2, shelf, shelf_web_socket, source_maps and stack_trace license: Copyright 2014, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- frontend_server_client license: Copyright 2020, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- grinder and webkit_inspection_protocol license: Copyright 2013, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- html license: Copyright (c) 2006-2012 The Authors Contributors: James Graham - jg307@cam.ac.uk Anne van Kesteren - annevankesteren@gmail.com Lachlan Hunt - lachlan.hunt@lachy.id.au Matt McDonald - kanashii@kanashii.ca Sam Ruby - rubys@intertwingly.net Ian Hickson (Google) - ian@hixie.ch Thomas Broyer - t.broyer@ltgt.net Jacques Distler - distler@golem.ph.utexas.edu Henri Sivonen - hsivonen@iki.fi Adam Barth - abarth@webkit.org Eric Seidel - eric@webkit.org The Mozilla Foundation (contributions from Henri Sivonen since 2008) David Flanagan (Mozilla) - dflanagan@mozilla.com Google LLC (contributed the Dart port) - misc@dartlang.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- io, stream_transform and term_glyph license: Copyright 2017, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- js license: Copyright 2012, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- json_annotation license: Copyright 2017, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- lints license: Copyright 2021, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- markdown license: Copyright 2012, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- native_stack_traces license: Copyright 2020, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- native_synchronization license: Copyright 2023, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- node_interop license: Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- node_preamble license: The MIT License (MIT) Copyright (c) 2015 Michael Bullington Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. === Copyright 2012, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- petitparser and xml license: The MIT License Copyright (c) 2006-2023 Lukas Renggli. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- pub_api_client license: MIT License Copyright (c) 2020 Leo Farias Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- pubspec license: Copyright (c) 2015, Anders Holmgren. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- pubspec_parse license: Copyright 2018, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- quiver and retry license: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -------------------------------------------------------------------------------- test_api and test_core license: Copyright 2018, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- test_descriptor and web_socket_channel license: Copyright 2016, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- test_process license: Copyright 2017, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- uri license: Copyright 2013, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- web license: Copyright 2023, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- web_socket license: Copyright 2024, the Dart project authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- yaml license: Copyright (c) 2014, the Dart project authors. Copyright (c) 2006, Kirill Simonov. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: sax. A copy of the source code may be downloaded from git://github.com/isaacs/sax-js.git. This software contains the following license and notice below: The ISC License Copyright (c) 2010-2024 Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==== `String.fromCodePoint` by Mathias Bynens used according to terms of MIT License, as follows: Copyright (c) 2010-2024 Mathias Bynens <https://mathiasbynens.be/> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: set-value. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/set-value.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2017, Jon Schlinkert Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: setimmediate. A copy of the source code may be downloaded from git+https://github.com/YuzuJS/setImmediate.git. This software contains the following license and notice below: Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: shallowequal. A copy of the source code may be downloaded from git+https://github.com/dashed/shallowequal.git. This software contains the following license and notice below: MIT License Copyright (c) 2017 Alberto Leal <mailforalberto@gmail.com> (github.com/dashed) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: snappyjs. A copy of the source code may be downloaded from git+https://github.com/zhipeng-jia/snappyjs.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Zhipeng Jia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: sort-asc, sort-desc. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/sort-asc.git (sort-asc), git+https://github.com/jonschlinkert/sort-desc.git (sort-desc). This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014, 2015 Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: sort-object. A copy of the source code may be downloaded from git+https://github.com/doowb/sort-object.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-2016, Brian Woodward. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: source-map, source-map-js. A copy of the source code may be downloaded from http://github.com/mozilla/source-map.git (source-map), git+https://github.com/7rulnik/source-map-js.git (source-map-js). This software contains the following license and notice below: Copyright (c) 2009-2011, Mozilla Foundation and contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the names of the Mozilla Foundation nor the names of project contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: splaytree-ts. A copy of the source code may be downloaded from https://github.com/SBanksX/splaytree-ts.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2022, Luiz Felipe Machado Barboza All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: split-string. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/split-string.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: sprintf-js. A copy of the source code may be downloaded from https://github.com/alexei/sprintf.js.git. This software contains the following license and notice below: Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of this software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: sprintf-js. A copy of the source code may be downloaded from https://github.com/alexei/sprintf.js.git. This software contains the following license and notice below: Copyright (c) 2007-2014, Alexandru Marasteanu <hello [at) alexei (dot] ro> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of this software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: stack-trace. A copy of the source code may be downloaded from git://github.com/felixge/node-stack-trace.git. This software contains the following license and notice below: Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: static-eval. A copy of the source code may be downloaded from git://github.com/browserify/static-eval.git. This software contains the following license and notice below: MIT License Copyright (c) 2013 James Halliday Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: stream-parser. A copy of the source code may be downloaded from git://github.com/TooTallNate/node-stream-parser.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: stream-shift. A copy of the source code may be downloaded from https://github.com/mafintosh/stream-shift.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2016 Mathias Buus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: string_decoder. A copy of the source code may be downloaded from git://github.com/rvagg/string_decoder.git. This software contains the following license and notice below: Copyright Joyent, Inc. and other Node contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: string_decoder. A copy of the source code may be downloaded from git://github.com/nodejs/string_decoder.git. This software contains the following license and notice below: Node.js is licensed for use as follows: """ Copyright Node.js contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ This license applies to parts of Node.js originating from the https://github.com/joyent/node repository: """ Copyright Joyent, Inc. and other Node contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ ----- The following software may be included in this product: strnum. A copy of the source code may be downloaded from https://github.com/NaturalIntelligence/strnum. This software contains the following license and notice below: MIT License Copyright (c) 2021 Natural Intelligence Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: style-to-js. A copy of the source code may be downloaded from https://github.com/remarkablemark/style-to-js. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2020 Menglin "Mark" Xu <mark@remarkablemark.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: style-to-object. A copy of the source code may be downloaded from https://github.com/remarkablemark/style-to-object. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Menglin "Mark" Xu <mark@remarkablemark.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: stylis. A copy of the source code may be downloaded from https://github.com/thysultan/stylis.js. This software contains the following license and notice below: MIT License Copyright (c) 2016-present Sultan Tarimo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: supports-preserve-symlinks-flag. A copy of the source code may be downloaded from git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git. This software contains the following license and notice below: MIT License Copyright (c) 2022 Inspect JS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: svg-arc-to-cubic-bezier. A copy of the source code may be downloaded from https://github.com/colinmeinke/svg-arc-to-cubic-bezier. This software contains the following license and notice below: Internet Systems Consortium license =================================== Copyright (c) `2017`, `Colin Meinke` Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: texture-compressor. This software contains the following license and notice below: MIT License Copyright (c) 2019 Tim van Scherpenzeel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: through2. A copy of the source code may be downloaded from https://github.com/rvagg/through2.git. This software contains the following license and notice below: Copyright 2013, Rod Vagg (the "Original Author") All rights reserved. MIT +no-false-attribs License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Distributions of all or part of the Software intended to be used by the recipients as they would use the unmodified Software, containing modifications that substantially alter, remove, or disable functionality of the Software, outside of the documented configuration mechanisms provided by the Software, shall be modified such that the Original Author's bug reporting email addresses and urls are either replaced with the contact information of the parties responsible for the changes, or removed entirely. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except where noted, this license applies to any and all software programs and associated documentation files created by the Original Author, when distributed with the Software. ----- The following software may be included in this product: through2. A copy of the source code may be downloaded from https://github.com/rvagg/through2.git. This software contains the following license and notice below: # The MIT License (MIT) **Copyright (c) Rod Vagg (the "Original Author") and additional contributors** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: tinycolor2. A copy of the source code may be downloaded from https://github.com/bgrins/TinyColor.git. This software contains the following license and notice below: Copyright (c), Brian Grinstead, http://briangrinstead.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: tinyqueue. A copy of the source code may be downloaded from https://github.com/mourner/tinyqueue.git. This software contains the following license and notice below: ISC License Copyright (c) 2017, Vladimir Agafonkin Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: topojson-client. A copy of the source code may be downloaded from https://github.com/topojson/topojson-client.git. This software contains the following license and notice below: Copyright 2012-2019 Michael Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: trough. A copy of the source code may be downloaded from git+https://github.com/wooorm/trough.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ts-invariant. A copy of the source code may be downloaded from git+https://github.com/apollographql/invariant-packages.git. This software contains the following license and notice below: MIT License Copyright (c) 2019 Apollo GraphQL Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: tslib. A copy of the source code may be downloaded from https://github.com/Microsoft/tslib.git. This software contains the following license and notice below: Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: type. A copy of the source code may be downloaded from git+https://github.com/medikoo/type.git. This software contains the following license and notice below: ISC License Copyright (c) 2019-2024, Mariusz Nowak, @medikoo, medikoo.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: typed-signals. A copy of the source code may be downloaded from https://github.com/Lusito/typed-signals.git. This software contains the following license and notice below: Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. ----- The following software may be included in this product: typedarray. A copy of the source code may be downloaded from git://github.com/substack/typedarray.git. This software contains the following license and notice below: /* Copyright (c) 2010, Linden Research, Inc. Copyright (c) 2012, Joshua Bell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. $/LicenseInfo$ */ // Original can be found at: // https://bitbucket.org/lindenlab/llsd // Modifications by Joshua Bell inexorabletash@gmail.com // https://github.com/inexorabletash/polyfill // ES3/ES5 implementation of the Krhonos Typed Array Specification // Ref: http://www.khronos.org/registry/typedarray/specs/latest/ // Date: 2011-02-01 // // Variations: // * Allows typed_array.get/set() as alias for subscripts (typed_array[]) ----- The following software may be included in this product: typical. A copy of the source code may be downloaded from git+https://github.com/75lb/typical.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-25 Lloyd Brookes <75pound@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: typical. A copy of the source code may be downloaded from git+https://github.com/75lb/typical.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-25 Lloyd Brookes <opensource@75lb.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ua-parser-js. A copy of the source code may be downloaded from https://github.com/faisalman/ua-parser-js.git. This software contains the following license and notice below: MIT License Copyright (c) 2012-2024 Faisal Salman <<f@faisalman.com>> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: ua-parser-js. A copy of the source code may be downloaded from https://github.com/faisalman/ua-parser-js.git. This software contains the following license and notice below: MIT License Copyright (c) 2012-2025 Faisal Salman <<f@faisalman.com>> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: undici-types. A copy of the source code may be downloaded from git+https://github.com/nodejs/undici.git. This software contains the following license and notice below: MIT License Copyright (c) Matteo Collina and Undici contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: unified, vfile. A copy of the source code may be downloaded from git+https://github.com/unifiedjs/unified.git (unified), git+https://github.com/vfile/vfile.git (vfile). This software contains the following license and notice below: (The MIT License) Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: union-value. A copy of the source code may be downloaded from git+https://github.com/jonschlinkert/union-value.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-2017, Jon Schlinkert Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: unist-util-is. A copy of the source code may be downloaded from git+https://github.com/syntax-tree/unist-util-is.git. This software contains the following license and notice below: (The MIT license) Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: unquote. A copy of the source code may be downloaded from https://github.com/lakenen/node-unquote.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2017 Cameron Lakenen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub-license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: urlpattern-polyfill. A copy of the source code may be downloaded from https://github.com/kenchris/urlpattern-polyfill. This software contains the following license and notice below: Copyright 2020 Intel Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: use-isomorphic-layout-effect. A copy of the source code may be downloaded from git+https://github.com/Andarist/use-isomorphic-layout-effect.git. This software contains the following license and notice below: MIT License Copyright (c) Mateusz Burzyński Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: util-deprecate. A copy of the source code may be downloaded from git://github.com/TooTallNate/util-deprecate.git. This software contains the following license and notice below: (The MIT License) Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: uuid. A copy of the source code may be downloaded from https://github.com/uuidjs/uuid.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2010-2020 Robert Kieffer and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: vega, vega-canvas, vega-crossfilter, vega-dataflow, vega-encode, vega-event-selector, vega-expression, vega-force, vega-format, vega-functions, vega-geo, vega-hierarchy, vega-label, vega-loader, vega-parser, vega-projection, vega-regression, vega-runtime, vega-scale, vega-scenegraph, vega-selections, vega-statistics, vega-time, vega-transforms, vega-typings, vega-util, vega-view, vega-view-transforms, vega-voronoi, vega-wordcloud. A copy of the source code may be downloaded from git+https://github.com/vega/vega.git (vega), git+https://github.com/vega/vega.git (vega-canvas), git+https://github.com/vega/vega.git (vega-crossfilter), git+https://github.com/vega/vega.git (vega-dataflow), git+https://github.com/vega/vega.git (vega-encode), git+https://github.com/vega/vega.git (vega-event-selector), git+https://github.com/vega/vega.git (vega-expression), git+https://github.com/vega/vega.git (vega-force), git+https://github.com/vega/vega.git (vega-format), git+https://github.com/vega/vega.git (vega-functions), git+https://github.com/vega/vega.git (vega-geo), git+https://github.com/vega/vega.git (vega-hierarchy), git+https://github.com/vega/vega.git (vega-label), git+https://github.com/vega/vega.git (vega-loader), git+https://github.com/vega/vega.git (vega-parser), git+https://github.com/vega/vega.git (vega-projection), git+https://github.com/vega/vega.git (vega-regression), git+https://github.com/vega/vega.git (vega-runtime), git+https://github.com/vega/vega.git (vega-scale), git+https://github.com/vega/vega.git (vega-scenegraph), git+https://github.com/vega/vega.git (vega-selections), git+https://github.com/vega/vega.git (vega-statistics), git+https://github.com/vega/vega.git (vega-time), git+https://github.com/vega/vega.git (vega-transforms), git+https://github.com/vega/vega.git (vega-typings), git+https://github.com/vega/vega.git (vega-util), git+https://github.com/vega/vega.git (vega-view), git+https://github.com/vega/vega.git (vega-view-transforms), git+https://github.com/vega/vega.git (vega-voronoi), git+https://github.com/vega/vega.git (vega-wordcloud). This software contains the following license and notice below: Copyright (c) 2015-2023, University of Washington Interactive Data Lab All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vega-embed. A copy of the source code may be downloaded from git+http://github.com/vega/vega-embed.git. This software contains the following license and notice below: Copyright (c) 2015, University of Washington Interactive Data Lab All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vega-lite. A copy of the source code may be downloaded from git+https://github.com/vega/vega-lite.git. This software contains the following license and notice below: Copyright (c) 2015, University of Washington Interactive Data Lab. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vega-schema-url-parser. A copy of the source code may be downloaded from git@github.com:vega/schema.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2017, Vega All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vega-themes. A copy of the source code may be downloaded from git+https://github.com/vega/vega-themes.git. This software contains the following license and notice below: Copyright (c) 2016, University of Washington Interactive Data Lab All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vega-tooltip. A copy of the source code may be downloaded from git+https://github.com/vega/vega-tooltip.git. This software contains the following license and notice below: Copyright 2016 Interactive Data Lab and contributors Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: vt-pbf. A copy of the source code may be downloaded from git+https://github.com/mapbox/vt-pbf.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015 Anand Thakker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Contains geojson_wrapper.js from https://github.com/mapbox/mapbox-gl-js Copyright (c) 2014, Mapbox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Mapbox GL JS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: wavesurfer.js. A copy of the source code may be downloaded from git@github.com:katspaugh/wavesurfer.js.git. This software contains the following license and notice below: BSD 3-Clause License Copyright (c) 2012-2023, katspaugh and contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: web-streams-polyfill. A copy of the source code may be downloaded from git+https://github.com/MattiasBuelens/web-streams-polyfill.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2024 Mattias Buelens Copyright (c) 2016 Diwank Singh Tomer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: webidl-conversions. A copy of the source code may be downloaded from git+https://github.com/jsdom/webidl-conversions.git. This software contains the following license and notice below: # The BSD 2-Clause License Copyright (c) 2014, Domenic Denicola All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- The following software may be included in this product: wgsl_reflect. A copy of the source code may be downloaded from https://github.com/brendan-duncan/wgsl_reflect. This software contains the following license and notice below: # MIT License Copyright (c) 2021 Brendan Duncan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: whatwg-url. A copy of the source code may be downloaded from git+https://github.com/jsdom/whatwg-url.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015–2016 Sebastian Mayr Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: wordwrapjs. A copy of the source code may be downloaded from https://github.com/75lb/wordwrapjs. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2015-21 Lloyd Brookes <75pound@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: world-calendars. A copy of the source code may be downloaded from git+https://github.com/plotly/world-calendars.git. This software contains the following license and notice below: MIT License Copyright (c) 2016 alexcjohnson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: xtend. A copy of the source code may be downloaded from git://github.com/Raynos/xtend.git. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2012-2014 Raynos. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: xxhashjs. A copy of the source code may be downloaded from https://github.com/pierrec/js-xxhash. This software contains the following license and notice below: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: y18n. A copy of the source code may be downloaded from git+https://github.com/yargs/y18n.git. This software contains the following license and notice below: Copyright (c) 2015, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: yaml. A copy of the source code may be downloaded from git+https://github.com/eemeli/yaml.git. This software contains the following license and notice below: Copyright 2018 Eemeli Aro <eemeli@gmail.com> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: yargs. A copy of the source code may be downloaded from https://github.com/yargs/yargs.git. This software contains the following license and notice below: MIT License Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: yargs-parser. A copy of the source code may be downloaded from https://github.com/yargs/yargs-parser.git. This software contains the following license and notice below: Copyright (c) 2016, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- The following software may be included in this product: Source Code. This software contains the following license and notice below: © 2023 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ----- The following software may be included in this product: Source Sans. This software contains the following license and notice below: Copyright 2010-2022 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ----- The following software may be included in this product: Source Serif. This software contains the following license and notice below: Copyright 2014 - 2023 Adobe (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ----- The following software may be included in this product: Material Icons. This software contains the following license and notice below: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ----- The following software may be included in this product: Open Iconic. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 Waybury Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: react bootstrap. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014-present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- The following software may be included in this product: fzyjs. This software contains the following license and notice below: The MIT License (MIT) Copyright (c) 2014 John Hawthorn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4
streamlit_public_repos
/content/streamlit_public_repos/streamlit/README.md
<br> <img src="https://user-images.githubusercontent.com/7164864/217935870-c0bc60a3-6fc0-4047-b011-7b4c59488c91.png" alt="Streamlit logo" style="margin-top:50px"></img> # Welcome to Streamlit 👋 **A faster way to build and share data apps.** ## What is Streamlit? Streamlit lets you transform Python scripts into interactive web apps in minutes, instead of weeks. Build dashboards, generate reports, or create chat apps. Once you’ve created an app, you can use our [Community Cloud platform](https://streamlit.io/cloud) to deploy, manage, and share your app. ### Why choose Streamlit? - **Simple and Pythonic:** Write beautiful, easy-to-read code. - **Fast, interactive prototyping:** Let others interact with your data and provide feedback quickly. - **Live editing:** See your app update instantly as you edit your script. - **Open-source and free:** Join a vibrant community and contribute to Streamlit's future. ## Installation Open a terminal and run: ```bash $ pip install streamlit $ streamlit hello ``` If this opens our sweet _Streamlit Hello_ app in your browser, you're all set! If not, head over to [our docs](https://docs.streamlit.io/get-started) for specific installs. The app features a bunch of examples of what you can do with Streamlit. Jump to the [quickstart](#quickstart) section to understand how that all works. <img src="https://user-images.githubusercontent.com/7164864/217936487-1017784e-68ec-4e0d-a7f6-6b97525ddf88.gif" alt="Streamlit Hello" width=500 href="none"></img> ## Quickstart ### A little example Create a new file named `streamlit_app.py` in your project directory with the following code: ```python import streamlit as st x = st.slider("Select a value") st.write(x, "squared is", x * x) ``` Now run it to open the app! ``` $ streamlit run streamlit_app.py ``` <img src="https://user-images.githubusercontent.com/7164864/215172915-cf087c56-e7ae-449a-83a4-b5fa0328d954.gif" width=300 alt="Little example"></img> ### Give me more! Streamlit comes in with [a ton of additional powerful elements](https://docs.streamlit.io/develop/api-reference) to spice up your data apps and delight your viewers. Some examples: <table border="0"> <tr> <td> <a target="_blank" href="https://docs.streamlit.io/develop/api-reference/widgets"> <img src="https://user-images.githubusercontent.com/7164864/217936099-12c16f8c-7fe4-44b1-889a-1ac9ee6a1b44.png" style="max-height:150px; width:auto; display:block;"> </a> </td> <td> <a target="_blank" href="https://docs.streamlit.io/develop/api-reference/data/st.dataframe"> <img src="https://user-images.githubusercontent.com/7164864/215110064-5eb4e294-8f30-4933-9563-0275230e52b5.gif" style="max-height:150px; width:auto; display:block;"> </a> </td> <td> <a target="_blank" href="https://docs.streamlit.io/develop/api-reference/charts"> <img src="https://user-images.githubusercontent.com/7164864/215174472-bca8a0d7-cf4b-4268-9c3b-8c03dad50bcd.gif" style="max-height:150px; width:auto; display:block;"> </a> </td> <td> <a target="_blank" href="https://docs.streamlit.io/develop/api-reference/layout"> <img src="https://user-images.githubusercontent.com/7164864/217936149-a35c35be-0d96-4c63-8c6a-1c4b52aa8f60.png" style="max-height:150px; width:auto; display:block;"> </a> </td> <td> <a target="_blank" href="https://docs.streamlit.io/develop/concepts/multipage-apps"> <img src="https://user-images.githubusercontent.com/7164864/215173883-eae0de69-7c1d-4d78-97d0-3bc1ab865e5b.gif" style="max-height:150px; width:auto; display:block;"> </a> </td> <td> <a target="_blank" href="https://streamlit.io/gallery"> <img src="https://user-images.githubusercontent.com/7164864/215109229-6ae9111f-e5c1-4f0b-b3a2-87a79268ccc9.gif" style="max-height:150px; width:auto; display:block;"> </a> </td> </tr> <tr> <td>Input widgets</td> <td>Dataframes</td> <td>Charts</td> <td>Layout</td> <td>Multi-page apps</td> <td>Fun</td> </tr> </table> Our vibrant creators community also extends Streamlit capabilities using  🧩 [Streamlit Components](https://streamlit.io/components). ## Get inspired There's so much you can build with Streamlit: - 🤖  [LLMs & chatbot apps](https://streamlit.io/gallery?category=llms) - 🧬  [Science & technology apps](https://streamlit.io/gallery?category=science-technology) - 💬  [NLP & language apps](https://streamlit.io/gallery?category=nlp-language) - 🏦  [Finance & business apps](https://streamlit.io/gallery?category=finance-business) - 🗺  [Geography & society apps](https://streamlit.io/gallery?category=geography-society) - and more! **Check out [our gallery!](https://streamlit.io/gallery)** 🎈 ## Community Cloud Deploy, manage and share your apps for free using our [Community Cloud](https://streamlit.io/cloud)! Sign-up [here](https://share.streamlit.io/signup). <br><br> <img src="https://user-images.githubusercontent.com/7164864/214965336-64500db3-0d79-4a20-8052-2dda883902d2.gif" width="400"></img> ## Resources - Explore our [docs](https://docs.streamlit.io) to learn how Streamlit works. - Ask questions and get help in our [community forum](https://discuss.streamlit.io). - Read our [blog](https://blog.streamlit.io) for tips from developers and creators. - Extend Streamlit's capabilities by installing or creating your own [Streamlit Components](https://streamlit.io/components). - Help others find and play with your app by using the Streamlit GitHub badge in your repository: ```markdown [![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](URL_TO_YOUR_APP) ``` [![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/streamlit/roadmap) ## Contribute 🎉 Thanks for your interest in helping improve Streamlit! 🎉 Before contributing, please read our guidelines here: https://github.com/streamlit/streamlit/wiki/Contributing ## License Streamlit is completely free and open-source and licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license.
5
streamlit_public_repos
/content/streamlit_public_repos/streamlit/.ruff.toml
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # In addition to the standard set of exclusions, omit all tests: extend-exclude = [ # Autogenerated files: "lib/streamlit/proto", "lib/streamlit/emojis.py", "lib/streamlit/material_icon_names.py", # File with an expected compilation error: "e2e_playwright/compilation_error_dialog.py", # Ignore frontend directory: "frontend/**", ] target-version = 'py310' line-length = 88 [format] docstring-code-format = true docstring-code-line-length = "dynamic" line-ending = "lf" [lint] # We activate all rules and only ignore the rules that we don't want to enforce # or that are not relevant for our codebase. select = ["ALL"] ignore = [ # Rules planned to be supported in the future: "EM101", # Checks for the use of string literals in exception constructors. "EM102", # Checks for the use of f-strings in exception constructors. "TRY003", # Checks for exception messages that are not defined in the exception class itself. # Ignored rule sets: "DTZ", # Checks for usage of unsafe naive datetime class. "PTH", # Enforces usage of pathlib. "C90", # Checks for McCabe complexity. "FBT", # Forbids boolean positional arguments. "SLF", # Checks unexpected for private member access. "BLE", # Checks for blind except statements. "CPY", # Checks for copyright statement. "DOC", # Checks for correct docstring format. # Ignored rules: "B904", # Checks for raise statements in exception handlers that lack a from clause. "PYI041", # Checks for parameter annotations that contain redundant unions between builtin numeric types (e.g., int | float). "PYI051", # Checks for redundant unions between a Literal and a builtin supertype of that Literal. "PD009", # Checks for usage of pd.DataFrame.iat. "PIE790", # Checks for unnecessary pass statements. "TD003", # Checks for missing issue link in TODO comment. "TD002", # Checks for missing author in TODO comment. "D100", # Checks for missing docstring in public module. "D101", # Checks for missing docstring in public class. "D102", # Checks for missing docstring in public method. "D103", # Checks for missing docstring in public function. "D104", # Checks for missing docstring in public package. "D105", # Checks for missing docstring in magic method. "D106", # Checks for missing docstring in public nested class. "D107", # Checks for missing docstring in __init__. "D205", # Checks for missing blank line after docstring summary. "D401", # Checks for docstring to start with imperative mood. "D202", # Checks for no-blank line after docstring. "FIX002", # Checks todo comments (which we want to allow). "PGH003", # Checks for blanket type ignore. "PLR2004", # Checks for numerical values that could be put into a constant. "PLR0904", # Checks for classes with too many public methods. "PLR0911", # Checks for functions with too many return statements. "PLR0912", # Checks for functions with too many branches. "PLR0913", # Checks for functions with too many arguments. "PLR0914", # Checks for functions with too many local variables. "PLR0915", # Checks for functions with too many statements. "PLR0916", # Checks for too many boolean expressions in if statements. "A002", # Checks if function argument shadows a Python builtin. "TRY300", # Checks for return statements in try blocks. "ANN401", # Checks that `any` is not used as an annotation. "SIM105", # Enforces use of contextlib.suppress. "SIM108", # Enforces ternary operators instead of if-else. "SIM115", # Enforces context manager for opening files. "SIM117", # Enforces single with statement with multiple contexts. "SIM905", # Enforces list instead of st.split. "COM812", # Checks for absence of trailing commas. Not recommended with formatter. "COM819", # Checks for presence of prohibited trailing commas. Not recommended with formatter. "RSE102", # Checks for unnecessary parentheses on raised exceptions. "RET504", # Checks for assignments that immediately precede a return of the assigned variable (too opinionated). "PT012", # Checks for pytest.raises context managers with multiple statements. "PT019", # Checks for tests that should use @pytest.mark.usefixtures (incompatible with unittest.patch) "PLC0415", # Enforces imports to be at the top-level of the file. ] exclude = [ # pympler is a vendored dependency that doesn't conform to our linting rules: "lib/streamlit/vendor/**", ] extend-safe-fixes = ["TC002", "TC003"] [lint.per-file-ignores] # Only add ignores for entire folders here. To ignore rules in individual # files, use the noqa ignore comment on top of the given file. "e2e_playwright/**" = [ "T20", "B018", "PD", "PERF", "N999", "S", "TRY", "NPY002", ] "lib/tests/**" = [ "PD", "D", "INP", "PERF", "N", "ARG", "S", "TRY", "ANN", "NPY002", ] "scripts/**" = ["T20", "INP", "PERF", "S", "TRY002"] [lint.flake8-tidy-imports] # Disallow all relative imports. ban-relative-imports = "all" [lint.isort] known-first-party = ["streamlit", "shared", "tests", "e2e_playwright"] [lint.pydocstyle] convention = "numpy" [lint.pycodestyle] # Allow lines (e.g. comments) up to 120 characters instead of 88, # which works well with Github. max-line-length = 120 [lint.flake8-comprehensions] # Allow dict calls that make use of keyword arguments (e.g., dict(a=1, b=2)). allow-dict-calls-with-keyword-arguments = true [lint.flake8-unused-arguments] # Ignore unused variadic argument, like *args and **kwargs. ignore-variadic-names = true [lint.flake8-annotations] # Allow missing return annotation on functions that return None: suppress-none-returning = true
6
streamlit_public_repos
/content/streamlit_public_repos/streamlit/SECURITY.md
# Security Policy ## Supported Versions | Version | Supported | | --------- | --------- | | >= 1.11.1 | ✅ | </br> Please refer to the Snowflake [HackerOne program](https://hackerone.com/snowflake?type=team) for our security policies and for reporting any security vulnerabilities.
7
streamlit_public_repos
/content/streamlit_public_repos/streamlit/CLAUDE.md
@./AGENTS.md
8
streamlit_public_repos
/content/streamlit_public_repos/streamlit/.editorconfig
# https://editorconfig.org/ root = true [*] indent_style = space indent_size = 2 insert_final_newline = true trim_trailing_whitespace = true end_of_line = lf charset = utf-8 max_line_length = 79 [*.py] indent_size = 4 max_line_length = 88 # The JSON files contain newlines inconsistently [*.json] insert_final_newline = ignore [**/node_modules/**] indent_style = ignore indent_size = ignore [**.min.js] indent_style = ignore insert_final_newline = ignore [Makefile] indent_style = tab
9
streamlit_public_repos
/content/streamlit_public_repos/streamlit/.nvmrc
v24
10
streamlit_public_repos
/content/streamlit_public_repos/streamlit/ty.toml
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. [environment] root = ["./lib/streamlit"] [src] include = ["lib/streamlit", "e2e_playwright", "scripts"] exclude = [ "e2e_playwright/compilation_error_dialog.py", "lib/streamlit/vendor/**", ] [rules] unresolved-import = "ignore" # This rule has problems with the ParamSpec support: # https://github.com/astral-sh/ty/issues/157 invalid-type-form = "ignore"
11
streamlit_public_repos
/content/streamlit_public_repos/streamlit/Makefile
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Make uses /bin/sh by default, but we are using some bash features. On Ubuntu # /bin/sh is POSIX compliant, ie it's not bash. So let's be explicit: SHELL=/bin/bash INSTALL_DEV_REQS ?= true INSTALL_TEST_REQS ?= true INSTALL_PLAYWRIGHT ?= true # Flags: # - INSTALL_DEV_REQS: install dev requirements (default: true) # - INSTALL_TEST_REQS: install test requirements (default: true) # - INSTALL_PLAYWRIGHT: install Playwright browsers during python-init (default: true) # CI uses a dedicated action to install browsers and typically sets this to false. # Local dev can opt out when not needed: `INSTALL_PLAYWRIGHT=false make init` PYTHON_VERSION := $(shell python --version | cut -d " " -f 2 | cut -d "." -f 1-2) MIN_PROTOC_VERSION = 3.20 # Check if Python is installed and can be executed, otherwise show an error message in red (but continue) ifeq ($(PYTHON_VERSION),) error_message="Error: Python version is not detected. Please ensure Python is installed and accessible in your PATH." error_message_red_colored=$(shell echo -e "\033[0;31m ${error_message} \033[0m") $(warning ${error_message_red_colored}) endif .PHONY: help # Show all available make commands. help: @# Magic line used to create self-documenting makefiles. @# Note that this means the documenting comment just before the command (but after the .PHONY) must be all one line, and should begin with a capital letter and end with a period. @# See https://stackoverflow.com/a/35730928 @awk '/^#/{c=substr($$0,3);next}c&&/^[[:alpha:]][[:alnum:]_-]+:/{print substr($$1,1,index($$1,":")-1) ";" c}1{c=0}' Makefile | column -s';' -t .PHONY: all # Install all dependencies, build frontend, and install editable Streamlit. all: init frontend .PHONY: all-dev # Install all dependencies and editable Streamlit, but do not build the frontend. all-dev: init pre-commit install @echo "" @echo " The frontend has *not* been rebuilt." @echo " If you need to make a wheel file, run:" @echo "" @echo " make frontend" @echo "" .PHONY: init # Install all dependencies and build protobufs. init: python-init frontend-init protobuf .PHONY: clean # Remove all generated files. clean: cd lib; rm -rf build dist .eggs *.egg-info rm -rf lib/conda-recipe/dist find . -name '*.pyc' -type f -delete || true find . -name __pycache__ -type d -delete || true find . -name .pytest_cache -exec rm -rfv {} \; || true find . -name '.benchmarks' -type d -exec rm -rfv {} \; || true rm -rf .mypy_cache rm -rf .ruff_cache rm -f lib/streamlit/proto/*_pb2.py* rm -rf lib/streamlit/static rm -f lib/Pipfile.lock rm -rf frontend/app/build rm -rf frontend/node_modules rm -rf frontend/app/performance/lighthouse/reports rm -rf frontend/app/node_modules rm -rf frontend/lib/node_modules rm -rf frontend/connection/node_modules rm -rf frontend/test_results rm -f frontend/protobuf/src/proto.js rm -f frontend/protobuf/src/proto.d.ts rm -rf frontend/public/reports rm -rf frontend/lib/dist rm -rf frontend/connection/dist rm -rf frontend/component-v2-lib/dist rm -rf ~/.cache/pre-commit rm -rf e2e_playwright/test-results rm -rf e2e_playwright/performance-results find . -name .streamlit -not \( -path './e2e_playwright/.streamlit' -o -path './e2e_playwright/config/.streamlit' \) -type d -exec rm -rfv {} \; || true cd lib; rm -rf .coverage .coverage\.* .PHONY: protobuf # Recompile Protobufs for Python and the frontend. protobuf: # Ensure protoc is installed and is >= MIN_PROTOC_VERSION. @if ! command -v protoc &> /dev/null ; then \ echo "protoc not installed."; \ exit 1; \ fi; \ \ PROTOC_VERSION=$$(protoc --version | cut -d ' ' -f 2); \ \ if [[ $$(echo -e "$$PROTOC_VERSION\n$(MIN_PROTOC_VERSION)" | sort -V | head -n1) != $(MIN_PROTOC_VERSION) ]]; then \ echo "Error: protoc version $${PROTOC_VERSION} is < $(MIN_PROTOC_VERSION)"; \ exit 1; \ else \ echo "protoc version $${PROTOC_VERSION} is >= than $(MIN_PROTOC_VERSION)"; \ fi; \ protoc \ --proto_path=proto \ --python_out=lib \ --mypy_out=lib \ proto/streamlit/proto/*.proto @# JS/TS protobuf generation cd frontend/ ; yarn workspace @streamlit/protobuf run generate-protobuf .PHONY: python-init # Install Python dependencies and Streamlit in editable mode. python-init: pip_args=("--editable" "./lib");\ if [ "${INSTALL_DEV_REQS}" = "true" ] ; then\ pip_args+=("--requirement" "lib/dev-requirements.txt"); \ fi;\ if [ "${INSTALL_TEST_REQS}" = "true" ] ; then\ pip_args+=("--requirement" "lib/test-requirements.txt"); \ fi;\ if command -v "uv" > /dev/null; then \ echo "Running command: uv pip install $${pip_args[@]}"; \ uv pip install $${pip_args[@]}; \ else \ echo "Running command: pip install $${pip_args[@]}"; \ pip install $${pip_args[@]}; \ fi;\ if [ "${INSTALL_TEST_REQS}" = "true" ] && [ "${INSTALL_PLAYWRIGHT}" = "true" ] ; then\ python -m playwright install --with-deps; \ fi; .PHONY: python-lint # Lint and check formatting of Python files. python-lint: # Checks if the formatting is correct: ruff format --check # Run linter: ruff check .PHONY: python-format # Format Python files. python-format: # Sort imports ( see https://docs.astral.sh/ruff/formatter/#sorting-imports ) ruff check --select I --fix # Run code formatter ruff format .PHONY: python-tests # Run Python unit tests. python-tests: cd lib; \ PYTHONPATH=. \ pytest -v -l \ -m "not performance" \ tests/ .PHONY: python-performance-tests # Run Python performance tests. python-performance-tests: cd lib; \ PYTHONPATH=. \ pytest -v -l \ -m "performance" \ --benchmark-autosave \ --benchmark-storage file://../.benchmarks/pytest \ tests/ .PHONY: python-integration-tests # Run Python integration tests. Requires `integration-requirements.txt` to be installed. python-integration-tests: cd lib; \ PYTHONPATH=. \ pytest -v -l \ --require-integration \ tests/ .PHONY: python-types # Run the Python type checker. python-types: # Run ty type checker: ty check # Run mypy type checker: mypy --config-file=mypy.ini .PHONY: frontend-init # Install all frontend dependencies. frontend-init: @cd frontend/ && { \ corepack enable yarn; \ if [ $$? -ne 0 ]; then \ echo "Error: 'corepack' command not found or failed to enable."; \ echo "Please ensure you are running the expected version of Node.js as defined in '.nvmrc'."; \ exit 1; \ fi; \ corepack install && yarn install --immutable; \ } .PHONY: frontend # Build the frontend. frontend: cd frontend/ ; yarn workspaces foreach --all --topological run build rsync -av --delete --delete-excluded --exclude=reports \ frontend/app/build/ lib/streamlit/static/ # Move manifest.json to a location that can actually be served by the Tornado # server's static asset handler. mv lib/streamlit/static/.vite/manifest.json lib/streamlit/static .PHONY: frontend-with-profiler # Build the frontend with the profiler enabled. frontend-with-profiler: # Build frontend dependent libraries (excluding app and lib): cd frontend/ ; yarn workspaces foreach --all --exclude @streamlit/app --exclude @streamlit/lib --topological run build # Build the app with the profiler enabled: cd frontend/ ; yarn workspace @streamlit/app buildWithProfiler rsync -av --delete --delete-excluded --exclude=reports \ frontend/app/build/ lib/streamlit/static/ .PHONY: frontend-fast # Build the frontend (as fast as possible). frontend-fast: cd frontend/ ; yarn workspaces foreach --recursive --topological --from @streamlit/app --exclude @streamlit/lib run build rsync -av --delete --delete-excluded --exclude=reports \ frontend/app/build/ lib/streamlit/static/ .PHONY: frontend-dev # Start the frontend development server. frontend-dev: cd frontend/ ; yarn start .PHONY: frontend-lint # Lint and check formatting of frontend files. frontend-lint: cd frontend/ ; yarn workspaces foreach --all run formatCheck cd frontend/ ; yarn workspaces foreach --all run lint .PHONY: frontend-types # Run the frontend type checker. frontend-types: cd frontend/ ; yarn workspaces foreach --all run typecheck .PHONY: frontend-format # Format frontend files. frontend-format: cd frontend/ ; yarn workspaces foreach --all run format .PHONY: frontend-tests # Run frontend unit tests and generate coverage report. frontend-tests: cd frontend; TESTPATH=$(TESTPATH) yarn testCoverage .PHONY: frontend-typesync # Check for unsynced frontend types. frontend-typesync: cd frontend/ ; yarn workspaces foreach --all --exclude @streamlit/typescript-config run typesync:ci --dry=fail || (\ echo -e "\033[0;31mTypesync check failed. Run 'make update-frontend-typesync' to fix.\033[0m"; \ exit 1 \ ) .PHONY: update-frontend-typesync # Installs missing typescript typings for dependencies. update-frontend-typesync: cd frontend/ ; yarn workspaces foreach --all --exclude @streamlit/typescript-config run typesync cd frontend/ ; yarn cd component-lib/ ; yarn typesync cd component-lib/ ; yarn .PHONY: update-snapshots # Update e2e playwright snapshots based on the latest completed CI run. update-snapshots: python ./scripts/update_e2e_snapshots.py .PHONY: update-snapshots-changed # Update e2e playwright snapshots of changed e2e files based on the latest completed CI run. update-snapshots-changed: python ./scripts/update_e2e_snapshots.py --changed .PHONY: update-material-icons # Update material icons based on latest Google material symbol version. update-material-icons: python ./scripts/update_material_icon_font_and_names.py .PHONY: update-emojis # Update emojis based on latest emoji version. update-emojis: python ./scripts/update_emojis.py .PHONY: update-notices # Update the notices file (licenses of frontend assets and dependencies). update-notices: cd frontend; \ yarn licenses generate-disclaimer --production --recursive > ../NOTICES ./scripts/append_license.sh frontend/app/src/assets/fonts/Source_Code/Source-Code.LICENSE ./scripts/append_license.sh frontend/app/src/assets/fonts/Source_Sans/Source-Sans.LICENSE ./scripts/append_license.sh frontend/app/src/assets/fonts/Source_Serif/Source-Serif.LICENSE ./scripts/append_license.sh frontend/app/src/assets/img/Material-Icons.LICENSE ./scripts/append_license.sh frontend/app/src/assets/img/Open-Iconic.LICENSE ./scripts/append_license.sh frontend/lib/src/vendor/react-bootstrap-LICENSE.txt ./scripts/append_license.sh frontend/lib/src/vendor/fzy.js/fzyjs-LICENSE.txt .PHONY: update-headers # Update all license headers. update-headers: pre-commit run insert-license --all-files --hook-stage manual pre-commit run license-headers --all-files --hook-stage manual .PHONY: update-min-deps # Update minimum dependency constraints file. update-min-deps: INSTALL_DEV_REQS=false INSTALL_TEST_REQS=false make python-init >/dev/null python scripts/get_min_versions.py >scripts/assets/min-constraints-gen.txt .PHONY: debug-e2e-test # Run a playwright e2e test in debug mode. Use it via `make debug-e2e-test st_command_test.py`. debug-e2e-test: @if [[ ! "$(filter-out $@,$(MAKECMDGOALS))" == *"_test"* ]]; then \ echo "Error: Test script name must contain '_test' in the filename"; \ exit 1; \ fi @echo "Running test: $(filter-out $@,$(MAKECMDGOALS)) in debug mode." @TEST_SCRIPT=$$(echo $(filter-out $@,$(MAKECMDGOALS)) | sed 's|^e2e_playwright/||'); \ cd e2e_playwright && PWDEBUG=1 pytest $$TEST_SCRIPT --tracing on || ( \ echo "If you implemented changes in the frontend, make sure to call \`make frontend-fast\` to use the up-to-date frontend build in the test."; \ echo "You can find test-results in ./e2e_playwright/test-results"; \ exit 1 \ ) .PHONY: run-e2e-test # Run a playwright e2e test. Use it via `make run-e2e-test st_command_test.py`. run-e2e-test: @if [[ ! "$(filter-out $@,$(MAKECMDGOALS))" == *"_test"* ]]; then \ echo "Error: Test script name must contain '_test' in the filename"; \ exit 1; \ fi @echo "Running test: $(filter-out $@,$(MAKECMDGOALS))" @TEST_SCRIPT=$$(echo $(filter-out $@,$(MAKECMDGOALS)) | sed 's|^e2e_playwright/||'); \ cd e2e_playwright && pytest $$TEST_SCRIPT --tracing retain-on-failure --reruns 0 || ( \ echo "If you implemented changes in the frontend, make sure to call \`make frontend-fast\` to use the up-to-date frontend build in the test."; \ echo "You can find test-results in ./e2e_playwright/test-results"; \ exit 1 \ ) .PHONY: trace-e2e-test # Run e2e test with tracing and view it. Use via `make trace-e2e-test <test_file.py>::<test_func>`. trace-e2e-test: @if [[ -z "$(filter-out $@,$(MAKECMDGOALS))" ]]; then \ echo "Error: Please specify a single test to run"; \ echo "Usage: make trace-e2e-test <test_file.py>::<test_function>"; \ echo "Example: make trace-e2e-test st_audio_input_test.py::test_audio_input_renders"; \ exit 1; \ fi @TEST_ARG=$$(echo $(filter-out $@,$(MAKECMDGOALS)) | sed 's|^e2e_playwright/||'); \ if [[ ! "$$TEST_ARG" == *"::"* ]]; then \ echo "Error: You must specify a single test function, not an entire test file"; \ echo "Usage: make trace-e2e-test <test_file.py>::<test_function>"; \ echo "Example: make trace-e2e-test st_audio_input_test.py::test_audio_input_renders"; \ exit 1; \ fi; \ echo "Clearing previous traces..."; \ rm -rf e2e_playwright/test-results/traces; \ mkdir -p e2e_playwright/test-results/traces; \ echo "Running test with tracing: $$TEST_ARG"; \ (cd e2e_playwright && pytest $$TEST_ARG --tracing=on --output=test-results/traces || true); \ echo ""; \ echo "Launching trace viewer..."; \ TRACE_FILE=$$(find e2e_playwright/test-results/traces -name "trace.zip" -type f 2>/dev/null | head -n 1); \ if [[ -n "$$TRACE_FILE" ]]; then \ python -m playwright show-trace "$$TRACE_FILE"; \ else \ echo "No trace file found. Check e2e_playwright/test-results/traces/ directory."; \ fi .PHONY: lighthouse-tests # Run Lighthouse performance tests. lighthouse-tests: cd frontend/app; \ yarn run lighthouse:run .PHONY: bare-execution-tests # Run all e2e tests in bare mode. bare-execution-tests: PYTHONPATH=. \ python3 scripts/run_bare_execution_tests.py .PHONY: cli-smoke-tests # Run CLI smoke tests. cli-smoke-tests: python3 scripts/cli_smoke_tests.py .PHONY: autofix # Autofix linting and formatting errors. autofix: # Python fixes: make python-format ruff check --fix # JS fixes: make frontend-init make frontend-format cd frontend/ ; yarn workspaces foreach --all run lint --fix # Other fixes: make update-notices # Run all pre-commit fixes but not fail if any of them don't work. pre-commit run --all-files --hook-stage manual || true .PHONY: package # Create Python wheel files in `dist/`. package: init frontend # Get rid of the old build and dist folders to make sure that we clean old js and css. rm -rfv lib/build lib/dist cd lib ; python3 setup.py bdist_wheel sdist .PHONY: conda-package # Create conda distribution files. conda-package: init if [ "${SNOWPARK_CONDA_BUILD}" = "1" ] ; then\ echo "Creating Snowpark conda build, so skipping building frontend assets."; \ else \ make frontend; \ fi rm -rf lib/conda-recipe/dist mkdir lib/conda-recipe/dist # This can take upwards of 20 minutes to complete in a fresh conda installation! (Dependency solving is slow.) # NOTE: Running the following command requires both conda and conda-build to # be installed. GIT_HASH=$$(git rev-parse --short HEAD) conda build lib/conda-recipe --output-folder lib/conda-recipe/dist
12
streamlit_public_repos
/content/streamlit_public_repos/streamlit/CONTRIBUTING.md
🎉 Thanks for your interest in helping improve Streamlit! 🎉 Before contributing, please read our guidelines here: https://github.com/streamlit/streamlit/wiki/Contributing
13
streamlit_public_repos
/content/streamlit_public_repos/streamlit/AGENTS.md
# Streamlit Repo Overview Streamlit is an open-source (Apache 2.0) Python library for creating interactive web applications and dashboards with focus on data apps and internal tools. ## Tech Stack - **Backend (Server):** Python, Tornado server, pytest - **Frontend (Web UI):** TypeScript, React, Emotion (CSS-in-JS), Vite, Vitest - **Communication:** Protocol Buffers (protobuf) over WebSocket. ## Folder Structure - `lib/`: All backend code and assets. - `streamlit/`: The main Streamlit library package. - `streamlit/elements/`: Backend code of elements and widgets. - `streamlit/runtime/`: App runtime and execution logic. - `streamlit/web/`: Web server and CLI implementation - `tests`: Python unit tests (pytest). - `frontend/`: All frontend code and assets. - `app/`: Streamlit application UI. - `lib/`: Shared TypeScript library that contains elements, widgets, and layouts. - `connection/`: WebSocket connection handling logic. - `utils/`: Shared utilities. - `proto/streamlit/proto/`: Protobuf definitions for client-server communication. - `e2e_playwright/`: E2E tests using playwright (via pytest). - `scripts/`: Utility scripts for development and CI/CD. - `component-lib/`: Library for building Streamlit custom components. - `.github/workflows/`: GitHub Actions workflows used for CI/CD. ### Shell & Build Policy (AI Agents) - Prefer `make` targets for all dev tasks (tests, lint, format, builds). - For Python unit tests: `pytest` commands are allowed and encouraged for running specific tests during development. - For E2E tests: `pytest` commands targeting `e2e_playwright/` files are blocked by policy. Use `make run-e2e-test <filename>` instead. ## `make` commands Selection of `make` commands for development (run in the repo root): - `help`: Show all available make commands. - `protobuf`: Recompile Protobufs for Python and the frontend. - `autofix`: Autofix linting and formatting errors. **Backend Development (Python):** - `python-lint`: Lint and check formatting of Python files (ruff). - `python-tests`: Run all Python unit tests (pytest). - `python-types`: Run the Python type checker (mypy & ty). - `python-format`: Format Python files (ruff). **Frontend Development (TypeScript):** - `frontend-fast`: Build the frontend (vite). - `frontend-dev`: Start the frontend development server (hot-reload). - `frontend-lint`: Lint and check formatting of frontend files (eslint). - `frontend-types`: Run the TypeScript type checker (tsc). - `frontend-format`: Format frontend files (eslint). - `frontend-tests`: Run all frontend unit tests (vitest). **E2E Testing (Playwright):** - `debug-e2e-test`: Run e2e test in debug mode, via: `make debug-e2e-test st_command_test.py`. - `run-e2e-test`: Run e2e test, via: `make run-e2e-test st_command_test.py`. ### Development Tips - **Follow existing patterns**: Check neighboring files for conventions. - You can use the `work-tmp` directory to store temporary files, specs, and scripts. - If you fail to run a `make` command, remember to run it from the root / top-level directory. - The hot-reload dev server for the frontend will be available at <http://localhost:3000>. ## Testing Strategy - **Python Unit Tests**: Test internal behavior without frontend. - **Frontend Unit Tests**: Test React components, hooks, and related functionality with Vitest and React Testing Library. - **E2E Tests**: Test the entire app logic end-to-end with Playwright. - **(Python) Type Tests**: Verify public API typing with mypy `assert_type`. - Prefer running specific tests / test scripts for newly added tests instead the entire test suite.
14
streamlit_public_repos
/content/streamlit_public_repos/streamlit/LICENSE
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
15
streamlit
/content/streamlit_public_repos/streamlit/.devcontainer/Dockerfile
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. FROM mcr.microsoft.com/devcontainers/python:3.12 ENV PYTHONUNBUFFERED=1 ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0 # Install system dependencies RUN apt-get update && apt-get install -y \ build-essential \ curl \ git \ rsync \ unzip \ protobuf-compiler \ && rm -rf /var/lib/apt/lists/* # Install Node.js RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get install -y nodejs # Enable corepack RUN corepack enable # Update pip RUN pip install --upgrade pip
16
streamlit
/content/streamlit_public_repos/streamlit/.devcontainer/devcontainer.json
{ "name": "streamlit-dev", "build": { "dockerfile": "Dockerfile" }, "forwardPorts": [3000], "portsAttributes": { "3000": { "label": "Dev Server", "onAutoForward": "notify" } }, "customizations": { "vscode": { "extensions": [ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "ms-python.mypy-type-checker", "ms-python.python", "ms-python.debugpy", "ms-python.vscode-pylance", "charliermarsh.ruff", "EditorConfig.EditorConfig", "vitest.explorer", "tamasfe.even-better-toml" ], "settings": { "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[python]": { "editor.defaultFormatter": "charliermarsh.ruff", "editor.codeActionsOnSave": { "source.fixAll.ruff": "explicit", "source.organizeImports.ruff": "explicit" }, "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": true }, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": "explicit" } }, "[yaml]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[yml]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, "[toml]": { "editor.defaultFormatter": "tamasfe.even-better-toml", "editor.formatOnSave": true }, "files.trimTrailingWhitespace": true, "files.trimFinalNewlines": true, "files.insertFinalNewline": true, "search.exclude": { "lib/build/**": true }, "makefile.configureOnOpen": false, "eslint.workingDirectories": [ { "mode": "auto" } ], "eslint.lintTask.enable": true, "editor.codeActionsOnSave": { "source.fixAll": "always" }, "vitest.maximumConfigs": 5, "mypy-type-checker.importStrategy": "fromEnvironment", "mypy-type-checker.preferDaemon": false, "mypy-type-checker.args": ["--config-file=mypy.ini"], "ruff.nativeServer": true, "ruff.organizeImports": true, "ruff.fixAll": true, "python.analysis.exclude": ["lib/build"], "python.analysis.include": [ "lib/**/*", "scripts/**/*", "e2e_playwright/**/*" ], "python.analysis.extraPaths": ["./lib"], "python.analysis.typeCheckingMode": "off", "python.terminal.activateEnvInCurrentTerminal": true, "python.testing.pytestEnabled": true, "python.testing.autoTestDiscoverOnSaveEnabled": true, "cursorpyright.analysis.exclude": ["lib/build"], "cursorpyright.analysis.include": [ "lib/**/*", "scripts/**/*", "e2e_playwright/**/*" ], "cursorpyright.analysis.extraPaths": ["./lib"], "cursorpyright.analysis.typeCheckingMode": "off", "cursorpyright.analysis.useTypingExtensions": true, "cursorpyright.shouldImportPylanceSettings": "always", "cursorpyright.analysis.logLevel": "Information", "terminal.integrated.profiles.linux": { "frontend-dev": { "path": "bash", "args": ["-c", "make frontend-dev"] } }, "typescript.tsdk": "frontend/node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "git.branchProtection": ["develop"] } } }, "updateContentCommand": "make all-dev", "postStartCommand": "make frontend-dev" }
17
streamlit
/content/streamlit_public_repos/streamlit/frontend/tsconfig.json
{ "files": [], "references": [ { "path": "./app" }, { "path": "./lib" }, { "path": "./connection" }, { "path": "./utils" } ], "compilerOptions": { "composite": true, "declaration": true, "declarationMap": false, "sourceMap": false, "noEmit": true } }
18
streamlit
/content/streamlit_public_repos/streamlit/frontend/.yarnrc.yml
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. nodeLinker: node-modules plugins: - checksum: 374f735053958b77583ef7b70e56a59540d1d9c681f04b8ab7a600f4325301d2e1fb67c51d34ba75bbbc4e71f8c003fbc52b1f22d7daa30dca655f1a1bf205a1 path: .yarn/plugins/@yarnpkg/plugin-licenses.cjs spec: "https://raw.githubusercontent.com/mhassan1/yarn-plugin-licenses/v0.15.0/bundles/@yarnpkg/plugin-licenses.js"
19
streamlit
/content/streamlit_public_repos/streamlit/frontend/README.md
# Streamlit Frontend ## What is Streamlit Frontend? Streamlit Frontend is a set of frontend packages tied to behaviors that make up a Streamlit App. Originally, Streamlit Frontend was a monolith, but we have since found unique ways to inject Streamlit behavior in multiple different products. ## Packages The following are packages: - **app** - The Streamlit app layout (used to bundle into Streamlit library) - **connection** - Code to establish the Websocket connection - **lib** - Right now, this is a catchall, but this is being refactored to be more focused. Namely, it supports a Streamlit "View" that contains elements, widgets, and layouts. - **protobuf** - Our protobuf code in one library. - **typescript-config** - configuration for typescript across all the packages. - **utils** - some shared utils used across Streamlit ## Getting Started - Run `yarn start` or `make frontend-dev` to start the development server. ## Dependency Diagram The dependency diagram below describes the interaction between the packages in our workspace. ```mermaid graph LR; app -->|side loads| lib app -->|depends on| connection app -->|depends on| protobuf app -->|depends on| utils lib -->|depends on| protobuf lib -->|depends on| utils connection -->|depends on| protobuf connection -->|depends on| utils lib -.->|dev dep| typescript-config connection -.->|dev dep| typescript-config protobuf -.->|dev dep| typescript-config utils -.->|dev dep| typescript-config app -.->|dev dep| typescript-config ``` ## License Streamlit is completely free and open-source and licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license.
20
streamlit
/content/streamlit_public_repos/streamlit/frontend/package.json
{ "name": "streamlit", "version": "1.51.0", "private": true, "workspaces": [ "app", "component-v2-lib", "connection", "eslint-plugin-streamlit-custom", "lib", "protobuf", "typescript-config", "utils" ], "scripts": { "start": "yarn workspace @streamlit/app start", "buildWithProfiler": "yarn workspace @streamlit/app buildWithProfiler", "test": "vitest run", "testWatch": "vitest", "testCoverage": "vitest run --coverage" }, "resolutions": { "d3-color": "^3.1.0", "dompurify": "^3.2.4", "prismjs": "^1.30.0", "@protobufjs/inquire@npm:^1.1.0": "patch:@protobufjs/inquire@npm%3A1.1.0#~/.yarn/patches/@protobufjs-inquire-npm-1.1.0-3c7759e9ce.patch" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ], "packageManager": "yarn@4.5.3", "devDependencies": { "@vitest/coverage-v8": "^3.2.4", "concurrently": "^9.2.1", "jiti": "^2.5.1", "vitest": "^3.2.4" } }
21
streamlit
/content/streamlit_public_repos/streamlit/frontend/CLAUDE.md
@./AGENTS.md
22
streamlit
/content/streamlit_public_repos/streamlit/frontend/yarn.lock
# This file is generated by running "yarn install" inside your project. # Manual changes might be lost - proceed with caution! __metadata: version: 8 cacheKey: 10c0 "@adobe/css-tools@npm:^4.4.0": version: 4.4.0 resolution: "@adobe/css-tools@npm:4.4.0" checksum: 10c0/d65ddc719389bf469097df80fb16a8af48a973dea4b57565789d70ac8e7ab4987e6dc0095da3ed5dc16c1b6f8960214a7590312eeda8abd543d91fd0f59e6c94 languageName: node linkType: hard "@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0": version: 2.3.0 resolution: "@ampproject/remapping@npm:2.3.0" dependencies: "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.24" checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed languageName: node linkType: hard "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.26.2": version: 7.26.2 resolution: "@babel/code-frame@npm:7.26.2" dependencies: "@babel/helper-validator-identifier": "npm:^7.25.9" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.0.0" checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 languageName: node linkType: hard "@babel/code-frame@npm:^7.10.4": version: 7.27.1 resolution: "@babel/code-frame@npm:7.27.1" dependencies: "@babel/helper-validator-identifier": "npm:^7.27.1" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.1.1" checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00 languageName: node linkType: hard "@babel/compat-data@npm:^7.25.9": version: 7.26.2 resolution: "@babel/compat-data@npm:7.26.2" checksum: 10c0/c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12 languageName: node linkType: hard "@babel/core@npm:^7.21.3, @babel/core@npm:^7.24.4": version: 7.26.0 resolution: "@babel/core@npm:7.26.0" dependencies: "@ampproject/remapping": "npm:^2.2.0" "@babel/code-frame": "npm:^7.26.0" "@babel/generator": "npm:^7.26.0" "@babel/helper-compilation-targets": "npm:^7.25.9" "@babel/helper-module-transforms": "npm:^7.26.0" "@babel/helpers": "npm:^7.26.0" "@babel/parser": "npm:^7.26.0" "@babel/template": "npm:^7.25.9" "@babel/traverse": "npm:^7.25.9" "@babel/types": "npm:^7.26.0" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" checksum: 10c0/91de73a7ff5c4049fbc747930aa039300e4d2670c2a91f5aa622f1b4868600fc89b01b6278385fbcd46f9574186fa3d9b376a9e7538e50f8d118ec13cfbcb63e languageName: node linkType: hard "@babel/generator@npm:^7.23.5": version: 7.27.5 resolution: "@babel/generator@npm:7.27.5" dependencies: "@babel/parser": "npm:^7.27.5" "@babel/types": "npm:^7.27.3" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^3.0.2" checksum: 10c0/8f649ef4cd81765c832bb11de4d6064b035ffebdecde668ba7abee68a7b0bce5c9feabb5dc5bb8aeba5bd9e5c2afa3899d852d2bd9ca77a711ba8c8379f416f0 languageName: node linkType: hard "@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0": version: 7.26.2 resolution: "@babel/generator@npm:7.26.2" dependencies: "@babel/parser": "npm:^7.26.2" "@babel/types": "npm:^7.26.0" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^3.0.2" checksum: 10c0/167ebce8977142f5012fad6bd91da51ac52bcd752f2261a54b7ab605d928aebe57e21636cdd2a9c7757e552652c68d9fcb5d40b06fcb66e02d9ee7526e118a5c languageName: node linkType: hard "@babel/helper-compilation-targets@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-compilation-targets@npm:7.25.9" dependencies: "@babel/compat-data": "npm:^7.25.9" "@babel/helper-validator-option": "npm:^7.25.9" browserslist: "npm:^4.24.0" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" checksum: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa languageName: node linkType: hard "@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-module-imports@npm:7.25.9" dependencies: "@babel/traverse": "npm:^7.25.9" "@babel/types": "npm:^7.25.9" checksum: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70 languageName: node linkType: hard "@babel/helper-module-transforms@npm:^7.26.0": version: 7.26.0 resolution: "@babel/helper-module-transforms@npm:7.26.0" dependencies: "@babel/helper-module-imports": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" "@babel/traverse": "npm:^7.25.9" peerDependencies: "@babel/core": ^7.0.0 checksum: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a languageName: node linkType: hard "@babel/helper-string-parser@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-string-parser@npm:7.25.9" checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6 languageName: node linkType: hard "@babel/helper-string-parser@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-string-parser@npm:7.27.1" checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602 languageName: node linkType: hard "@babel/helper-validator-identifier@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-validator-identifier@npm:7.25.9" checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d languageName: node linkType: hard "@babel/helper-validator-identifier@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-validator-identifier@npm:7.27.1" checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84 languageName: node linkType: hard "@babel/helper-validator-option@npm:^7.25.9": version: 7.25.9 resolution: "@babel/helper-validator-option@npm:7.25.9" checksum: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e languageName: node linkType: hard "@babel/helpers@npm:^7.26.0": version: 7.26.10 resolution: "@babel/helpers@npm:7.26.10" dependencies: "@babel/template": "npm:^7.26.9" "@babel/types": "npm:^7.26.10" checksum: 10c0/f99e1836bcffce96db43158518bb4a24cf266820021f6461092a776cba2dc01d9fc8b1b90979d7643c5c2ab7facc438149064463a52dd528b21c6ab32509784f languageName: node linkType: hard "@babel/parser@npm:^7.20.15, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2": version: 7.26.2 resolution: "@babel/parser@npm:7.26.2" dependencies: "@babel/types": "npm:^7.26.0" bin: parser: ./bin/babel-parser.js checksum: 10c0/751a743087b3a9172a7599f1421830d44c38f065ef781588d2bfb1c98f9b461719a226feb13c868d7a284783eee120c88ea522593118f2668f46ebfb1105c4d7 languageName: node linkType: hard "@babel/parser@npm:^7.25.3": version: 7.26.5 resolution: "@babel/parser@npm:7.26.5" dependencies: "@babel/types": "npm:^7.26.5" bin: parser: ./bin/babel-parser.js checksum: 10c0/2e77dd99ee028ee3c10fa03517ae1169f2432751adf71315e4dc0d90b61639d51760d622f418f6ac665ae4ea65f8485232a112ea0e76f18e5900225d3d19a61e languageName: node linkType: hard "@babel/parser@npm:^7.26.9": version: 7.26.9 resolution: "@babel/parser@npm:7.26.9" dependencies: "@babel/types": "npm:^7.26.9" bin: parser: ./bin/babel-parser.js checksum: 10c0/4b9ef3c9a0d4c328e5e5544f50fe8932c36f8a2c851e7f14a85401487cd3da75cad72c2e1bcec1eac55599a6bbb2fdc091f274c4fcafa6bdd112d4915ff087fc languageName: node linkType: hard "@babel/parser@npm:^7.27.5": version: 7.27.5 resolution: "@babel/parser@npm:7.27.5" dependencies: "@babel/types": "npm:^7.27.3" bin: parser: ./bin/babel-parser.js checksum: 10c0/f7faaebf21cc1f25d9ca8ac02c447ed38ef3460ea95be7ea760916dcf529476340d72a5a6010c6641d9ed9d12ad827c8424840277ec2295c5b082ba0f291220a languageName: node linkType: hard "@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.14.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.24.4, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.8.7": version: 7.26.10 resolution: "@babel/runtime@npm:7.26.10" dependencies: regenerator-runtime: "npm:^0.14.0" checksum: 10c0/6dc6d88c7908f505c4f7770fb4677dfa61f68f659b943c2be1f2a99cb6680343462867abf2d49822adc435932919b36c77ac60125793e719ea8745f2073d3745 languageName: node linkType: hard "@babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.20.7": version: 7.27.0 resolution: "@babel/runtime@npm:7.27.0" dependencies: regenerator-runtime: "npm:^0.14.0" checksum: 10c0/35091ea9de48bd7fd26fb177693d64f4d195eb58ab2b142b893b7f3fa0f1d7c677604d36499ae0621a3703f35ba0c6a8f6c572cc8f7dc0317213841e493cf663 languageName: node linkType: hard "@babel/template@npm:^7.25.9": version: 7.25.9 resolution: "@babel/template@npm:7.25.9" dependencies: "@babel/code-frame": "npm:^7.25.9" "@babel/parser": "npm:^7.25.9" "@babel/types": "npm:^7.25.9" checksum: 10c0/ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab languageName: node linkType: hard "@babel/template@npm:^7.26.9": version: 7.26.9 resolution: "@babel/template@npm:7.26.9" dependencies: "@babel/code-frame": "npm:^7.26.2" "@babel/parser": "npm:^7.26.9" "@babel/types": "npm:^7.26.9" checksum: 10c0/019b1c4129cc01ad63e17529089c2c559c74709d225f595eee017af227fee11ae8a97a6ab19ae6768b8aa22d8d75dcb60a00b28f52e9fa78140672d928bc1ae9 languageName: node linkType: hard "@babel/traverse@npm:^7.25.9": version: 7.25.9 resolution: "@babel/traverse@npm:7.25.9" dependencies: "@babel/code-frame": "npm:^7.25.9" "@babel/generator": "npm:^7.25.9" "@babel/parser": "npm:^7.25.9" "@babel/template": "npm:^7.25.9" "@babel/types": "npm:^7.25.9" debug: "npm:^4.3.1" globals: "npm:^11.1.0" checksum: 10c0/e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1 languageName: node linkType: hard "@babel/types@npm:^7.21.3, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": version: 7.26.0 resolution: "@babel/types@npm:7.26.0" dependencies: "@babel/helper-string-parser": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" checksum: 10c0/b694f41ad1597127e16024d766c33a641508aad037abd08d0d1f73af753e1119fa03b4a107d04b5f92cc19c095a594660547ae9bead1db2299212d644b0a5cb8 languageName: node linkType: hard "@babel/types@npm:^7.26.10": version: 7.26.10 resolution: "@babel/types@npm:7.26.10" dependencies: "@babel/helper-string-parser": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" checksum: 10c0/7a7f83f568bfc3dfabfaf9ae3a97ab5c061726c0afa7dcd94226d4f84a81559da368ed79671e3a8039d16f12476cf110381a377ebdea07587925f69628200dac languageName: node linkType: hard "@babel/types@npm:^7.26.5": version: 7.26.5 resolution: "@babel/types@npm:7.26.5" dependencies: "@babel/helper-string-parser": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" checksum: 10c0/0278053b69d7c2b8573aa36dc5242cad95f0d965e1c0ed21ccacac6330092e59ba5949753448f6d6eccf6ad59baaef270295cc05218352e060ea8c68388638c4 languageName: node linkType: hard "@babel/types@npm:^7.26.9": version: 7.26.9 resolution: "@babel/types@npm:7.26.9" dependencies: "@babel/helper-string-parser": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" checksum: 10c0/999c56269ba00e5c57aa711fbe7ff071cd6990bafd1b978341ea7572cc78919986e2aa6ee51dacf4b6a7a6fa63ba4eb3f1a03cf55eee31b896a56d068b895964 languageName: node linkType: hard "@babel/types@npm:^7.27.3": version: 7.27.6 resolution: "@babel/types@npm:7.27.6" dependencies: "@babel/helper-string-parser": "npm:^7.27.1" "@babel/helper-validator-identifier": "npm:^7.27.1" checksum: 10c0/39d556be114f2a6d874ea25ad39826a9e3a0e98de0233ae6d932f6d09a4b222923a90a7274c635ed61f1ba49bbd345329226678800900ad1c8d11afabd573aaf languageName: node linkType: hard "@bcoe/v8-coverage@npm:^1.0.2": version: 1.0.2 resolution: "@bcoe/v8-coverage@npm:1.0.2" checksum: 10c0/1eb1dc93cc17fb7abdcef21a6e7b867d6aa99a7ec88ec8207402b23d9083ab22a8011213f04b2cf26d535f1d22dc26139b7929e6c2134c254bd1e14ba5e678c3 languageName: node linkType: hard "@carto/api-client@npm:^0.4.4": version: 0.4.6 resolution: "@carto/api-client@npm:0.4.6" dependencies: "@turf/bbox-clip": "npm:^7.1.0" "@turf/bbox-polygon": "npm:^7.1.0" "@turf/helpers": "npm:^7.1.0" "@turf/invariant": "npm:^7.1.0" "@turf/union": "npm:^7.1.0" "@types/geojson": "npm:^7946.0.15" checksum: 10c0/0fecabaa58226603c2f200d811db07ef620690e619d18bbd1c906b093a0fe8215c5ecf1a0571416830a3564fd9b3a5379d7b261504e17cbdc08f4de80443fe7e languageName: node linkType: hard "@choojs/findup@npm:^0.2.0": version: 0.2.1 resolution: "@choojs/findup@npm:0.2.1" dependencies: commander: "npm:^2.15.1" bin: findup: bin/findup.js checksum: 10c0/0aa58fde413a4cbfd7c67551df1338b638594c46dfa96aa1d79065b88f944a4465d95f3540f4e864130c532182a20cbdef3c2817d20f51253c94096fe57e970f languageName: node linkType: hard "@date-io/core@npm:^2.17.0": version: 2.17.0 resolution: "@date-io/core@npm:2.17.0" checksum: 10c0/e56df44e9b0bc14eefad8509fef2f4a0b847ea01ad0f2cf6b7b5fce5f69120e607a90b6436e84266a2b0336b6bb986fd3f56c3f4b897db85578b9050ac6610bd languageName: node linkType: hard "@date-io/date-fns@npm:^2.6.2": version: 2.17.0 resolution: "@date-io/date-fns@npm:2.17.0" dependencies: "@date-io/core": "npm:^2.17.0" peerDependencies: date-fns: ^2.0.0 peerDependenciesMeta: date-fns: optional: true checksum: 10c0/0c2a4d4a841d7918e3e7457ee18d3cee469246be71a6e78879c7b0ec7bac29de7f3a63659fed6b1da2976527bec9886f509836d399c6a066aa502acf9ade2e60 languageName: node linkType: hard "@deck.gl/aggregation-layers@npm:9.1.14, @deck.gl/aggregation-layers@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/aggregation-layers@npm:9.1.14" dependencies: "@luma.gl/constants": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" "@math.gl/core": "npm:^4.1.0" "@math.gl/web-mercator": "npm:^4.1.0" d3-hexbin: "npm:^0.2.1" peerDependencies: "@deck.gl/core": ^9.1.0 "@deck.gl/layers": ^9.1.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 checksum: 10c0/76afda925e512107d11bcb62428f8d158d92b66b096882efdadb45b3c4cc03660206ae1f0e7bbf7bf42ab714f9dcab79c545e4f79617dff4484e1ca78ed5042b languageName: node linkType: hard "@deck.gl/arcgis@npm:9.1.14": version: 9.1.14 resolution: "@deck.gl/arcgis@npm:9.1.14" dependencies: "@luma.gl/constants": "npm:~9.1.9" esri-loader: "npm:^3.7.0" peerDependencies: "@arcgis/core": ^4.0.0 "@deck.gl/core": ^9.1.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 "@luma.gl/webgl": ~9.1.9 checksum: 10c0/f2543b4a67c3466a400aededd897d7b0df7d82a53443cfe188f023a695f359b40dc30ea0d9cde943242087abf475252951a8f90ce4224853584d16d72ca936e3 languageName: node linkType: hard "@deck.gl/carto@npm:9.1.14, @deck.gl/carto@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/carto@npm:9.1.14" dependencies: "@carto/api-client": "npm:^0.4.4" "@loaders.gl/compression": "npm:^4.2.0" "@loaders.gl/gis": "npm:^4.2.0" "@loaders.gl/loader-utils": "npm:^4.2.0" "@loaders.gl/mvt": "npm:^4.2.0" "@loaders.gl/schema": "npm:^4.2.0" "@loaders.gl/tiles": "npm:^4.2.0" "@luma.gl/core": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" "@math.gl/web-mercator": "npm:^4.1.0" "@types/d3-array": "npm:^3.0.2" "@types/d3-color": "npm:^1.4.2" "@types/d3-scale": "npm:^3.0.0" cartocolor: "npm:^5.0.2" d3-array: "npm:^3.2.0" d3-color: "npm:^3.1.0" d3-format: "npm:^3.1.0" d3-scale: "npm:^4.0.0" earcut: "npm:^2.2.4" h3-js: "npm:^4.1.0" moment-timezone: "npm:^0.5.33" pbf: "npm:^3.2.1" quadbin: "npm:^0.4.0" peerDependencies: "@deck.gl/aggregation-layers": ^9.1.0 "@deck.gl/core": ^9.1.0 "@deck.gl/extensions": ^9.1.0 "@deck.gl/geo-layers": ^9.1.0 "@deck.gl/layers": ^9.1.0 "@loaders.gl/core": ^4.2.0 "@luma.gl/core": ~9.1.9 checksum: 10c0/835b9d2457e85a7df28918f5943e561667e49831aa64c54745e2953a4ab5b671877d35b9eca453f9da5122162ffd8c3c63dcc04c3fa1f873999298db5121c698 languageName: node linkType: hard "@deck.gl/core@npm:9.1.14, @deck.gl/core@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/core@npm:9.1.14" dependencies: "@loaders.gl/core": "npm:^4.2.0" "@loaders.gl/images": "npm:^4.2.0" "@luma.gl/constants": "npm:~9.1.9" "@luma.gl/core": "npm:~9.1.9" "@luma.gl/engine": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" "@luma.gl/webgl": "npm:~9.1.9" "@math.gl/core": "npm:^4.1.0" "@math.gl/sun": "npm:^4.1.0" "@math.gl/types": "npm:^4.1.0" "@math.gl/web-mercator": "npm:^4.1.0" "@probe.gl/env": "npm:^4.1.0" "@probe.gl/log": "npm:^4.1.0" "@probe.gl/stats": "npm:^4.1.0" "@types/offscreencanvas": "npm:^2019.6.4" gl-matrix: "npm:^3.0.0" mjolnir.js: "npm:^3.0.0" checksum: 10c0/4ad91e4c9f59eb464494760902cba94abe5c03fd4b0f739ecf585b1ed9e0282d2e409cd9dc65f9e5da1a2eb01b2cdef72bd499d06ec5672e4a016a94323c0979 languageName: node linkType: hard "@deck.gl/extensions@npm:9.1.14": version: 9.1.14 resolution: "@deck.gl/extensions@npm:9.1.14" dependencies: "@luma.gl/constants": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" "@math.gl/core": "npm:^4.1.0" peerDependencies: "@deck.gl/core": ^9.1.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 checksum: 10c0/ea546453d59c9c2267a836375dde6bf300482f12925896c09abfa7294b720aa3c772d91e91d8e73ac64e9e3d751b89cbe33e277ac6eddbd0e9db58ee2e29f67c languageName: node linkType: hard "@deck.gl/geo-layers@npm:9.1.14, @deck.gl/geo-layers@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/geo-layers@npm:9.1.14" dependencies: "@loaders.gl/3d-tiles": "npm:^4.2.0" "@loaders.gl/gis": "npm:^4.2.0" "@loaders.gl/loader-utils": "npm:^4.2.0" "@loaders.gl/mvt": "npm:^4.2.0" "@loaders.gl/schema": "npm:^4.2.0" "@loaders.gl/terrain": "npm:^4.2.0" "@loaders.gl/tiles": "npm:^4.2.0" "@loaders.gl/wms": "npm:^4.2.0" "@luma.gl/gltf": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" "@math.gl/core": "npm:^4.1.0" "@math.gl/culling": "npm:^4.1.0" "@math.gl/web-mercator": "npm:^4.1.0" "@types/geojson": "npm:^7946.0.8" h3-js: "npm:^4.1.0" long: "npm:^3.2.0" peerDependencies: "@deck.gl/core": ^9.1.0 "@deck.gl/extensions": ^9.1.0 "@deck.gl/layers": ^9.1.0 "@deck.gl/mesh-layers": ^9.1.0 "@loaders.gl/core": ^4.2.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 checksum: 10c0/5995e77e7536b842a2007dc889c1bc3442d16fa97a97f9cd947e3674ff214d23a5dd0fe091c88b6ae9802887d209fdd29ddd627fc95fd2d114ca8f424c074fa6 languageName: node linkType: hard "@deck.gl/google-maps@npm:9.1.14": version: 9.1.14 resolution: "@deck.gl/google-maps@npm:9.1.14" dependencies: "@luma.gl/constants": "npm:~9.1.9" "@math.gl/core": "npm:^4.1.0" "@types/google.maps": "npm:^3.48.6" peerDependencies: "@deck.gl/core": ^9.1.0 "@luma.gl/core": ~9.1.9 "@luma.gl/webgl": ~9.1.9 checksum: 10c0/357d100dddf6b81c3af6dd121c77efc09299dae4c0ac6f778b2ae03449a164f83bbb7a7bf553674804984299f5a107263dc3882bd53a6dea83e6a82f0fc224e1 languageName: node linkType: hard "@deck.gl/json@npm:9.1.14, @deck.gl/json@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/json@npm:9.1.14" dependencies: jsep: "npm:^0.3.0" peerDependencies: "@deck.gl/core": ^9.1.0 checksum: 10c0/8b03e34055d76afeb02f31d305da0741f824c0ce003148b11b4d0d2cb943dd341d39fa34cc4c108794886f39cadd0f4e41d47fa893b3e19ede747a7c2b49dbbd languageName: node linkType: hard "@deck.gl/layers@npm:9.1.14, @deck.gl/layers@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/layers@npm:9.1.14" dependencies: "@loaders.gl/images": "npm:^4.2.0" "@loaders.gl/schema": "npm:^4.2.0" "@luma.gl/shadertools": "npm:~9.1.9" "@mapbox/tiny-sdf": "npm:^2.0.5" "@math.gl/core": "npm:^4.1.0" "@math.gl/polygon": "npm:^4.1.0" "@math.gl/web-mercator": "npm:^4.1.0" earcut: "npm:^2.2.4" peerDependencies: "@deck.gl/core": ^9.1.0 "@loaders.gl/core": ^4.2.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 checksum: 10c0/9435cf3bb06410e4c85add301f84071249096a16737ff5c64b3d919ac9be2d9347687d3388c41b2399ff44ee77902d4c91bbfe48279182dd95c45abb69c99d71 languageName: node linkType: hard "@deck.gl/mapbox@npm:9.1.14": version: 9.1.14 resolution: "@deck.gl/mapbox@npm:9.1.14" dependencies: "@luma.gl/constants": "npm:~9.1.9" "@math.gl/web-mercator": "npm:^4.1.0" peerDependencies: "@deck.gl/core": ^9.1.0 "@luma.gl/core": ~9.1.9 checksum: 10c0/422b4a11bff22c22d2951f12f5e7e7e6474bda5105824936714e6dfa26e3904765a0d32ae08c800f449feaa7370501afba30fec0b87976adaf22cd38c367dd0b languageName: node linkType: hard "@deck.gl/mesh-layers@npm:9.1.14, @deck.gl/mesh-layers@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/mesh-layers@npm:9.1.14" dependencies: "@loaders.gl/gltf": "npm:^4.2.0" "@luma.gl/gltf": "npm:~9.1.9" "@luma.gl/shadertools": "npm:~9.1.9" peerDependencies: "@deck.gl/core": ^9.1.0 "@luma.gl/core": ~9.1.9 "@luma.gl/engine": ~9.1.9 checksum: 10c0/8f7e22bff132f2d328c2073aed621f36d0025d68f3a99c4a6ff4f21b9840c761dc31d7db9d2f9d1bdd6fd4d185154fc338a06d7748c4711d204fd0526ca727e9 languageName: node linkType: hard "@deck.gl/react@npm:9.1.14, @deck.gl/react@npm:^9.1.14": version: 9.1.14 resolution: "@deck.gl/react@npm:9.1.14" peerDependencies: "@deck.gl/core": ^9.1.0 "@deck.gl/widgets": ^9.1.0 react: ">=16.3.0" react-dom: ">=16.3.0" checksum: 10c0/47499c2f835e1a207742cf4d95781b870e1035669f225991141aabdcbc72f9903db28ab49fea9c7021b2231edb4600c9cee9afb902502c367dc9607f56b2b7d6 languageName: node linkType: hard "@deck.gl/widgets@npm:9.1.14": version: 9.1.14 resolution: "@deck.gl/widgets@npm:9.1.14" dependencies: preact: "npm:^10.17.0" peerDependencies: "@deck.gl/core": ^9.1.0 checksum: 10c0/0c4f516b7a2b2ffcee2c1a128aef2755da6b2e6cc3ed44f26f427d9b32df022c50ad0b81e0bf35a05aad6313d68176691f18823ba5ab2dde3ab4459ff9b32fa1 languageName: node linkType: hard "@emnapi/core@npm:^1.4.3": version: 1.4.3 resolution: "@emnapi/core@npm:1.4.3" dependencies: "@emnapi/wasi-threads": "npm:1.0.2" tslib: "npm:^2.4.0" checksum: 10c0/e30101d16d37ef3283538a35cad60e22095aff2403fb9226a35330b932eb6740b81364d525537a94eb4fb51355e48ae9b10d779c0dd1cdcd55d71461fe4b45c7 languageName: node linkType: hard "@emnapi/runtime@npm:^1.4.3": version: 1.4.3 resolution: "@emnapi/runtime@npm:1.4.3" dependencies: tslib: "npm:^2.4.0" checksum: 10c0/3b7ab72d21cb4e034f07df80165265f85f445ef3f581d1bc87b67e5239428baa00200b68a7d5e37a0425c3a78320b541b07f76c5530f6f6f95336a6294ebf30b languageName: node linkType: hard "@emnapi/wasi-threads@npm:1.0.2": version: 1.0.2 resolution: "@emnapi/wasi-threads@npm:1.0.2" dependencies: tslib: "npm:^2.4.0" checksum: 10c0/f0621b1fc715221bd2d8332c0ca922617bcd77cdb3050eae50a124eb8923c54fa425d23982dc8f29d505c8798a62d1049bace8b0686098ff9dd82270e06d772e languageName: node linkType: hard "@emotion-icons/emotion-icon@npm:4.1.0, @emotion-icons/emotion-icon@npm:^4.1.0": version: 4.1.0 resolution: "@emotion-icons/emotion-icon@npm:4.1.0" dependencies: "@babel/runtime": "npm:^7.14.0" peerDependencies: "@emotion/react": ">=11.0.0 <12" "@emotion/styled": ">=11.0.0 <12" react: "*" checksum: 10c0/9d9a88e4b9e301cdcca47b82b4ac75eac8bbdd85e6ea289d0fb8d32835c6e1a4a04c42e0a9517c708daf9e753734adf3269cf39cc6c165ded5eb5b413743eda0 languageName: node linkType: hard "@emotion-icons/material-outlined@npm:^3.14.0": version: 3.14.0 resolution: "@emotion-icons/material-outlined@npm:3.14.0" dependencies: "@babel/runtime": "npm:^7.14.0" "@emotion-icons/emotion-icon": "npm:4.1.0" peerDependencies: "@emotion/react": ">=11.0.0 <12" "@emotion/styled": ">=11.0.0 <12" react: "*" checksum: 10c0/7908641a3202e60ab499dd7b6d641cd1d91abe3a7c1f80a7ca049f61558b8f5a3eb52641de82d066a43a211030128e69de2c5f185c16ea3ef780f3ff346d4958 languageName: node linkType: hard "@emotion-icons/material-rounded@npm:^3.14.0": version: 3.14.0 resolution: "@emotion-icons/material-rounded@npm:3.14.0" dependencies: "@babel/runtime": "npm:^7.14.0" "@emotion-icons/emotion-icon": "npm:4.1.0" peerDependencies: "@emotion/react": ">=11.0.0 <12" "@emotion/styled": ">=11.0.0 <12" react: "*" checksum: 10c0/8408172c4174eed4b061dc7cb72307a685638f2590f55e060b3f0ed2469ed24813ec091452d231254ff0d2f91f87f67b8c02ea4a7f56785514398a0395dc9e74 languageName: node linkType: hard "@emotion-icons/open-iconic@npm:^3.14.0": version: 3.14.0 resolution: "@emotion-icons/open-iconic@npm:3.14.0" dependencies: "@babel/runtime": "npm:^7.14.0" "@emotion-icons/emotion-icon": "npm:4.1.0" peerDependencies: "@emotion/react": ">=11.0.0 <12" "@emotion/styled": ">=11.0.0 <12" react: "*" checksum: 10c0/4fb72e3fe18f7dfce82af72495c2698ba1b8d178b8ac8a4ec5d97fc2e67903ebfcdb59b0fa1e3cbd3d3da95a8674b5e6a097782e8f5eb4b9a2b2ec177953788a languageName: node linkType: hard "@emotion/babel-plugin@npm:^11.13.5": version: 11.13.5 resolution: "@emotion/babel-plugin@npm:11.13.5" dependencies: "@babel/helper-module-imports": "npm:^7.16.7" "@babel/runtime": "npm:^7.18.3" "@emotion/hash": "npm:^0.9.2" "@emotion/memoize": "npm:^0.9.0" "@emotion/serialize": "npm:^1.3.3" babel-plugin-macros: "npm:^3.1.0" convert-source-map: "npm:^1.5.0" escape-string-regexp: "npm:^4.0.0" find-root: "npm:^1.1.0" source-map: "npm:^0.5.7" stylis: "npm:4.2.0" checksum: 10c0/8ccbfec7defd0e513cb8a1568fa179eac1e20c35fda18aed767f6c59ea7314363ebf2de3e9d2df66c8ad78928dc3dceeded84e6fa8059087cae5c280090aeeeb languageName: node linkType: hard "@emotion/cache@npm:^11.13.5, @emotion/cache@npm:^11.14.0, @emotion/cache@npm:^11.4.0": version: 11.14.0 resolution: "@emotion/cache@npm:11.14.0" dependencies: "@emotion/memoize": "npm:^0.9.0" "@emotion/sheet": "npm:^1.4.0" "@emotion/utils": "npm:^1.4.2" "@emotion/weak-memoize": "npm:^0.4.0" stylis: "npm:4.2.0" checksum: 10c0/3fa3e7a431ab6f8a47c67132a00ac8358f428c1b6c8421d4b20de9df7c18e95eec04a5a6ff5a68908f98d3280044f247b4965ac63df8302d2c94dba718769724 languageName: node linkType: hard "@emotion/hash@npm:^0.9.2": version: 0.9.2 resolution: "@emotion/hash@npm:0.9.2" checksum: 10c0/0dc254561a3cc0a06a10bbce7f6a997883fd240c8c1928b93713f803a2e9153a257a488537012efe89dbe1246f2abfe2add62cdb3471a13d67137fcb808e81c2 languageName: node linkType: hard "@emotion/is-prop-valid@npm:^1.2.0, @emotion/is-prop-valid@npm:^1.3.0": version: 1.3.1 resolution: "@emotion/is-prop-valid@npm:1.3.1" dependencies: "@emotion/memoize": "npm:^0.9.0" checksum: 10c0/123215540c816ff510737ec68dcc499c53ea4deb0bb6c2c27c03ed21046e2e69f6ad07a7a174d271c6cfcbcc9ea44e1763e0cf3875c92192f7689216174803cd languageName: node linkType: hard "@emotion/is-prop-valid@npm:^1.4.0": version: 1.4.0 resolution: "@emotion/is-prop-valid@npm:1.4.0" dependencies: "@emotion/memoize": "npm:^0.9.0" checksum: 10c0/5f857814ec7d8c7e727727346dfb001af6b1fb31d621a3ce9c3edf944a484d8b0d619546c30899ae3ade2f317c76390ba4394449728e9bf628312defc2c41ac3 languageName: node linkType: hard "@emotion/memoize@npm:^0.9.0": version: 0.9.0 resolution: "@emotion/memoize@npm:0.9.0" checksum: 10c0/13f474a9201c7f88b543e6ea42f55c04fb2fdc05e6c5a3108aced2f7e7aa7eda7794c56bba02985a46d8aaa914fcdde238727a98341a96e2aec750d372dadd15 languageName: node linkType: hard "@emotion/react@npm:^11.13.5, @emotion/react@npm:^11.8.1": version: 11.14.0 resolution: "@emotion/react@npm:11.14.0" dependencies: "@babel/runtime": "npm:^7.18.3" "@emotion/babel-plugin": "npm:^11.13.5" "@emotion/cache": "npm:^11.14.0" "@emotion/serialize": "npm:^1.3.3" "@emotion/use-insertion-effect-with-fallbacks": "npm:^1.2.0" "@emotion/utils": "npm:^1.4.2" "@emotion/weak-memoize": "npm:^0.4.0" hoist-non-react-statics: "npm:^3.3.1" peerDependencies: react: ">=16.8.0" peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/d0864f571a9f99ec643420ef31fde09e2006d3943a6aba079980e4d5f6e9f9fecbcc54b8f617fe003c00092ff9d5241179149ffff2810cb05cf72b4620cfc031 languageName: node linkType: hard "@emotion/serialize@npm:^1.1.3, @emotion/serialize@npm:^1.3.3": version: 1.3.3 resolution: "@emotion/serialize@npm:1.3.3" dependencies: "@emotion/hash": "npm:^0.9.2" "@emotion/memoize": "npm:^0.9.0" "@emotion/unitless": "npm:^0.10.0" "@emotion/utils": "npm:^1.4.2" csstype: "npm:^3.0.2" checksum: 10c0/b28cb7de59de382021de2b26c0c94ebbfb16967a1b969a56fdb6408465a8993df243bfbd66430badaa6800e1834724e84895f5a6a9d97d0d224de3d77852acb4 languageName: node linkType: hard "@emotion/sheet@npm:^1.4.0": version: 1.4.0 resolution: "@emotion/sheet@npm:1.4.0" checksum: 10c0/3ca72d1650a07d2fbb7e382761b130b4a887dcd04e6574b2d51ce578791240150d7072a9bcb4161933abbcd1e38b243a6fb4464a7fe991d700c17aa66bb5acc7 languageName: node linkType: hard "@emotion/styled@npm:^11.14.1": version: 11.14.1 resolution: "@emotion/styled@npm:11.14.1" dependencies: "@babel/runtime": "npm:^7.18.3" "@emotion/babel-plugin": "npm:^11.13.5" "@emotion/is-prop-valid": "npm:^1.3.0" "@emotion/serialize": "npm:^1.3.3" "@emotion/use-insertion-effect-with-fallbacks": "npm:^1.2.0" "@emotion/utils": "npm:^1.4.2" peerDependencies: "@emotion/react": ^11.0.0-rc.0 react: ">=16.8.0" peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/2bbf8451df49c967e41fbcf8111a7f6dafe6757f0cc113f2f6e287206c45ac1d54dc8a95a483b7c0cee8614b8a8d08155bded6453d6721de1f8cc8d5b9216963 languageName: node linkType: hard "@emotion/unitless@npm:^0.10.0": version: 0.10.0 resolution: "@emotion/unitless@npm:0.10.0" checksum: 10c0/150943192727b7650eb9a6851a98034ddb58a8b6958b37546080f794696141c3760966ac695ab9af97efe10178690987aee4791f9f0ad1ff76783cdca83c1d49 languageName: node linkType: hard "@emotion/use-insertion-effect-with-fallbacks@npm:^1.2.0": version: 1.2.0 resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.2.0" peerDependencies: react: ">=16.8.0" checksum: 10c0/074dbc92b96bdc09209871070076e3b0351b6b47efefa849a7d9c37ab142130767609ca1831da0055988974e3b895c1de7606e4c421fecaa27c3e56a2afd3b08 languageName: node linkType: hard "@emotion/utils@npm:^1.4.2": version: 1.4.2 resolution: "@emotion/utils@npm:1.4.2" checksum: 10c0/7d0010bf60a2a8c1a033b6431469de4c80e47aeb8fd856a17c1d1f76bbc3a03161a34aeaa78803566e29681ca551e7bf9994b68e9c5f5c796159923e44f78d9a languageName: node linkType: hard "@emotion/weak-memoize@npm:^0.4.0": version: 0.4.0 resolution: "@emotion/weak-memoize@npm:0.4.0" checksum: 10c0/64376af11f1266042d03b3305c30b7502e6084868e33327e944b539091a472f089db307af69240f7188f8bc6b319276fd7b141a36613f1160d73d12a60f6ca1a languageName: node linkType: hard "@esbuild/aix-ppc64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/aix-ppc64@npm:0.25.0" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard "@esbuild/android-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/android-arm64@npm:0.25.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard "@esbuild/android-arm@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/android-arm@npm:0.25.0" conditions: os=android & cpu=arm languageName: node linkType: hard "@esbuild/android-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/android-x64@npm:0.25.0" conditions: os=android & cpu=x64 languageName: node linkType: hard "@esbuild/darwin-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/darwin-arm64@npm:0.25.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard "@esbuild/darwin-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/darwin-x64@npm:0.25.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard "@esbuild/freebsd-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/freebsd-arm64@npm:0.25.0" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard "@esbuild/freebsd-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/freebsd-x64@npm:0.25.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard "@esbuild/linux-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-arm64@npm:0.25.0" conditions: os=linux & cpu=arm64 languageName: node linkType: hard "@esbuild/linux-arm@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-arm@npm:0.25.0" conditions: os=linux & cpu=arm languageName: node linkType: hard "@esbuild/linux-ia32@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-ia32@npm:0.25.0" conditions: os=linux & cpu=ia32 languageName: node linkType: hard "@esbuild/linux-loong64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-loong64@npm:0.25.0" conditions: os=linux & cpu=loong64 languageName: node linkType: hard "@esbuild/linux-mips64el@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-mips64el@npm:0.25.0" conditions: os=linux & cpu=mips64el languageName: node linkType: hard "@esbuild/linux-ppc64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-ppc64@npm:0.25.0" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard "@esbuild/linux-riscv64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-riscv64@npm:0.25.0" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard "@esbuild/linux-s390x@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-s390x@npm:0.25.0" conditions: os=linux & cpu=s390x languageName: node linkType: hard "@esbuild/linux-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/linux-x64@npm:0.25.0" conditions: os=linux & cpu=x64 languageName: node linkType: hard "@esbuild/netbsd-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/netbsd-arm64@npm:0.25.0" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard "@esbuild/netbsd-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/netbsd-x64@npm:0.25.0" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard "@esbuild/openbsd-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/openbsd-arm64@npm:0.25.0" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard "@esbuild/openbsd-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/openbsd-x64@npm:0.25.0" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard "@esbuild/sunos-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/sunos-x64@npm:0.25.0" conditions: os=sunos & cpu=x64 languageName: node linkType: hard "@esbuild/win32-arm64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/win32-arm64@npm:0.25.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard "@esbuild/win32-ia32@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/win32-ia32@npm:0.25.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard "@esbuild/win32-x64@npm:0.25.0": version: 0.25.0 resolution: "@esbuild/win32-x64@npm:0.25.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.4.0": version: 4.4.1 resolution: "@eslint-community/eslint-utils@npm:4.4.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252 languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.7.0": version: 4.7.0 resolution: "@eslint-community/eslint-utils@npm:4.7.0" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 checksum: 10c0/c0f4f2bd73b7b7a9de74b716a664873d08ab71ab439e51befe77d61915af41a81ecec93b408778b3a7856185244c34c2c8ee28912072ec14def84ba2dec70adf languageName: node linkType: hard "@eslint-community/eslint-utils@npm:^4.8.0": version: 4.9.0 resolution: "@eslint-community/eslint-utils@npm:4.9.0" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 checksum: 10c0/8881e22d519326e7dba85ea915ac7a143367c805e6ba1374c987aa2fbdd09195cc51183d2da72c0e2ff388f84363e1b220fd0d19bef10c272c63455162176817 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1": version: 4.12.1 resolution: "@eslint-community/regexpp@npm:4.12.1" checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 languageName: node linkType: hard "@eslint-react/ast@npm:2.3.1": version: 2.3.1 resolution: "@eslint-react/ast@npm:2.3.1" dependencies: "@eslint-react/eff": "npm:2.3.1" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/typescript-estree": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" string-ts: "npm:^2.2.1" checksum: 10c0/67a55660a607d83d533e3de7f665165240c11254e6a6f2a089dcf916ff193d2466818fe5b276a931415be1015b1f42488577bfd23bc94a35dc38831c927dc829 languageName: node linkType: hard "@eslint-react/core@npm:2.3.1": version: 2.3.1 resolution: "@eslint-react/core@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" birecord: "npm:^0.1.1" ts-pattern: "npm:^5.9.0" checksum: 10c0/bdd5966bc4c7a88200fa2e5a33dc1ac23d5de18ac9074c4fc090796fdcf6bbc48a7e2cc3830e36c8a382fc8a8fe7ed96123c7f9ca2ce819493d84fc34aeb02f8 languageName: node linkType: hard "@eslint-react/eff@npm:2.3.1": version: 2.3.1 resolution: "@eslint-react/eff@npm:2.3.1" checksum: 10c0/190ba38ff00106dcf60876e80513744766bdd885463c65e4d5afcf96afa6636e7214bc66936044234c12bb7eddb0af06a4b5a9dbd3695f7373014580992797c9 languageName: node linkType: hard "@eslint-react/eslint-plugin@npm:^2.2.4": version: 2.3.1 resolution: "@eslint-react/eslint-plugin@npm:2.3.1" dependencies: "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/type-utils": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" eslint-plugin-react-dom: "npm:2.3.1" eslint-plugin-react-hooks-extra: "npm:2.3.1" eslint-plugin-react-naming-convention: "npm:2.3.1" eslint-plugin-react-web-api: "npm:2.3.1" eslint-plugin-react-x: "npm:2.3.1" ts-api-utils: "npm:^2.1.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/1d3998d9a445477664638651c77820ff3b81511cf369d1cca4f3f98acf9225beda0ea9958a635a61f37f0e7512411607d387c07db971fceb5405f2ce6b0e79ba languageName: node linkType: hard "@eslint-react/shared@npm:2.3.1": version: 2.3.1 resolution: "@eslint-react/shared@npm:2.3.1" dependencies: "@eslint-react/eff": "npm:2.3.1" "@typescript-eslint/utils": "npm:^8.46.2" ts-pattern: "npm:^5.9.0" zod: "npm:^4.1.12" checksum: 10c0/fa0ef404fd32cac7279dfac0c210f6ed55d640d57fa43e7891b926624dc754bebfca152b133362296878315f49980666ac5c84d98aadedd7e98c89281ce79a8b languageName: node linkType: hard "@eslint-react/var@npm:2.3.1": version: 2.3.1 resolution: "@eslint-react/var@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" ts-pattern: "npm:^5.9.0" checksum: 10c0/c9543fe879e46eac3e1da59607472e45436dd1aecf86b1a261b6a0189320445d2f8920d4036f76b98932c154170a06f904b0422de56e806f9035829a6eb3076b languageName: node linkType: hard "@eslint/compat@npm:^1.4.1": version: 1.4.1 resolution: "@eslint/compat@npm:1.4.1" dependencies: "@eslint/core": "npm:^0.17.0" peerDependencies: eslint: ^8.40 || 9 peerDependenciesMeta: eslint: optional: true checksum: 10c0/46f5ff884873c2e2366df55dd7b2d6b12f7f852bfba8e2a48dae4819cc5e58756deefa9b7f87f1b107af725ee883a05fcc02caf969b58fb142e790c6036a0450 languageName: node linkType: hard "@eslint/config-array@npm:^0.21.1": version: 0.21.1 resolution: "@eslint/config-array@npm:0.21.1" dependencies: "@eslint/object-schema": "npm:^2.1.7" debug: "npm:^4.3.1" minimatch: "npm:^3.1.2" checksum: 10c0/2f657d4edd6ddcb920579b72e7a5b127865d4c3fb4dda24f11d5c4f445a93ca481aebdbd6bf3291c536f5d034458dbcbb298ee3b698bc6c9dd02900fe87eec3c languageName: node linkType: hard "@eslint/config-helpers@npm:^0.4.2": version: 0.4.2 resolution: "@eslint/config-helpers@npm:0.4.2" dependencies: "@eslint/core": "npm:^0.17.0" checksum: 10c0/92efd7a527b2d17eb1a148409d71d80f9ac160b565ac73ee092252e8bf08ecd08670699f46b306b94f13d22e88ac88a612120e7847570dd7cdc72f234d50dcb4 languageName: node linkType: hard "@eslint/core@npm:^0.17.0": version: 0.17.0 resolution: "@eslint/core@npm:0.17.0" dependencies: "@types/json-schema": "npm:^7.0.15" checksum: 10c0/9a580f2246633bc752298e7440dd942ec421860d1946d0801f0423830e67887e4aeba10ab9a23d281727a978eb93d053d1922a587d502942a713607f40ed704e languageName: node linkType: hard "@eslint/eslintrc@npm:^3.3.1": version: 3.3.1 resolution: "@eslint/eslintrc@npm:3.3.1" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" espree: "npm:^10.0.1" globals: "npm:^14.0.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" checksum: 10c0/b0e63f3bc5cce4555f791a4e487bf999173fcf27c65e1ab6e7d63634d8a43b33c3693e79f192cbff486d7df1be8ebb2bd2edc6e70ddd486cbfa84a359a3e3b41 languageName: node linkType: hard "@eslint/js@npm:9.39.1, @eslint/js@npm:^9.39.0": version: 9.39.1 resolution: "@eslint/js@npm:9.39.1" checksum: 10c0/6f7f26f8cdb7ad6327bbf9741973b6278eb946f18f70e35406e88194b0d5c522d0547a34a02f2a208eec95c5d1388cdf7ccb20039efd2e4cb6655615247a50f1 languageName: node linkType: hard "@eslint/object-schema@npm:^2.1.7": version: 2.1.7 resolution: "@eslint/object-schema@npm:2.1.7" checksum: 10c0/936b6e499853d1335803f556d526c86f5fe2259ed241bc665000e1d6353828edd913feed43120d150adb75570cae162cf000b5b0dfc9596726761c36b82f4e87 languageName: node linkType: hard "@eslint/plugin-kit@npm:^0.4.1": version: 0.4.1 resolution: "@eslint/plugin-kit@npm:0.4.1" dependencies: "@eslint/core": "npm:^0.17.0" levn: "npm:^0.4.1" checksum: 10c0/51600f78b798f172a9915dffb295e2ffb44840d583427bc732baf12ecb963eb841b253300e657da91d890f4b323d10a1bd12934bf293e3018d8bb66fdce5217b languageName: node linkType: hard "@floating-ui/core@npm:^1.6.0": version: 1.6.8 resolution: "@floating-ui/core@npm:1.6.8" dependencies: "@floating-ui/utils": "npm:^0.2.8" checksum: 10c0/d6985462aeccae7b55a2d3f40571551c8c42bf820ae0a477fc40ef462e33edc4f3f5b7f11b100de77c9b58ecb581670c5c3f46d0af82b5e30aa185c735257eb9 languageName: node linkType: hard "@floating-ui/dom@npm:^1.0.1": version: 1.6.11 resolution: "@floating-ui/dom@npm:1.6.11" dependencies: "@floating-ui/core": "npm:^1.6.0" "@floating-ui/utils": "npm:^0.2.8" checksum: 10c0/02ef34a75a515543c772880338eea7b66724997bd5ec7cd58d26b50325709d46d480a306b84e7d5509d734434411a4bcf23af5680c2e461e6e6a8bf45d751df8 languageName: node linkType: hard "@floating-ui/utils@npm:^0.2.8": version: 0.2.8 resolution: "@floating-ui/utils@npm:0.2.8" checksum: 10c0/a8cee5f17406c900e1c3ef63e3ca89b35e7a2ed645418459a73627b93b7377477fc888081011c6cd177cac45ec2b92a6cab018c14ea140519465498dddd2d3f9 languageName: node linkType: hard "@formatjs/ecma402-abstract@npm:2.2.3": version: 2.2.3 resolution: "@formatjs/ecma402-abstract@npm:2.2.3" dependencies: "@formatjs/fast-memoize": "npm:2.2.3" "@formatjs/intl-localematcher": "npm:0.5.7" tslib: "npm:2" checksum: 10c0/611d12bf320fc5c5b85cb2b57e3dcebe8490a51c6a0459c857c7a3560656cd2bdba5b117e9dd7cf174f5aa120c11eaad7a65a6783637b816caa59a1bc5c727f6 languageName: node linkType: hard "@formatjs/fast-memoize@npm:2.2.3": version: 2.2.3 resolution: "@formatjs/fast-memoize@npm:2.2.3" dependencies: tslib: "npm:2" checksum: 10c0/f1004c3b280de7e362bd37c5f48ff34c2ba1d6271d4a7b695fed561d1201a3379397824d8bffbf15fecee344d1e70398393bbb04297f242692310a305f12e75b languageName: node linkType: hard "@formatjs/icu-messageformat-parser@npm:2.9.3": version: 2.9.3 resolution: "@formatjs/icu-messageformat-parser@npm:2.9.3" dependencies: "@formatjs/ecma402-abstract": "npm:2.2.3" "@formatjs/icu-skeleton-parser": "npm:1.8.7" tslib: "npm:2" checksum: 10c0/519b59f7b4cf90681315c5382f7fcd105eb1974486f0d62d9227b6d0498895114ccc818792c208baae1ef79571d93b0edb9914c676e5ab76924dddb7fd6c28a0 languageName: node linkType: hard "@formatjs/icu-skeleton-parser@npm:1.8.7": version: 1.8.7 resolution: "@formatjs/icu-skeleton-parser@npm:1.8.7" dependencies: "@formatjs/ecma402-abstract": "npm:2.2.3" tslib: "npm:2" checksum: 10c0/e29eb4151580f2d324e6591509dc4543e2326266fc209a08580c94d502acab14acc3560d98b3aaf9ffbd5ff8e2683601ff08c65b32886f22da015c31ca35c5d0 languageName: node linkType: hard "@formatjs/intl-localematcher@npm:0.5.7": version: 0.5.7 resolution: "@formatjs/intl-localematcher@npm:0.5.7" dependencies: tslib: "npm:2" checksum: 10c0/1ae374ca146a0d7457794926eed808c99971628e594f704a42ae2540b1f38928b26cbf942a7bbcc2796cc9fe8d9d7a603ac422bd9b89b714d2f91b506da40792 languageName: node linkType: hard "@glideapps/glide-data-grid-cells@npm:6.0.4-alpha24": version: 6.0.4-alpha24 resolution: "@glideapps/glide-data-grid-cells@npm:6.0.4-alpha24" dependencies: "@glideapps/glide-data-grid": "npm:6.0.4-alpha24" "@linaria/react": "npm:^6.3.0" "@toast-ui/editor": "npm:3.2.2" "@toast-ui/react-editor": "npm:3.2.3" react-select: "npm:^5.10.1" peerDependencies: react: ^16.12.0 || 17.x || 18.x || 19.x react-dom: ^16.12.0 || 17.x || 18.x || 19.x checksum: 10c0/050f67569d846002da0763648b5ce731f33dcdc58ba6ac93b2dab5e38c607c4a40a6101807bc11081b6ba7721b2065e32545c768c3b1fdf78aca43f505507a43 languageName: node linkType: hard "@glideapps/glide-data-grid-source@npm:6.0.4-alpha24": version: 6.0.4-alpha24 resolution: "@glideapps/glide-data-grid-source@npm:6.0.4-alpha24" dependencies: "@glideapps/glide-data-grid": "npm:6.0.4-alpha24" peerDependencies: lodash: ^4.17.19 react: ^16.12.0 || 17.x || 18.x || 19.x react-dom: ^16.12.0 || 17.x || 18.x || 19.x checksum: 10c0/01cfa2264b6a8465f85f2d3d9d435c66c5e92c9eef5d2519ac31b96eb699b2d0a43d9c2b0abaca6bfc955f266856617aa447de7447398c4b1d4ef74b48c14208 languageName: node linkType: hard "@glideapps/glide-data-grid@npm:6.0.4-alpha24": version: 6.0.4-alpha24 resolution: "@glideapps/glide-data-grid@npm:6.0.4-alpha24" dependencies: "@linaria/react": "npm:^6.3.0" canvas-hypertxt: "npm:^1.0.3" react-number-format: "npm:^5.4.4" peerDependencies: lodash: ^4.17.19 marked: ^16.0.10 react: ^16.12.0 || 17.x || 18.x || 19.x react-dom: ^16.12.0 || 17.x || 18.x || 19.x react-responsive-carousel: ^3.2.7 checksum: 10c0/5182b3e1a514006f2a20e37e9463774d30e8683143a78cf71e0c2bc671696d081ef8afd7073ce35de17995ab83b290a36eab4b99aadd2e89743ec1a0a1f96447 languageName: node linkType: hard "@hpcc-js/wasm@npm:^2.20.0": version: 2.22.4 resolution: "@hpcc-js/wasm@npm:2.22.4" dependencies: yargs: "npm:17.7.2" bin: dot-wasm: node ./node_modules/@hpcc-js/wasm-graphviz-cli/bin/index.js checksum: 10c0/38dbe2e6ff73c76d439756abbe750805deaa4770ba05f5b8c214fb07282881d7c36e0f94228811d8c356ebe4c13bc57f3c9dc5814fe95cf43e6ebb5f9439fcdf languageName: node linkType: hard "@humanfs/core@npm:^0.19.1": version: 0.19.1 resolution: "@humanfs/core@npm:0.19.1" checksum: 10c0/aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67 languageName: node linkType: hard "@humanfs/node@npm:^0.16.6": version: 0.16.6 resolution: "@humanfs/node@npm:0.16.6" dependencies: "@humanfs/core": "npm:^0.19.1" "@humanwhocodes/retry": "npm:^0.3.0" checksum: 10c0/8356359c9f60108ec204cbd249ecd0356667359b2524886b357617c4a7c3b6aace0fd5a369f63747b926a762a88f8a25bc066fa1778508d110195ce7686243e1 languageName: node linkType: hard "@humanwhocodes/module-importer@npm:^1.0.1": version: 1.0.1 resolution: "@humanwhocodes/module-importer@npm:1.0.1" checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 languageName: node linkType: hard "@humanwhocodes/retry@npm:^0.3.0": version: 0.3.1 resolution: "@humanwhocodes/retry@npm:0.3.1" checksum: 10c0/f0da1282dfb45e8120480b9e2e275e2ac9bbe1cf016d046fdad8e27cc1285c45bb9e711681237944445157b430093412b4446c1ab3fc4bb037861b5904101d3b languageName: node linkType: hard "@humanwhocodes/retry@npm:^0.4.2": version: 0.4.3 resolution: "@humanwhocodes/retry@npm:0.4.3" checksum: 10c0/3775bb30087d4440b3f7406d5a057777d90e4b9f435af488a4923ef249e93615fb78565a85f173a186a076c7706a81d0d57d563a2624e4de2c5c9c66c486ce42 languageName: node linkType: hard "@icons/material@npm:^0.2.4": version: 0.2.4 resolution: "@icons/material@npm:0.2.4" peerDependencies: react: "*" checksum: 10c0/133518adf91010704b716e7671fc28bcc3c461dc4f4a56ad3a73a955b9993dfaa22494579e9377247fd3318baebe8e4ae7962c01bffeaca0044722c09baa9d73 languageName: node linkType: hard "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" dependencies: string-width: "npm:^5.1.2" string-width-cjs: "npm:string-width@^4.2.0" strip-ansi: "npm:^7.0.1" strip-ansi-cjs: "npm:strip-ansi@^6.0.1" wrap-ansi: "npm:^8.1.0" wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e languageName: node linkType: hard "@isaacs/fs-minipass@npm:^4.0.0": version: 4.0.1 resolution: "@isaacs/fs-minipass@npm:4.0.1" dependencies: minipass: "npm:^7.0.4" checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 languageName: node linkType: hard "@istanbuljs/schema@npm:^0.1.2": version: 0.1.3 resolution: "@istanbuljs/schema@npm:0.1.3" checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a languageName: node linkType: hard "@jridgewell/gen-mapping@npm:^0.3.5": version: 0.3.5 resolution: "@jridgewell/gen-mapping@npm:0.3.5" dependencies: "@jridgewell/set-array": "npm:^1.2.1" "@jridgewell/sourcemap-codec": "npm:^1.4.10" "@jridgewell/trace-mapping": "npm:^0.3.24" checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb languageName: node linkType: hard "@jridgewell/resolve-uri@npm:^3.1.0": version: 3.1.2 resolution: "@jridgewell/resolve-uri@npm:3.1.2" checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e languageName: node linkType: hard "@jridgewell/set-array@npm:^1.2.1": version: 1.2.1 resolution: "@jridgewell/set-array@npm:1.2.1" checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 languageName: node linkType: hard "@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": version: 1.5.0 resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 languageName: node linkType: hard "@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": version: 0.3.25 resolution: "@jridgewell/trace-mapping@npm:0.3.25" dependencies: "@jridgewell/resolve-uri": "npm:^3.1.0" "@jridgewell/sourcemap-codec": "npm:^1.4.14" checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 languageName: node linkType: hard "@jsdoc/salty@npm:^0.2.1": version: 0.2.8 resolution: "@jsdoc/salty@npm:0.2.8" dependencies: lodash: "npm:^4.17.21" checksum: 10c0/ace2a0ef346e49e9573623544939e1b07906c2775d1027113e10666997c9a50397059b3212e233a053f9d8a118818b847f1690177017b1126408d9bcc7054938 languageName: node linkType: hard "@linaria/core@npm:^6.3.0": version: 6.3.0 resolution: "@linaria/core@npm:6.3.0" dependencies: "@wyw-in-js/processor-utils": "npm:^0.6.0" checksum: 10c0/4a3c7a1b3ae486e27540bcafe377498c22770e4e2914084b495a6aae65b77611308505d11108d3d999bfd9e40e443f6deb3120dbabbdaa8fc922de1db320b515 languageName: node linkType: hard "@linaria/react@npm:^6.3.0": version: 6.3.0 resolution: "@linaria/react@npm:6.3.0" dependencies: "@emotion/is-prop-valid": "npm:^1.2.0" "@linaria/core": "npm:^6.3.0" "@wyw-in-js/processor-utils": "npm:^0.6.0" "@wyw-in-js/shared": "npm:^0.6.0" minimatch: "npm:^9.0.3" react-html-attributes: "npm:^1.4.6" resolve: "npm:^1.22.8" ts-invariant: "npm:^0.10.3" peerDependencies: react: ">=16" checksum: 10c0/e5a0aed9b7a7df78f6a3293a7de92d808eef196fb04c895a66197bb86f4e1b5ed69d94656a8b4cc472449fa92e67554cfb62754119e688f369b270cc58f366a0 languageName: node linkType: hard "@loaders.gl/3d-tiles@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/3d-tiles@npm:4.2.5" dependencies: "@loaders.gl/compression": "npm:4.2.5" "@loaders.gl/crypto": "npm:4.2.5" "@loaders.gl/draco": "npm:4.2.5" "@loaders.gl/gltf": "npm:4.2.5" "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/math": "npm:4.2.5" "@loaders.gl/tiles": "npm:4.2.5" "@loaders.gl/zip": "npm:4.2.5" "@math.gl/core": "npm:^4.0.1" "@math.gl/culling": "npm:^4.0.1" "@math.gl/geospatial": "npm:^4.0.1" "@probe.gl/log": "npm:^4.0.4" long: "npm:^5.2.1" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/8d13c32162138658e97a037999112fd8228aeabc67acde7c2506a66098f4e5af3860e464cc98dcf747b05135eff6d2030e482b48b88060b30cb9299c7cc49dae languageName: node linkType: hard "@loaders.gl/compression@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/compression@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" "@types/brotli": "npm:^1.3.0" "@types/pako": "npm:^1.0.1" brotli: "npm:^1.3.2" fflate: "npm:0.7.4" lz4js: "npm:^0.2.0" lzo-wasm: "npm:^0.0.4" pako: "npm:1.0.11" snappyjs: "npm:^0.6.1" zstd-codec: "npm:^0.1" peerDependencies: "@loaders.gl/core": ^4.0.0 dependenciesMeta: brotli: optional: true lz4js: optional: true zstd-codec: optional: true checksum: 10c0/212c603a47f0d89c0ae297e0d8fa38dd9fe817bd271e72628d2b1cb95c78711a0454c3d14bed448dd38a2d528574fc3d1463118e521f17961c5a8dab55e1f76d languageName: node linkType: hard "@loaders.gl/compression@npm:^4.2.0": version: 4.3.3 resolution: "@loaders.gl/compression@npm:4.3.3" dependencies: "@loaders.gl/loader-utils": "npm:4.3.3" "@loaders.gl/worker-utils": "npm:4.3.3" "@types/brotli": "npm:^1.3.0" "@types/pako": "npm:^1.0.1" brotli: "npm:^1.3.2" fflate: "npm:0.7.4" lz4js: "npm:^0.2.0" lzo-wasm: "npm:^0.0.4" pako: "npm:1.0.11" snappyjs: "npm:^0.6.1" zstd-codec: "npm:^0.1" peerDependencies: "@loaders.gl/core": ^4.3.0 dependenciesMeta: brotli: optional: true lz4js: optional: true zstd-codec: optional: true checksum: 10c0/d373ac423d7cf6dd62f0a88d62e5669c462202bc84f31753e987fd5078997b1fd3244278e8a44fa56117bae54cd6bb314b78e8039a86e7e0c4cbdd25b516ea5f languageName: node linkType: hard "@loaders.gl/core@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/core@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" "@probe.gl/log": "npm:^4.0.2" checksum: 10c0/8f4ef5a09fef4a80ad7ca7e6d06a45c6e7ce4d5fac209bcc5adae24f3566456fec0fd97bd228b781e7aad4264104dbc8c75270784dc5d917b528c8b3ec3ff19f languageName: node linkType: hard "@loaders.gl/core@npm:^4.3.4": version: 4.3.4 resolution: "@loaders.gl/core@npm:4.3.4" dependencies: "@loaders.gl/loader-utils": "npm:4.3.4" "@loaders.gl/schema": "npm:4.3.4" "@loaders.gl/worker-utils": "npm:4.3.4" "@probe.gl/log": "npm:^4.0.2" checksum: 10c0/6ca8a1676cbbd700e47d7f1325afd7a6210cced70bdcc5d8d57945b7074597c7a4913eb37410bc25152f30c7dae1b1c32448fee7c6999e851a982a8d4e2576ad languageName: node linkType: hard "@loaders.gl/crypto@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/crypto@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" "@types/crypto-js": "npm:^4.0.2" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/679ce0e0eccfc5282edf0d515cbe14273507941ab1ea5f1cfda4c0776f5e1df05c4040c145f491263705cf68f8f9d8eb75afed018422f5fba4f467f51c9142a6 languageName: node linkType: hard "@loaders.gl/csv@npm:^4.3.4": version: 4.3.4 resolution: "@loaders.gl/csv@npm:4.3.4" dependencies: "@loaders.gl/loader-utils": "npm:4.3.4" "@loaders.gl/schema": "npm:4.3.4" d3-dsv: "npm:^1.2.0" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/aa591cb65e78d078123ec75953f2b3f5f41f104a6d9a426e37eac9747f1a1163eaf6d4e4368f3125fc729939a46b014273a8104656092a4ceffb40b800238df7 languageName: node linkType: hard "@loaders.gl/draco@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/draco@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" draco3d: "npm:1.5.7" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/125479024f41a4234200f042a740ef5aa9f722ed889b2e0c308d924caa1adee4dc124eabd01067c36a9c9705b17d6a2d5376e825149aefdcada52da1f5b68c8d languageName: node linkType: hard "@loaders.gl/draco@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/draco@npm:4.3.4" dependencies: "@loaders.gl/loader-utils": "npm:4.3.4" "@loaders.gl/schema": "npm:4.3.4" "@loaders.gl/worker-utils": "npm:4.3.4" draco3d: "npm:1.5.7" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/395b041595209fdbdb3bd846e04b4d5a06990d9a42aab66da4444e0b9b560db11e254beffecab181f61135d849e166de5b939e544b0661a82a72cb54cb3b040c languageName: node linkType: hard "@loaders.gl/gis@npm:4.2.5, @loaders.gl/gis@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/gis@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@mapbox/vector-tile": "npm:^1.3.1" "@math.gl/polygon": "npm:^4.0.0" pbf: "npm:^3.2.1" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/131ec92e7397436e15f2a98b960cb240f33d5318acbe82bdfb6480e42d63aa88393e8e5991e7c41b6c965d1683d372e655da57fe30d564ce8c1eef92239d4e6e languageName: node linkType: hard "@loaders.gl/gltf@npm:4.2.5, @loaders.gl/gltf@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/gltf@npm:4.2.5" dependencies: "@loaders.gl/draco": "npm:4.2.5" "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/textures": "npm:4.2.5" "@math.gl/core": "npm:^4.0.0" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/ba9e976a6ecbc3ad744fbbfd4b6109edb7abdb07b6b44807811fe040b17a6e2204eb224e926eaca92c54dfc18c65e084bb27fa940c7db5dba6aeb62eaa92df4c languageName: node linkType: hard "@loaders.gl/gltf@npm:^4.3.4": version: 4.3.4 resolution: "@loaders.gl/gltf@npm:4.3.4" dependencies: "@loaders.gl/draco": "npm:4.3.4" "@loaders.gl/images": "npm:4.3.4" "@loaders.gl/loader-utils": "npm:4.3.4" "@loaders.gl/schema": "npm:4.3.4" "@loaders.gl/textures": "npm:4.3.4" "@math.gl/core": "npm:^4.1.0" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/78537dc8e83731563a3aae4679a4544728ce822656a0e2bb520cc1c97efdd2ac36d914e41e8eb3232c3728b58d7e809031538e03c5f4946e3516b5a6708a1ea7 languageName: node linkType: hard "@loaders.gl/images@npm:4.2.5, @loaders.gl/images@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/images@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/90a615308ed69bc1773de599768d3d2cb0441ce067711dcd65cf445e1216992479358534ad082c0fe709e33317a4b7aa6697b5b3075a95880fb4a2d78f2dc21c languageName: node linkType: hard "@loaders.gl/images@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/images@npm:4.3.4" dependencies: "@loaders.gl/loader-utils": "npm:4.3.4" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/f2314b0b02ce92c473054f7e4e7f11466d3f86b27a74d6b10f35ddc02ef3d25254906f7a1fde6b8cc1ae606239c47c1a3fd66f46f1aef4d709d642230d4bc9aa languageName: node linkType: hard "@loaders.gl/loader-utils@npm:4.2.5, @loaders.gl/loader-utils@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/loader-utils@npm:4.2.5" dependencies: "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" "@probe.gl/stats": "npm:^4.0.2" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/5043cdb2e01be18343317ee58c9130234293e25a5fa11cbbe5b8a170fc65c918e87c38f459594cfe006801e55cb93f4ffd7e841888bd66b5230151afc4b1c63d languageName: node linkType: hard "@loaders.gl/loader-utils@npm:4.3.3": version: 4.3.3 resolution: "@loaders.gl/loader-utils@npm:4.3.3" dependencies: "@loaders.gl/schema": "npm:4.3.3" "@loaders.gl/worker-utils": "npm:4.3.3" "@probe.gl/log": "npm:^4.0.2" "@probe.gl/stats": "npm:^4.0.2" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/5da26b94b9c9b260bf4da211c3daee801f3f810c56ca81aec75979134c9d4e46ffeb4c74a896605529f2a7858797ad9dd383f3058b7a2dd864e3b0d602209059 languageName: node linkType: hard "@loaders.gl/loader-utils@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/loader-utils@npm:4.3.4" dependencies: "@loaders.gl/schema": "npm:4.3.4" "@loaders.gl/worker-utils": "npm:4.3.4" "@probe.gl/log": "npm:^4.0.2" "@probe.gl/stats": "npm:^4.0.2" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/f303500f8f0c5313cf7c8bd2e63bba3a885cc9db95ec66ba195f52453800f7da45accf458a53d50ef380983dc2ebdd1067c6bcc2118dc5f79963fa7a09c542ec languageName: node linkType: hard "@loaders.gl/math@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/math@npm:4.2.5" dependencies: "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@math.gl/core": "npm:^4.0.0" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/71f2b58e56fa9e9ffc4750d5a741b923b597d2d4cd91a674fa75eff98e25f83cbffa2a7b431f0c677ffba1cbde5519695096a8c5f2de43835a7b84512bbf1b8c languageName: node linkType: hard "@loaders.gl/mvt@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/mvt@npm:4.2.5" dependencies: "@loaders.gl/gis": "npm:4.2.5" "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@math.gl/polygon": "npm:^4.0.0" pbf: "npm:^3.2.1" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/990fcce162c6c61c9f3c4950126f5498f35c628893946d7e764572be4f3c8c05b5a0442d4d2b2eb852956570f843e7d0e2501e3eb3d00f75cc4db9c2718f34c2 languageName: node linkType: hard "@loaders.gl/schema@npm:4.2.5, @loaders.gl/schema@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/schema@npm:4.2.5" dependencies: "@types/geojson": "npm:^7946.0.7" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/1fb2d7278f9b7ad299a17964c1cfaa52292710c7f40ae604c16d59a7d131db70aad3be4e4ae672cfb9f627d9a561e97a740bb710debe0aef36f5ba33a8c04397 languageName: node linkType: hard "@loaders.gl/schema@npm:4.3.3": version: 4.3.3 resolution: "@loaders.gl/schema@npm:4.3.3" dependencies: "@types/geojson": "npm:^7946.0.7" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/abc83524fd03f0964a8964e4338667ef9a5de367301cbc73587564b764b7e33e6777f6b61ce8939300fac973f63eca3ccca5353da6384a53504428aedd37d918 languageName: node linkType: hard "@loaders.gl/schema@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/schema@npm:4.3.4" dependencies: "@types/geojson": "npm:^7946.0.7" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/8a1a8d7c3a1c553d02086519252ed37d9311643a1eecae0a037a7c6498fee6c07829054bbdcfd24f040f062857f5a9daa0da4f9d83b773e28723b6281e71ad9c languageName: node linkType: hard "@loaders.gl/terrain@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/terrain@npm:4.2.5" dependencies: "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@mapbox/martini": "npm:^0.2.0" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/eb1bdef9d0ad9bad43531a1a2286cc24773aa1fc226b4ce2aa46d3a387ae92aae44217e5bf89149a30d43de3d42d9a2c73eec075f8932f438574e9bf2fdb39b3 languageName: node linkType: hard "@loaders.gl/textures@npm:4.2.5, @loaders.gl/textures@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/textures@npm:4.2.5" dependencies: "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/worker-utils": "npm:4.2.5" "@math.gl/types": "npm:^4.0.1" ktx-parse: "npm:^0.0.4" texture-compressor: "npm:^1.0.2" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/0eebf67368293f2c7b449319ebdbc7aca2f8fe0b2eeceb62d921c1269db2fccb16d2f8c49ee6322659876661da550be76aff385254128514665e3e90af129ed5 languageName: node linkType: hard "@loaders.gl/textures@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/textures@npm:4.3.4" dependencies: "@loaders.gl/images": "npm:4.3.4" "@loaders.gl/loader-utils": "npm:4.3.4" "@loaders.gl/schema": "npm:4.3.4" "@loaders.gl/worker-utils": "npm:4.3.4" "@math.gl/types": "npm:^4.1.0" ktx-parse: "npm:^0.7.0" texture-compressor: "npm:^1.0.2" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/74415f1334f3c07fd8e8d5204bf0f8d8308d0c524551a664f723a908367563f5bd1380f6f5472d88e6bfdf924c37e54095a02932730333123a69ab1c364b010e languageName: node linkType: hard "@loaders.gl/tiles@npm:4.2.5, @loaders.gl/tiles@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/tiles@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/math": "npm:4.2.5" "@math.gl/core": "npm:^4.0.0" "@math.gl/culling": "npm:^4.0.0" "@math.gl/geospatial": "npm:^4.0.0" "@math.gl/web-mercator": "npm:^4.0.0" "@probe.gl/stats": "npm:^4.0.2" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/4c145063e84397eeed2bcf52a750184fc69098eae0c9f13758a307d4de4def7795d3ddeb70c890fd8b114b174ecd66de64c23bacbf03ff479fc3c08d55500e54 languageName: node linkType: hard "@loaders.gl/wms@npm:^4.2.0": version: 4.2.5 resolution: "@loaders.gl/wms@npm:4.2.5" dependencies: "@loaders.gl/images": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" "@loaders.gl/xml": "npm:4.2.5" "@turf/rewind": "npm:^5.1.5" deep-strict-equal: "npm:^0.2.0" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/d689071e0d54d8a782f75a03c744a1967985ec253d958ec757308fee4f904c4e4f9a854a3ba801f264efd3c5626f30deee6744079bc757e6541efe263244a415 languageName: node linkType: hard "@loaders.gl/worker-utils@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/worker-utils@npm:4.2.5" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/15c47ccbe0e77cd1c2233206cc4c74f8b9693d7faa4aa3874fde3c5f68f245cd8b3b3a66527c2b9dc362a731c1fdf40544453219a05e4116ba82bedc8a0dc59d languageName: node linkType: hard "@loaders.gl/worker-utils@npm:4.3.3": version: 4.3.3 resolution: "@loaders.gl/worker-utils@npm:4.3.3" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/d20a666966ce7f0116cf0ec51318152c78342cedb3cc1c0594784bcad65bb94f50929f5b722d8d2842e90eef08e6278bb58c0e028151b9e6076007040ba56fca languageName: node linkType: hard "@loaders.gl/worker-utils@npm:4.3.4": version: 4.3.4 resolution: "@loaders.gl/worker-utils@npm:4.3.4" peerDependencies: "@loaders.gl/core": ^4.3.0 checksum: 10c0/2ed330bcdfc4d18dea3c5d86ec92d76cd4b4c8f93277e2553c744982fec27ec6041d8f0b33076043d85242d608087e11640eb0a2a4d40b1e02480e1fc938ab12 languageName: node linkType: hard "@loaders.gl/xml@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/xml@npm:4.2.5" dependencies: "@loaders.gl/loader-utils": "npm:4.2.5" "@loaders.gl/schema": "npm:4.2.5" fast-xml-parser: "npm:^4.2.5" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/fac14081bb8054f665766b28ec402f39023193aab8a851e28a3699d0c9a8252b461d64b993dbd6d0bee1147f379f1fa837c2cb3278f5cce4ce6be74ef10f6e6e languageName: node linkType: hard "@loaders.gl/zip@npm:4.2.5": version: 4.2.5 resolution: "@loaders.gl/zip@npm:4.2.5" dependencies: "@loaders.gl/compression": "npm:4.2.5" "@loaders.gl/crypto": "npm:4.2.5" "@loaders.gl/loader-utils": "npm:4.2.5" jszip: "npm:^3.1.5" md5: "npm:^2.3.0" peerDependencies: "@loaders.gl/core": ^4.0.0 checksum: 10c0/824224496202493446634e2cbc785544e5940e76718cdcec0171c0ff6b8f6e575047de2bf7d9720bab7c3fec2092c07e5622ba67ed967827a6cdccde31f20a8e languageName: node linkType: hard "@luma.gl/constants@npm:9.1.9, @luma.gl/constants@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/constants@npm:9.1.9" checksum: 10c0/77b232a8cf9720cdbb80bdf703cbc9e3acae934536a76df4d90e07a094e514d57d94f8eb81a8ac75e23a9c2c6ab5438f75fab3a001d472e9f440a0a1b148e21e languageName: node linkType: hard "@luma.gl/core@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/core@npm:9.1.9" dependencies: "@math.gl/types": "npm:^4.1.0" "@probe.gl/env": "npm:^4.0.8" "@probe.gl/log": "npm:^4.0.8" "@probe.gl/stats": "npm:^4.0.8" "@types/offscreencanvas": "npm:^2019.6.4" checksum: 10c0/17169004455df1c8c01c4b16c1f4d0abf0ab0eca35a127bcba4378aebdc5b64cc51fcf90305140a3c512acaf9dee00db8566f76da95d5595151f27f3c99eedd0 languageName: node linkType: hard "@luma.gl/engine@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/engine@npm:9.1.9" dependencies: "@math.gl/core": "npm:^4.1.0" "@math.gl/types": "npm:^4.1.0" "@probe.gl/log": "npm:^4.0.8" "@probe.gl/stats": "npm:^4.0.8" peerDependencies: "@luma.gl/core": ^9.1.0 "@luma.gl/shadertools": ^9.1.0 checksum: 10c0/2d661818721996abddcb9dc9dc28c7f6da33c4c99e6b1084a912412a2b4dd49f2cfbde832fb874ea3ab90c247c5d1168a6f249b46461a12443c850d17f386000 languageName: node linkType: hard "@luma.gl/gltf@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/gltf@npm:9.1.9" dependencies: "@loaders.gl/core": "npm:^4.2.0" "@loaders.gl/textures": "npm:^4.2.0" "@math.gl/core": "npm:^4.1.0" peerDependencies: "@luma.gl/core": ^9.1.0 "@luma.gl/engine": ^9.1.0 "@luma.gl/shadertools": ^9.1.0 checksum: 10c0/5d4e8da4c186e004feed5a78823da1482a23ed85f9cd6c6a6cacbfbf275100653a78ecfcf9813186e4b07e37c9989db7e97c10c936540a0b18d2034cf3ced158 languageName: node linkType: hard "@luma.gl/shadertools@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/shadertools@npm:9.1.9" dependencies: "@math.gl/core": "npm:^4.1.0" "@math.gl/types": "npm:^4.1.0" wgsl_reflect: "npm:^1.2.0" peerDependencies: "@luma.gl/core": ^9.1.0 checksum: 10c0/84b844cfb8a1a151bcc3260fb79ee8e69de585a9aa1a17e1e5bf7799058f83e4e44f8340fcbef72f3040230c03a119f2e46dbf87c3fa6fe75a69fb7d8f39a839 languageName: node linkType: hard "@luma.gl/webgl@npm:~9.1.9": version: 9.1.9 resolution: "@luma.gl/webgl@npm:9.1.9" dependencies: "@luma.gl/constants": "npm:9.1.9" "@math.gl/types": "npm:^4.1.0" "@probe.gl/env": "npm:^4.0.8" peerDependencies: "@luma.gl/core": ^9.1.0 checksum: 10c0/042717ec2ec86ae96627513259f6557000077a55d454999f95e8d39a551e57c3ee6e91644d9717240b6e29d42ff7d87e2ec8641223c4a1cb00021c732924f317 languageName: node linkType: hard "@mapbox/geojson-rewind@npm:^0.5.2": version: 0.5.2 resolution: "@mapbox/geojson-rewind@npm:0.5.2" dependencies: get-stream: "npm:^6.0.1" minimist: "npm:^1.2.6" bin: geojson-rewind: geojson-rewind checksum: 10c0/631f89ba5b656cb1e02197c242b231f98da0afb96815fa26481497176d6bd5f2aac77af4950da91c954094694acbc26382bd3d38146705737e8ff06442d95a12 languageName: node linkType: hard "@mapbox/geojson-types@npm:^1.0.2": version: 1.0.2 resolution: "@mapbox/geojson-types@npm:1.0.2" checksum: 10c0/aa0a2cb95a358d8756ab5aa70356bcbd6f554a4571703a88a09e7db6580061d6ef4054db5fe3ecb2817c383b8b5433746a8f46712dc606b32063f73b154f99fc languageName: node linkType: hard "@mapbox/jsonlint-lines-primitives@npm:^2.0.2, @mapbox/jsonlint-lines-primitives@npm:~2.0.2": version: 2.0.2 resolution: "@mapbox/jsonlint-lines-primitives@npm:2.0.2" checksum: 10c0/5814e42fc453700132f93ea742aabcef9a3c98d9bf17d4c1106f82d1dcd91bbc93052e66e29014323b9b2a41b020c743d897e4a96cc4ed2f734482d587d8c2b2 languageName: node linkType: hard "@mapbox/mapbox-gl-supported@npm:^1.5.0": version: 1.5.0 resolution: "@mapbox/mapbox-gl-supported@npm:1.5.0" peerDependencies: mapbox-gl: ">=0.32.1 <2.0.0" checksum: 10c0/5b7712e8b546e598dc5152632504cad53081211b64ddc4447825840ddca703275bc36599167b9550ab906ca8a9554936bcdae562073fdef24b8d38d78ee262fb languageName: node linkType: hard "@mapbox/martini@npm:^0.2.0": version: 0.2.0 resolution: "@mapbox/martini@npm:0.2.0" checksum: 10c0/6d74edcdb9bc2d5243a0f3a42b6e92dce5a6f9c92481d3478246ca1aabe61adf8bfbd965b32271d81493e2ce49bab9671e19c9fd9e23d8f6f98ffd437f212b6c languageName: node linkType: hard "@mapbox/point-geometry@npm:0.1.0, @mapbox/point-geometry@npm:^0.1.0, @mapbox/point-geometry@npm:~0.1.0": version: 0.1.0 resolution: "@mapbox/point-geometry@npm:0.1.0" checksum: 10c0/e4d861908574cb3165f5ad37b000416ebc90a2d6b3e0073191e6b6dc5074a6159d84ac5114d78557399bb429134f0d05bfb529e7902d1cb2b36d722b72ab662c languageName: node linkType: hard "@mapbox/tile-cover@npm:3.0.1": version: 3.0.1 resolution: "@mapbox/tile-cover@npm:3.0.1" dependencies: tilebelt: "npm:^1.0.1" checksum: 10c0/dd66725282ab6570280e91485b66846c4a3f18d71a53e43b2449c77691853ca6a0f6f03174b4ea00eade7d32376e13ad4f5a077399c97c105ef9348c080a38a7 languageName: node linkType: hard "@mapbox/tiny-sdf@npm:^1.1.1": version: 1.2.5 resolution: "@mapbox/tiny-sdf@npm:1.2.5" checksum: 10c0/de0252388a628ddb491c986c715f0b63ca6a74f5dac16d3e51eb75a21935a31e34fba5db47c81cc59a462d782021fc68b2e3cc119b2d6cabe15d31e311674d6c languageName: node linkType: hard "@mapbox/tiny-sdf@npm:^2.0.5, @mapbox/tiny-sdf@npm:^2.0.6": version: 2.0.6 resolution: "@mapbox/tiny-sdf@npm:2.0.6" checksum: 10c0/cb272578a30c88d6694937af9b084106aa251e92c71089e7d57b0df8152fd0ce0598d5816182a4cd478dc40b188ea680cb6d53f4385107719424beabe7ed4e13 languageName: node linkType: hard "@mapbox/unitbezier@npm:^0.0.0": version: 0.0.0 resolution: "@mapbox/unitbezier@npm:0.0.0" checksum: 10c0/af1943ebeb7532317a5cedfc38d0e580b7bd76cc5c43988df65541d377f3e3fa7d68c201dda20f5239213a4bc81ec5d13146354107196ffc4f14d6f39b8343b5 languageName: node linkType: hard "@mapbox/unitbezier@npm:^0.0.1": version: 0.0.1 resolution: "@mapbox/unitbezier@npm:0.0.1" checksum: 10c0/97f39d4fbdf9579d0a1a8be0d536eb113a805d36459e774014f488a7ca6cc9dcfc77ab7a2ebe5af395ad50da6efb4dbf2566de0db3f62b6b8675cddbace8f86a languageName: node linkType: hard "@mapbox/vector-tile@npm:^1.3.1": version: 1.3.1 resolution: "@mapbox/vector-tile@npm:1.3.1" dependencies: "@mapbox/point-geometry": "npm:~0.1.0" checksum: 10c0/ffb271b95c383923768295e72bdf95e428efb906434b864ea04d3853a8373cf0de19f039bd6615f7cf018fbfb4dbf4599f27ebaa86c2b7b09f7d69187f8d7da1 languageName: node linkType: hard "@mapbox/whoots-js@npm:^3.1.0": version: 3.1.0 resolution: "@mapbox/whoots-js@npm:3.1.0" checksum: 10c0/fe9e959a9049bcbc2c05d9d1156e050191ad697a1bd95e41cdfa069051ff1d6f2930ced234a8d68d5a0bf78091feab30d76497418ec800d90f0aac8691fe4fd4 languageName: node linkType: hard "@maplibre/maplibre-gl-style-spec@npm:^20.3.1": version: 20.3.1 resolution: "@maplibre/maplibre-gl-style-spec@npm:20.3.1" dependencies: "@mapbox/jsonlint-lines-primitives": "npm:~2.0.2" "@mapbox/unitbezier": "npm:^0.0.1" json-stringify-pretty-compact: "npm:^4.0.0" minimist: "npm:^1.2.8" quickselect: "npm:^2.0.0" rw: "npm:^1.3.3" sort-object: "npm:^3.0.3" tinyqueue: "npm:^3.0.0" bin: gl-style-format: dist/gl-style-format.mjs gl-style-migrate: dist/gl-style-migrate.mjs gl-style-validate: dist/gl-style-validate.mjs checksum: 10c0/94bdb9da4e435e1e0727d803cab513b284dba7851540fdf5b90cca39c4c1ed386be198ba5928325e2a22b95d503735337ca48ae23fc1b54308831e03c41b84f3 languageName: node linkType: hard "@math.gl/core@npm:4.1.0, @math.gl/core@npm:^4.0.0, @math.gl/core@npm:^4.0.1, @math.gl/core@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/core@npm:4.1.0" dependencies: "@math.gl/types": "npm:4.1.0" checksum: 10c0/495934dc2be0b60cd6ff2cc16a0215608c9254919db741a0074b6b41cef9a0543c7f790eda7d529afa102d2937490608ef75fcc64c789ef2876ae750fd0ed3d6 languageName: node linkType: hard "@math.gl/culling@npm:^4.0.0, @math.gl/culling@npm:^4.0.1, @math.gl/culling@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/culling@npm:4.1.0" dependencies: "@math.gl/core": "npm:4.1.0" "@math.gl/types": "npm:4.1.0" checksum: 10c0/4489e6379ea4f24480b5a40e6a7dfa90e985b8af4d1051c493cf207e685cf5a09877bad6503f2e53384001fa041c89cb8cf35934570b48acce51b2b94cbfcde5 languageName: node linkType: hard "@math.gl/geospatial@npm:^4.0.0, @math.gl/geospatial@npm:^4.0.1": version: 4.1.0 resolution: "@math.gl/geospatial@npm:4.1.0" dependencies: "@math.gl/core": "npm:4.1.0" "@math.gl/types": "npm:4.1.0" checksum: 10c0/fb7c24dc82dbc32e9982782cda256b242e1a42eb8db69f28fff5653e459d068b44af5dc5eab1da45e43f3502ee4cd741033b656b2adbc7dfc687702a25db7ec2 languageName: node linkType: hard "@math.gl/polygon@npm:^4.0.0, @math.gl/polygon@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/polygon@npm:4.1.0" dependencies: "@math.gl/core": "npm:4.1.0" checksum: 10c0/0fcfb489c5613ddff6dd0cbea65084e10fa9a3523fb87a36a4fdf10057d12d2a99f1ebd93da6e72b45db0783fb8cd9cff704765473372a8db580faaf50c85ab5 languageName: node linkType: hard "@math.gl/sun@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/sun@npm:4.1.0" checksum: 10c0/baf813f3134124a1701c5f64cc8725fdb1d8d4c9e47c7fbd0d2e960d823f776d35312f82c62a09dcb140ea31d42b3945aa781066495291df190566ae17b5857b languageName: node linkType: hard "@math.gl/types@npm:4.1.0, @math.gl/types@npm:^4.0.1, @math.gl/types@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/types@npm:4.1.0" checksum: 10c0/3c4dfa5ac5c9e2cef24d31f56b89c1dde785a5d70fd1a7030386346cb7dd4fa2cce5ba983b89842c1971492e30870dd22a078d64893f9c66887e38367bf992fa languageName: node linkType: hard "@math.gl/web-mercator@npm:^3.5.5": version: 3.6.3 resolution: "@math.gl/web-mercator@npm:3.6.3" dependencies: "@babel/runtime": "npm:^7.12.0" gl-matrix: "npm:^3.4.0" checksum: 10c0/95a1267261e03fa0194ec5ac5f3f8c3a13e1182cf3865d4d3bbd669706d42bd067335d1812df2e844c63c1f0f21c50e08af2b90168f2db1d3fa3ba2087f59703 languageName: node linkType: hard "@math.gl/web-mercator@npm:^4.0.0, @math.gl/web-mercator@npm:^4.1.0": version: 4.1.0 resolution: "@math.gl/web-mercator@npm:4.1.0" dependencies: "@math.gl/core": "npm:4.1.0" checksum: 10c0/7aa4921b9442da75664ef517f41de65b1eae9970d7eee61d14d2eb0b332e1af6203785e8d198376a8ab5924d62b24856d648ff6478cca95b14d3a8d82822ef93 languageName: node linkType: hard "@microsoft/api-extractor-model@npm:7.30.3": version: 7.30.3 resolution: "@microsoft/api-extractor-model@npm:7.30.3" dependencies: "@microsoft/tsdoc": "npm:~0.15.1" "@microsoft/tsdoc-config": "npm:~0.17.1" "@rushstack/node-core-library": "npm:5.11.0" checksum: 10c0/2c6f41435bc927470ae90325955d12f5d19a8aa58fab2a5ebe6b7c4eaa5b84288d65b6abec40703f68275a0702b01fdce1850067b0631ca8c0e24a72dfa3b13a languageName: node linkType: hard "@microsoft/api-extractor@npm:^7.50.1": version: 7.51.0 resolution: "@microsoft/api-extractor@npm:7.51.0" dependencies: "@microsoft/api-extractor-model": "npm:7.30.3" "@microsoft/tsdoc": "npm:~0.15.1" "@microsoft/tsdoc-config": "npm:~0.17.1" "@rushstack/node-core-library": "npm:5.11.0" "@rushstack/rig-package": "npm:0.5.3" "@rushstack/terminal": "npm:0.15.0" "@rushstack/ts-command-line": "npm:4.23.5" lodash: "npm:~4.17.15" minimatch: "npm:~3.0.3" resolve: "npm:~1.22.1" semver: "npm:~7.5.4" source-map: "npm:~0.6.1" typescript: "npm:5.7.3" bin: api-extractor: bin/api-extractor checksum: 10c0/3dfdb39ef8d31b5c5483f6e39930acb8d468a063085233f1e968f859081acd35ef37a5ab57e08bbf2094ae04b84bf66bd933d34d58f69295878b81fd8f91d748 languageName: node linkType: hard "@microsoft/tsdoc-config@npm:~0.17.1": version: 0.17.1 resolution: "@microsoft/tsdoc-config@npm:0.17.1" dependencies: "@microsoft/tsdoc": "npm:0.15.1" ajv: "npm:~8.12.0" jju: "npm:~1.4.0" resolve: "npm:~1.22.2" checksum: 10c0/a686355796f492f27af17e2a17d615221309caf4d9f9047a5a8f17f8625c467c4c81e2a7923ddafd71b892631d5e5013c4b8cc49c5867d3cc1d260fd90c1413d languageName: node linkType: hard "@microsoft/tsdoc@npm:0.15.1, @microsoft/tsdoc@npm:~0.15.1": version: 0.15.1 resolution: "@microsoft/tsdoc@npm:0.15.1" checksum: 10c0/09948691fac56c45a0d1920de478d66a30371a325bd81addc92eea5654d95106ce173c440fea1a1bd5bb95b3a544b6d4def7bb0b5a846c05d043575d8369a20c languageName: node linkType: hard "@napi-rs/wasm-runtime@npm:^0.2.10": version: 0.2.10 resolution: "@napi-rs/wasm-runtime@npm:0.2.10" dependencies: "@emnapi/core": "npm:^1.4.3" "@emnapi/runtime": "npm:^1.4.3" "@tybys/wasm-util": "npm:^0.9.0" checksum: 10c0/4dce9bbb94a8969805574e1b55fdbeb7623348190265d77f6507ba32e535610deeb53a33ba0bb8b05a6520f379d418b92e8a01c5cd7b9486b136d2c0c26be0bd languageName: node linkType: hard "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" dependencies: "@nodelib/fs.stat": "npm:2.0.5" run-parallel: "npm:^1.1.9" checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb languageName: node linkType: hard "@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": version: 2.0.5 resolution: "@nodelib/fs.stat@npm:2.0.5" checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d languageName: node linkType: hard "@nodelib/fs.walk@npm:^1.2.3": version: 1.2.8 resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: "@nodelib/fs.scandir": "npm:2.1.5" fastq: "npm:^1.6.0" checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 languageName: node linkType: hard "@npmcli/agent@npm:^3.0.0": version: 3.0.0 resolution: "@npmcli/agent@npm:3.0.0" dependencies: agent-base: "npm:^7.1.0" http-proxy-agent: "npm:^7.0.0" https-proxy-agent: "npm:^7.0.1" lru-cache: "npm:^10.0.1" socks-proxy-agent: "npm:^8.0.3" checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271 languageName: node linkType: hard "@npmcli/fs@npm:^4.0.0": version: 4.0.0 resolution: "@npmcli/fs@npm:4.0.0" dependencies: semver: "npm:^7.3.5" checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5 languageName: node linkType: hard "@npmcli/redact@npm:^3.0.0": version: 3.1.1 resolution: "@npmcli/redact@npm:3.1.1" checksum: 10c0/0653d1acbad34c78a372ac581429c3a257849bc761322cad088a202dc6639f5a61912cae0a678e2f53fdf5a4b6e9353cc2d528155d3cad2c7d5e89486aed081c languageName: node linkType: hard "@opentelemetry/api-logs@npm:0.57.2": version: 0.57.2 resolution: "@opentelemetry/api-logs@npm:0.57.2" dependencies: "@opentelemetry/api": "npm:^1.3.0" checksum: 10c0/1e514d3fd4ca68e7e8b008794a95ee0562a5d9e1d3ebb02647b245afaa6c2d72cc14e99e3ea47a1d1007f8a965c62bfb6170e1aa26756230bea063cfde2898bf languageName: node linkType: hard "@opentelemetry/api@npm:^1.3.0, @opentelemetry/api@npm:^1.9.0": version: 1.9.0 resolution: "@opentelemetry/api@npm:1.9.0" checksum: 10c0/9aae2fe6e8a3a3eeb6c1fdef78e1939cf05a0f37f8a4fae4d6bf2e09eb1e06f966ece85805626e01ba5fab48072b94f19b835449e58b6d26720ee19a58298add languageName: node linkType: hard "@opentelemetry/context-async-hooks@npm:^1.30.1": version: 1.30.1 resolution: "@opentelemetry/context-async-hooks@npm:1.30.1" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10c0/3e8114d360060a5225226d2fcd8df08cd542246003790a7f011c0774bc60b8a931f46f4c6673f3977a7d9bba717de6ee028cae51b752c2567053d7f46ed3eba3 languageName: node linkType: hard "@opentelemetry/core@npm:1.30.1, @opentelemetry/core@npm:^1.1.0, @opentelemetry/core@npm:^1.26.0, @opentelemetry/core@npm:^1.30.1, @opentelemetry/core@npm:^1.8.0": version: 1.30.1 resolution: "@opentelemetry/core@npm:1.30.1" dependencies: "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10c0/4c25ba50a6137c2ba9ca563fb269378f3c9ca6fd1b3f15dbb6eff78eebf5656f281997cbb7be8e51c01649fd6ad091083fcd8a42dd9b5dfac907dc06d7cfa092 languageName: node linkType: hard "@opentelemetry/instrumentation-amqplib@npm:^0.46.1": version: 0.46.1 resolution: "@opentelemetry/instrumentation-amqplib@npm:0.46.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/4a8b870ccaa64cfd200663ec14385aca7eeb7146124d82e566f3d48678f237c9a56661ae3401345fe0dce5c56366ae02a312dc7905eb4fd6e073df2cface30fb languageName: node linkType: hard "@opentelemetry/instrumentation-connect@npm:0.43.1": version: 0.43.1 resolution: "@opentelemetry/instrumentation-connect@npm:0.43.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" "@types/connect": "npm:3.4.38" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/a7e2629fbfa775f2d1a6b2c9387e27809db16177cf6de89159017d7353c270c6c84d81550c58ccc51ea72c2304b1fcb911499440451d8df6954cc1f4e654eb64 languageName: node linkType: hard "@opentelemetry/instrumentation-dataloader@npm:0.16.1": version: 0.16.1 resolution: "@opentelemetry/instrumentation-dataloader@npm:0.16.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/83bd0267672cc3e8709401e1f107612aed3bb72faedfed76fe25e174b19c41f65d503bc3a666ba0872bbef8c31adcefb8884982f785fa3b0df28eec40b6578aa languageName: node linkType: hard "@opentelemetry/instrumentation-express@npm:0.47.1": version: 0.47.1 resolution: "@opentelemetry/instrumentation-express@npm:0.47.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/eca448eb088857c7c0c7d0a1875b9e20a990b23e2f64355d2e645618d3f5c038efb9d605009a6d8fa1e05243d0ccef14b9aa1effffee693fd071de3cc39ad3d1 languageName: node linkType: hard "@opentelemetry/instrumentation-fs@npm:0.19.1": version: 0.19.1 resolution: "@opentelemetry/instrumentation-fs@npm:0.19.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/8bf714658c0fcc34ba7db4c28af3196690f756a9b4fb6d1b6cab59938a7b5c1e40e834c518b39085e744915c0c384ca6d997a8a97901955732acf3af0cba6e7f languageName: node linkType: hard "@opentelemetry/instrumentation-generic-pool@npm:0.43.1": version: 0.43.1 resolution: "@opentelemetry/instrumentation-generic-pool@npm:0.43.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/bdc95146d1f6f5dcf5922af8161c4954b9feeb505a01c5e61b1246ed67909dc1f6e72ad067839f085a4977e863246e7e4b468c814cf4104f35fcc20fb570eac2 languageName: node linkType: hard "@opentelemetry/instrumentation-graphql@npm:0.47.1": version: 0.47.1 resolution: "@opentelemetry/instrumentation-graphql@npm:0.47.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/d5cfeb668b5ea4e4d97d8433c642457ac9f7f2023278a84a183b4c4c2cc43bbae3eac916ff7176ef8492661877560b519663c52eb2fad0a8a1f00718a0449aa6 languageName: node linkType: hard "@opentelemetry/instrumentation-hapi@npm:0.45.2": version: 0.45.2 resolution: "@opentelemetry/instrumentation-hapi@npm:0.45.2" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/bb491327ce86d8f1f7e2a12621a00dbf921e1fc3e9b64f975fc23e443d92bcd6ef779b34349214871763d459650da219c5e23bb1fdd1bc261fa0f92190521b2e languageName: node linkType: hard "@opentelemetry/instrumentation-http@npm:0.57.2": version: 0.57.2 resolution: "@opentelemetry/instrumentation-http@npm:0.57.2" dependencies: "@opentelemetry/core": "npm:1.30.1" "@opentelemetry/instrumentation": "npm:0.57.2" "@opentelemetry/semantic-conventions": "npm:1.28.0" forwarded-parse: "npm:2.1.2" semver: "npm:^7.5.2" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/b95a1b61cddabd32358fa565a4fcf5c17e8340907b171dcdf2a104533c9afdee821efa7b82dabb3123318dcc66272b0a7b8c37c44fc87e593cb8138a7a63fc23 languageName: node linkType: hard "@opentelemetry/instrumentation-ioredis@npm:0.47.1": version: 0.47.1 resolution: "@opentelemetry/instrumentation-ioredis@npm:0.47.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/redis-common": "npm:^0.36.2" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/ec741778041cecc133a143292d66631c99311bf098db8f03276a48b87fe18826eec4513e4de70bb555ef50268db6520442e9a2f7752f7ea9b5a3e8363fecb8c9 languageName: node linkType: hard "@opentelemetry/instrumentation-kafkajs@npm:0.7.1": version: 0.7.1 resolution: "@opentelemetry/instrumentation-kafkajs@npm:0.7.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/440a479ec65414da706f15b5c2ff82235ea8b11701e811ae235af5e8f01bee7e639223243e9f18550ce55cc94b8cdaa8a72297ded55f1c7993f1d95488c2b02e languageName: node linkType: hard "@opentelemetry/instrumentation-knex@npm:0.44.1": version: 0.44.1 resolution: "@opentelemetry/instrumentation-knex@npm:0.44.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/75dcbda2c412cc448ac95238899d92846bda14bb21a1c9e9bc0c51fd48dcedb6064c2a8ab9e53d112945748d50513ecda13afbc4c0f24a884674d2a485f0efcd languageName: node linkType: hard "@opentelemetry/instrumentation-koa@npm:0.47.1": version: 0.47.1 resolution: "@opentelemetry/instrumentation-koa@npm:0.47.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/a1c5433da1265f1f8da3e46ebe085a3ddba3e16f43c5f44bd41082a0839f6bdf9a6a737b80b0d2f2a05d1ef2c23e2b0a4f7e55858bf1e32570b4c150c69135bc languageName: node linkType: hard "@opentelemetry/instrumentation-lru-memoizer@npm:0.44.1": version: 0.44.1 resolution: "@opentelemetry/instrumentation-lru-memoizer@npm:0.44.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/5728d0b6ed560ba8426546ab30ef251cbe9f25a130abc8bea0d7635b51cc29fbade4d00c7b1869fa0543fe54891799483fe0f6fb4073d1bf5d12dbdd543aaae5 languageName: node linkType: hard "@opentelemetry/instrumentation-mongodb@npm:0.52.0": version: 0.52.0 resolution: "@opentelemetry/instrumentation-mongodb@npm:0.52.0" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/dcd072a296369a6b254a809e3708e5f9842ac9f8c61700bfa2014872fa6e6ca65adfa5efdbf9021df57e749dea2cddd828351e73cb581370b8b97693c06df7e8 languageName: node linkType: hard "@opentelemetry/instrumentation-mongoose@npm:0.46.1": version: 0.46.1 resolution: "@opentelemetry/instrumentation-mongoose@npm:0.46.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/69378d41df172c2edb8b36042e751936837bb1cbee11ee72a3d1608c6d7f609d79beec2020b25de72086553ad9d85347642c4066e0b4e96d442513b29ac4f0aa languageName: node linkType: hard "@opentelemetry/instrumentation-mysql2@npm:0.45.2": version: 0.45.2 resolution: "@opentelemetry/instrumentation-mysql2@npm:0.45.2" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" "@opentelemetry/sql-common": "npm:^0.40.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/8ac62064b32facfddd7d47ba0bce9689d2277ba4ef74348655faffe818522c919654c5bf1a5fac211a75f2093fbd588a14cba278c353da2f60d1919d58d419aa languageName: node linkType: hard "@opentelemetry/instrumentation-mysql@npm:0.45.1": version: 0.45.1 resolution: "@opentelemetry/instrumentation-mysql@npm:0.45.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" "@types/mysql": "npm:2.15.26" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/c820a6929fe2e010dacb8962d40fdb8c9ac95c265efc74f478eadc021b2a3add9ce8d303c4bda20af01327564f487c9e052e710d9e975d7f17a5918d802d7ae4 languageName: node linkType: hard "@opentelemetry/instrumentation-pg@npm:0.51.1": version: 0.51.1 resolution: "@opentelemetry/instrumentation-pg@npm:0.51.1" dependencies: "@opentelemetry/core": "npm:^1.26.0" "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" "@opentelemetry/sql-common": "npm:^0.40.1" "@types/pg": "npm:8.6.1" "@types/pg-pool": "npm:2.0.6" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/fff3dcc092b959601a20c20e19c27d39d6386e6bc2b7014c1be5a5e22c0e275bf9980dad758b1f7824b1448a6178e13938b6bb2da53095f410fbb4d248b5ede6 languageName: node linkType: hard "@opentelemetry/instrumentation-redis-4@npm:0.46.1": version: 0.46.1 resolution: "@opentelemetry/instrumentation-redis-4@npm:0.46.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/redis-common": "npm:^0.36.2" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/df0bdd865e254c9b4c0339ce5aabf3698d99b8ab8cf8ea1aa57ffa13620f2193fda247ed43ec4ccc6edadab1ffec5cc263038ab6f3c9e96ef000ee232b9181f8 languageName: node linkType: hard "@opentelemetry/instrumentation-tedious@npm:0.18.1": version: 0.18.1 resolution: "@opentelemetry/instrumentation-tedious@npm:0.18.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.57.1" "@opentelemetry/semantic-conventions": "npm:^1.27.0" "@types/tedious": "npm:^4.0.14" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/fda9ac4dc89998a2cf739a70f06b1d6eebf98fe22713dc3fbca4a1119dc289d83c91ada4a3cea37f39a34c69978ae21ff9b599c27beaee128879b993677696dc languageName: node linkType: hard "@opentelemetry/instrumentation-undici@npm:0.10.1": version: 0.10.1 resolution: "@opentelemetry/instrumentation-undici@npm:0.10.1" dependencies: "@opentelemetry/core": "npm:^1.8.0" "@opentelemetry/instrumentation": "npm:^0.57.1" peerDependencies: "@opentelemetry/api": ^1.7.0 checksum: 10c0/3958f291d14f2f7bb5e3b957487444ffee449d8ea76c973ca09b9669258d37e98b3797c7167190c5038802529cc6b539bdf6efc7887398ec9b53d3ba51c90bda languageName: node linkType: hard "@opentelemetry/instrumentation@npm:0.57.2, @opentelemetry/instrumentation@npm:^0.52.0 || ^0.53.0 || ^0.54.0 || ^0.55.0 || ^0.56.0 || ^0.57.0, @opentelemetry/instrumentation@npm:^0.57.1, @opentelemetry/instrumentation@npm:^0.57.2": version: 0.57.2 resolution: "@opentelemetry/instrumentation@npm:0.57.2" dependencies: "@opentelemetry/api-logs": "npm:0.57.2" "@types/shimmer": "npm:^1.2.0" import-in-the-middle: "npm:^1.8.1" require-in-the-middle: "npm:^7.1.1" semver: "npm:^7.5.2" shimmer: "npm:^1.2.1" peerDependencies: "@opentelemetry/api": ^1.3.0 checksum: 10c0/79ca65b66357665d19f89da7027da25ea1c6b55ecdacb0a99534923743c80deb9282870db563de8ae284b13e7e0aab8413efa1937f199deeaef069e07c7e4875 languageName: node linkType: hard "@opentelemetry/redis-common@npm:^0.36.2": version: 0.36.2 resolution: "@opentelemetry/redis-common@npm:0.36.2" checksum: 10c0/4cb831628551b9f13dca8d65897e300ff7be0e256b77f455a26fb053bbdfc7997b27d066ab1402ca929e7ac77598e0d593f91762d8af9f798c19ba1524e9d078 languageName: node linkType: hard "@opentelemetry/resources@npm:1.30.1, @opentelemetry/resources@npm:^1.30.1": version: 1.30.1 resolution: "@opentelemetry/resources@npm:1.30.1" dependencies: "@opentelemetry/core": "npm:1.30.1" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10c0/688e73258283c80662bfa9a858aaf73bf3b832a18d96e546d0dddfa6dcec556cdfa087a1d0df643435293406009e4122d7fb7eeea69aa87b539d3bab756fba74 languageName: node linkType: hard "@opentelemetry/sdk-trace-base@npm:^1.30.1": version: 1.30.1 resolution: "@opentelemetry/sdk-trace-base@npm:1.30.1" dependencies: "@opentelemetry/core": "npm:1.30.1" "@opentelemetry/resources": "npm:1.30.1" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" checksum: 10c0/77019dc3efaeceb41b4c54dd83b92f0ccd81ecceca544cbbe8e0aee4b2c8727724bdb9dcecfe00622c16d60946ae4beb69a5c0e7d85c4bc7ef425bd84f8b970c languageName: node linkType: hard "@opentelemetry/semantic-conventions@npm:1.28.0": version: 1.28.0 resolution: "@opentelemetry/semantic-conventions@npm:1.28.0" checksum: 10c0/deb8a0f744198071e70fea27143cf7c9f7ecb7e4d7b619488c917834ea09b31543c1c2bcea4ec5f3cf68797f0ef3549609c14e859013d9376400ac1499c2b9cb languageName: node linkType: hard "@opentelemetry/semantic-conventions@npm:^1.27.0, @opentelemetry/semantic-conventions@npm:^1.34.0": version: 1.34.0 resolution: "@opentelemetry/semantic-conventions@npm:1.34.0" checksum: 10c0/a51a32a5cf5c803bd2125a680d0abacbff632f3b255d0fe52379dac191114a0e8d72a34f9c46c5483ccfe91c4061c309f3cf61a19d11347e2a69779e82cfefd0 languageName: node linkType: hard "@opentelemetry/sql-common@npm:^0.40.1": version: 0.40.1 resolution: "@opentelemetry/sql-common@npm:0.40.1" dependencies: "@opentelemetry/core": "npm:^1.1.0" peerDependencies: "@opentelemetry/api": ^1.1.0 checksum: 10c0/60a70358f0c94f610e2995333e96b406626d67d03d38ed03b15a3461ad0f8d64afbf6275cca7cb58fe955ecdce832f3ffc9b73f9d88503bba5d2a620bbd6d351 languageName: node linkType: hard "@paulirish/trace_engine@npm:0.0.59": version: 0.0.59 resolution: "@paulirish/trace_engine@npm:0.0.59" dependencies: legacy-javascript: "npm:latest" third-party-web: "npm:latest" checksum: 10c0/6886e730f93d7ae64c13dd2ec981b8d914b76f9979aaa406e8ffab217769f2cc9761acbfbf76b0a91e2b0b101de82a12919ddd68515e194ab11d508b774bc6ee languageName: node linkType: hard "@pkgjs/parseargs@npm:^0.11.0": version: 0.11.0 resolution: "@pkgjs/parseargs@npm:0.11.0" checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd languageName: node linkType: hard "@pkgr/core@npm:^0.2.4": version: 0.2.4 resolution: "@pkgr/core@npm:0.2.4" checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1 languageName: node linkType: hard "@plotly/d3-sankey-circular@npm:0.33.1": version: 0.33.1 resolution: "@plotly/d3-sankey-circular@npm:0.33.1" dependencies: d3-array: "npm:^1.2.1" d3-collection: "npm:^1.0.4" d3-shape: "npm:^1.2.0" elementary-circuits-directed-graph: "npm:^1.0.4" checksum: 10c0/7a1c7caa4297099a0403ad1e2c4a5446f8239fce4b9a4ac44c5bc144d56e4c0eb0761dea05993db8b17a85934f9f1723ded2e008e6096d0c226b481313e6fe29 languageName: node linkType: hard "@plotly/d3-sankey@npm:0.7.2": version: 0.7.2 resolution: "@plotly/d3-sankey@npm:0.7.2" dependencies: d3-array: "npm:1" d3-collection: "npm:1" d3-shape: "npm:^1.2.0" checksum: 10c0/d3443749f9e7ea692ac1f19c740bac40e25df293af738164d4e313bcc6fd27d35822d5f83530cc9c1c1472d0be49e409edafbbf1ca58164aeca0ec4fe2a392e5 languageName: node linkType: hard "@plotly/d3@npm:3.8.2": version: 3.8.2 resolution: "@plotly/d3@npm:3.8.2" checksum: 10c0/e578fd3d3850b2c2671e0fcc856676925e81da79f25c940cf2160dc19fe846924181c7c7ea0f03d499d3d4d1ff552d36506a828f5a6482db5707fb2bc4a29ebc languageName: node linkType: hard "@plotly/mapbox-gl@npm:1.13.4": version: 1.13.4 resolution: "@plotly/mapbox-gl@npm:1.13.4" dependencies: "@mapbox/geojson-rewind": "npm:^0.5.2" "@mapbox/geojson-types": "npm:^1.0.2" "@mapbox/jsonlint-lines-primitives": "npm:^2.0.2" "@mapbox/mapbox-gl-supported": "npm:^1.5.0" "@mapbox/point-geometry": "npm:^0.1.0" "@mapbox/tiny-sdf": "npm:^1.1.1" "@mapbox/unitbezier": "npm:^0.0.0" "@mapbox/vector-tile": "npm:^1.3.1" "@mapbox/whoots-js": "npm:^3.1.0" csscolorparser: "npm:~1.0.3" earcut: "npm:^2.2.2" geojson-vt: "npm:^3.2.1" gl-matrix: "npm:^3.2.1" grid-index: "npm:^1.1.0" murmurhash-js: "npm:^1.0.0" pbf: "npm:^3.2.1" potpack: "npm:^1.0.1" quickselect: "npm:^2.0.0" rw: "npm:^1.3.3" supercluster: "npm:^7.1.0" tinyqueue: "npm:^2.0.3" vt-pbf: "npm:^3.1.1" checksum: 10c0/e528983335ef8d8ef564e2c0b21a98888b2220750d069679a334d91a43487d12dbbaaf6c798e47ba42f8a5d17dd996207cb1f2ed081d00705631d8cbfcba0a44 languageName: node linkType: hard "@plotly/point-cluster@npm:^3.1.9": version: 3.1.9 resolution: "@plotly/point-cluster@npm:3.1.9" dependencies: array-bounds: "npm:^1.0.1" binary-search-bounds: "npm:^2.0.4" clamp: "npm:^1.0.1" defined: "npm:^1.0.0" dtype: "npm:^2.0.0" flatten-vertex-data: "npm:^1.0.2" is-obj: "npm:^1.0.1" math-log2: "npm:^1.0.1" parse-rect: "npm:^1.2.0" pick-by-alias: "npm:^1.2.0" checksum: 10c0/3e451b1b04f1ce9c2ff1dcc2adbbc5d56bebc419f49c903eb215fa6973315d7f279fe9ebffea6f7ff0c09ba1c21bfe393bb74f54d0e5522a2d20bf43b7f35c38 languageName: node linkType: hard "@plotly/regl@npm:^2.1.2": version: 2.1.2 resolution: "@plotly/regl@npm:2.1.2" checksum: 10c0/84043676e5372113200deaca890829e457b95a0d6171342479d211264480b5fa2db81579f6082a1236755b0bd362dc0e9bfa4db7bc45cc6c50888e18a5ebbae6 languageName: node linkType: hard "@prisma/instrumentation@npm:6.10.1": version: 6.10.1 resolution: "@prisma/instrumentation@npm:6.10.1" dependencies: "@opentelemetry/instrumentation": "npm:^0.52.0 || ^0.53.0 || ^0.54.0 || ^0.55.0 || ^0.56.0 || ^0.57.0" peerDependencies: "@opentelemetry/api": ^1.8 checksum: 10c0/c6df3e6b318faabe825f0c99b8baa77389a7cdec6a096504be45117ac125acf4c9aa2fb1752bacdd4bd182222391638a5d3ca009eca75fb3cb36176c48fe1e01 languageName: node linkType: hard "@probe.gl/env@npm:4.0.9": version: 4.0.9 resolution: "@probe.gl/env@npm:4.0.9" checksum: 10c0/c6fcd1742aea014d15fe36a6cf0724d7faf3eeda27856978d87c1658b26ceaefc86254b011de65de35c1dfc0e3074fdbeaef5fd4362a05541a5e46b880e4024f languageName: node linkType: hard "@probe.gl/env@npm:4.1.0, @probe.gl/env@npm:^4.0.8, @probe.gl/env@npm:^4.1.0": version: 4.1.0 resolution: "@probe.gl/env@npm:4.1.0" checksum: 10c0/f364124e5b45613528e7c6c4889aa0139db0a3b2287362e7293f499ea191358059218f8d1e7372edd7f0ae6dac5a8d9fa0465c3c15f208dae3c893874f457c70 languageName: node linkType: hard "@probe.gl/log@npm:^4.0.2, @probe.gl/log@npm:^4.0.4": version: 4.0.9 resolution: "@probe.gl/log@npm:4.0.9" dependencies: "@probe.gl/env": "npm:4.0.9" checksum: 10c0/23521b46fdda80470d8b38d70c62d77f3b50257a63b3e7660655936593cf5f54ec7f1e2b0a36e8ecb7635c7fd45280bb66bd379a3e58afbde99f23d46f43c112 languageName: node linkType: hard "@probe.gl/log@npm:^4.0.8, @probe.gl/log@npm:^4.1.0": version: 4.1.0 resolution: "@probe.gl/log@npm:4.1.0" dependencies: "@probe.gl/env": "npm:4.1.0" checksum: 10c0/717f3c306a55419ffc4e7302e564cfa9948b7373dcaf355d2472d72d78a7f65d816cead3b8d942f8867421e30b803ac1060c41ba2bb85e0a1e6931e606c4a495 languageName: node linkType: hard "@probe.gl/stats@npm:^4.0.2": version: 4.0.9 resolution: "@probe.gl/stats@npm:4.0.9" checksum: 10c0/23c205232a45941b13d1e87efe060d81f3a09339b0294991fc9fdf6dd9d090a9e6c79cccf23ce8f09e5c14aa44ef128836639490df22729a13214b0ff3c7cd80 languageName: node linkType: hard "@probe.gl/stats@npm:^4.0.8, @probe.gl/stats@npm:^4.1.0": version: 4.1.0 resolution: "@probe.gl/stats@npm:4.1.0" checksum: 10c0/c16ac4c18f116067a5382a43d114b3c7d1ce723a5ebcdd96de7c59bb7380bb29275bb5f40f740efbf077a910c5a38405a4b4e1a47b565d582f26591163a407d5 languageName: node linkType: hard "@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/aspromise@npm:1.1.2" checksum: 10c0/a83343a468ff5b5ec6bff36fd788a64c839e48a07ff9f4f813564f58caf44d011cd6504ed2147bf34835bd7a7dd2107052af755961c6b098fd8902b4f6500d0f languageName: node linkType: hard "@protobufjs/base64@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/base64@npm:1.1.2" checksum: 10c0/eec925e681081af190b8ee231f9bad3101e189abbc182ff279da6b531e7dbd2a56f1f306f37a80b1be9e00aa2d271690d08dcc5f326f71c9eed8546675c8caf6 languageName: node linkType: hard "@protobufjs/codegen@npm:^2.0.4": version: 2.0.4 resolution: "@protobufjs/codegen@npm:2.0.4" checksum: 10c0/26ae337c5659e41f091606d16465bbcc1df1f37cc1ed462438b1f67be0c1e28dfb2ca9f294f39100c52161aef82edf758c95d6d75650a1ddf31f7ddee1440b43 languageName: node linkType: hard "@protobufjs/eventemitter@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/eventemitter@npm:1.1.0" checksum: 10c0/1eb0a75180e5206d1033e4138212a8c7089a3d418c6dfa5a6ce42e593a4ae2e5892c4ef7421f38092badba4040ea6a45f0928869989411001d8c1018ea9a6e70 languageName: node linkType: hard "@protobufjs/fetch@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/fetch@npm:1.1.0" dependencies: "@protobufjs/aspromise": "npm:^1.1.1" "@protobufjs/inquire": "npm:^1.1.0" checksum: 10c0/cda6a3dc2d50a182c5865b160f72077aac197046600091dbb005dd0a66db9cce3c5eaed6d470ac8ed49d7bcbeef6ee5f0bc288db5ff9a70cbd003e5909065233 languageName: node linkType: hard "@protobufjs/float@npm:^1.0.2": version: 1.0.2 resolution: "@protobufjs/float@npm:1.0.2" checksum: 10c0/18f2bdede76ffcf0170708af15c9c9db6259b771e6b84c51b06df34a9c339dbbeec267d14ce0bddd20acc142b1d980d983d31434398df7f98eb0c94a0eb79069 languageName: node linkType: hard "@protobufjs/inquire@npm:1.1.0": version: 1.1.0 resolution: "@protobufjs/inquire@npm:1.1.0" checksum: 10c0/64372482efcba1fb4d166a2664a6395fa978b557803857c9c03500e0ac1013eb4b1aacc9ed851dd5fc22f81583670b4f4431bae186f3373fedcfde863ef5921a languageName: node linkType: hard "@protobufjs/inquire@patch:@protobufjs/inquire@npm%3A1.1.0#~/.yarn/patches/@protobufjs-inquire-npm-1.1.0-3c7759e9ce.patch": version: 1.1.0 resolution: "@protobufjs/inquire@patch:@protobufjs/inquire@npm%3A1.1.0#~/.yarn/patches/@protobufjs-inquire-npm-1.1.0-3c7759e9ce.patch::version=1.1.0&hash=517abf" checksum: 10c0/7117122cbacce6d549e44398ac0bd2c6efd383379db4a4eed73a8ab2db5c5a71a521bf48d4665e7e0bea97b255a1ab36e66c844d75ae6b68470b1ce7b2d37487 languageName: node linkType: hard "@protobufjs/path@npm:^1.1.2": version: 1.1.2 resolution: "@protobufjs/path@npm:1.1.2" checksum: 10c0/cece0a938e7f5dfd2fa03f8c14f2f1cf8b0d6e13ac7326ff4c96ea311effd5fb7ae0bba754fbf505312af2e38500250c90e68506b97c02360a43793d88a0d8b4 languageName: node linkType: hard "@protobufjs/pool@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/pool@npm:1.1.0" checksum: 10c0/eda2718b7f222ac6e6ad36f758a92ef90d26526026a19f4f17f668f45e0306a5bd734def3f48f51f8134ae0978b6262a5c517c08b115a551756d1a3aadfcf038 languageName: node linkType: hard "@protobufjs/utf8@npm:^1.1.0": version: 1.1.0 resolution: "@protobufjs/utf8@npm:1.1.0" checksum: 10c0/a3fe31fe3fa29aa3349e2e04ee13dc170cc6af7c23d92ad49e3eeaf79b9766264544d3da824dba93b7855bd6a2982fb40032ef40693da98a136d835752beb487 languageName: node linkType: hard "@puppeteer/browsers@npm:2.10.8": version: 2.10.8 resolution: "@puppeteer/browsers@npm:2.10.8" dependencies: debug: "npm:^4.4.1" extract-zip: "npm:^2.0.1" progress: "npm:^2.0.3" proxy-agent: "npm:^6.5.0" semver: "npm:^7.7.2" tar-fs: "npm:^3.1.0" yargs: "npm:^17.7.2" bin: browsers: lib/cjs/main-cli.js checksum: 10c0/6c8604a11952f67c653ea8765a9e63725e14aa1ac1ff9d0708faaad7947c3ee2ec90d620bd2d63e49f89e983ffe691adf051e39b5d2e1ddbf6983becdd287dbb languageName: node linkType: hard "@rolldown/pluginutils@npm:1.0.0-beta.35": version: 1.0.0-beta.35 resolution: "@rolldown/pluginutils@npm:1.0.0-beta.35" checksum: 10c0/feb6ab8f77ef2bde675099409c3ccd6a168f35a3c3e88482df3ca42494260fd42befe36e8e90ce358847a12aaab94cd8fe7069cf1e905edf91eb411d933906d9 languageName: node linkType: hard "@rollup/pluginutils@npm:^5.1.4": version: 5.1.4 resolution: "@rollup/pluginutils@npm:5.1.4" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" picomatch: "npm:^4.0.2" peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true checksum: 10c0/6d58fbc6f1024eb4b087bc9bf59a1d655a8056a60c0b4021d3beaeec3f0743503f52467fd89d2cf0e7eccf2831feb40a05ad541a17637ea21ba10b21c2004deb languageName: node linkType: hard "@rollup/pluginutils@npm:^5.2.0": version: 5.2.0 resolution: "@rollup/pluginutils@npm:5.2.0" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" picomatch: "npm:^4.0.2" peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true checksum: 10c0/794890d512751451bcc06aa112366ef47ea8f9125dac49b1abf72ff8b079518b09359de9c60a013b33266541634e765ae61839c749fae0edb59a463418665c55 languageName: node linkType: hard "@rollup/rollup-android-arm-eabi@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-android-arm-eabi@npm:4.46.2" conditions: os=android & cpu=arm languageName: node linkType: hard "@rollup/rollup-android-arm64@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-android-arm64@npm:4.46.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard "@rollup/rollup-darwin-arm64@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-darwin-arm64@npm:4.46.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard "@rollup/rollup-darwin-x64@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-darwin-x64@npm:4.46.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard "@rollup/rollup-freebsd-arm64@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-freebsd-arm64@npm:4.46.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard "@rollup/rollup-freebsd-x64@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-freebsd-x64@npm:4.46.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-arm-musleabihf@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.46.2" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard "@rollup/rollup-linux-arm64-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.46.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-arm64-musl@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-arm64-musl@npm:4.46.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-ppc64-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.46.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-riscv64-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.46.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-riscv64-musl@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.46.2" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard "@rollup/rollup-linux-s390x-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.46.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-x64-gnu@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-x64-gnu@npm:4.46.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard "@rollup/rollup-linux-x64-musl@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-linux-x64-musl@npm:4.46.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard "@rollup/rollup-win32-arm64-msvc@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.46.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard "@rollup/rollup-win32-ia32-msvc@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.46.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard "@rollup/rollup-win32-x64-msvc@npm:4.46.2": version: 4.46.2 resolution: "@rollup/rollup-win32-x64-msvc@npm:4.46.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@rtsao/csstype@npm:2.6.5-forked.0": version: 2.6.5-forked.0 resolution: "@rtsao/csstype@npm:2.6.5-forked.0" checksum: 10c0/9ec60347441c232e65ee69f8c44e29c24cecdb533cef2f7d9bddab60c19491480c7e3df927ff028ba38da9f37ffeab6635cc4c0ae0baab707dfc4a36d2593d81 languageName: node linkType: hard "@rtsao/scc@npm:^1.1.0": version: 1.1.0 resolution: "@rtsao/scc@npm:1.1.0" checksum: 10c0/b5bcfb0d87f7d1c1c7c0f7693f53b07866ed9fec4c34a97a8c948fb9a7c0082e416ce4d3b60beb4f5e167cbe04cdeefbf6771320f3ede059b9ce91188c409a5b languageName: node linkType: hard "@rushstack/node-core-library@npm:5.11.0": version: 5.11.0 resolution: "@rushstack/node-core-library@npm:5.11.0" dependencies: ajv: "npm:~8.13.0" ajv-draft-04: "npm:~1.0.0" ajv-formats: "npm:~3.0.1" fs-extra: "npm:~11.3.0" import-lazy: "npm:~4.0.0" jju: "npm:~1.4.0" resolve: "npm:~1.22.1" semver: "npm:~7.5.4" peerDependencies: "@types/node": "*" peerDependenciesMeta: "@types/node": optional: true checksum: 10c0/7de70fdfa0274ce2fd5e2617c38156143172d852730d03ffb7cfec9ebd6f1bbbc595b81527a189956ee89fe419d9e7d51ffaeaa2d0ee2fc2deae7d24531b7ffb languageName: node linkType: hard "@rushstack/rig-package@npm:0.5.3": version: 0.5.3 resolution: "@rushstack/rig-package@npm:0.5.3" dependencies: resolve: "npm:~1.22.1" strip-json-comments: "npm:~3.1.1" checksum: 10c0/ef0b0115b60007f965b875f671019ac7fc26592f6bf7d7b40fa8c68e8dc37e9f7dcda3b5533b489ebf04d28a182dc60987bfd365a8d4173c73d482b270647741 languageName: node linkType: hard "@rushstack/terminal@npm:0.15.0": version: 0.15.0 resolution: "@rushstack/terminal@npm:0.15.0" dependencies: "@rushstack/node-core-library": "npm:5.11.0" supports-color: "npm:~8.1.1" peerDependencies: "@types/node": "*" peerDependenciesMeta: "@types/node": optional: true checksum: 10c0/44e23353e8a4b8024d10d01b9a05fd8d736ddbe2d595a12bfcd290c27842fef156e2471f5e61eed62bad733bd692ba261f1e642c2b1547a0009927805e74e2a6 languageName: node linkType: hard "@rushstack/ts-command-line@npm:4.23.5": version: 4.23.5 resolution: "@rushstack/ts-command-line@npm:4.23.5" dependencies: "@rushstack/terminal": "npm:0.15.0" "@types/argparse": "npm:1.0.38" argparse: "npm:~1.0.9" string-argv: "npm:~0.3.1" checksum: 10c0/8c4330620658227bb7af27031d720a826f6a8b92f281cc433393c52968475fddc0031d86477f1676377878130b926b2efb7893edb2d73cdb1fa23444b792e88a languageName: node linkType: hard "@sentry/core@npm:9.33.0": version: 9.33.0 resolution: "@sentry/core@npm:9.33.0" checksum: 10c0/c923060a255f0cd1f0afbda4581188ba137df2c509ddfc9460db05804024b5dc2b9b1f54847c4f49d16c749a20f62dc599c64491d59d51289ed454a12cb49fd2 languageName: node linkType: hard "@sentry/node@npm:^9.28.1": version: 9.33.0 resolution: "@sentry/node@npm:9.33.0" dependencies: "@opentelemetry/api": "npm:^1.9.0" "@opentelemetry/context-async-hooks": "npm:^1.30.1" "@opentelemetry/core": "npm:^1.30.1" "@opentelemetry/instrumentation": "npm:^0.57.2" "@opentelemetry/instrumentation-amqplib": "npm:^0.46.1" "@opentelemetry/instrumentation-connect": "npm:0.43.1" "@opentelemetry/instrumentation-dataloader": "npm:0.16.1" "@opentelemetry/instrumentation-express": "npm:0.47.1" "@opentelemetry/instrumentation-fs": "npm:0.19.1" "@opentelemetry/instrumentation-generic-pool": "npm:0.43.1" "@opentelemetry/instrumentation-graphql": "npm:0.47.1" "@opentelemetry/instrumentation-hapi": "npm:0.45.2" "@opentelemetry/instrumentation-http": "npm:0.57.2" "@opentelemetry/instrumentation-ioredis": "npm:0.47.1" "@opentelemetry/instrumentation-kafkajs": "npm:0.7.1" "@opentelemetry/instrumentation-knex": "npm:0.44.1" "@opentelemetry/instrumentation-koa": "npm:0.47.1" "@opentelemetry/instrumentation-lru-memoizer": "npm:0.44.1" "@opentelemetry/instrumentation-mongodb": "npm:0.52.0" "@opentelemetry/instrumentation-mongoose": "npm:0.46.1" "@opentelemetry/instrumentation-mysql": "npm:0.45.1" "@opentelemetry/instrumentation-mysql2": "npm:0.45.2" "@opentelemetry/instrumentation-pg": "npm:0.51.1" "@opentelemetry/instrumentation-redis-4": "npm:0.46.1" "@opentelemetry/instrumentation-tedious": "npm:0.18.1" "@opentelemetry/instrumentation-undici": "npm:0.10.1" "@opentelemetry/resources": "npm:^1.30.1" "@opentelemetry/sdk-trace-base": "npm:^1.30.1" "@opentelemetry/semantic-conventions": "npm:^1.34.0" "@prisma/instrumentation": "npm:6.10.1" "@sentry/core": "npm:9.33.0" "@sentry/opentelemetry": "npm:9.33.0" import-in-the-middle: "npm:^1.14.2" minimatch: "npm:^9.0.0" checksum: 10c0/359f6217571dab284f8e31892c28b9ec7bca3fc65ebcd8e2f3b3b89e19766a06c65925ac6e34fdab29216319ad2a6de83e08d6e79a51c9c5cfd54601f59e8355 languageName: node linkType: hard "@sentry/opentelemetry@npm:9.33.0": version: 9.33.0 resolution: "@sentry/opentelemetry@npm:9.33.0" dependencies: "@sentry/core": "npm:9.33.0" peerDependencies: "@opentelemetry/api": ^1.9.0 "@opentelemetry/context-async-hooks": ^1.30.1 || ^2.0.0 "@opentelemetry/core": ^1.30.1 || ^2.0.0 "@opentelemetry/instrumentation": ^0.57.1 || ^0.200.0 "@opentelemetry/sdk-trace-base": ^1.30.1 || ^2.0.0 "@opentelemetry/semantic-conventions": ^1.34.0 checksum: 10c0/42e47e36864908e88ed0dac6db4869f86901ba24a2ee990daea9c9c8d7cf143d680f9474157786bb22392db7164f7984985fb982c426b6e1dece758229e21580 languageName: node linkType: hard "@sindresorhus/is@npm:^4.6.0": version: 4.6.0 resolution: "@sindresorhus/is@npm:4.6.0" checksum: 10c0/33b6fb1d0834ec8dd7689ddc0e2781c2bfd8b9c4e4bacbcb14111e0ae00621f2c264b8a7d36541799d74888b5dccdf422a891a5cb5a709ace26325eedc81e22e languageName: node linkType: hard "@sindresorhus/slugify@npm:^3.0.0": version: 3.0.0 resolution: "@sindresorhus/slugify@npm:3.0.0" dependencies: "@sindresorhus/transliterate": "npm:^2.0.0" escape-string-regexp: "npm:^5.0.0" checksum: 10c0/e149fcaf81828f137061646970a8c04a00f4730483ae98c17542fc0edc100ec4ee8958311eb22703f1575d14eeffd216a8f47fd30886a893384e4c3faf9f895b languageName: node linkType: hard "@sindresorhus/transliterate@npm:^2.0.0": version: 2.0.0 resolution: "@sindresorhus/transliterate@npm:2.0.0" checksum: 10c0/82e98bf49f3520834b434f4c26d7c252ef1477ae3e32dc6be6fa2d5e40125f2e2fc7a72303a5e693521e2253b5a4370bbdae11aee91d15c9cca273762338d58f languageName: node linkType: hard "@streamlit/app@workspace:app": version: 0.0.0-use.local resolution: "@streamlit/app@workspace:app" dependencies: "@emotion-icons/emotion-icon": "npm:^4.1.0" "@emotion-icons/material-outlined": "npm:^3.14.0" "@emotion-icons/material-rounded": "npm:^3.14.0" "@emotion-icons/open-iconic": "npm:^3.14.0" "@emotion/react": "npm:^11.13.5" "@emotion/serialize": "npm:^1.1.3" "@emotion/styled": "npm:^11.14.1" "@eslint-react/eslint-plugin": "npm:^2.2.4" "@eslint/compat": "npm:^1.4.1" "@eslint/eslintrc": "npm:^3.3.1" "@eslint/js": "npm:^9.39.0" "@streamlit/connection": "workspace:^" "@streamlit/lib": "workspace:^" "@streamlit/protobuf": "workspace:^" "@streamlit/utils": "workspace:^" "@swc/plugin-emotion": "npm:^11.1.0" "@testing-library/dom": "npm:^10.4.1" "@testing-library/jest-dom": "npm:^6.8.0" "@testing-library/react": "npm:^16.3.0" "@testing-library/user-event": "npm:^14.6.1" "@types/eslint": "npm:^9.6.1" "@types/eslint-plugin-jsx-a11y": "npm:~6.10.1" "@types/eslint-plugin-prettier": "npm:~3.1.3" "@types/hoist-non-react-statics": "npm:^3.3.7" "@types/iframe-resizer": "npm:~4.0.0" "@types/jsdom": "npm:~21.1.7" "@types/lodash": "npm:^4.17.20" "@types/node": "npm:^24.3.1" "@types/prop-types": "npm:~15.7.15" "@types/react": "npm:^18.2.0" "@types/react-dom": "npm:^18.2.0" "@types/react-helmet-async": "npm:^1.0.3" "@types/react-transition-group": "npm:^4.4.12" "@types/styletron-engine-atomic": "npm:^1.1.1" "@types/styletron-react": "npm:^5.0.3" "@types/ua-parser-js": "npm:^0.7.39" "@types/uuid": "npm:^10.0.0" "@typescript-eslint/eslint-plugin": "npm:^8.46.2" "@vitejs/plugin-react-swc": "npm:^4.1.0" "@vitest/eslint-plugin": "npm:^1.4.0" axios-mock-adapter: "npm:^2.1.0" baseui: "npm:12.2.0" buffer: "npm:^6.0.3" chrome-launcher: "npm:^1.2.0" classnames: "npm:^2.3.2" color2k: "npm:^2.0.2" eslint: "npm:^9.39.0" eslint-config-prettier: "npm:^10.1.8" eslint-import-resolver-typescript: "npm:^4.4.4" eslint-plugin-import: "npm:^2.32.0" eslint-plugin-jsx-a11y: "npm:^6.10.2" eslint-plugin-lodash: "npm:^8.0.0" eslint-plugin-no-relative-import-paths: "npm:^1.6.1" eslint-plugin-prettier: "npm:^5.5.4" eslint-plugin-react: "npm:^7.37.5" eslint-plugin-react-hooks: "npm:^7.0.1" eslint-plugin-streamlit-custom: "workspace:^" eslint-plugin-testing-library: "npm:^7.13.3" globals: "npm:^16.4.0" hoist-non-react-statics: "npm:^3.3.2" humanize-string: "npm:^3.1.0" iframe-resizer: "npm:4.3.11" immer: "npm:^10.1.3" jsdom: "npm:24.1.3" lighthouse: "npm:^12.8.2" lodash: "npm:^4.17.21" loglevel: "npm:^1.9.2" moment: "npm:^2.29.4" polyfill-pseudoclass-has: "npm:^1.1.0" prettier: "npm:^3.6.2" prop-types: "npm:^15.7.2" rc-overflow: "npm:^1.4.1" re-resizable: "npm:^6.11.2" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-feather: "npm:^2.0.10" react-helmet-async: "npm:^2.0.5" react-hot-keys: "npm:^2.7.3" react-transition-group: "npm:^4.4.5" sass: "npm:^1.58.0" source-map-explorer: "npm:^2.5.3" styletron-engine-atomic: "npm:^1.5.0" styletron-react: "npm:^6.1.0" tree-kill: "npm:^1.2.2" tsconfig-paths-webpack-plugin: "npm:^4.2.0" typed-signals: "npm:^3.0.0" typescript-eslint: "npm:^8.46.2" typesync: "npm:^0.14.3" ua-parser-js: "npm:^1.0.41" util: "npm:^0.12.5" uuid: "npm:^13.0.0" vite: "npm:^7.1.11" vite-bundle-analyzer: "npm:^1.2.3" vite-plugin-svgr: "npm:^4.5.0" vite-tsconfig-paths: "npm:^5.1.4" vitest: "npm:^3.2.4" vitest-canvas-mock: "npm:^0.3.3" vitest-websocket-mock: "npm:^0.5.0" languageName: unknown linkType: soft "@streamlit/component-v2-lib@workspace:^, @streamlit/component-v2-lib@workspace:component-v2-lib": version: 0.0.0-use.local resolution: "@streamlit/component-v2-lib@workspace:component-v2-lib" dependencies: eslint: "npm:^9.39.0" prettier: "npm:^3.6.2" typescript: "npm:^5.9.2" typesync: "npm:^0.14.3" vite: "npm:^7.1.11" vite-plugin-dts: "npm:^4.5.4" vite-tsconfig-paths: "npm:^5.1.4" vitest: "npm:^3.2.4" languageName: unknown linkType: soft "@streamlit/connection@workspace:^, @streamlit/connection@workspace:connection": version: 0.0.0-use.local resolution: "@streamlit/connection@workspace:connection" dependencies: "@streamlit/protobuf": "workspace:^" "@streamlit/utils": "workspace:^" "@types/eslint": "npm:^9.6.1" "@types/lodash": "npm:~4.17.20" axios: "npm:^1.12.1" axios-mock-adapter: "npm:^2.1.0" eslint: "npm:^9.39.0" lodash: "npm:^4.17.21" loglevel: "npm:^1.9.2" prettier: "npm:^3.6.2" typesync: "npm:^0.14.3" vite: "npm:^7.1.11" vite-plugin-dts: "npm:^4.5.4" vite-plugin-svgr: "npm:^4.5.0" vite-tsconfig-paths: "npm:^5.1.4" vitest: "npm:^3.2.4" vitest-websocket-mock: "npm:^0.5.0" languageName: unknown linkType: soft "@streamlit/lib@workspace:^, @streamlit/lib@workspace:lib": version: 0.0.0-use.local resolution: "@streamlit/lib@workspace:lib" dependencies: "@deck.gl/aggregation-layers": "npm:^9.1.14" "@deck.gl/carto": "npm:^9.1.14" "@deck.gl/core": "npm:^9.1.14" "@deck.gl/geo-layers": "npm:^9.1.14" "@deck.gl/json": "npm:^9.1.14" "@deck.gl/layers": "npm:^9.1.14" "@deck.gl/mesh-layers": "npm:^9.1.14" "@deck.gl/react": "npm:^9.1.14" "@emotion-icons/emotion-icon": "npm:^4.1.0" "@emotion-icons/material-outlined": "npm:^3.14.0" "@emotion-icons/material-rounded": "npm:^3.14.0" "@emotion-icons/open-iconic": "npm:^3.14.0" "@emotion/cache": "npm:^11.13.5" "@emotion/is-prop-valid": "npm:^1.4.0" "@emotion/react": "npm:^11.13.5" "@emotion/styled": "npm:^11.14.1" "@glideapps/glide-data-grid": "npm:6.0.4-alpha24" "@glideapps/glide-data-grid-cells": "npm:6.0.4-alpha24" "@glideapps/glide-data-grid-source": "npm:6.0.4-alpha24" "@loaders.gl/core": "npm:^4.3.4" "@loaders.gl/csv": "npm:^4.3.4" "@loaders.gl/gltf": "npm:^4.3.4" "@sindresorhus/slugify": "npm:^3.0.0" "@streamlit/component-v2-lib": "workspace:^" "@streamlit/protobuf": "workspace:^" "@streamlit/utils": "workspace:^" "@swc/plugin-emotion": "npm:^11.1.0" "@testing-library/dom": "npm:^10.4.1" "@testing-library/jest-dom": "npm:^6.8.0" "@testing-library/react": "npm:^16.3.0" "@testing-library/user-event": "npm:^14.6.1" "@types/d3": "npm:^7.4.3" "@types/d3-graphviz": "npm:^2.6.10" "@types/eslint": "npm:^9.6.1" "@types/hoist-non-react-statics": "npm:~3.3.7" "@types/katex": "npm:~0.16.7" "@types/lodash": "npm:~4.17.20" "@types/mapbox-gl": "npm:~1.13.10" "@types/moment-duration-format": "npm:~2.2.6" "@types/plotly.js": "npm:^3.0.5" "@types/react": "npm:^18.2.0" "@types/react-color": "npm:^3.0.13" "@types/react-dom": "npm:^18.2.0" "@types/react-plotly.js": "npm:^2.6.3" "@types/react-syntax-highlighter": "npm:^15.5.5" "@types/react-window": "npm:~1.8.8" "@types/sprintf-js": "npm:^1.1.4" "@types/ua-parser-js": "npm:^0.7.39" "@types/uuid": "npm:^10.0.0" "@types/wavesurfer.js": "npm:^6.0.12" "@types/xxhashjs": "npm:^0.2.2" "@vitejs/plugin-react-swc": "npm:^4.1.0" apache-arrow: "npm:^21.0.0" axios: "npm:^1.12.1" axios-mock-adapter: "npm:^2.1.0" baseui: "npm:12.2.0" classnames: "npm:^2.3.2" color2k: "npm:^2.0.2" d3: "npm:^7.9.0" d3-graphviz: "npm:^5.6.0" date-fns: "npm:^4.1.0" decamelize: "npm:^6.0.1" deck.gl: "npm:^9.1.14" dompurify: "npm:^3.2.7" eslint: "npm:^9.39.0" eslint-plugin-streamlit-custom: "workspace:^" hoist-non-react-statics: "npm:^3.3.2" immer: "npm:^10.1.3" json5: "npm:^2.2.3" katex: "npm:^0.16.22" lodash: "npm:^4.17.21" loglevel: "npm:^1.9.2" mapbox-gl: "npm:^1.13.2" mdast-util-find-and-replace: "npm:^3.0.2" moment: "npm:^2.30.1" moment-duration-format: "npm:^2.3.2" moment-timezone: "npm:^0.6.0" native-file-system-adapter: "npm:^3.0.1" node-emoji: "npm:^2.2.0" node-fetch: "npm:3.3.2" numbro: "npm:^2.5.0" plotly.js: "npm:^3.1.0" postinstall-postinstall: "npm:^2.1.0" prettier: "npm:^3.6.2" protobufjs: "npm:^7.5.4" query-string: "npm:^9.3.1" re-resizable: "npm:^6.11.2" react-color: "npm:^2.18.1" react-dropzone: "npm:^14.3.8" react-feather: "npm:^2.0.10" react-json-view: "npm:^1.19.1" react-map-gl: "npm:^5.3.21" react-markdown: "npm:^10.1.0" react-plotly.js: "npm:^2.6.0" react-responsive-carousel: "npm:^3.2.23" react-syntax-highlighter: "npm:^15.6.3" react-webcam: "npm:7.2.0" react-window: "npm:^1.8.11" rehype-katex: "npm:^7.0.1" rehype-raw: "npm:^7.0.0" remark-directive: "npm:^4.0.0" remark-emoji: "npm:^5.0.2" remark-gfm: "npm:^4.0.1" remark-math: "npm:^6.0.0" sprintf-js: "npm:^1.1.3" styletron-react: "npm:^6.1.0" timezone-mock: "npm:^1.3.6" tsc-alias: "npm:^1.8.16" typed-signals: "npm:^3.0.0" typesync: "npm:^0.14.3" ua-parser-js: "npm:^1.0.41" unified: "npm:^11.0.5" unist-util-visit: "npm:^5.0.0" urlpattern-polyfill: "npm:^10.1.0" uuid: "npm:^13.0.0" vega: "npm:^6.2.0" vega-embed: "npm:^7.0.2" vega-interpreter: "npm:^2.2.1" vega-lite: "npm:6.3.1" vite: "npm:^7.1.11" vite-plugin-dts: "npm:^4.5.4" vite-plugin-svgr: "npm:^4.5.0" vite-tsconfig-paths: "npm:^5.1.4" vitest: "npm:^3.2.4" vitest-canvas-mock: "npm:^0.3.3" vitest-fetch-mock: "npm:^0.4.5" wavesurfer.js: "npm:^7.10.1" xxhashjs: "npm:^0.2.2" peerDependencies: react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 languageName: unknown linkType: soft "@streamlit/protobuf@workspace:^, @streamlit/protobuf@workspace:protobuf": version: 0.0.0-use.local resolution: "@streamlit/protobuf@workspace:protobuf" dependencies: protobufjs-cli: "npm:^1.2.0" typesync: "npm:^0.14.3" languageName: unknown linkType: soft "@streamlit/typescript-config@workspace:typescript-config": version: 0.0.0-use.local resolution: "@streamlit/typescript-config@workspace:typescript-config" dependencies: typescript: "npm:^5.9.2" languageName: unknown linkType: soft "@streamlit/utils@workspace:^, @streamlit/utils@workspace:utils": version: 0.0.0-use.local resolution: "@streamlit/utils@workspace:utils" dependencies: "@types/eslint": "npm:^9.6.1" eslint: "npm:^9.39.0" prettier: "npm:^3.6.2" typesync: "npm:^0.14.3" vite: "npm:^7.1.11" vite-plugin-dts: "npm:^4.5.4" vite-tsconfig-paths: "npm:^5.1.4" vitest: "npm:^3.2.4" languageName: unknown linkType: soft "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/a50bd0baa34faf16bcba712091f94c7f0e230431fe99a9dfc3401fa92823ad3f68495b86ab9bf9044b53839e8c416cfbb37eb3f246ff33f261e0fa9ee1779c5b languageName: node linkType: hard "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/8a98e59bd9971e066815b4129409932f7a4db4866834fe75677ea6d517972fb40b380a69a4413189f20e7947411f9ab1b0f029dd5e8068686a5a0188d3ccd4c7 languageName: node linkType: hard "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/517dcca75223bd05d3f056a8514dbba3031278bea4eadf0842c576d84f4651e7a4e0e7082d3ee4ef42456de0f9c4531d8a1917c04876ca64b014b859ca8f1bde languageName: node linkType: hard "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/004bd1892053b7e9c1b0bb14acc44e77634ec393722b87b1e4fae53e2c35122a2dd0d5c15e9070dbeec274e22e7693a2b8b48506733a8009ee92b12946fcb10a languageName: node linkType: hard "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/80e0a7fcf902f984c705051ca5c82ea6050ccbb70b651a8fea6d0eb5809e4dac274b49ea6be2d87f1eb9dfc0e2d6cdfffe1669ec2117f44b67a60a07d4c0b8b8 languageName: node linkType: hard "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/73e92c8277a89279745c0c500f59f083279a8dc30cd552b22981fade2a77628fb2bd2819ee505725fcd2e93f923e3790b52efcff409a159e657b46604a0b9a21 languageName: node linkType: hard "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0": version: 8.1.0 resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/655ed6bc7a208ceaa4ecff0a54ccc36008c3cb31efa90d11e171cab325ebbb21aa78f09c7b65f9b3ddeda3a85f348c0c862902c48be13c14b4de165c847974e3 languageName: node linkType: hard "@svgr/babel-plugin-transform-svg-component@npm:8.0.0": version: 8.0.0 resolution: "@svgr/babel-plugin-transform-svg-component@npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/4ac00bb99a3db4ef05e4362f116a3c608ee365a2d26cf7318d8d41a4a5b30a02c80455cce0e62c65b60ed815b5d632bedabac2ccd4b56f998fadef5286e3ded4 languageName: node linkType: hard "@svgr/babel-preset@npm:8.1.0": version: 8.1.0 resolution: "@svgr/babel-preset@npm:8.1.0" dependencies: "@svgr/babel-plugin-add-jsx-attribute": "npm:8.0.0" "@svgr/babel-plugin-remove-jsx-attribute": "npm:8.0.0" "@svgr/babel-plugin-remove-jsx-empty-expression": "npm:8.0.0" "@svgr/babel-plugin-replace-jsx-attribute-value": "npm:8.0.0" "@svgr/babel-plugin-svg-dynamic-title": "npm:8.0.0" "@svgr/babel-plugin-svg-em-dimensions": "npm:8.0.0" "@svgr/babel-plugin-transform-react-native-svg": "npm:8.1.0" "@svgr/babel-plugin-transform-svg-component": "npm:8.0.0" peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/49367d3ad0831f79b1056871b91766246f449d4d1168623af5e283fbaefce4a01d77ab00de6b045b55e956f9aae27895823198493cd232d88d3435ea4517ffc5 languageName: node linkType: hard "@svgr/core@npm:^8.1.0": version: 8.1.0 resolution: "@svgr/core@npm:8.1.0" dependencies: "@babel/core": "npm:^7.21.3" "@svgr/babel-preset": "npm:8.1.0" camelcase: "npm:^6.2.0" cosmiconfig: "npm:^8.1.3" snake-case: "npm:^3.0.4" checksum: 10c0/6a2f6b1bc79bce39f66f088d468985d518005fc5147ebf4f108570a933818b5951c2cb7da230ddff4b7c8028b5a672b2d33aa2acce012b8b9770073aa5a2d041 languageName: node linkType: hard "@svgr/hast-util-to-babel-ast@npm:8.0.0": version: 8.0.0 resolution: "@svgr/hast-util-to-babel-ast@npm:8.0.0" dependencies: "@babel/types": "npm:^7.21.3" entities: "npm:^4.4.0" checksum: 10c0/f4165b583ba9eaf6719e598977a7b3ed182f177983e55f9eb55a6a73982d81277510e9eb7ab41f255151fb9ed4edd11ac4bef95dd872f04ed64966d8c85e0f79 languageName: node linkType: hard "@svgr/plugin-jsx@npm:^8.1.0": version: 8.1.0 resolution: "@svgr/plugin-jsx@npm:8.1.0" dependencies: "@babel/core": "npm:^7.21.3" "@svgr/babel-preset": "npm:8.1.0" "@svgr/hast-util-to-babel-ast": "npm:8.0.0" svg-parser: "npm:^2.0.4" peerDependencies: "@svgr/core": "*" checksum: 10c0/07b4d9e00de795540bf70556fa2cc258774d01e97a12a26234c6fdf42b309beb7c10f31ee24d1a71137239347b1547b8bb5587d3a6de10669f95dcfe99cddc56 languageName: node linkType: hard "@swc/core-darwin-arm64@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-darwin-arm64@npm:1.13.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard "@swc/core-darwin-x64@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-darwin-x64@npm:1.13.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard "@swc/core-linux-arm-gnueabihf@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-linux-arm-gnueabihf@npm:1.13.5" conditions: os=linux & cpu=arm languageName: node linkType: hard "@swc/core-linux-arm64-gnu@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-linux-arm64-gnu@npm:1.13.5" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard "@swc/core-linux-arm64-musl@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-linux-arm64-musl@npm:1.13.5" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard "@swc/core-linux-x64-gnu@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-linux-x64-gnu@npm:1.13.5" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard "@swc/core-linux-x64-musl@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-linux-x64-musl@npm:1.13.5" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard "@swc/core-win32-arm64-msvc@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-win32-arm64-msvc@npm:1.13.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard "@swc/core-win32-ia32-msvc@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-win32-ia32-msvc@npm:1.13.5" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard "@swc/core-win32-x64-msvc@npm:1.13.5": version: 1.13.5 resolution: "@swc/core-win32-x64-msvc@npm:1.13.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.13.5": version: 1.13.5 resolution: "@swc/core@npm:1.13.5" dependencies: "@swc/core-darwin-arm64": "npm:1.13.5" "@swc/core-darwin-x64": "npm:1.13.5" "@swc/core-linux-arm-gnueabihf": "npm:1.13.5" "@swc/core-linux-arm64-gnu": "npm:1.13.5" "@swc/core-linux-arm64-musl": "npm:1.13.5" "@swc/core-linux-x64-gnu": "npm:1.13.5" "@swc/core-linux-x64-musl": "npm:1.13.5" "@swc/core-win32-arm64-msvc": "npm:1.13.5" "@swc/core-win32-ia32-msvc": "npm:1.13.5" "@swc/core-win32-x64-msvc": "npm:1.13.5" "@swc/counter": "npm:^0.1.3" "@swc/types": "npm:^0.1.24" peerDependencies: "@swc/helpers": ">=0.5.17" dependenciesMeta: "@swc/core-darwin-arm64": optional: true "@swc/core-darwin-x64": optional: true "@swc/core-linux-arm-gnueabihf": optional: true "@swc/core-linux-arm64-gnu": optional: true "@swc/core-linux-arm64-musl": optional: true "@swc/core-linux-x64-gnu": optional: true "@swc/core-linux-x64-musl": optional: true "@swc/core-win32-arm64-msvc": optional: true "@swc/core-win32-ia32-msvc": optional: true "@swc/core-win32-x64-msvc": optional: true peerDependenciesMeta: "@swc/helpers": optional: true checksum: 10c0/26efc58d2b154050a4d75b215007e2780fc02ccdd35168746e818ef58009201878d5fbe0e074ed2902858c447fd8806e52c03dd05c20ba8501573f57ef34c3be languageName: node linkType: hard "@swc/counter@npm:^0.1.3": version: 0.1.3 resolution: "@swc/counter@npm:0.1.3" checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356 languageName: node linkType: hard "@swc/helpers@npm:^0.5.11": version: 0.5.13 resolution: "@swc/helpers@npm:0.5.13" dependencies: tslib: "npm:^2.4.0" checksum: 10c0/b9df578401fc62405da9a6c31e79e447a2fd90f68b25b1daee12f2caf2821991bb89106f0397bc1acb4c4d84a8ce079d04b60b65f534496952e3bf8c9a52f40f languageName: node linkType: hard "@swc/plugin-emotion@npm:^11.1.0": version: 11.1.0 resolution: "@swc/plugin-emotion@npm:11.1.0" dependencies: "@swc/counter": "npm:^0.1.3" checksum: 10c0/2f53007b06a90ac2bd4aabfbc8932837a83d69ae70878e2e325cb6d8dc50b8cbdca494e345d93bc2a79d8edce00feb0ce662bfd09a36b9fe1c7b89290db45f77 languageName: node linkType: hard "@swc/types@npm:^0.1.24": version: 0.1.25 resolution: "@swc/types@npm:0.1.25" dependencies: "@swc/counter": "npm:^0.1.3" checksum: 10c0/847a5b20b131281f89d640a7ed4887fb65724807d53d334b230e84b98c21097aa10cd28a074f9ed287a6ce109e443dd4bafbe7dcfb62333d7806c4ea3e7f8aca languageName: node linkType: hard "@testing-library/dom@npm:^10.4.1": version: 10.4.1 resolution: "@testing-library/dom@npm:10.4.1" dependencies: "@babel/code-frame": "npm:^7.10.4" "@babel/runtime": "npm:^7.12.5" "@types/aria-query": "npm:^5.0.1" aria-query: "npm:5.3.0" dom-accessibility-api: "npm:^0.5.9" lz-string: "npm:^1.5.0" picocolors: "npm:1.1.1" pretty-format: "npm:^27.0.2" checksum: 10c0/19ce048012d395ad0468b0dbcc4d0911f6f9e39464d7a8464a587b29707eed5482000dad728f5acc4ed314d2f4d54f34982999a114d2404f36d048278db815b1 languageName: node linkType: hard "@testing-library/jest-dom@npm:^6.8.0": version: 6.8.0 resolution: "@testing-library/jest-dom@npm:6.8.0" dependencies: "@adobe/css-tools": "npm:^4.4.0" aria-query: "npm:^5.0.0" css.escape: "npm:^1.5.1" dom-accessibility-api: "npm:^0.6.3" picocolors: "npm:^1.1.1" redent: "npm:^3.0.0" checksum: 10c0/4c5b8b433e0339e0399b940ae901a99ae00f1d5ffb7cbb295460b2c44aaad0bc7befcca7b06ceed7aa68a524970077468046c9fe52836ee26f45b807c80a7ff1 languageName: node linkType: hard "@testing-library/react@npm:^16.3.0": version: 16.3.0 resolution: "@testing-library/react@npm:16.3.0" dependencies: "@babel/runtime": "npm:^7.12.5" peerDependencies: "@testing-library/dom": ^10.0.0 "@types/react": ^18.0.0 || ^19.0.0 "@types/react-dom": ^18.0.0 || ^19.0.0 react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true "@types/react-dom": optional: true checksum: 10c0/3a2cb1f87c9a67e1ebbbcfd99b94b01e496fc35147be8bc5d8bf07a699c7d523a09d57ef2f7b1d91afccd1a28e21eda3b00d80187fbb51b1de01e422592d845e languageName: node linkType: hard "@testing-library/user-event@npm:^14.6.1": version: 14.6.1 resolution: "@testing-library/user-event@npm:14.6.1" peerDependencies: "@testing-library/dom": ">=7.21.4" checksum: 10c0/75fea130a52bf320d35d46ed54f3eec77e71a56911b8b69a3fe29497b0b9947b2dc80d30f04054ad4ce7f577856ae3e5397ea7dff0ef14944d3909784c7a93fe languageName: node linkType: hard "@toast-ui/editor@npm:3.2.2, @toast-ui/editor@npm:^3.2.2": version: 3.2.2 resolution: "@toast-ui/editor@npm:3.2.2" dependencies: dompurify: "npm:^2.3.3" prosemirror-commands: "npm:^1.1.9" prosemirror-history: "npm:^1.1.3" prosemirror-inputrules: "npm:^1.1.3" prosemirror-keymap: "npm:^1.1.4" prosemirror-model: "npm:^1.14.1" prosemirror-state: "npm:^1.3.4" prosemirror-view: "npm:^1.18.7" checksum: 10c0/f7b2be4d49e85bd9f6ef08e6a66a73ddbfecd5d3a4ca9f441635fc90c621360b1c69966bac9d34cd315879f387e925a2a33da485f473b8820944c5f9fd2503af languageName: node linkType: hard "@toast-ui/react-editor@npm:3.2.3": version: 3.2.3 resolution: "@toast-ui/react-editor@npm:3.2.3" dependencies: "@toast-ui/editor": "npm:^3.2.2" peerDependencies: react: ^17.0.1 checksum: 10c0/9850ee4b858247d1df4448ae56e800adf06f8622d179bd896e29932a398ddc0b719c7e7b90a4c17be012faa0c30341c3973126c7220cd5eae86e31bc195bd5be languageName: node linkType: hard "@tootallnate/quickjs-emscripten@npm:^0.23.0": version: 0.23.0 resolution: "@tootallnate/quickjs-emscripten@npm:0.23.0" checksum: 10c0/2a939b781826fb5fd3edd0f2ec3b321d259d760464cf20611c9877205aaca3ccc0b7304dea68416baa0d568e82cd86b17d29548d1e5139fa3155a4a86a2b4b49 languageName: node linkType: hard "@turf/area@npm:^7.1.0": version: 7.1.0 resolution: "@turf/area@npm:7.1.0" dependencies: "@turf/helpers": "npm:^7.1.0" "@turf/meta": "npm:^7.1.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.6.2" checksum: 10c0/f7444e75e04be1de6045b22fc723fb254367748ed1a0aa4b2357baed2ef3098a63ef8976b394a9cc03c228ebdc7013982da71f5bd3be4a2a65ef5898c772a135 languageName: node linkType: hard "@turf/bbox-clip@npm:^7.1.0": version: 7.2.0 resolution: "@turf/bbox-clip@npm:7.2.0" dependencies: "@turf/helpers": "npm:^7.2.0" "@turf/invariant": "npm:^7.2.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.8.1" checksum: 10c0/6babf2922a51e6fc94fcb992b3794a86aa103d08d6d98e2ac8188aa2b44b8afc8a64aab12872c991169c80d437471616d046ee092a042624381fdc5dcb5d3e08 languageName: node linkType: hard "@turf/bbox-polygon@npm:^7.1.0": version: 7.2.0 resolution: "@turf/bbox-polygon@npm:7.2.0" dependencies: "@turf/helpers": "npm:^7.2.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.8.1" checksum: 10c0/c0b35639fdefae3fddd6345a44ece35f7d411faf07c274731a2ec6fa2e94bce9be7864d86f7618594161ac12dcf3ae7c7f978225a7baeabe1f82d1211ff99c40 languageName: node linkType: hard "@turf/bbox@npm:^7.1.0": version: 7.1.0 resolution: "@turf/bbox@npm:7.1.0" dependencies: "@turf/helpers": "npm:^7.1.0" "@turf/meta": "npm:^7.1.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.6.2" checksum: 10c0/901ed437ad1241b1c7cf76ee3f1dd998b32a59647074216d076a62080281693cc3f1d66d1dedd02fd5617ea57434ec059843bcc275d20f667019f3e1f378b05d languageName: node linkType: hard "@turf/boolean-clockwise@npm:^5.1.5": version: 5.1.5 resolution: "@turf/boolean-clockwise@npm:5.1.5" dependencies: "@turf/helpers": "npm:^5.1.5" "@turf/invariant": "npm:^5.1.5" checksum: 10c0/3aa66df49319e7b7fbbf02826d05c3c221b4d416d5e0fa21adc8d3e033d72055d3b1a7f4d319600b6f1d43c04c7e10f387fb490117884de8137c375b7fd2e543 languageName: node linkType: hard "@turf/centroid@npm:^7.1.0": version: 7.1.0 resolution: "@turf/centroid@npm:7.1.0" dependencies: "@turf/helpers": "npm:^7.1.0" "@turf/meta": "npm:^7.1.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.6.2" checksum: 10c0/23b29a1d0d668220e975ab2fb8f0594ebd26c89a6399eef539d6d84b091611e8a09380f070957969a51a54f400b2303c23bf6a4a965909316a60f936d97fa0df languageName: node linkType: hard "@turf/clone@npm:^5.1.5": version: 5.1.5 resolution: "@turf/clone@npm:5.1.5" dependencies: "@turf/helpers": "npm:^5.1.5" checksum: 10c0/8bb5c9266a458e42fc6f8b13977fea5a1c46f7de20ac5e65090134d8f2d130bd313ef04137d6bef62070876593bcee94119369119ab38eeddddacf18e270d900 languageName: node linkType: hard "@turf/helpers@npm:^5.1.5": version: 5.1.5 resolution: "@turf/helpers@npm:5.1.5" checksum: 10c0/f5ed19cddef37fb5098e2509e8472df3afe099dcd6db62b7e541cf37c02c6ea1b13f69c29ff493ded7a1374c1a9b185a87fefee368211934364977dffd48b2e9 languageName: node linkType: hard "@turf/helpers@npm:^7.1.0": version: 7.1.0 resolution: "@turf/helpers@npm:7.1.0" dependencies: "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.6.2" checksum: 10c0/0b07c01584d8bee977edec8752109b4f79ab5b149e55a7dbe051e412e150c0a96f2464c9647676a092b7ab4429271eee4a31400ea45e9b55095ae53ad22f43d6 languageName: node linkType: hard "@turf/helpers@npm:^7.2.0": version: 7.2.0 resolution: "@turf/helpers@npm:7.2.0" dependencies: "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.8.1" checksum: 10c0/4d6f57164cca00ec7a18e2d3c0200d0274e4ab2b6b3201c6a867b867d899f3f618a82ae242617d467efb04f32740cec150ae06a0e07ee39318397ebc34914687 languageName: node linkType: hard "@turf/invariant@npm:^5.1.5": version: 5.2.0 resolution: "@turf/invariant@npm:5.2.0" dependencies: "@turf/helpers": "npm:^5.1.5" checksum: 10c0/c7d6c81f85d85ce7da5bdbc457a61609a11a54f209f0bb922bcd12c329e9e7855d2b14b2df596c78521193b44c2a92cecf2f50db228546fa1a92beb413a22fbb languageName: node linkType: hard "@turf/invariant@npm:^7.1.0, @turf/invariant@npm:^7.2.0": version: 7.2.0 resolution: "@turf/invariant@npm:7.2.0" dependencies: "@turf/helpers": "npm:^7.2.0" "@types/geojson": "npm:^7946.0.10" tslib: "npm:^2.8.1" checksum: 10c0/6968b766d5522488bb2b149a72f863e3f0d4bb0342b14f3992e3e920d9e32c252e1e07e84213732cb51609aef7a82833a8fe76b1c7d0db4cd384954cfedaa4e5 languageName: node linkType: hard "@turf/meta@npm:^5.1.5": version: 5.2.0 resolution: "@turf/meta@npm:5.2.0" dependencies: "@turf/helpers": "npm:^5.1.5" checksum: 10c0/fd41fbad84d840bebf75fdf13a4e3dd15b8c600251533073d5f6129a31a42e4f88790ce396492cec69f42ca4365e96d6f7940aeb302daaedcb795dc9414e7adc languageName: node linkType: hard "@turf/meta@npm:^7.1.0": version: 7.1.0 resolution: "@turf/meta@npm:7.1.0" dependencies: "@turf/helpers": "npm:^7.1.0" "@types/geojson": "npm:^7946.0.10" checksum: 10c0/c7aa77ddb28ef5068b031c1b422d2d5dc1df51975f727be42e2d8d500a026a2e667242d6aa06453f757cbd5ead2db0ba6b9a5d2fcf5ab496574cd4c0ae4fe325 languageName: node linkType: hard "@turf/meta@npm:^7.2.0": version: 7.2.0 resolution: "@turf/meta@npm:7.2.0" dependencies: "@turf/helpers": "npm:^7.2.0" "@types/geojson": "npm:^7946.0.10" checksum: 10c0/707ed63ba64fe48769806bf2419f5c0cd2ebf821a6467aeffb784ba7ebd6a63ec98d4192b97915948529c00304ed46ddc83842a80714fb1f2018fd4e3c455498 languageName: node linkType: hard "@turf/rewind@npm:^5.1.5": version: 5.1.5 resolution: "@turf/rewind@npm:5.1.5" dependencies: "@turf/boolean-clockwise": "npm:^5.1.5" "@turf/clone": "npm:^5.1.5" "@turf/helpers": "npm:^5.1.5" "@turf/invariant": "npm:^5.1.5" "@turf/meta": "npm:^5.1.5" checksum: 10c0/503c624ba2b5898daac6937ecf5eaf9f8b1ccd8109233b977adc8aeefbb0a086ff09f0813677b3fdf3d3c1072a9f3f22dfc4c6dc10dfbddf7f063bb4a543ec90 languageName: node linkType: hard "@turf/union@npm:^7.1.0": version: 7.2.0 resolution: "@turf/union@npm:7.2.0" dependencies: "@turf/helpers": "npm:^7.2.0" "@turf/meta": "npm:^7.2.0" "@types/geojson": "npm:^7946.0.10" polyclip-ts: "npm:^0.16.8" tslib: "npm:^2.8.1" checksum: 10c0/fe2984e77147d1dcbd6484fe210ff6087f608de35974ab0b7e5e7ccc2070eab35f500335937d4fc2e759304bb88fa88c7eecb0913c2de6a2157d019c63cbd6a4 languageName: node linkType: hard "@tybys/wasm-util@npm:^0.9.0": version: 0.9.0 resolution: "@tybys/wasm-util@npm:0.9.0" dependencies: tslib: "npm:^2.4.0" checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d languageName: node linkType: hard "@types/argparse@npm:1.0.38": version: 1.0.38 resolution: "@types/argparse@npm:1.0.38" checksum: 10c0/4fc892da5df16923f48180da2d1f4562fa8b0507cf636b24780444fa0a1d7321d4dc0c0ecbee6152968823f5a2ae0d321b4f8c705a489bf1ae1245bdeb0868fd languageName: node linkType: hard "@types/aria-query@npm:^5.0.1": version: 5.0.4 resolution: "@types/aria-query@npm:5.0.4" checksum: 10c0/dc667bc6a3acc7bba2bccf8c23d56cb1f2f4defaa704cfef595437107efaa972d3b3db9ec1d66bc2711bfc35086821edd32c302bffab36f2e79b97f312069f08 languageName: node linkType: hard "@types/brotli@npm:^1.3.0": version: 1.3.4 resolution: "@types/brotli@npm:1.3.4" dependencies: "@types/node": "npm:*" checksum: 10c0/b13829301b3ee79250d3fa8b1973097837bdd040fb90c90f63f406385e62b8e06e72a41e77939c6f8118090a7c72215b0d7b4d83b1e69457616810a65a576339 languageName: node linkType: hard "@types/chai@npm:^5.2.2": version: 5.2.2 resolution: "@types/chai@npm:5.2.2" dependencies: "@types/deep-eql": "npm:*" checksum: 10c0/49282bf0e8246800ebb36f17256f97bd3a8c4fb31f92ad3c0eaa7623518d7e87f1eaad4ad206960fcaf7175854bdff4cb167e4fe96811e0081b4ada83dd533ec languageName: node linkType: hard "@types/command-line-args@npm:^5.2.3": version: 5.2.3 resolution: "@types/command-line-args@npm:5.2.3" checksum: 10c0/3a9bc58fd26e546391f6369dd28c03d59349dc4ac39eada1a5c39cc3578e02e4aac222615170e0db79b198ffba2af84fdbdda46e08c6edc4da42bc17ea85200f languageName: node linkType: hard "@types/command-line-usage@npm:^5.0.4": version: 5.0.4 resolution: "@types/command-line-usage@npm:5.0.4" checksum: 10c0/67840ebf4bcfee200c07d978669ad596fe2adc350fd5c19d44ec2248623575d96ec917f513d1d59453f8f57e879133861a4cc41c20045c07f6c959f1fcaac7ad languageName: node linkType: hard "@types/connect@npm:3.4.38": version: 3.4.38 resolution: "@types/connect@npm:3.4.38" dependencies: "@types/node": "npm:*" checksum: 10c0/2e1cdba2c410f25649e77856505cd60223250fa12dff7a503e492208dbfdd25f62859918f28aba95315251fd1f5e1ffbfca1e25e73037189ab85dd3f8d0a148c languageName: node linkType: hard "@types/crypto-js@npm:^4.0.2": version: 4.2.2 resolution: "@types/crypto-js@npm:4.2.2" checksum: 10c0/760a2078f36f2a3a1089ef367b0d13229876adcf4bcd6e8824d00d9e9bfad8118dc7e6a3cc66322b083535e12be3a29044ccdc9603bfb12519ff61551a3322c6 languageName: node linkType: hard "@types/d3-array@npm:*, @types/d3-array@npm:^3.0.2": version: 3.2.1 resolution: "@types/d3-array@npm:3.2.1" checksum: 10c0/38bf2c778451f4b79ec81a2288cb4312fe3d6449ecdf562970cc339b60f280f31c93a024c7ff512607795e79d3beb0cbda123bb07010167bce32927f71364bca languageName: node linkType: hard "@types/d3-axis@npm:*": version: 3.0.6 resolution: "@types/d3-axis@npm:3.0.6" dependencies: "@types/d3-selection": "npm:*" checksum: 10c0/d756d42360261f44d8eefd0950c5bb0a4f67a46dd92069da3f723ac36a1e8cb2b9ce6347d836ef19d5b8aef725dbcf8fdbbd6cfbff676ca4b0642df2f78b599a languageName: node linkType: hard "@types/d3-brush@npm:*": version: 3.0.6 resolution: "@types/d3-brush@npm:3.0.6" dependencies: "@types/d3-selection": "npm:*" checksum: 10c0/fd6e2ac7657a354f269f6b9c58451ffae9d01b89ccb1eb6367fd36d635d2f1990967215ab498e0c0679ff269429c57fad6a2958b68f4d45bc9f81d81672edc01 languageName: node linkType: hard "@types/d3-chord@npm:*": version: 3.0.6 resolution: "@types/d3-chord@npm:3.0.6" checksum: 10c0/c5a25eb5389db01e63faec0c5c2ec7cc41c494e9b3201630b494c4e862a60f1aa83fabbc33a829e7e1403941e3c30d206c741559b14406ac2a4239cfdf4b4c17 languageName: node linkType: hard "@types/d3-color@npm:*": version: 3.1.3 resolution: "@types/d3-color@npm:3.1.3" checksum: 10c0/65eb0487de606eb5ad81735a9a5b3142d30bc5ea801ed9b14b77cb14c9b909f718c059f13af341264ee189acf171508053342142bdf99338667cea26a2d8d6ae languageName: node linkType: hard "@types/d3-color@npm:^1, @types/d3-color@npm:^1.4.2": version: 1.4.5 resolution: "@types/d3-color@npm:1.4.5" checksum: 10c0/d84233fdfb3ea81710a2aa7eb8f332a0199dfbefb10cd81a68e504dfb2a00b78d309ebe0b1b452c97d7b9de193a301b8ce3cec0842ec300277caef34ef2dd8ed languageName: node linkType: hard "@types/d3-contour@npm:*": version: 3.0.6 resolution: "@types/d3-contour@npm:3.0.6" dependencies: "@types/d3-array": "npm:*" "@types/geojson": "npm:*" checksum: 10c0/e7d83e94719af4576ceb5ac7f277c5806f83ba6c3631744ae391cffc3641f09dfa279470b83053cd0b2acd6784e8749c71141d05bdffa63ca58ffb5b31a0f27c languageName: node linkType: hard "@types/d3-delaunay@npm:*": version: 6.0.4 resolution: "@types/d3-delaunay@npm:6.0.4" checksum: 10c0/d154a8864f08c4ea23ecb9bdabcef1c406a25baa8895f0cb08a0ed2799de0d360e597552532ce7086ff0cdffa8f3563f9109d18f0191459d32bb620a36939123 languageName: node linkType: hard "@types/d3-dispatch@npm:*": version: 3.0.6 resolution: "@types/d3-dispatch@npm:3.0.6" checksum: 10c0/405eb7d0ec139fbf72fa6a43b0f3ca8a1f913bb2cb38f607827e63fca8d4393f021f32f3b96b33c93ddbd37789453a0b3624f14f504add5308fd9aec8a46dda0 languageName: node linkType: hard "@types/d3-drag@npm:*": version: 3.0.7 resolution: "@types/d3-drag@npm:3.0.7" dependencies: "@types/d3-selection": "npm:*" checksum: 10c0/65e29fa32a87c72d26c44b5e2df3bf15af21cd128386bcc05bcacca255927c0397d0cd7e6062aed5f0abd623490544a9d061c195f5ed9f018fe0b698d99c079d languageName: node linkType: hard "@types/d3-dsv@npm:*": version: 3.0.7 resolution: "@types/d3-dsv@npm:3.0.7" checksum: 10c0/c0f01da862465594c8a28278b51c850af3b4239cc22b14fd1a19d7a98f93d94efa477bf59d8071beb285dca45bf614630811451e18e7c52add3a0abfee0a1871 languageName: node linkType: hard "@types/d3-ease@npm:*": version: 3.0.2 resolution: "@types/d3-ease@npm:3.0.2" checksum: 10c0/aff5a1e572a937ee9bff6465225d7ba27d5e0c976bd9eacdac2e6f10700a7cb0c9ea2597aff6b43a6ed850a3210030870238894a77ec73e309b4a9d0333f099c languageName: node linkType: hard "@types/d3-fetch@npm:*": version: 3.0.7 resolution: "@types/d3-fetch@npm:3.0.7" dependencies: "@types/d3-dsv": "npm:*" checksum: 10c0/3d147efa52a26da1a5d40d4d73e6cebaaa964463c378068062999b93ea3731b27cc429104c21ecbba98c6090e58ef13429db6399238c5e3500162fb3015697a0 languageName: node linkType: hard "@types/d3-force@npm:*": version: 3.0.10 resolution: "@types/d3-force@npm:3.0.10" checksum: 10c0/c82b459079a106b50e346c9b79b141f599f2fc4f598985a5211e72c7a2e20d35bd5dc6e91f306b323c8bfa325c02c629b1645f5243f1c6a55bd51bc85cccfa92 languageName: node linkType: hard "@types/d3-format@npm:*": version: 3.0.4 resolution: "@types/d3-format@npm:3.0.4" checksum: 10c0/3ac1600bf9061a59a228998f7cd3f29e85cbf522997671ba18d4d84d10a2a1aff4f95aceb143fa9960501c3ec351e113fc75884e6a504ace44dc1744083035ee languageName: node linkType: hard "@types/d3-geo@npm:*": version: 3.1.0 resolution: "@types/d3-geo@npm:3.1.0" dependencies: "@types/geojson": "npm:*" checksum: 10c0/3745a93439038bb5b0b38facf435f7079812921d46406f5d38deaee59e90084ff742443c7ea0a8446df81a0d81eaf622fe7068cf4117a544bd4aa3b2dc182f88 languageName: node linkType: hard "@types/d3-graphviz@npm:^2.6.10": version: 2.6.10 resolution: "@types/d3-graphviz@npm:2.6.10" dependencies: "@types/d3-selection": "npm:^1" "@types/d3-transition": "npm:^1" "@types/d3-zoom": "npm:^1" checksum: 10c0/bbb4143dcef1ebac612f93e448a53291cec3f708489261dc54c657db0441ed0a87c3bdf5e902e6d695918b7a39ace15bcf07e2c828d6568611eee8b5c15fe6c4 languageName: node linkType: hard "@types/d3-hierarchy@npm:*": version: 3.1.7 resolution: "@types/d3-hierarchy@npm:3.1.7" checksum: 10c0/873711737d6b8e7b6f1dda0bcd21294a48f75024909ae510c5d2c21fad2e72032e0958def4d9f68319d3aaac298ad09c49807f8bfc87a145a82693b5208613c7 languageName: node linkType: hard "@types/d3-interpolate@npm:*": version: 3.0.4 resolution: "@types/d3-interpolate@npm:3.0.4" dependencies: "@types/d3-color": "npm:*" checksum: 10c0/066ebb8da570b518dd332df6b12ae3b1eaa0a7f4f0c702e3c57f812cf529cc3500ec2aac8dc094f31897790346c6b1ebd8cd7a077176727f4860c2b181a65ca4 languageName: node linkType: hard "@types/d3-interpolate@npm:^1": version: 1.4.5 resolution: "@types/d3-interpolate@npm:1.4.5" dependencies: "@types/d3-color": "npm:^1" checksum: 10c0/d30c5d797e9797e0efa11d5afe44b7a2f71ba6de9740e00ddd05b3c4fe35d0ab72c9f1028fed8680e3ac7661d32fd29ae208fc8652d53ea60ef83a074d20e423 languageName: node linkType: hard "@types/d3-path@npm:*": version: 3.1.0 resolution: "@types/d3-path@npm:3.1.0" checksum: 10c0/85e8b3aa968a60a5b33198ade06ae7ffedcf9a22d86f24859ff58e014b053ccb7141ec163b78d547bc8215bb12bb54171c666057ab6156912814005b686afb31 languageName: node linkType: hard "@types/d3-polygon@npm:*": version: 3.0.2 resolution: "@types/d3-polygon@npm:3.0.2" checksum: 10c0/f46307bb32b6c2aef8c7624500e0f9b518de8f227ccc10170b869dc43e4c542560f6c8d62e9f087fac45e198d6e4b623e579c0422e34c85baf56717456d3f439 languageName: node linkType: hard "@types/d3-quadtree@npm:*": version: 3.0.6 resolution: "@types/d3-quadtree@npm:3.0.6" checksum: 10c0/7eaa0a4d404adc856971c9285e1c4ab17e9135ea669d847d6db7e0066126a28ac751864e7ce99c65d526e130f56754a2e437a1617877098b3bdcc3ef23a23616 languageName: node linkType: hard "@types/d3-random@npm:*": version: 3.0.3 resolution: "@types/d3-random@npm:3.0.3" checksum: 10c0/5f4fea40080cd6d4adfee05183d00374e73a10c530276a6455348983dda341003a251def28565a27c25d9cf5296a33e870e397c9d91ff83fb7495a21c96b6882 languageName: node linkType: hard "@types/d3-scale-chromatic@npm:*": version: 3.0.3 resolution: "@types/d3-scale-chromatic@npm:3.0.3" checksum: 10c0/2f48c6f370edba485b57b73573884ded71914222a4580140ff87ee96e1d55ccd05b1d457f726e234a31269b803270ac95d5554229ab6c43c7e4a9894e20dd490 languageName: node linkType: hard "@types/d3-scale@npm:*": version: 4.0.8 resolution: "@types/d3-scale@npm:4.0.8" dependencies: "@types/d3-time": "npm:*" checksum: 10c0/57de90e4016f640b83cb960b7e3a0ab3ed02e720898840ddc5105264ffcfea73336161442fdc91895377c2d2f91904d637282f16852b8535b77e15a761c8e99e languageName: node linkType: hard "@types/d3-scale@npm:^3.0.0": version: 3.3.5 resolution: "@types/d3-scale@npm:3.3.5" dependencies: "@types/d3-time": "npm:^2" checksum: 10c0/2689ab13092e3fded22cdd1b888afd91aa60190be40c8eddc12b2d42de59b00917778340f90317c68c5ffc3a1bee68f5ca155434cd466bc7804f400f3f9e7529 languageName: node linkType: hard "@types/d3-selection@npm:*": version: 3.0.10 resolution: "@types/d3-selection@npm:3.0.10" checksum: 10c0/de1f99ab186a08999bf394a645fd76911add1b02316270d4c07616c8383903a2b068d7e02b73b6a99a1f26bb49a2e99ef4b55a5d2ddfa165f6f3c53144897920 languageName: node linkType: hard "@types/d3-selection@npm:^1": version: 1.4.6 resolution: "@types/d3-selection@npm:1.4.6" checksum: 10c0/bfe632519bd96d23aa010e88a49008e8c996e07854e0ce7ad652b0713868cc2df6dc13dd60fd06e39d82203da76a486c617bb1d80ce26e3e3cd3c9c526753355 languageName: node linkType: hard "@types/d3-shape@npm:*": version: 3.1.6 resolution: "@types/d3-shape@npm:3.1.6" dependencies: "@types/d3-path": "npm:*" checksum: 10c0/0625715925d3c7ed3d44ce998b42c993f063c31605b6e4a8046c4be0fe724e2d214fc83e86d04f429a30a6e1f439053e92b0d9e59e1180c3a5327b4a6e79fa0a languageName: node linkType: hard "@types/d3-time-format@npm:*": version: 4.0.3 resolution: "@types/d3-time-format@npm:4.0.3" checksum: 10c0/9ef5e8e2b96b94799b821eed5d61a3d432c7903247966d8ad951b8ce5797fe46554b425cb7888fa5bf604b4663c369d7628c0328ffe80892156671c58d1a7f90 languageName: node linkType: hard "@types/d3-time@npm:*": version: 3.0.3 resolution: "@types/d3-time@npm:3.0.3" checksum: 10c0/245a8aadca504df27edf730de502e47a68f16ae795c86b5ca35e7afa91c133aa9ef4d08778f8cf1ed2be732f89a4105ba4b437ce2afbdfd17d3d937b6ba5f568 languageName: node linkType: hard "@types/d3-time@npm:^2": version: 2.1.4 resolution: "@types/d3-time@npm:2.1.4" checksum: 10c0/b597bfa51a163d4231e953d6903b06fd6341d0f11a28222a79fafaddb46155d7f458a67c814de53df84926a47dd535897228a475679d228576b0cda87351e534 languageName: node linkType: hard "@types/d3-timer@npm:*": version: 3.0.2 resolution: "@types/d3-timer@npm:3.0.2" checksum: 10c0/c644dd9571fcc62b1aa12c03bcad40571553020feeb5811f1d8a937ac1e65b8a04b759b4873aef610e28b8714ac71c9885a4d6c127a048d95118f7e5b506d9e1 languageName: node linkType: hard "@types/d3-transition@npm:*": version: 3.0.8 resolution: "@types/d3-transition@npm:3.0.8" dependencies: "@types/d3-selection": "npm:*" checksum: 10c0/feba7845bd1e1d49e38b0d55562e01e90bfbcf0a56fbe0de4279c12e43a687032d22ed559629c0412145d25d61e4e53ddfef34c89c6bf043d48b6c2cd3a929dc languageName: node linkType: hard "@types/d3-transition@npm:^1": version: 1.3.5 resolution: "@types/d3-transition@npm:1.3.5" dependencies: "@types/d3-selection": "npm:^1" checksum: 10c0/1aafb7abfa3667e68da61e776014f4b47f2901f1deb0b9ce69f1ef73bf49af6b192905d0121f8c2332cf885fac5dbf4e5ff564e6220af6ee9713a1b4f270e57f languageName: node linkType: hard "@types/d3-zoom@npm:*": version: 3.0.8 resolution: "@types/d3-zoom@npm:3.0.8" dependencies: "@types/d3-interpolate": "npm:*" "@types/d3-selection": "npm:*" checksum: 10c0/1dbdbcafddcae12efb5beb6948546963f29599e18bc7f2a91fb69cc617c2299a65354f2d47e282dfb86fec0968406cd4fb7f76ba2d2fb67baa8e8d146eb4a547 languageName: node linkType: hard "@types/d3-zoom@npm:^1": version: 1.8.7 resolution: "@types/d3-zoom@npm:1.8.7" dependencies: "@types/d3-interpolate": "npm:^1" "@types/d3-selection": "npm:^1" checksum: 10c0/c487cd62ebb038a73a0b2dc4547367ddd17231ffee65bc278cb953586e5aeb883efc01f186402c695ee75f9324703da33abd09c81413a8b1b4c6de502cbd9324 languageName: node linkType: hard "@types/d3@npm:^7.4.3": version: 7.4.3 resolution: "@types/d3@npm:7.4.3" dependencies: "@types/d3-array": "npm:*" "@types/d3-axis": "npm:*" "@types/d3-brush": "npm:*" "@types/d3-chord": "npm:*" "@types/d3-color": "npm:*" "@types/d3-contour": "npm:*" "@types/d3-delaunay": "npm:*" "@types/d3-dispatch": "npm:*" "@types/d3-drag": "npm:*" "@types/d3-dsv": "npm:*" "@types/d3-ease": "npm:*" "@types/d3-fetch": "npm:*" "@types/d3-force": "npm:*" "@types/d3-format": "npm:*" "@types/d3-geo": "npm:*" "@types/d3-hierarchy": "npm:*" "@types/d3-interpolate": "npm:*" "@types/d3-path": "npm:*" "@types/d3-polygon": "npm:*" "@types/d3-quadtree": "npm:*" "@types/d3-random": "npm:*" "@types/d3-scale": "npm:*" "@types/d3-scale-chromatic": "npm:*" "@types/d3-selection": "npm:*" "@types/d3-shape": "npm:*" "@types/d3-time": "npm:*" "@types/d3-time-format": "npm:*" "@types/d3-timer": "npm:*" "@types/d3-transition": "npm:*" "@types/d3-zoom": "npm:*" checksum: 10c0/a9c6d65b13ef3b42c87f2a89ea63a6d5640221869f97d0657b0cb2f1dac96a0f164bf5605643c0794e0de3aa2bf05df198519aaf15d24ca135eb0e8bd8a9d879 languageName: node linkType: hard "@types/debounce@npm:*": version: 1.2.4 resolution: "@types/debounce@npm:1.2.4" checksum: 10c0/89db97397312b1273be74b326133af4744e5f63b726016bb6eb5c31b94f07a2f3bd3fb5bc3a3667bce506f01ede46c9abbfb88a4745ee9f34641fb636ab51210 languageName: node linkType: hard "@types/debug@npm:^4.0.0": version: 4.1.12 resolution: "@types/debug@npm:4.1.12" dependencies: "@types/ms": "npm:*" checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f languageName: node linkType: hard "@types/deep-eql@npm:*": version: 4.0.2 resolution: "@types/deep-eql@npm:4.0.2" checksum: 10c0/bf3f811843117900d7084b9d0c852da9a044d12eb40e6de73b552598a6843c21291a8a381b0532644574beecd5e3491c5ff3a0365ab86b15d59862c025384844 languageName: node linkType: hard "@types/eslint-plugin-jsx-a11y@npm:~6.10.1": version: 6.10.1 resolution: "@types/eslint-plugin-jsx-a11y@npm:6.10.1" dependencies: eslint: "npm:^9" checksum: 10c0/fe2ce003279f046225fc8ce5ea9b621254f0b6cf6577ea03da4cdd436c6780a7e1565308c2b3406851f5bb6abda0e9e2694f75dc462d8915f031854b10824012 languageName: node linkType: hard "@types/eslint-plugin-prettier@npm:~3.1.3": version: 3.1.3 resolution: "@types/eslint-plugin-prettier@npm:3.1.3" dependencies: "@types/eslint": "npm:*" checksum: 10c0/a7972ee8f799701dea20552a1490cdd106ca27d621b8bd8e9f441d756716ee24f94bb7f1d0325eb1701b98e748efb6df0e1657fd5daf42592fe51b2b16c2cadd languageName: node linkType: hard "@types/eslint@npm:*, @types/eslint@npm:^9.6.1": version: 9.6.1 resolution: "@types/eslint@npm:9.6.1" dependencies: "@types/estree": "npm:*" "@types/json-schema": "npm:*" checksum: 10c0/69ba24fee600d1e4c5abe0df086c1a4d798abf13792d8cfab912d76817fe1a894359a1518557d21237fbaf6eda93c5ab9309143dee4c59ef54336d1b3570420e languageName: node linkType: hard "@types/estree-jsx@npm:^1.0.0": version: 1.0.5 resolution: "@types/estree-jsx@npm:1.0.5" dependencies: "@types/estree": "npm:*" checksum: 10c0/07b354331516428b27a3ab99ee397547d47eb223c34053b48f84872fafb841770834b90cc1a0068398e7c7ccb15ec51ab00ec64b31dc5e3dbefd624638a35c6d languageName: node linkType: hard "@types/estree@npm:*, @types/estree@npm:^1.0.6": version: 1.0.7 resolution: "@types/estree@npm:1.0.7" checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c languageName: node linkType: hard "@types/estree@npm:1.0.8, @types/estree@npm:^1.0.8": version: 1.0.8 resolution: "@types/estree@npm:1.0.8" checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 languageName: node linkType: hard "@types/estree@npm:^1.0.0": version: 1.0.6 resolution: "@types/estree@npm:1.0.6" checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a languageName: node linkType: hard "@types/geojson-vt@npm:3.2.5": version: 3.2.5 resolution: "@types/geojson-vt@npm:3.2.5" dependencies: "@types/geojson": "npm:*" checksum: 10c0/bfd9157c7d0441dc4b420e0c6df65b4e4b29f3d33cc77667b3dc5acd68ba6326bfbfd867642645357382e3374ceebfb9c5d15f2b2c0ee3e3c492e0b5a2bb71be languageName: node linkType: hard "@types/geojson@npm:*, @types/geojson@npm:^7946.0.10, @types/geojson@npm:^7946.0.14, @types/geojson@npm:^7946.0.7, @types/geojson@npm:^7946.0.8": version: 7946.0.14 resolution: "@types/geojson@npm:7946.0.14" checksum: 10c0/54f3997708fa2970c03eeb31f7e4540a0eb6387b15e9f8a60513a1409c23cafec8d618525404573468b59c6fecbfd053724b3327f7fca416729c26271d799f55 languageName: node linkType: hard "@types/geojson@npm:7946.0.16, @types/geojson@npm:^7946.0.15": version: 7946.0.16 resolution: "@types/geojson@npm:7946.0.16" checksum: 10c0/1ff24a288bd5860b766b073ead337d31d73bdc715e5b50a2cee5cb0af57a1ed02cc04ef295f5fa68dc40fe3e4f104dd31282b2b818a5ba3231bc1001ba084e3c languageName: node linkType: hard "@types/google.maps@npm:^3.48.6": version: 3.58.1 resolution: "@types/google.maps@npm:3.58.1" checksum: 10c0/0247c61d2aeb216d04ab9392602ef41d58328c6336ed4e9a4e9e69834002e82c116a34def2bf4ceb31c4292f14899815058da4bb8d803147295c6b47c1162621 languageName: node linkType: hard "@types/hammerjs@npm:^2.0.41": version: 2.0.45 resolution: "@types/hammerjs@npm:2.0.45" checksum: 10c0/1f01e3d0260e3cb824fd0ae32c9a8e1b3727e53ef31682612a0a282c4a84bb758dd30b04749b2ae91e621443c80bfe541b38e91e33308f9dea5d9ac92bd0e854 languageName: node linkType: hard "@types/hast@npm:^2.0.0": version: 2.3.10 resolution: "@types/hast@npm:2.3.10" dependencies: "@types/unist": "npm:^2" checksum: 10c0/16daac35d032e656defe1f103f9c09c341a6dc553c7ec17b388274076fa26e904a71ea5ea41fd368a6d5f1e9e53be275c80af7942b9c466d8511d261c9529c7e languageName: node linkType: hard "@types/hast@npm:^3.0.0": version: 3.0.4 resolution: "@types/hast@npm:3.0.4" dependencies: "@types/unist": "npm:*" checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7 languageName: node linkType: hard "@types/hoist-non-react-statics@npm:^3.3.7, @types/hoist-non-react-statics@npm:~3.3.7": version: 3.3.7 resolution: "@types/hoist-non-react-statics@npm:3.3.7" dependencies: hoist-non-react-statics: "npm:^3.3.0" peerDependencies: "@types/react": "*" checksum: 10c0/ed8f4e88338f7d021d0f956adf6089d2a12b2e254a03c05292324f2e986d2376eb9efdb8a4f04596823e8fca88c9d06361d20dab4a2a00dc935fb36ac911de55 languageName: node linkType: hard "@types/iframe-resizer@npm:~4.0.0": version: 4.0.0 resolution: "@types/iframe-resizer@npm:4.0.0" checksum: 10c0/eacbaf85f88be06903a707374b5cf8cbbd250b819349638165f5499ecfc535bf538a3a8f96855c656aa35bff9322fb2b49efb4c892e87b2c5898adae2b307ccf languageName: node linkType: hard "@types/jsdom@npm:~21.1.7": version: 21.1.7 resolution: "@types/jsdom@npm:21.1.7" dependencies: "@types/node": "npm:*" "@types/tough-cookie": "npm:*" parse5: "npm:^7.0.0" checksum: 10c0/c0c0025adc2b193e85453eeeea168bb909f0ebad08d6552be7474a407e9c163db8f696dcf1e3cbe8cb9c9d970ba45f4386171794509c1a0fe5d1fed72c91679d languageName: node linkType: hard "@types/json-schema@npm:*, @types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db languageName: node linkType: hard "@types/json5@npm:^0.0.29": version: 0.0.29 resolution: "@types/json5@npm:0.0.29" checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac languageName: node linkType: hard "@types/katex@npm:^0.16.0, @types/katex@npm:~0.16.7": version: 0.16.7 resolution: "@types/katex@npm:0.16.7" checksum: 10c0/68dcb9f68a90513ec78ca0196a142e15c2a2c270b1520d752bafd47a99207115085a64087b50140359017d7e9c870b3c68e7e4d36668c9e348a9ef0c48919b5a languageName: node linkType: hard "@types/linkify-it@npm:^5": version: 5.0.0 resolution: "@types/linkify-it@npm:5.0.0" checksum: 10c0/7bbbf45b9dde17bf3f184fee585aef0e7342f6954f0377a24e4ff42ab5a85d5b806aaa5c8d16e2faf2a6b87b2d94467a196b7d2b85c9c7de2f0eaac5487aaab8 languageName: node linkType: hard "@types/lodash@npm:^4.17.20, @types/lodash@npm:~4.17.20": version: 4.17.20 resolution: "@types/lodash@npm:4.17.20" checksum: 10c0/98cdd0faae22cbb8079a01a3bb65aa8f8c41143367486c1cbf5adc83f16c9272a2a5d2c1f541f61d0d73da543c16ee1d21cf2ef86cb93cd0cc0ac3bced6dd88f languageName: node linkType: hard "@types/mapbox-gl@npm:^2.0.3": version: 2.7.21 resolution: "@types/mapbox-gl@npm:2.7.21" dependencies: "@types/geojson": "npm:*" checksum: 10c0/51bcf2a0481a53a8f8148af9b7f0f9e4d1be2ebdd9390194e4e4a0f8c8375446004c8624e67b4a255384cf0a0ae0c5b9eb99fa865acadca0ac0b0f5853f3f957 languageName: node linkType: hard "@types/mapbox-gl@npm:~1.13.10": version: 1.13.10 resolution: "@types/mapbox-gl@npm:1.13.10" dependencies: "@types/geojson": "npm:*" checksum: 10c0/774091414c087893748a483f8c99de932d77e522e7b7bc5f854bfabe1ed300c3bf43516ce14e6ba4dde391b775ffe93e8a0030356cfc97f7019f7af4abc441af languageName: node linkType: hard "@types/mapbox__point-geometry@npm:*, @types/mapbox__point-geometry@npm:^0.1.4": version: 0.1.4 resolution: "@types/mapbox__point-geometry@npm:0.1.4" checksum: 10c0/670191664ea0a6ccb4563500fe815a9aba029ba2f0528d42f9eb560ccb44f6542ba8674e2a3f6d41bd10ad8855b4df4782b5340c980ca182ef9fe6752f2737b8 languageName: node linkType: hard "@types/mapbox__vector-tile@npm:^1.3.4": version: 1.3.4 resolution: "@types/mapbox__vector-tile@npm:1.3.4" dependencies: "@types/geojson": "npm:*" "@types/mapbox__point-geometry": "npm:*" "@types/pbf": "npm:*" checksum: 10c0/082907ed9cf96b82327dabf3b4c3a14746a825e4a81f0abf46b50e2557f25cbda652725d8af002e5edcc344a83c85e1a4b71a2d39ef4d829c243344a85ac13a6 languageName: node linkType: hard "@types/markdown-it@npm:^14.1.1": version: 14.1.2 resolution: "@types/markdown-it@npm:14.1.2" dependencies: "@types/linkify-it": "npm:^5" "@types/mdurl": "npm:^2" checksum: 10c0/34f709f0476bd4e7b2ba7c3341072a6d532f1f4cb6f70aef371e403af8a08a7c372ba6907ac426bc618d356dab660c5b872791ff6c1ead80c483e0d639c6f127 languageName: node linkType: hard "@types/mdast@npm:^4.0.0, @types/mdast@npm:^4.0.4": version: 4.0.4 resolution: "@types/mdast@npm:4.0.4" dependencies: "@types/unist": "npm:*" checksum: 10c0/84f403dbe582ee508fd9c7643ac781ad8597fcbfc9ccb8d4715a2c92e4545e5772cbd0dbdf18eda65789386d81b009967fdef01b24faf6640f817287f54d9c82 languageName: node linkType: hard "@types/mdurl@npm:^2": version: 2.0.0 resolution: "@types/mdurl@npm:2.0.0" checksum: 10c0/cde7bb571630ed1ceb3b92a28f7b59890bb38b8f34cd35326e2df43eebfc74985e6aa6fd4184e307393bad8a9e0783a519a3f9d13c8e03788c0f98e5ec869c5e languageName: node linkType: hard "@types/moment-duration-format@npm:~2.2.6": version: 2.2.6 resolution: "@types/moment-duration-format@npm:2.2.6" dependencies: moment: "npm:>=2.14.0" checksum: 10c0/5cb7a81104c5d7e714a6a370d0d3857991a83fd986e150fef2719f342eaabea4372b82825ef39a4a224ec66068dfe0cab4a4771b4eabbd8d8e1fc3cb88c51bf9 languageName: node linkType: hard "@types/ms@npm:*": version: 0.7.34 resolution: "@types/ms@npm:0.7.34" checksum: 10c0/ac80bd90012116ceb2d188fde62d96830ca847823e8ca71255616bc73991aa7d9f057b8bfab79e8ee44ffefb031ddd1bcce63ea82f9e66f7c31ec02d2d823ccc languageName: node linkType: hard "@types/mysql@npm:2.15.26": version: 2.15.26 resolution: "@types/mysql@npm:2.15.26" dependencies: "@types/node": "npm:*" checksum: 10c0/3cf279e7db05d56c0544532a4380b9079f579092379a04c8138bd5cf88dda5b31208ac2d23ce7dbf4e3a3f43aaeed44e72f9f19f726518f308efe95a7435619a languageName: node linkType: hard "@types/node@npm:*, @types/node@npm:>=13.7.0": version: 20.17.8 resolution: "@types/node@npm:20.17.8" dependencies: undici-types: "npm:~6.19.2" checksum: 10c0/d68bbd9f8946a56d3f405e2dbfcc98d1d7a3cdbaa45d0a8fea2865e63ecdf3a2c9a0e992d9ea1658651909273026d341047e593596e133e842374371e04031c3 languageName: node linkType: hard "@types/node@npm:^24.0.3": version: 24.0.12 resolution: "@types/node@npm:24.0.12" dependencies: undici-types: "npm:~7.8.0" checksum: 10c0/333777c3416b758bbdb72a09e9db5599ff7789dca519d3fcf8150a1c56c79d808e0009e92d52016e80033b3c52724def08aad2c5b396e28f00dbdfe40a1756a4 languageName: node linkType: hard "@types/node@npm:^24.3.1": version: 24.3.1 resolution: "@types/node@npm:24.3.1" dependencies: undici-types: "npm:~7.10.0" checksum: 10c0/99b86fc32294fcd61136ca1f771026443a1e370e9f284f75e243b29299dd878e18c193deba1ce29a374932db4e30eb80826e1049b9aad02d36f5c30b94b6f928 languageName: node linkType: hard "@types/offscreencanvas@npm:^2019.6.4": version: 2019.7.3 resolution: "@types/offscreencanvas@npm:2019.7.3" checksum: 10c0/6d1dfae721d321cd2b5435f347a0e53b09f33b2f9e9333396480f592823bc323847b8169f7d251d2285cb93dbc1ba2e30741ac5cf4b1c003d660fd4c24526963 languageName: node linkType: hard "@types/pako@npm:^1.0.1": version: 1.0.7 resolution: "@types/pako@npm:1.0.7" checksum: 10c0/1ba133db0b30a974c3d651c85651fd30135f629727b4b4d7ef2649c8f8b01014d5ef41f75399d939e320a50bfa87c32beccbb513badfeaf85d74ea6d5370fdcc languageName: node linkType: hard "@types/parse-json@npm:^4.0.0": version: 4.0.2 resolution: "@types/parse-json@npm:4.0.2" checksum: 10c0/b1b863ac34a2c2172fbe0807a1ec4d5cb684e48d422d15ec95980b81475fac4fdb3768a8b13eef39130203a7c04340fc167bae057c7ebcafd7dec9fe6c36aeb1 languageName: node linkType: hard "@types/pbf@npm:*, @types/pbf@npm:^3.0.5": version: 3.0.5 resolution: "@types/pbf@npm:3.0.5" checksum: 10c0/c32348c6c81e6c31fe4a1f59983e3a9904727b809fb1e5ddec4fad49abaf93070ec26ee0c04c6516536c181c945b3c7d9e226549eaac3b2e12cb7b57f549a49c languageName: node linkType: hard "@types/pg-pool@npm:2.0.6": version: 2.0.6 resolution: "@types/pg-pool@npm:2.0.6" dependencies: "@types/pg": "npm:*" checksum: 10c0/41965d4d0b677c54ce45d36add760e496d356b78019cb062d124af40287cf6b0fd4d86e3b0085f443856c185983a60c8b0795ff76d15683e2a93c62f5ac0125f languageName: node linkType: hard "@types/pg@npm:*": version: 8.15.4 resolution: "@types/pg@npm:8.15.4" dependencies: "@types/node": "npm:*" pg-protocol: "npm:*" pg-types: "npm:^2.2.0" checksum: 10c0/7f9295cb2d934681bba84f7caad529c3b100d87e83ad0732c7fe496f4f79e42a795097321db54e010fcff22cb5e410cf683b4c9941907ee4564c822242816e91 languageName: node linkType: hard "@types/pg@npm:8.6.1": version: 8.6.1 resolution: "@types/pg@npm:8.6.1" dependencies: "@types/node": "npm:*" pg-protocol: "npm:*" pg-types: "npm:^2.2.0" checksum: 10c0/8d16660c9a4f050d6d5e391c59f9a62e9d377a2a6a7eb5865f8828082dbdfeab700fd707e585f42d67b29e796b32863aea5bd6d5cbb8ceda2d598da5d0c61693 languageName: node linkType: hard "@types/plotly.js@npm:*": version: 2.33.4 resolution: "@types/plotly.js@npm:2.33.4" checksum: 10c0/a886e11958048cdf68546051eb9ede860dcca24ed1bf8b245ffa34b42007a8acf82137c0e1a099899ceebc084689f2f3aa11b3a7315f9757922f37204be2a46f languageName: node linkType: hard "@types/plotly.js@npm:^3.0.5": version: 3.0.6 resolution: "@types/plotly.js@npm:3.0.6" checksum: 10c0/61fd8dcce28599ec19d1513a31348781256af86ba3d7b6f15f6e734bd7c771fc85db4a14afe1dd9a06c236b68d2c03a93a11ac516a83995c5c47834f5784e9e6 languageName: node linkType: hard "@types/prop-types@npm:*": version: 15.7.13 resolution: "@types/prop-types@npm:15.7.13" checksum: 10c0/1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61 languageName: node linkType: hard "@types/prop-types@npm:~15.7.15": version: 15.7.15 resolution: "@types/prop-types@npm:15.7.15" checksum: 10c0/b59aad1ad19bf1733cf524fd4e618196c6c7690f48ee70a327eb450a42aab8e8a063fbe59ca0a5701aebe2d92d582292c0fb845ea57474f6a15f6994b0e260b2 languageName: node linkType: hard "@types/react-color@npm:^3.0.13": version: 3.0.13 resolution: "@types/react-color@npm:3.0.13" dependencies: "@types/reactcss": "npm:*" peerDependencies: "@types/react": "*" checksum: 10c0/a26a2a628dc98d2186743a52e18fc1a4622ba9ec69989be1e51614084fd90a52c139ea6689aa9706fcea94356d277c87d69f11a5c1f66c19b45e6b0132db40bb languageName: node linkType: hard "@types/react-dom@npm:^18.2.0": version: 18.3.1 resolution: "@types/react-dom@npm:18.3.1" dependencies: "@types/react": "npm:*" checksum: 10c0/8b416551c60bb6bd8ec10e198c957910cfb271bc3922463040b0d57cf4739cdcd24b13224f8d68f10318926e1ec3cd69af0af79f0291b599a992f8c80d47f1eb languageName: node linkType: hard "@types/react-helmet-async@npm:^1.0.3": version: 1.0.3 resolution: "@types/react-helmet-async@npm:1.0.3" dependencies: react-helmet-async: "npm:*" checksum: 10c0/92c10b5c5e51fb8f17365ba4231804d90174fb4e478aebe4346ba828a3170848dd08825848f9593f3d64ad43ddd9b6e6f9e5943b327f25259f430beea19eeea5 languageName: node linkType: hard "@types/react-plotly.js@npm:^2.6.3": version: 2.6.3 resolution: "@types/react-plotly.js@npm:2.6.3" dependencies: "@types/plotly.js": "npm:*" "@types/react": "npm:*" checksum: 10c0/8cd6f99766009d541615471251b377200c5fd00a08995b64566f4cdfb6d1938ee64ba38d3847c7fe3d1d7515e59c1b0111e3262481480540b1a5e5a041cc4e3b languageName: node linkType: hard "@types/react-syntax-highlighter@npm:^15.5.5": version: 15.5.13 resolution: "@types/react-syntax-highlighter@npm:15.5.13" dependencies: "@types/react": "npm:*" checksum: 10c0/e3bca325b27519fb063d3370de20d311c188ec16ffc01e5bc77bdf2d7320756725ee3d0246922cd5d38b75c5065a1bc43d0194e92ecf6556818714b4ffb0967a languageName: node linkType: hard "@types/react-transition-group@npm:^4.4.0": version: 4.4.11 resolution: "@types/react-transition-group@npm:4.4.11" dependencies: "@types/react": "npm:*" checksum: 10c0/8fbf0dcc1b81985cdcebe3c59d769fe2ea3f4525f12c3a10a7429a59f93e303c82b2abb744d21cb762879f4514969d70a7ab11b9bf486f92213e8fe70e04098d languageName: node linkType: hard "@types/react-transition-group@npm:^4.4.12": version: 4.4.12 resolution: "@types/react-transition-group@npm:4.4.12" peerDependencies: "@types/react": "*" checksum: 10c0/0441b8b47c69312c89ec0760ba477ba1a0808a10ceef8dc1c64b1013ed78517332c30f18681b0ec0b53542731f1ed015169fed1d127cc91222638ed955478ec7 languageName: node linkType: hard "@types/react-virtualized-auto-sizer@npm:^1.0.0": version: 1.0.4 resolution: "@types/react-virtualized-auto-sizer@npm:1.0.4" dependencies: "@types/react": "npm:*" checksum: 10c0/61efc44158da03f1e55c4431634c7fc094c10c4d37a4efb9001e8372fc103277b08da2c3c147b6f4165b19239897e6fe4cdeca89856aceec4cd6a903e43efee0 languageName: node linkType: hard "@types/react-window@npm:^1.8.1, @types/react-window@npm:~1.8.8": version: 1.8.8 resolution: "@types/react-window@npm:1.8.8" dependencies: "@types/react": "npm:*" checksum: 10c0/2170a3957752603e8b994840c5d31b72ddf94c427c0f42b0175b343cc54f50fe66161d8871e11786ec7a59906bd33861945579a3a8f745455a3744268ec1069f languageName: node linkType: hard "@types/react@npm:*, @types/react@npm:^18.2.0": version: 18.3.10 resolution: "@types/react@npm:18.3.10" dependencies: "@types/prop-types": "npm:*" csstype: "npm:^3.0.2" checksum: 10c0/f5be1de1b0331c1fdb33d577f4cf7f1b949d4bded5347b2351a537f03c51dade5be115e21b161dcf1b37061954d320f6a0bdf8d7b70e24eda51071fdd614383d languageName: node linkType: hard "@types/reactcss@npm:*": version: 1.2.12 resolution: "@types/reactcss@npm:1.2.12" dependencies: "@types/react": "npm:*" checksum: 10c0/ef110855e9b84261322287686d1c60ef1bd42b60292d9e0da709e0616cb19047ea32dc3d4cc8c25536ef5b2ab4e8556afb1c085d3edc04a5472b4025d9601446 languageName: node linkType: hard "@types/shimmer@npm:^1.2.0": version: 1.2.0 resolution: "@types/shimmer@npm:1.2.0" checksum: 10c0/6f7bfe1b55601cfc3ae713fc74a03341f3834253b8b91cb2add926d5949e4a63f7e666f59c2a6e40a883a5f9e2f3e3af10f9d3aed9b60fced0bda87659e58d8d languageName: node linkType: hard "@types/sprintf-js@npm:^1.1.4": version: 1.1.4 resolution: "@types/sprintf-js@npm:1.1.4" checksum: 10c0/b56aa88876b8c2b00df7f931615f33371231c265328875024071e3dca151021bbce6143833fc2172640a75680dec260a80cca451374976f6fd29d305b108cfe1 languageName: node linkType: hard "@types/styletron-engine-atomic@npm:^1.1.1": version: 1.1.4 resolution: "@types/styletron-engine-atomic@npm:1.1.4" dependencies: "@types/styletron-standard": "npm:*" checksum: 10c0/2db3e0b3b72c5eddd2e0483c45e3e248291473a3cf90a8d80878fdaf26190c37677f2d3dd4a0c00a54ecca632f84d82a6eabff1a6fc0117a5da349081d85726e languageName: node linkType: hard "@types/styletron-react@npm:^5.0.3": version: 5.0.8 resolution: "@types/styletron-react@npm:5.0.8" dependencies: "@types/react": "npm:*" "@types/styletron-standard": "npm:*" checksum: 10c0/18565de6e7bd0bbb3692e73d3bf405e93a33297875fde96c218b3435eb4a01e6a87310e20641e8beb1cc82a1f048260bfa0f4bacc2d8c1a7b96909cfe56b5380 languageName: node linkType: hard "@types/styletron-standard@npm:*": version: 2.0.5 resolution: "@types/styletron-standard@npm:2.0.5" dependencies: csstype: "npm:^3.0.2" checksum: 10c0/6c80c5db03249b90dba972470739a77d4512eec878a006f6f470c1346359c1f253488a13db3f151249950784d545d51220c7e1508abfa1fb5e813f36b184452f languageName: node linkType: hard "@types/supercluster@npm:^7.1.3": version: 7.1.3 resolution: "@types/supercluster@npm:7.1.3" dependencies: "@types/geojson": "npm:*" checksum: 10c0/0d55dad98df0990fc38a7bb64dc23dda46014187c0d7638e6f2b6717ba8931b13e5b1d394789833a2ac822014c977ef64623dffd81a0bbf39e52c53c8183741f languageName: node linkType: hard "@types/tedious@npm:^4.0.14": version: 4.0.14 resolution: "@types/tedious@npm:4.0.14" dependencies: "@types/node": "npm:*" checksum: 10c0/d2914f8e9b5b998e4275ec5f0130cba1c2fb47e75616b5c125a65ef6c1db2f1dc3f978c7900693856a15d72bbb4f4e94f805537a4ecb6dc126c64415d31c0590 languageName: node linkType: hard "@types/tough-cookie@npm:*": version: 4.0.5 resolution: "@types/tough-cookie@npm:4.0.5" checksum: 10c0/68c6921721a3dcb40451543db2174a145ef915bc8bcbe7ad4e59194a0238e776e782b896c7a59f4b93ac6acefca9161fccb31d1ce3b3445cb6faa467297fb473 languageName: node linkType: hard "@types/trusted-types@npm:^2.0.7": version: 2.0.7 resolution: "@types/trusted-types@npm:2.0.7" checksum: 10c0/4c4855f10de7c6c135e0d32ce462419d8abbbc33713b31d294596c0cc34ae1fa6112a2f9da729c8f7a20707782b0d69da3b1f8df6645b0366d08825ca1522e0c languageName: node linkType: hard "@types/ua-parser-js@npm:^0.7.39": version: 0.7.39 resolution: "@types/ua-parser-js@npm:0.7.39" checksum: 10c0/fea522f42dfc2854d9c93144a13c3db3bbe1c791458451db06d46bec7e1dbbe945d1542e02bb38378e39a04bdb7810b43e2ead26f9e6c250832e187312522708 languageName: node linkType: hard "@types/unist@npm:*, @types/unist@npm:^3.0.0": version: 3.0.3 resolution: "@types/unist@npm:3.0.3" checksum: 10c0/2b1e4adcab78388e088fcc3c0ae8700f76619dbcb4741d7d201f87e2cb346bfc29a89003cfea2d76c996e1061452e14fcd737e8b25aacf949c1f2d6b2bc3dd60 languageName: node linkType: hard "@types/unist@npm:^2, @types/unist@npm:^2.0.0": version: 2.0.11 resolution: "@types/unist@npm:2.0.11" checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d languageName: node linkType: hard "@types/uuid@npm:^10.0.0": version: 10.0.0 resolution: "@types/uuid@npm:10.0.0" checksum: 10c0/9a1404bf287164481cb9b97f6bb638f78f955be57c40c6513b7655160beb29df6f84c915aaf4089a1559c216557dc4d2f79b48d978742d3ae10b937420ddac60 languageName: node linkType: hard "@types/wavesurfer.js@npm:^6.0.12": version: 6.0.12 resolution: "@types/wavesurfer.js@npm:6.0.12" dependencies: "@types/debounce": "npm:*" checksum: 10c0/71fc6502868dbcfc11f703d06f413dc2ba12ee5dc6df8180c61ef70eefd1c2d0778c25c9329d5a51bcc5756395f01c8fc73ce5e0b3e92e12ed59846368138852 languageName: node linkType: hard "@types/xxhashjs@npm:^0.2.2": version: 0.2.4 resolution: "@types/xxhashjs@npm:0.2.4" dependencies: "@types/node": "npm:*" checksum: 10c0/c1a51db3f060cc258c52e531b840ca6115b904d4c34ddbfd18480170e7462a97a17f02ca00456d7f1980399deb12495f8116e3decb92282d152972a97272288c languageName: node linkType: hard "@types/yauzl@npm:^2.9.1": version: 2.10.3 resolution: "@types/yauzl@npm:2.10.3" dependencies: "@types/node": "npm:*" checksum: 10c0/f1b7c1b99fef9f2fe7f1985ef7426d0cebe48cd031f1780fcdc7451eec7e31ac97028f16f50121a59bcf53086a1fc8c856fd5b7d3e00970e43d92ae27d6b43dc languageName: node linkType: hard "@typescript-eslint/eslint-plugin@npm:8.46.3, @typescript-eslint/eslint-plugin@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/eslint-plugin@npm:8.46.3" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" "@typescript-eslint/scope-manager": "npm:8.46.3" "@typescript-eslint/type-utils": "npm:8.46.3" "@typescript-eslint/utils": "npm:8.46.3" "@typescript-eslint/visitor-keys": "npm:8.46.3" graphemer: "npm:^1.4.0" ignore: "npm:^7.0.0" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^2.1.0" peerDependencies: "@typescript-eslint/parser": ^8.46.3 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" checksum: 10c0/9c8a5efd9779418d2096634a072a9e2b108e146d0fc541572db56ff28ff37469f03dd404fdb3b0c3161be4cc4857ce14259f30eba1a93d4771de5d1562624e45 languageName: node linkType: hard "@typescript-eslint/parser@npm:8.46.3": version: 8.46.3 resolution: "@typescript-eslint/parser@npm:8.46.3" dependencies: "@typescript-eslint/scope-manager": "npm:8.46.3" "@typescript-eslint/types": "npm:8.46.3" "@typescript-eslint/typescript-estree": "npm:8.46.3" "@typescript-eslint/visitor-keys": "npm:8.46.3" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" checksum: 10c0/8a8b47abbbc8bbc68f423df23189afefd296305d50a31c6bec9bdde563adc9ddf99b89a6b8466965fda4aee9118263bae36422dd1c25d7595dd82f8897b5df61 languageName: node linkType: hard "@typescript-eslint/project-service@npm:8.46.3": version: 8.46.3 resolution: "@typescript-eslint/project-service@npm:8.46.3" dependencies: "@typescript-eslint/tsconfig-utils": "npm:^8.46.3" "@typescript-eslint/types": "npm:^8.46.3" debug: "npm:^4.3.4" peerDependencies: typescript: ">=4.8.4 <6.0.0" checksum: 10c0/24ef305bbb550a8e27a7d6377663c1f2773b39b7a9f12c8b95c66c0d15f8150787b036bbff9ae4c2a0a18ab68c62435b0e03889df294bef00b3ae8846cd20659 languageName: node linkType: hard "@typescript-eslint/rule-tester@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/rule-tester@npm:8.46.3" dependencies: "@typescript-eslint/parser": "npm:8.46.3" "@typescript-eslint/typescript-estree": "npm:8.46.3" "@typescript-eslint/utils": "npm:8.46.3" ajv: "npm:^6.12.6" json-stable-stringify-without-jsonify: "npm:^1.0.1" lodash.merge: "npm:4.6.2" semver: "npm:^7.6.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 checksum: 10c0/ffed12b5916b7d8cfbc1f253545bd51d168b008616649e8a78aeb4f9b048a38adacd7789d12e0c93531c5bbdfe06fa7e5bcb17f8fbcfdd66e7973b0dfcd4bc05 languageName: node linkType: hard "@typescript-eslint/scope-manager@npm:8.25.0, @typescript-eslint/scope-manager@npm:^8.15.0": version: 8.25.0 resolution: "@typescript-eslint/scope-manager@npm:8.25.0" dependencies: "@typescript-eslint/types": "npm:8.25.0" "@typescript-eslint/visitor-keys": "npm:8.25.0" checksum: 10c0/0a53a07873bdb569be38053ec006009cc8ba6b12c538b6df0935afd18e431cb17da1eb15b0c9cd267ac211c47aaa44fbc8d7ff3b7b44ff711621ff305fa3b355 languageName: node linkType: hard "@typescript-eslint/scope-manager@npm:8.27.0": version: 8.27.0 resolution: "@typescript-eslint/scope-manager@npm:8.27.0" dependencies: "@typescript-eslint/types": "npm:8.27.0" "@typescript-eslint/visitor-keys": "npm:8.27.0" checksum: 10c0/d87daeffb81f4e70f168c38f01c667713bda71c4545e28fcdf0792378fb3df171894ef77854c5c1a5e5a22c784ee1ccea2dd856b5baf825840710a6a74c14ac9 languageName: node linkType: hard "@typescript-eslint/scope-manager@npm:8.46.3, @typescript-eslint/scope-manager@npm:^8.46.1, @typescript-eslint/scope-manager@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/scope-manager@npm:8.46.3" dependencies: "@typescript-eslint/types": "npm:8.46.3" "@typescript-eslint/visitor-keys": "npm:8.46.3" checksum: 10c0/de8c116477e2a05a895ecd848a8289974a76cab884e07683c8085b3a2ce53895871d9bcd9de94723d6b2a437a6c526c77afcc75d6030cc4f1dccb9b47f4fc069 languageName: node linkType: hard "@typescript-eslint/tsconfig-utils@npm:8.46.3, @typescript-eslint/tsconfig-utils@npm:^8.46.3": version: 8.46.3 resolution: "@typescript-eslint/tsconfig-utils@npm:8.46.3" peerDependencies: typescript: ">=4.8.4 <6.0.0" checksum: 10c0/a9686141204a96591ee51814a79fa676a8da845638eabb2363f9d82902660fd48ea47f7ec15a618129e45021ad154e1d193127248915752546d60d475d6a566e languageName: node linkType: hard "@typescript-eslint/type-utils@npm:8.46.3, @typescript-eslint/type-utils@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/type-utils@npm:8.46.3" dependencies: "@typescript-eslint/types": "npm:8.46.3" "@typescript-eslint/typescript-estree": "npm:8.46.3" "@typescript-eslint/utils": "npm:8.46.3" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.1.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" checksum: 10c0/06e20dff5a22feb6581703e8d35159ad6694d9e1df8fbb75869fcd89893826ca533b7b30b795a16d532e9d8ea6720462b1361d1e7a11d431a4cd11b3f47a22b5 languageName: node linkType: hard "@typescript-eslint/type-utils@npm:^8.0.0": version: 8.27.0 resolution: "@typescript-eslint/type-utils@npm:8.27.0" dependencies: "@typescript-eslint/typescript-estree": "npm:8.27.0" "@typescript-eslint/utils": "npm:8.27.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.0.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" checksum: 10c0/f38cdc660ebcb3b71496182b9ea52301ab08a4f062558aa7061a5f0b759ae3e8f68ae250a29e74251cb52c6c56733d7dabed7002b993544cbe0933bb75d67a57 languageName: node linkType: hard "@typescript-eslint/types@npm:8.25.0": version: 8.25.0 resolution: "@typescript-eslint/types@npm:8.25.0" checksum: 10c0/b39addbee4be4d66e3089c2d01f9f1d69cedc13bff20e4fa9ed0ca5a0e7591d7c6e41ab3763c8c35404f971bc0fbf9f7867dbc2832740e5b63ee0049d60289f5 languageName: node linkType: hard "@typescript-eslint/types@npm:8.27.0": version: 8.27.0 resolution: "@typescript-eslint/types@npm:8.27.0" checksum: 10c0/9c5f2ba816a9baea5982feeadebe4d19f4df77ddb025a7b2307f9e1e6914076b63cbad81f7f915814e64b4d915052cf27bd79ce3e5a831340cb5ab244133941b languageName: node linkType: hard "@typescript-eslint/types@npm:8.46.3, @typescript-eslint/types@npm:^8.46.2, @typescript-eslint/types@npm:^8.46.3": version: 8.46.3 resolution: "@typescript-eslint/types@npm:8.46.3" checksum: 10c0/6a6ccefbd086e6c38172fe14d04ba27c1c34755af7c25e752547c42d978b91bf6b97da56a5e63d098fbd679b4a5076c4dd4be6c947fd39b4c5feea5fed6deeb6 languageName: node linkType: hard "@typescript-eslint/typescript-estree@npm:8.25.0": version: 8.25.0 resolution: "@typescript-eslint/typescript-estree@npm:8.25.0" dependencies: "@typescript-eslint/types": "npm:8.25.0" "@typescript-eslint/visitor-keys": "npm:8.25.0" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" ts-api-utils: "npm:^2.0.1" peerDependencies: typescript: ">=4.8.4 <5.8.0" checksum: 10c0/fc9de1c4f6ab81fb80b632dedef84d1ecf4c0abdc5f5246698deb6d86d5c6b5d582ef8a44fdef445bf7fbfa6658db516fe875c9d7c984bf4802e3a508b061856 languageName: node linkType: hard "@typescript-eslint/typescript-estree@npm:8.27.0": version: 8.27.0 resolution: "@typescript-eslint/typescript-estree@npm:8.27.0" dependencies: "@typescript-eslint/types": "npm:8.27.0" "@typescript-eslint/visitor-keys": "npm:8.27.0" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" ts-api-utils: "npm:^2.0.1" peerDependencies: typescript: ">=4.8.4 <5.9.0" checksum: 10c0/c04d602825ff2a7b2a89746a68b32f7052fb4ce3d2355d1f4e6f43fd064f17c3b44fb974c98838a078fdebdc35152d2ab0af34663dfca99db7a790bd3fc5d8ac languageName: node linkType: hard "@typescript-eslint/typescript-estree@npm:8.46.3, @typescript-eslint/typescript-estree@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/typescript-estree@npm:8.46.3" dependencies: "@typescript-eslint/project-service": "npm:8.46.3" "@typescript-eslint/tsconfig-utils": "npm:8.46.3" "@typescript-eslint/types": "npm:8.46.3" "@typescript-eslint/visitor-keys": "npm:8.46.3" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" ts-api-utils: "npm:^2.1.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" checksum: 10c0/3a2bb879a3b42eda478015beee42729efdc78c0cfc70fa009442706626813114f8f9a1e918638ab957df385681ab073cf2076c508973ff9a72e2425e4e521b4f languageName: node linkType: hard "@typescript-eslint/utils@npm:8.27.0": version: 8.27.0 resolution: "@typescript-eslint/utils@npm:8.27.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" "@typescript-eslint/scope-manager": "npm:8.27.0" "@typescript-eslint/types": "npm:8.27.0" "@typescript-eslint/typescript-estree": "npm:8.27.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" checksum: 10c0/dcfd5f2c17f1a33061e3ec70d0946ff23a4238aabacae3d85087165beccedf84fb8506d30848f2470e3b60ab98b230aef79c6e8b4c5d39648a37ac559ac5b1e0 languageName: node linkType: hard "@typescript-eslint/utils@npm:8.46.3, @typescript-eslint/utils@npm:^8.46.1, @typescript-eslint/utils@npm:^8.46.2": version: 8.46.3 resolution: "@typescript-eslint/utils@npm:8.46.3" dependencies: "@eslint-community/eslint-utils": "npm:^4.7.0" "@typescript-eslint/scope-manager": "npm:8.46.3" "@typescript-eslint/types": "npm:8.46.3" "@typescript-eslint/typescript-estree": "npm:8.46.3" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" checksum: 10c0/cf85b166f75c2fd248004fb59643315347489d9ab589738cda1b4c36c25e7947c197a1c21e46cb25959be7d0f310b352c4436f8d3e0a91d64e4fafb3ef4b4e3d languageName: node linkType: hard "@typescript-eslint/utils@npm:^8.15.0": version: 8.25.0 resolution: "@typescript-eslint/utils@npm:8.25.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" "@typescript-eslint/scope-manager": "npm:8.25.0" "@typescript-eslint/types": "npm:8.25.0" "@typescript-eslint/typescript-estree": "npm:8.25.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.8.0" checksum: 10c0/cd15c4919f02899fd3975049a0a051a1455332a108c085a3e90ae9872e2cddac7f20a9a2c616f1366fca84274649e836ad6a437c9c5ead0bdabf5a123d12403f languageName: node linkType: hard "@typescript-eslint/visitor-keys@npm:8.25.0": version: 8.25.0 resolution: "@typescript-eslint/visitor-keys@npm:8.25.0" dependencies: "@typescript-eslint/types": "npm:8.25.0" eslint-visitor-keys: "npm:^4.2.0" checksum: 10c0/7eb84c5899a25b1eb89d3c3f4be3ff18171f934669c57e2530b6dfa5fdd6eaae60629f3c89d06f4c8075fd1c701de76c0b9194e2922895c661ab6091e48f7db9 languageName: node linkType: hard "@typescript-eslint/visitor-keys@npm:8.27.0": version: 8.27.0 resolution: "@typescript-eslint/visitor-keys@npm:8.27.0" dependencies: "@typescript-eslint/types": "npm:8.27.0" eslint-visitor-keys: "npm:^4.2.0" checksum: 10c0/d86fd4032db07123816aab3a6b8b53f840387385ab2a4d8f96b22fc76b5438fb27ac8dc42b63caf23f3d265c33e9075dbf1ce8d31f939df12f5cd077d3b10295 languageName: node linkType: hard "@typescript-eslint/visitor-keys@npm:8.46.3": version: 8.46.3 resolution: "@typescript-eslint/visitor-keys@npm:8.46.3" dependencies: "@typescript-eslint/types": "npm:8.46.3" eslint-visitor-keys: "npm:^4.2.1" checksum: 10c0/c5f96840e0c31541e1a2390712a6cb290eff59fc97a3ffa7ecab353d3bb3cf0d8c6f62d68db271bf194aa8c4582be735b6121fcc5b30449e01799642be77de6e languageName: node linkType: hard "@ungap/structured-clone@npm:^1.0.0": version: 1.3.0 resolution: "@ungap/structured-clone@npm:1.3.0" checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a languageName: node linkType: hard "@unrs/resolver-binding-darwin-arm64@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.11" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard "@unrs/resolver-binding-darwin-x64@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.11" conditions: os=darwin & cpu=x64 languageName: node linkType: hard "@unrs/resolver-binding-freebsd-x64@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.11" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.11" conditions: os=linux & cpu=arm languageName: node linkType: hard "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.11" conditions: os=linux & cpu=arm languageName: node linkType: hard "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.11" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.11" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.11" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.11" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.11" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.11" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.11" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard "@unrs/resolver-binding-linux-x64-musl@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.11" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard "@unrs/resolver-binding-wasm32-wasi@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.11" dependencies: "@napi-rs/wasm-runtime": "npm:^0.2.10" conditions: cpu=wasm32 languageName: node linkType: hard "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.11" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.11" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.11": version: 1.7.11 resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.11" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@vitejs/plugin-react-swc@npm:^4.1.0": version: 4.1.0 resolution: "@vitejs/plugin-react-swc@npm:4.1.0" dependencies: "@rolldown/pluginutils": "npm:1.0.0-beta.35" "@swc/core": "npm:^1.13.5" peerDependencies: vite: ^4 || ^5 || ^6 || ^7 checksum: 10c0/f9e0f8cd1f6aab705895c9723904e7020ddf59b2525ac52865bf9b3b05ae3100f729796835b474fd2a03aea431165ce02e5535c03b1e8338c0de1a874b2315b5 languageName: node linkType: hard "@vitest/coverage-v8@npm:^3.2.4": version: 3.2.4 resolution: "@vitest/coverage-v8@npm:3.2.4" dependencies: "@ampproject/remapping": "npm:^2.3.0" "@bcoe/v8-coverage": "npm:^1.0.2" ast-v8-to-istanbul: "npm:^0.3.3" debug: "npm:^4.4.1" istanbul-lib-coverage: "npm:^3.2.2" istanbul-lib-report: "npm:^3.0.1" istanbul-lib-source-maps: "npm:^5.0.6" istanbul-reports: "npm:^3.1.7" magic-string: "npm:^0.30.17" magicast: "npm:^0.3.5" std-env: "npm:^3.9.0" test-exclude: "npm:^7.0.1" tinyrainbow: "npm:^2.0.0" peerDependencies: "@vitest/browser": 3.2.4 vitest: 3.2.4 peerDependenciesMeta: "@vitest/browser": optional: true checksum: 10c0/cae3e58d81d56e7e1cdecd7b5baab7edd0ad9dee8dec9353c52796e390e452377d3f04174d40b6986b17c73241a5e773e422931eaa8102dcba0605ff24b25193 languageName: node linkType: hard "@vitest/eslint-plugin@npm:^1.4.0": version: 1.4.1 resolution: "@vitest/eslint-plugin@npm:1.4.1" dependencies: "@typescript-eslint/scope-manager": "npm:^8.46.1" "@typescript-eslint/utils": "npm:^8.46.1" peerDependencies: eslint: ">=8.57.0" typescript: ">=5.0.0" vitest: "*" peerDependenciesMeta: typescript: optional: true vitest: optional: true checksum: 10c0/93906a6ff8a8da192803a7ecb16c7abba13749537e0d20016e58b9cdb5ee79697fdb33a8027e70935159a54be23acbd1b37de93e00bee78d2ec5b4b62dd30008 languageName: node linkType: hard "@vitest/expect@npm:3.2.4": version: 3.2.4 resolution: "@vitest/expect@npm:3.2.4" dependencies: "@types/chai": "npm:^5.2.2" "@vitest/spy": "npm:3.2.4" "@vitest/utils": "npm:3.2.4" chai: "npm:^5.2.0" tinyrainbow: "npm:^2.0.0" checksum: 10c0/7586104e3fd31dbe1e6ecaafb9a70131e4197dce2940f727b6a84131eee3decac7b10f9c7c72fa5edbdb68b6f854353bd4c0fa84779e274207fb7379563b10db languageName: node linkType: hard "@vitest/mocker@npm:3.2.4": version: 3.2.4 resolution: "@vitest/mocker@npm:3.2.4" dependencies: "@vitest/spy": "npm:3.2.4" estree-walker: "npm:^3.0.3" magic-string: "npm:^0.30.17" peerDependencies: msw: ^2.4.9 vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true checksum: 10c0/f7a4aea19bbbf8f15905847ee9143b6298b2c110f8b64789224cb0ffdc2e96f9802876aa2ca83f1ec1b6e1ff45e822abb34f0054c24d57b29ab18add06536ccd languageName: node linkType: hard "@vitest/pretty-format@npm:3.0.9": version: 3.0.9 resolution: "@vitest/pretty-format@npm:3.0.9" dependencies: tinyrainbow: "npm:^2.0.0" checksum: 10c0/56ae7b1f14df2905b3205d4e121727631c4938ec44f76c1e9fa49923919010378f0dad70b1d277672f3ef45ddf6372140c8d1da95e45df8282f70b74328fce47 languageName: node linkType: hard "@vitest/pretty-format@npm:3.2.4, @vitest/pretty-format@npm:^3.2.4": version: 3.2.4 resolution: "@vitest/pretty-format@npm:3.2.4" dependencies: tinyrainbow: "npm:^2.0.0" checksum: 10c0/5ad7d4278e067390d7d633e307fee8103958806a419ca380aec0e33fae71b44a64415f7a9b4bc11635d3c13d4a9186111c581d3cef9c65cc317e68f077456887 languageName: node linkType: hard "@vitest/runner@npm:3.2.4": version: 3.2.4 resolution: "@vitest/runner@npm:3.2.4" dependencies: "@vitest/utils": "npm:3.2.4" pathe: "npm:^2.0.3" strip-literal: "npm:^3.0.0" checksum: 10c0/e8be51666c72b3668ae3ea348b0196656a4a5adb836cb5e270720885d9517421815b0d6c98bfdf1795ed02b994b7bfb2b21566ee356a40021f5bf4f6ed4e418a languageName: node linkType: hard "@vitest/snapshot@npm:3.2.4": version: 3.2.4 resolution: "@vitest/snapshot@npm:3.2.4" dependencies: "@vitest/pretty-format": "npm:3.2.4" magic-string: "npm:^0.30.17" pathe: "npm:^2.0.3" checksum: 10c0/f8301a3d7d1559fd3d59ed51176dd52e1ed5c2d23aa6d8d6aa18787ef46e295056bc726a021698d8454c16ed825ecba163362f42fa90258bb4a98cfd2c9424fc languageName: node linkType: hard "@vitest/spy@npm:3.2.4": version: 3.2.4 resolution: "@vitest/spy@npm:3.2.4" dependencies: tinyspy: "npm:^4.0.3" checksum: 10c0/6ebf0b4697dc238476d6b6a60c76ba9eb1dd8167a307e30f08f64149612fd50227682b876420e4c2e09a76334e73f72e3ebf0e350714dc22474258292e202024 languageName: node linkType: hard "@vitest/utils@npm:3.2.4": version: 3.2.4 resolution: "@vitest/utils@npm:3.2.4" dependencies: "@vitest/pretty-format": "npm:3.2.4" loupe: "npm:^3.1.4" tinyrainbow: "npm:^2.0.0" checksum: 10c0/024a9b8c8bcc12cf40183c246c244b52ecff861c6deb3477cbf487ac8781ad44c68a9c5fd69f8c1361878e55b97c10d99d511f2597f1f7244b5e5101d028ba64 languageName: node linkType: hard "@vitest/utils@npm:^3.0.0": version: 3.0.9 resolution: "@vitest/utils@npm:3.0.9" dependencies: "@vitest/pretty-format": "npm:3.0.9" loupe: "npm:^3.1.3" tinyrainbow: "npm:^2.0.0" checksum: 10c0/b966dfb3b926ee9bea59c1fb297abc67adaa23a8a582453ee81167b238446394693617a5e0523eb2791d6983173ef1c07bf28a76bd5a63b49a100610ed6b6a6c languageName: node linkType: hard "@volar/language-core@npm:2.4.11, @volar/language-core@npm:~2.4.11": version: 2.4.11 resolution: "@volar/language-core@npm:2.4.11" dependencies: "@volar/source-map": "npm:2.4.11" checksum: 10c0/ccc5de0c28b4186dc99ff9856b2ac2318ee1818480af3ca406f3c09d42b19b6df8698b525f6cf0fed368332fc76659cd4433fb38e6a55a85c7cefc97d665ccf8 languageName: node linkType: hard "@volar/source-map@npm:2.4.11": version: 2.4.11 resolution: "@volar/source-map@npm:2.4.11" checksum: 10c0/8e5badf9f67d669679c48fe32258e082d823523ca2807438d38c0aac6c52b84d43580c8921b559fc5a27c0c7457ffcba569e60de7a597851690dec04ed77c5fc languageName: node linkType: hard "@volar/typescript@npm:^2.4.11": version: 2.4.11 resolution: "@volar/typescript@npm:2.4.11" dependencies: "@volar/language-core": "npm:2.4.11" path-browserify: "npm:^1.0.1" vscode-uri: "npm:^3.0.8" checksum: 10c0/bca9bda9c8c95fd06672b834d1804810fdad496e15ee8e2099f76de74fa529d835f342afb6b976e6e3bc4599a3bbbfd007a842694fe1300cf6286783b827f917 languageName: node linkType: hard "@vue/compiler-core@npm:3.5.13": version: 3.5.13 resolution: "@vue/compiler-core@npm:3.5.13" dependencies: "@babel/parser": "npm:^7.25.3" "@vue/shared": "npm:3.5.13" entities: "npm:^4.5.0" estree-walker: "npm:^2.0.2" source-map-js: "npm:^1.2.0" checksum: 10c0/b89f3e3ca92c3177ae449ada1480df13d99b5b3b2cdcf3202fd37dc30f294a1db1f473209f8bae9233e2d338632219d39b2bfa6941d158cea55255e4b0b30f90 languageName: node linkType: hard "@vue/compiler-dom@npm:^3.5.0": version: 3.5.13 resolution: "@vue/compiler-dom@npm:3.5.13" dependencies: "@vue/compiler-core": "npm:3.5.13" "@vue/shared": "npm:3.5.13" checksum: 10c0/8f424a71883c9ef4abdd125d2be8d12dd8cf94ba56089245c88734b1f87c65e10597816070ba2ea0a297a2f66dc579f39275a9a53ef5664c143a12409612cd72 languageName: node linkType: hard "@vue/compiler-vue2@npm:^2.7.16": version: 2.7.16 resolution: "@vue/compiler-vue2@npm:2.7.16" dependencies: de-indent: "npm:^1.0.2" he: "npm:^1.2.0" checksum: 10c0/c76c3fad770b9a7da40b314116cc9da173da20e5fd68785c8ed8dd8a87d02f239545fa296e16552e040ec86b47bfb18283b39447b250c2e76e479bd6ae475bb3 languageName: node linkType: hard "@vue/language-core@npm:2.2.0": version: 2.2.0 resolution: "@vue/language-core@npm:2.2.0" dependencies: "@volar/language-core": "npm:~2.4.11" "@vue/compiler-dom": "npm:^3.5.0" "@vue/compiler-vue2": "npm:^2.7.16" "@vue/shared": "npm:^3.5.0" alien-signals: "npm:^0.4.9" minimatch: "npm:^9.0.3" muggle-string: "npm:^0.4.1" path-browserify: "npm:^1.0.1" peerDependencies: typescript: "*" peerDependenciesMeta: typescript: optional: true checksum: 10c0/1c44cc4067266bbc825af358a867aed455963a08c160cd9df9a47571fd917a87d9de9bdea6149877e0c8309a6cf39f263e7cf2fbadeceba47a5a158f392151b2 languageName: node linkType: hard "@vue/shared@npm:3.5.13, @vue/shared@npm:^3.5.0": version: 3.5.13 resolution: "@vue/shared@npm:3.5.13" checksum: 10c0/2c940ef907116f1c2583ca1d7733984e5705983ab07054c4e72f1d95eb0f7bdf4d01efbdaee1776c2008f79595963f44e98fced057f5957d86d57b70028f5025 languageName: node linkType: hard "@wyw-in-js/processor-utils@npm:^0.6.0": version: 0.6.0 resolution: "@wyw-in-js/processor-utils@npm:0.6.0" dependencies: "@babel/generator": "npm:^7.23.5" "@wyw-in-js/shared": "npm:0.6.0" checksum: 10c0/e7338afb71aa1eccf7646447df9d20c2ac895dc1d5a5ad8c26931997fa31595ece5890e8ada39b3c1fda28439c7598de950980dded714dbe003b232f95d22d9e languageName: node linkType: hard "@wyw-in-js/shared@npm:0.6.0, @wyw-in-js/shared@npm:^0.6.0": version: 0.6.0 resolution: "@wyw-in-js/shared@npm:0.6.0" dependencies: debug: "npm:^4.3.4" find-up: "npm:^5.0.0" minimatch: "npm:^9.0.3" checksum: 10c0/a7bab831ebdf9172c8b7a117525550b57c6b338bb6579f186b0f54a3cae5cde75dd245e375b93766fe1f1fc1d42f804353622594115727a2a8c4eb4de84aaaab languageName: node linkType: hard "abbrev@npm:^2.0.0": version: 2.0.0 resolution: "abbrev@npm:2.0.0" checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 languageName: node linkType: hard "abs-svg-path@npm:^0.1.1, abs-svg-path@npm:~0.1.1": version: 0.1.1 resolution: "abs-svg-path@npm:0.1.1" checksum: 10c0/aa763f3843cd4d7c3eabcddc91834ab27def4c1f470b98a3bf01ebe82928629c5aeaa97766252781449e0c722e1785f8e512fea79f86d3d10f8eca220d6aa292 languageName: node linkType: hard "acorn-import-attributes@npm:^1.9.5": version: 1.9.5 resolution: "acorn-import-attributes@npm:1.9.5" peerDependencies: acorn: ^8 checksum: 10c0/5926eaaead2326d5a86f322ff1b617b0f698aa61dc719a5baa0e9d955c9885cc71febac3fb5bacff71bbf2c4f9c12db2056883c68c53eb962c048b952e1e013d languageName: node linkType: hard "acorn-jsx@npm:^5.3.2": version: 5.3.2 resolution: "acorn-jsx@npm:5.3.2" peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 languageName: node linkType: hard "acorn@npm:^7.1.1": version: 7.4.1 resolution: "acorn@npm:7.4.1" bin: acorn: bin/acorn checksum: 10c0/bd0b2c2b0f334bbee48828ff897c12bd2eb5898d03bf556dcc8942022cec795ac5bb5b6b585e2de687db6231faf07e096b59a361231dd8c9344d5df5f7f0e526 languageName: node linkType: hard "acorn@npm:^8.14.0": version: 8.14.0 resolution: "acorn@npm:8.14.0" bin: acorn: bin/acorn checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 languageName: node linkType: hard "acorn@npm:^8.15.0": version: 8.15.0 resolution: "acorn@npm:8.15.0" bin: acorn: bin/acorn checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec languageName: node linkType: hard "acorn@npm:^8.9.0": version: 8.12.1 resolution: "acorn@npm:8.12.1" bin: acorn: bin/acorn checksum: 10c0/51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386 languageName: node linkType: hard "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": version: 7.1.3 resolution: "agent-base@npm:7.1.3" checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 languageName: node linkType: hard "ajv-draft-04@npm:~1.0.0": version: 1.0.0 resolution: "ajv-draft-04@npm:1.0.0" peerDependencies: ajv: ^8.5.0 peerDependenciesMeta: ajv: optional: true checksum: 10c0/6044310bd38c17d77549fd326bd40ce1506fa10b0794540aa130180808bf94117fac8c9b448c621512bea60e4a947278f6a978e87f10d342950c15b33ddd9271 languageName: node linkType: hard "ajv-formats@npm:~3.0.1": version: 3.0.1 resolution: "ajv-formats@npm:3.0.1" dependencies: ajv: "npm:^8.0.0" peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true checksum: 10c0/168d6bca1ea9f163b41c8147bae537e67bd963357a5488a1eaf3abe8baa8eec806d4e45f15b10767e6020679315c7e1e5e6803088dfb84efa2b4e9353b83dd0a languageName: node linkType: hard "ajv@npm:^6.12.4, ajv@npm:^6.12.6": version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: fast-deep-equal: "npm:^3.1.1" fast-json-stable-stringify: "npm:^2.0.0" json-schema-traverse: "npm:^0.4.1" uri-js: "npm:^4.2.2" checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 languageName: node linkType: hard "ajv@npm:^8.0.0": version: 8.17.1 resolution: "ajv@npm:8.17.1" dependencies: fast-deep-equal: "npm:^3.1.3" fast-uri: "npm:^3.0.1" json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35 languageName: node linkType: hard "ajv@npm:~8.12.0": version: 8.12.0 resolution: "ajv@npm:8.12.0" dependencies: fast-deep-equal: "npm:^3.1.1" json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" uri-js: "npm:^4.2.2" checksum: 10c0/ac4f72adf727ee425e049bc9d8b31d4a57e1c90da8d28bcd23d60781b12fcd6fc3d68db5df16994c57b78b94eed7988f5a6b482fd376dc5b084125e20a0a622e languageName: node linkType: hard "ajv@npm:~8.13.0": version: 8.13.0 resolution: "ajv@npm:8.13.0" dependencies: fast-deep-equal: "npm:^3.1.3" json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" uri-js: "npm:^4.4.1" checksum: 10c0/14c6497b6f72843986d7344175a1aa0e2c35b1e7f7475e55bc582cddb765fca7e6bf950f465dc7846f817776d9541b706f4b5b3fbedd8dfdeb5fce6f22864264 languageName: node linkType: hard "alien-signals@npm:^0.4.9": version: 0.4.14 resolution: "alien-signals@npm:0.4.14" checksum: 10c0/5abb3377bcaf6b3819e950084b3ebd022ad90210105afb450c89dc347e80e28da441bf34858a57ea122abe7603e552ddbad80dc597c8f02a0a5206c5fb9c20cb languageName: node linkType: hard "ansi-colors@npm:^4.1.1": version: 4.1.3 resolution: "ansi-colors@npm:4.1.3" checksum: 10c0/ec87a2f59902f74e61eada7f6e6fe20094a628dab765cfdbd03c3477599368768cffccdb5d3bb19a1b6c99126783a143b1fee31aab729b31ffe5836c7e5e28b9 languageName: node linkType: hard "ansi-regex@npm:^5.0.1": version: 5.0.1 resolution: "ansi-regex@npm:5.0.1" checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 languageName: node linkType: hard "ansi-regex@npm:^6.0.1": version: 6.1.0 resolution: "ansi-regex@npm:6.1.0" checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc languageName: node linkType: hard "ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": version: 4.3.0 resolution: "ansi-styles@npm:4.3.0" dependencies: color-convert: "npm:^2.0.1" checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 languageName: node linkType: hard "ansi-styles@npm:^5.0.0": version: 5.2.0 resolution: "ansi-styles@npm:5.2.0" checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df languageName: node linkType: hard "ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": version: 6.2.1 resolution: "ansi-styles@npm:6.2.1" checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c languageName: node linkType: hard "ansis@npm:^3.17.0": version: 3.17.0 resolution: "ansis@npm:3.17.0" checksum: 10c0/d8fa94ca7bb91e7e5f8a7d323756aa075facce07c5d02ca883673e128b2873d16f93e0dec782f98f1eeb1f2b3b4b7b60dcf0ad98fb442e75054fe857988cc5cb languageName: node linkType: hard "anymatch@npm:~3.1.2": version: 3.1.3 resolution: "anymatch@npm:3.1.3" dependencies: normalize-path: "npm:^3.0.0" picomatch: "npm:^2.0.4" checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac languageName: node linkType: hard "apache-arrow@npm:^21.0.0": version: 21.0.0 resolution: "apache-arrow@npm:21.0.0" dependencies: "@swc/helpers": "npm:^0.5.11" "@types/command-line-args": "npm:^5.2.3" "@types/command-line-usage": "npm:^5.0.4" "@types/node": "npm:^24.0.3" command-line-args: "npm:^6.0.1" command-line-usage: "npm:^7.0.1" flatbuffers: "npm:^25.1.24" json-bignum: "npm:^0.0.3" tslib: "npm:^2.6.2" bin: arrow2csv: bin/arrow2csv.js checksum: 10c0/a0a47574240b0680beed3a7bb631e8c45e08ee68b73ef4a807767f629d2368aa61c6d94dea444f68f59d519cd1962d1a158e32961d3ff02b176b921f66d855a3 languageName: node linkType: hard "argparse@npm:^1.0.10, argparse@npm:~1.0.9": version: 1.0.10 resolution: "argparse@npm:1.0.10" dependencies: sprintf-js: "npm:~1.0.2" checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de languageName: node linkType: hard "argparse@npm:^2.0.1": version: 2.0.1 resolution: "argparse@npm:2.0.1" checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e languageName: node linkType: hard "aria-query@npm:5.3.0": version: 5.3.0 resolution: "aria-query@npm:5.3.0" dependencies: dequal: "npm:^2.0.3" checksum: 10c0/2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469 languageName: node linkType: hard "aria-query@npm:^5.0.0, aria-query@npm:^5.3.2": version: 5.3.2 resolution: "aria-query@npm:5.3.2" checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e languageName: node linkType: hard "arr-union@npm:^3.1.0": version: 3.1.0 resolution: "arr-union@npm:3.1.0" checksum: 10c0/7d5aa05894e54aa93c77c5726c1dd5d8e8d3afe4f77983c0aa8a14a8a5cbe8b18f0cf4ecaa4ac8c908ef5f744d2cbbdaa83fd6e96724d15fea56cfa7f5efdd51 languageName: node linkType: hard "array-back@npm:^6.2.2": version: 6.2.2 resolution: "array-back@npm:6.2.2" checksum: 10c0/c98a6e43b669400f58e2fba478336d5d02aac970566ffae3af0cb9b5585ec3811a1e010c76e34fb809a9762e6822a43a9c9a1b99f2a35f43b11a9e198e782818 languageName: node linkType: hard "array-bounds@npm:^1.0.0, array-bounds@npm:^1.0.1": version: 1.0.1 resolution: "array-bounds@npm:1.0.1" checksum: 10c0/69ee3bb14b6a9e170ef052d21354e0b1d63fd113702e082b70fc08197767f36018cf86d532d9602e01ae76fb36dbafbe72a194f5bd61312f5626db2aff305a2e languageName: node linkType: hard "array-buffer-byte-length@npm:^1.0.1": version: 1.0.1 resolution: "array-buffer-byte-length@npm:1.0.1" dependencies: call-bind: "npm:^1.0.5" is-array-buffer: "npm:^3.0.4" checksum: 10c0/f5cdf54527cd18a3d2852ddf73df79efec03829e7373a8322ef5df2b4ef546fb365c19c71d6b42d641cb6bfe0f1a2f19bc0ece5b533295f86d7c3d522f228917 languageName: node linkType: hard "array-buffer-byte-length@npm:^1.0.2": version: 1.0.2 resolution: "array-buffer-byte-length@npm:1.0.2" dependencies: call-bound: "npm:^1.0.3" is-array-buffer: "npm:^3.0.5" checksum: 10c0/74e1d2d996941c7a1badda9cabb7caab8c449db9086407cad8a1b71d2604cc8abf105db8ca4e02c04579ec58b7be40279ddb09aea4784832984485499f48432d languageName: node linkType: hard "array-find-index@npm:^1.0.2": version: 1.0.2 resolution: "array-find-index@npm:1.0.2" checksum: 10c0/86b9485c74ddd324feab807e10a6de3f9c1683856267236fac4bb4d4667ada6463e106db3f6c540ae6b720e0442b590ec701d13676df4c6af30ebf4da09b4f57 languageName: node linkType: hard "array-includes@npm:^3.1.6, array-includes@npm:^3.1.8": version: 3.1.8 resolution: "array-includes@npm:3.1.8" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" es-object-atoms: "npm:^1.0.0" get-intrinsic: "npm:^1.2.4" is-string: "npm:^1.0.7" checksum: 10c0/5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370 languageName: node linkType: hard "array-includes@npm:^3.1.9": version: 3.1.9 resolution: "array-includes@npm:3.1.9" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.4" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.24.0" es-object-atoms: "npm:^1.1.1" get-intrinsic: "npm:^1.3.0" is-string: "npm:^1.1.1" math-intrinsics: "npm:^1.1.0" checksum: 10c0/0235fa69078abeac05ac4250699c44996bc6f774a9cbe45db48674ce6bd142f09b327d31482ff75cf03344db4ea03eae23edb862d59378b484b47ed842574856 languageName: node linkType: hard "array-normalize@npm:^1.1.4": version: 1.1.4 resolution: "array-normalize@npm:1.1.4" dependencies: array-bounds: "npm:^1.0.0" checksum: 10c0/68ef2d37105ab84101ee024b8d660f6b820faedd2c89a018d68e1e774a2cc31b21060bb5e168b233919d50127857fbf62e2f8d20ae8e0d428b6c40d393454ee9 languageName: node linkType: hard "array-range@npm:^1.0.1": version: 1.0.1 resolution: "array-range@npm:1.0.1" checksum: 10c0/d54a5cf60ac91c525c3ad52b6b02994c0bb437a175852ef64fd5474888c56053a97e108aeb32bc5fc17b928783d57dddf87757752eb5f0aa9092566a731fa734 languageName: node linkType: hard "array-rearrange@npm:^2.2.2": version: 2.2.2 resolution: "array-rearrange@npm:2.2.2" checksum: 10c0/3cee3171eaeb364110dba1d9f1ba80c5b37d8284465930482060240097c47bbcc89b659748c515fdf3ac23fc230658a08847c8507c9ffae4f17fa74218716ef2 languageName: node linkType: hard "array-union@npm:^2.1.0": version: 2.1.0 resolution: "array-union@npm:2.1.0" checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 languageName: node linkType: hard "array.prototype.findlast@npm:^1.2.5": version: 1.2.5 resolution: "array.prototype.findlast@npm:1.2.5" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" es-shim-unscopables: "npm:^1.0.2" checksum: 10c0/ddc952b829145ab45411b9d6adcb51a8c17c76bf89c9dd64b52d5dffa65d033da8c076ed2e17091779e83bc892b9848188d7b4b33453c5565e65a92863cb2775 languageName: node linkType: hard "array.prototype.findlastindex@npm:^1.2.6": version: 1.2.6 resolution: "array.prototype.findlastindex@npm:1.2.6" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.4" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.9" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" es-shim-unscopables: "npm:^1.1.0" checksum: 10c0/82559310d2e57ec5f8fc53d7df420e3abf0ba497935de0a5570586035478ba7d07618cb18e2d4ada2da514c8fb98a034aaf5c06caa0a57e2f7f4c4adedef5956 languageName: node linkType: hard "array.prototype.flat@npm:^1.3.1": version: 1.3.2 resolution: "array.prototype.flat@npm:1.3.2" dependencies: call-bind: "npm:^1.0.2" define-properties: "npm:^1.2.0" es-abstract: "npm:^1.22.1" es-shim-unscopables: "npm:^1.0.0" checksum: 10c0/a578ed836a786efbb6c2db0899ae80781b476200617f65a44846cb1ed8bd8b24c8821b83703375d8af639c689497b7b07277060024b9919db94ac3e10dc8a49b languageName: node linkType: hard "array.prototype.flat@npm:^1.3.3": version: 1.3.3 resolution: "array.prototype.flat@npm:1.3.3" dependencies: call-bind: "npm:^1.0.8" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.5" es-shim-unscopables: "npm:^1.0.2" checksum: 10c0/d90e04dfbc43bb96b3d2248576753d1fb2298d2d972e29ca7ad5ec621f0d9e16ff8074dae647eac4f31f4fb7d3f561a7ac005fb01a71f51705a13b5af06a7d8a languageName: node linkType: hard "array.prototype.flatmap@npm:^1.3.2": version: 1.3.2 resolution: "array.prototype.flatmap@npm:1.3.2" dependencies: call-bind: "npm:^1.0.2" define-properties: "npm:^1.2.0" es-abstract: "npm:^1.22.1" es-shim-unscopables: "npm:^1.0.0" checksum: 10c0/67b3f1d602bb73713265145853128b1ad77cc0f9b833c7e1e056b323fbeac41a4ff1c9c99c7b9445903caea924d9ca2450578d9011913191aa88cc3c3a4b54f4 languageName: node linkType: hard "array.prototype.flatmap@npm:^1.3.3": version: 1.3.3 resolution: "array.prototype.flatmap@npm:1.3.3" dependencies: call-bind: "npm:^1.0.8" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.5" es-shim-unscopables: "npm:^1.0.2" checksum: 10c0/ba899ea22b9dc9bf276e773e98ac84638ed5e0236de06f13d63a90b18ca9e0ec7c97d622d899796e3773930b946cd2413d098656c0c5d8cc58c6f25c21e6bd54 languageName: node linkType: hard "array.prototype.tosorted@npm:^1.1.4": version: 1.1.4 resolution: "array.prototype.tosorted@npm:1.1.4" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.3" es-errors: "npm:^1.3.0" es-shim-unscopables: "npm:^1.0.2" checksum: 10c0/eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943 languageName: node linkType: hard "arraybuffer.prototype.slice@npm:^1.0.3": version: 1.0.3 resolution: "arraybuffer.prototype.slice@npm:1.0.3" dependencies: array-buffer-byte-length: "npm:^1.0.1" call-bind: "npm:^1.0.5" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.22.3" es-errors: "npm:^1.2.1" get-intrinsic: "npm:^1.2.3" is-array-buffer: "npm:^3.0.4" is-shared-array-buffer: "npm:^1.0.2" checksum: 10c0/d32754045bcb2294ade881d45140a5e52bda2321b9e98fa514797b7f0d252c4c5ab0d1edb34112652c62fa6a9398def568da63a4d7544672229afea283358c36 languageName: node linkType: hard "arraybuffer.prototype.slice@npm:^1.0.4": version: 1.0.4 resolution: "arraybuffer.prototype.slice@npm:1.0.4" dependencies: array-buffer-byte-length: "npm:^1.0.1" call-bind: "npm:^1.0.8" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.5" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.6" is-array-buffer: "npm:^3.0.4" checksum: 10c0/2f2459caa06ae0f7f615003f9104b01f6435cc803e11bd2a655107d52a1781dc040532dc44d93026b694cc18793993246237423e13a5337e86b43ed604932c06 languageName: node linkType: hard "asap@npm:~2.0.3": version: 2.0.6 resolution: "asap@npm:2.0.6" checksum: 10c0/c6d5e39fe1f15e4b87677460bd66b66050cd14c772269cee6688824c1410a08ab20254bb6784f9afb75af9144a9f9a7692d49547f4d19d715aeb7c0318f3136d languageName: node linkType: hard "assertion-error@npm:^2.0.1": version: 2.0.1 resolution: "assertion-error@npm:2.0.1" checksum: 10c0/bbbcb117ac6480138f8c93cf7f535614282dea9dc828f540cdece85e3c665e8f78958b96afac52f29ff883c72638e6a87d469ecc9fe5bc902df03ed24a55dba8 languageName: node linkType: hard "assign-symbols@npm:^1.0.0": version: 1.0.0 resolution: "assign-symbols@npm:1.0.0" checksum: 10c0/29a654b8a6da6889a190d0d0efef4b1bfb5948fa06cbc245054aef05139f889f2f7c75b989917e3fde853fc4093b88048e4de8578a73a76f113d41bfd66e5775 languageName: node linkType: hard "ast-types-flow@npm:^0.0.8": version: 0.0.8 resolution: "ast-types-flow@npm:0.0.8" checksum: 10c0/f2a0ba8055353b743c41431974521e5e852a9824870cd6fce2db0e538ac7bf4da406bbd018d109af29ff3f8f0993f6a730c9eddbd0abd031fbcb29ca75c1014e languageName: node linkType: hard "ast-types@npm:^0.13.4": version: 0.13.4 resolution: "ast-types@npm:0.13.4" dependencies: tslib: "npm:^2.0.1" checksum: 10c0/3a1a409764faa1471601a0ad01b3aa699292991aa9c8a30c7717002cabdf5d98008e7b53ae61f6e058f757fc6ba965e147967a93c13e62692c907d79cfb245f8 languageName: node linkType: hard "ast-v8-to-istanbul@npm:^0.3.3": version: 0.3.3 resolution: "ast-v8-to-istanbul@npm:0.3.3" dependencies: "@jridgewell/trace-mapping": "npm:^0.3.25" estree-walker: "npm:^3.0.3" js-tokens: "npm:^9.0.1" checksum: 10c0/ffc39bc3ab4b8c1f7aea945960ce6b1e518bab3da7c800277eab2da07d397eeae4a2cb8a5a5f817225646c8ea495c1e4434fbe082c84bae8042abddef53f50b2 languageName: node linkType: hard "async@npm:^3.2.3": version: 3.2.6 resolution: "async@npm:3.2.6" checksum: 10c0/36484bb15ceddf07078688d95e27076379cc2f87b10c03b6dd8a83e89475a3c8df5848859dd06a4c95af1e4c16fc973de0171a77f18ea00be899aca2a4f85e70 languageName: node linkType: hard "asynckit@npm:^0.4.0": version: 0.4.0 resolution: "asynckit@npm:0.4.0" checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d languageName: node linkType: hard "atomically@npm:^2.0.3": version: 2.0.3 resolution: "atomically@npm:2.0.3" dependencies: stubborn-fs: "npm:^1.2.5" when-exit: "npm:^2.1.1" checksum: 10c0/b9008a74f590d29be947f34b7583dab32034335fedfe340ac3e6458e2e315c770d8af6f15cd3947214702c523d91b5f989498348b1ab49c197bd645dc87d7a94 languageName: node linkType: hard "attr-accept@npm:^1.1.3": version: 1.1.3 resolution: "attr-accept@npm:1.1.3" dependencies: core-js: "npm:^2.5.0" checksum: 10c0/a9886d41d757ca90e11404bdf732c8076f6b5c6f5d13decd20084a49eae81206a59555939e987e0734f348652e6babe990f5b8c920031d1e68756a997ce1ee82 languageName: node linkType: hard "attr-accept@npm:^2.2.4": version: 2.2.5 resolution: "attr-accept@npm:2.2.5" checksum: 10c0/9b4cb82213925cab2d568f71b3f1c7a7778f9192829aac39a281e5418cd00c04a88f873eb89f187e0bf786fa34f8d52936f178e62cbefb9254d57ecd88ada99b languageName: node linkType: hard "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" dependencies: possible-typed-array-names: "npm:^1.0.0" checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 languageName: node linkType: hard "awilix@npm:^12.0.5": version: 12.0.5 resolution: "awilix@npm:12.0.5" dependencies: camel-case: "npm:^4.1.2" fast-glob: "npm:^3.3.3" checksum: 10c0/39c387b58521aa4830289d3a79d38485e50a22ba66feb17924faf59b2b2cb2f04b59fdc2800ae07ab2481a40f4a09f72d3f0a470f6081994c336e07685db1f4e languageName: node linkType: hard "axe-core@npm:^4.10.0": version: 4.10.2 resolution: "axe-core@npm:4.10.2" checksum: 10c0/0e20169077de96946a547fce0df39d9aeebe0077f9d3eeff4896518b96fde857f80b98f0d4279274a7178791744dd5a54bb4f322de45b4f561ffa2586ff9a09d languageName: node linkType: hard "axe-core@npm:^4.10.3": version: 4.10.3 resolution: "axe-core@npm:4.10.3" checksum: 10c0/1b1c24f435b2ffe89d76eca0001cbfff42dbf012ad9bd37398b70b11f0d614281a38a28bc3069e8972e3c90ec929a8937994bd24b0ebcbaab87b8d1e241ab0c7 languageName: node linkType: hard "axios-mock-adapter@npm:^2.1.0": version: 2.1.0 resolution: "axios-mock-adapter@npm:2.1.0" dependencies: fast-deep-equal: "npm:^3.1.3" is-buffer: "npm:^2.0.5" peerDependencies: axios: ">= 0.17.0" checksum: 10c0/37ebd88940245f4e027578734613417f024d06e2279edb1a188ccdf685a15ab4fdfbac7cfe681731722a1ba6c0a5ec15ef0145f79a53687181e4aacbe45e1730 languageName: node linkType: hard "axios@npm:^1.12.1": version: 1.12.2 resolution: "axios@npm:1.12.2" dependencies: follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.4" proxy-from-env: "npm:^1.1.0" checksum: 10c0/80b063e318cf05cd33a4d991cea0162f3573481946f9129efb7766f38fde4c061c34f41a93a9f9521f02b7c9565ccbc197c099b0186543ac84a24580017adfed languageName: node linkType: hard "axobject-query@npm:^4.1.0": version: 4.1.0 resolution: "axobject-query@npm:4.1.0" checksum: 10c0/c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775 languageName: node linkType: hard "b4a@npm:^1.6.4": version: 1.6.7 resolution: "b4a@npm:1.6.7" checksum: 10c0/ec2f004d1daae04be8c5a1f8aeb7fea213c34025e279db4958eb0b82c1729ee25f7c6e89f92a5f65c8a9cf2d017ce27e3dda912403341d1781bd74528a4849d4 languageName: node linkType: hard "babel-plugin-macros@npm:^3.1.0": version: 3.1.0 resolution: "babel-plugin-macros@npm:3.1.0" dependencies: "@babel/runtime": "npm:^7.12.5" cosmiconfig: "npm:^7.0.0" resolve: "npm:^1.19.0" checksum: 10c0/c6dfb15de96f67871d95bd2e8c58b0c81edc08b9b087dc16755e7157f357dc1090a8dc60ebab955e92587a9101f02eba07e730adc253a1e4cf593ca3ebd3839c languageName: node linkType: hard "bail@npm:^2.0.0": version: 2.0.2 resolution: "bail@npm:2.0.2" checksum: 10c0/25cbea309ef6a1f56214187004e8f34014eb015713ea01fa5b9b7e9e776ca88d0fdffd64143ac42dc91966c915a4b7b683411b56e14929fad16153fc026ffb8b languageName: node linkType: hard "balanced-match@npm:^1.0.0": version: 1.0.2 resolution: "balanced-match@npm:1.0.2" checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee languageName: node linkType: hard "bare-events@npm:^2.0.0, bare-events@npm:^2.2.0": version: 2.5.0 resolution: "bare-events@npm:2.5.0" checksum: 10c0/afbeec4e8be4d93fb4a3be65c3b4a891a2205aae30b5a38fafd42976cc76cf30dad348963fe330a0d70186e15dc507c11af42c89af5dddab2a54e5aff02e2896 languageName: node linkType: hard "bare-fs@npm:^4.0.1": version: 4.0.1 resolution: "bare-fs@npm:4.0.1" dependencies: bare-events: "npm:^2.0.0" bare-path: "npm:^3.0.0" bare-stream: "npm:^2.0.0" checksum: 10c0/db2f4e2646faa011e322cbdc4615fe0cac865a03c2f76d7c686eccf96b0b5eea2bc71dfa37e8cfb14f4f61f8cd3ca95ff7b745d37c55fca319e40ec351d4ae0c languageName: node linkType: hard "bare-os@npm:^3.0.1": version: 3.5.1 resolution: "bare-os@npm:3.5.1" checksum: 10c0/868433c4f5a551919191ad039fd04ba3ec5d0cd7b0de4fbb5854af517561b83a32b722d2d36070520bbf888a1dad6e492ef70f0ff1d41f6861f365fb271af946 languageName: node linkType: hard "bare-path@npm:^3.0.0": version: 3.0.0 resolution: "bare-path@npm:3.0.0" dependencies: bare-os: "npm:^3.0.1" checksum: 10c0/56a3ca82a9f808f4976cb1188640ac206546ce0ddff582afafc7bd2a6a5b31c3bd16422653aec656eeada2830cfbaa433c6cbf6d6b4d9eba033d5e06d60d9a68 languageName: node linkType: hard "bare-stream@npm:^2.0.0": version: 2.3.2 resolution: "bare-stream@npm:2.3.2" dependencies: streamx: "npm:^2.20.0" checksum: 10c0/e2bda606c2cbd6acbb2558d9a5f6d2d4bc08fb635d32d599bc8e74c1d2298c956decf6a3a820e485a760bb73b8a7f0e743ec5262f08cccbaf5eeb599253d4221 languageName: node linkType: hard "base16@npm:^1.0.0": version: 1.0.0 resolution: "base16@npm:1.0.0" checksum: 10c0/af1aee7b297d968528ef47c8de2c5274029743e8a4a5f61ec823e36b673781691d124168cb22936c7997f53d89b344c58bf7ecf93eeb148cffa7e3fb4e4b8b18 languageName: node linkType: hard "base64-arraybuffer@npm:^1.0.2": version: 1.0.2 resolution: "base64-arraybuffer@npm:1.0.2" checksum: 10c0/3acac95c70f9406e87a41073558ba85b6be9dbffb013a3d2a710e3f2d534d506c911847d5d9be4de458af6362c676de0a5c4c2d7bdf4def502d00b313368e72f languageName: node linkType: hard "base64-js@npm:^1.1.2, base64-js@npm:^1.3.1": version: 1.5.1 resolution: "base64-js@npm:1.5.1" checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf languageName: node linkType: hard "baseui@npm:12.2.0": version: 12.2.0 resolution: "baseui@npm:12.2.0" dependencies: "@date-io/date-fns": "npm:^2.6.2" "@types/react-virtualized-auto-sizer": "npm:^1.0.0" "@types/react-window": "npm:^1.8.1" card-validator: "npm:^6.2.0" d3: "npm:^6.7.0" date-fns: "npm:^2.6.0" date-fns-tz: "npm:^1.2.2" glob: "npm:^7.1.6" just-extend: "npm:^4.0.2" memoize-one: "npm:^5.1.1" mockdate: "npm:^3.0.5" polished: "npm:^3.2.0" popper.js: "npm:^1.16.0" react-dropzone: "npm:9.0.0" react-focus-lock: "npm:^2.7.1" react-input-mask: "npm:^2.0.4" react-is: "npm:^16.8.6" react-movable: "npm:^2.5.4" react-multi-ref: "npm:^1.0.0" react-range: "npm:^1.8.0" react-uid: "npm:^2.3.0" react-virtualized: "npm:^9.21.1" react-virtualized-auto-sizer: "npm:^1.0.2" react-window: "npm:^1.8.5" resize-observer-polyfill: "npm:^1.5.1" peerDependencies: react: ">= 16.8.0 < 19" react-dom: ">= 16.8.0 < 19" styletron-react: ">=6.1.0 < 7" checksum: 10c0/c1512143d5f083315b826f67bcc6fbfaf6ddc33b76e38fdea5219cc569e02fe0b5f87036e1037cd76078f9bc539261ed131aa0cc053c6aa2dce54248c67afb82 languageName: node linkType: hard "basic-ftp@npm:^5.0.2": version: 5.0.5 resolution: "basic-ftp@npm:5.0.5" checksum: 10c0/be983a3997749856da87b839ffce6b8ed6c7dbf91ea991d5c980d8add275f9f2926c19f80217ac3e7f353815be879371d636407ca72b038cea8cab30e53928a6 languageName: node linkType: hard "bignumber.js@npm:^8 || ^9, bignumber.js@npm:^9.1.0": version: 9.1.2 resolution: "bignumber.js@npm:9.1.2" checksum: 10c0/e17786545433f3110b868725c449fa9625366a6e675cd70eb39b60938d6adbd0158cb4b3ad4f306ce817165d37e63f4aa3098ba4110db1d9a3b9f66abfbaf10d languageName: node linkType: hard "binary-extensions@npm:^2.0.0": version: 2.3.0 resolution: "binary-extensions@npm:2.3.0" checksum: 10c0/75a59cafc10fb12a11d510e77110c6c7ae3f4ca22463d52487709ca7f18f69d886aa387557cc9864fbdb10153d0bdb4caacabf11541f55e89ed6e18d12ece2b5 languageName: node linkType: hard "binary-search-bounds@npm:^2.0.4": version: 2.0.5 resolution: "binary-search-bounds@npm:2.0.5" checksum: 10c0/d433db5fba086d1585e268c0b0b7ae6ec359df60b9135112d1fd4dcf2f8a8820caab7e2523bbbca0a9cae0725486f67a6663a87b5637f0e58f4201985e6e5b0b languageName: node linkType: hard "birecord@npm:^0.1.1": version: 0.1.1 resolution: "birecord@npm:0.1.1" checksum: 10c0/7c7f8c38caebd98bcbfc8a209eaa3044384636ea162757de670c8633b7d1064b3b58e4e3d3a48fe10e279cd39290a76a31a18956a1c76b2b13522b6cf0293238 languageName: node linkType: hard "bit-twiddle@npm:^1.0.0, bit-twiddle@npm:^1.0.2": version: 1.0.2 resolution: "bit-twiddle@npm:1.0.2" checksum: 10c0/edd86fdaeb27fb5acb9dbde247a71e511ebb6c5406ed645038974203dce8c87ef0359f5d5b60212c2a54d0a52ab16a27c4cc3b1cd4e06256a33881ed77f03d7a languageName: node linkType: hard "bitmap-sdf@npm:^1.0.0": version: 1.0.4 resolution: "bitmap-sdf@npm:1.0.4" checksum: 10c0/1af490ff70c6fcb4f2a3d6c2217c0876a63a8a164515ee7283622409f35c050827ec1ad6fa8a1f152bb288d77de8fe7f7858ce67f1e7621af56de8755dce48fd languageName: node linkType: hard "bl@npm:^2.2.1": version: 2.2.1 resolution: "bl@npm:2.2.1" dependencies: readable-stream: "npm:^2.3.5" safe-buffer: "npm:^5.1.1" checksum: 10c0/37481260f1661755253b6205fcdd64b6d852147aaf61628947d2193fcdb78e625ee061dae0094ac16e7c7f10b12c90110fb2b08826815d47a28f9628bebb5a8f languageName: node linkType: hard "bluebird@npm:^3.7.2": version: 3.7.2 resolution: "bluebird@npm:3.7.2" checksum: 10c0/680de03adc54ff925eaa6c7bb9a47a0690e8b5de60f4792604aae8ed618c65e6b63a7893b57ca924beaf53eee69c5af4f8314148c08124c550fe1df1add897d2 languageName: node linkType: hard "brace-expansion@npm:^1.1.7": version: 1.1.12 resolution: "brace-expansion@npm:1.1.12" dependencies: balanced-match: "npm:^1.0.0" concat-map: "npm:0.0.1" checksum: 10c0/975fecac2bb7758c062c20d0b3b6288c7cc895219ee25f0a64a9de662dbac981ff0b6e89909c3897c1f84fa353113a721923afdec5f8b2350255b097f12b1f73 languageName: node linkType: hard "brace-expansion@npm:^2.0.1": version: 2.0.1 resolution: "brace-expansion@npm:2.0.1" dependencies: balanced-match: "npm:^1.0.0" checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f languageName: node linkType: hard "braces@npm:^3.0.3, braces@npm:~3.0.2": version: 3.0.3 resolution: "braces@npm:3.0.3" dependencies: fill-range: "npm:^7.1.1" checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04 languageName: node linkType: hard "brotli@npm:^1.3.2": version: 1.3.3 resolution: "brotli@npm:1.3.3" dependencies: base64-js: "npm:^1.1.2" checksum: 10c0/9d24e24f8b7eabf44af034ed5f7d5530008b835f09a107a84ac060723e86dd43c6aa68958691fe5df524f59473b35f5ce2e0854aa1152c0a254d1010f51bcf22 languageName: node linkType: hard "browserslist@npm:^4.24.0": version: 4.24.2 resolution: "browserslist@npm:4.24.2" dependencies: caniuse-lite: "npm:^1.0.30001669" electron-to-chromium: "npm:^1.5.41" node-releases: "npm:^2.0.18" update-browserslist-db: "npm:^1.1.1" bin: browserslist: cli.js checksum: 10c0/d747c9fb65ed7b4f1abcae4959405707ed9a7b835639f8a9ba0da2911995a6ab9b0648fd05baf2a4d4e3cf7f9fdbad56d3753f91881e365992c1d49c8d88ff7a languageName: node linkType: hard "btoa@npm:^1.2.1": version: 1.2.1 resolution: "btoa@npm:1.2.1" bin: btoa: bin/btoa.js checksum: 10c0/557b9682e40a68ae057af1b377e28884e6ff756ba0f499fe0f8c7b725a5bfb5c0d891604ac09944dbe330c9d43fb3976fef734f9372608d0d8e78a30eda292ae languageName: node linkType: hard "buf-compare@npm:^1.0.0": version: 1.0.1 resolution: "buf-compare@npm:1.0.1" checksum: 10c0/ccf1a89efc24bb36213813802b50c20752308859de42a7dca1b035231c72407aa0dbd49383409c818bb93e748117ea7961a8b5366e2597c7db76eb2b028cd64f languageName: node linkType: hard "buffer-crc32@npm:~0.2.3": version: 0.2.13 resolution: "buffer-crc32@npm:0.2.13" checksum: 10c0/cb0a8ddf5cf4f766466db63279e47761eb825693eeba6a5a95ee4ec8cb8f81ede70aa7f9d8aeec083e781d47154290eb5d4d26b3f7a465ec57fb9e7d59c47150 languageName: node linkType: hard "buffer-from@npm:^1.0.0": version: 1.1.2 resolution: "buffer-from@npm:1.1.2" checksum: 10c0/124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 languageName: node linkType: hard "buffer@npm:^6.0.3": version: 6.0.3 resolution: "buffer@npm:6.0.3" dependencies: base64-js: "npm:^1.3.1" ieee754: "npm:^1.2.1" checksum: 10c0/2a905fbbcde73cc5d8bd18d1caa23715d5f83a5935867c2329f0ac06104204ba7947be098fe1317fbd8830e26090ff8e764f08cd14fefc977bb248c3487bcbd0 languageName: node linkType: hard "bytewise-core@npm:^1.2.2": version: 1.2.3 resolution: "bytewise-core@npm:1.2.3" dependencies: typewise-core: "npm:^1.2" checksum: 10c0/210239f3048de9463b4ab02968bd0ef7b3c9b330c0329f9df1851fee0819e19fbb0eca8cc235947112dcce942ed58541283ddaefe29515c93a2b7e0820be3f2d languageName: node linkType: hard "bytewise@npm:^1.1.0": version: 1.1.0 resolution: "bytewise@npm:1.1.0" dependencies: bytewise-core: "npm:^1.2.2" typewise: "npm:^1.0.3" checksum: 10c0/bcf994a8b635390dce43b22e97201cc0e3df0089ada4e77cc0bb48ce241efd0c27ca24a9400828cdd288a69a961da0b60c05bf7381b6cb529f048ab22092cc6d languageName: node linkType: hard "cac@npm:^6.7.14": version: 6.7.14 resolution: "cac@npm:6.7.14" checksum: 10c0/4ee06aaa7bab8981f0d54e5f5f9d4adcd64058e9697563ce336d8a3878ed018ee18ebe5359b2430eceae87e0758e62ea2019c3f52ae6e211b1bd2e133856cd10 languageName: node linkType: hard "cacache@npm:^19.0.1": version: 19.0.1 resolution: "cacache@npm:19.0.1" dependencies: "@npmcli/fs": "npm:^4.0.0" fs-minipass: "npm:^3.0.0" glob: "npm:^10.2.2" lru-cache: "npm:^10.0.1" minipass: "npm:^7.0.3" minipass-collect: "npm:^2.0.1" minipass-flush: "npm:^1.0.5" minipass-pipeline: "npm:^1.2.4" p-map: "npm:^7.0.2" ssri: "npm:^12.0.0" tar: "npm:^7.4.3" unique-filename: "npm:^4.0.0" checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c languageName: node linkType: hard "call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": version: 1.0.2 resolution: "call-bind-apply-helpers@npm:1.0.2" dependencies: es-errors: "npm:^1.3.0" function-bind: "npm:^1.1.2" checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938 languageName: node linkType: hard "call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7": version: 1.0.7 resolution: "call-bind@npm:1.0.7" dependencies: es-define-property: "npm:^1.0.0" es-errors: "npm:^1.3.0" function-bind: "npm:^1.1.2" get-intrinsic: "npm:^1.2.4" set-function-length: "npm:^1.2.1" checksum: 10c0/a3ded2e423b8e2a265983dba81c27e125b48eefb2655e7dfab6be597088da3d47c47976c24bc51b8fd9af1061f8f87b4ab78a314f3c77784b2ae2ba535ad8b8d languageName: node linkType: hard "call-bind@npm:^1.0.8": version: 1.0.8 resolution: "call-bind@npm:1.0.8" dependencies: call-bind-apply-helpers: "npm:^1.0.0" es-define-property: "npm:^1.0.0" get-intrinsic: "npm:^1.2.4" set-function-length: "npm:^1.2.2" checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 languageName: node linkType: hard "call-bound@npm:^1.0.2, call-bound@npm:^1.0.3": version: 1.0.3 resolution: "call-bound@npm:1.0.3" dependencies: call-bind-apply-helpers: "npm:^1.0.1" get-intrinsic: "npm:^1.2.6" checksum: 10c0/45257b8e7621067304b30dbd638e856cac913d31e8e00a80d6cf172911acd057846572d0b256b45e652d515db6601e2974a1b1a040e91b4fc36fb3dd86fa69cf languageName: node linkType: hard "call-bound@npm:^1.0.4": version: 1.0.4 resolution: "call-bound@npm:1.0.4" dependencies: call-bind-apply-helpers: "npm:^1.0.2" get-intrinsic: "npm:^1.3.0" checksum: 10c0/f4796a6a0941e71c766aea672f63b72bc61234c4f4964dc6d7606e3664c307e7d77845328a8f3359ce39ddb377fed67318f9ee203dea1d47e46165dcf2917644 languageName: node linkType: hard "callsites@npm:^3.0.0": version: 3.1.0 resolution: "callsites@npm:3.1.0" checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 languageName: node linkType: hard "camel-case@npm:^4.1.2": version: 4.1.2 resolution: "camel-case@npm:4.1.2" dependencies: pascal-case: "npm:^3.1.2" tslib: "npm:^2.0.3" checksum: 10c0/bf9eefaee1f20edbed2e9a442a226793bc72336e2b99e5e48c6b7252b6f70b080fc46d8246ab91939e2af91c36cdd422e0af35161e58dd089590f302f8f64c8a languageName: node linkType: hard "camelcase@npm:^6.2.0": version: 6.3.0 resolution: "camelcase@npm:6.3.0" checksum: 10c0/0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710 languageName: node linkType: hard "caniuse-lite@npm:^1.0.30001669": version: 1.0.30001755 resolution: "caniuse-lite@npm:1.0.30001755" checksum: 10c0/7b8e32a4ec307b50f557d30176651cf69f20a0ea4de6f5f34149ea65a1f0cfcc0677b403484aea3661c7469ab11f2df6528027b9ec2d0265635ede9d5b517380 languageName: node linkType: hard "canvas-fit@npm:^1.5.0": version: 1.5.0 resolution: "canvas-fit@npm:1.5.0" dependencies: element-size: "npm:^1.1.1" checksum: 10c0/9d85ce4c205e7edf87fa6281891780e1f62c0ffc62b4e4b16f3d27960e2b81cb05e340b21068bd35ea63651c5f343f3c0af981e40cd2f9a42bc6c7e387248bbb languageName: node linkType: hard "canvas-hypertxt@npm:^1.0.3": version: 1.0.3 resolution: "canvas-hypertxt@npm:1.0.3" checksum: 10c0/5121d3b76f53d27fe5d66a9bfe0365a67a0ce92d3383ee17053a951848721f65a444225f8826b2ec6dfe895767b7127ffe09913e438f0886563072181a14a974 languageName: node linkType: hard "card-validator@npm:^6.2.0": version: 6.2.0 resolution: "card-validator@npm:6.2.0" dependencies: credit-card-type: "npm:^8.0.0" checksum: 10c0/89510e884d65dbff635fde9c0fb683ff0cc10ea0dcc23d38a023d6432bd807871cf5ec5b18e9f4993b786349ec686a9de262e5b175f78ea9b78ec19804406d4e languageName: node linkType: hard "cartocolor@npm:^5.0.2": version: 5.0.2 resolution: "cartocolor@npm:5.0.2" dependencies: colorbrewer: "npm:1.5.6" checksum: 10c0/305412d0354ed90b7db050f055a56fd68a95c2e9659d55c1f93272cd30d6c1148519e0b55378be1a1ad2c61147f63c3426c317f8ce5d7359f47266dc2d92f663 languageName: node linkType: hard "catharsis@npm:^0.9.0": version: 0.9.0 resolution: "catharsis@npm:0.9.0" dependencies: lodash: "npm:^4.17.15" checksum: 10c0/9ac03ca48154ac63cfdb6c1645481d9d04f3c3e0dea131debf3116a0c12aa47e8864be7dcf770932c46d75bdd844a99f0c116c234e57232ad1f427751498e7ed languageName: node linkType: hard "ccount@npm:^2.0.0": version: 2.0.1 resolution: "ccount@npm:2.0.1" checksum: 10c0/3939b1664390174484322bc3f45b798462e6c07ee6384cb3d645e0aa2f318502d174845198c1561930e1d431087f74cf1fe291ae9a4722821a9f4ba67e574350 languageName: node linkType: hard "chai@npm:^5.2.0": version: 5.2.0 resolution: "chai@npm:5.2.0" dependencies: assertion-error: "npm:^2.0.1" check-error: "npm:^2.1.1" deep-eql: "npm:^5.0.1" loupe: "npm:^3.1.0" pathval: "npm:^2.0.0" checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d languageName: node linkType: hard "chalk-template@npm:^0.4.0": version: 0.4.0 resolution: "chalk-template@npm:0.4.0" dependencies: chalk: "npm:^4.1.2" checksum: 10c0/6a4cb4252966475f0bd3ee1cd8780146e1ba69f445e59c565cab891ac18708c8143515d23e2b0fb7e192574fb7608d429ea5b28f3b7b9507770ad6fccd3467e3 languageName: node linkType: hard "chalk@npm:4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: ansi-styles: "npm:^4.1.0" supports-color: "npm:^7.1.0" checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 languageName: node linkType: hard "char-regex@npm:^1.0.2": version: 1.0.2 resolution: "char-regex@npm:1.0.2" checksum: 10c0/57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e languageName: node linkType: hard "character-entities-html4@npm:^2.0.0": version: 2.1.0 resolution: "character-entities-html4@npm:2.1.0" checksum: 10c0/fe61b553f083400c20c0b0fd65095df30a0b445d960f3bbf271536ae6c3ba676f39cb7af0b4bf2755812f08ab9b88f2feed68f9aebb73bb153f7a115fe5c6e40 languageName: node linkType: hard "character-entities-legacy@npm:^1.0.0": version: 1.1.4 resolution: "character-entities-legacy@npm:1.1.4" checksum: 10c0/ea4ca9c29887335eed86d78fc67a640168342b1274da84c097abb0575a253d1265281a5052f9a863979e952bcc267b4ecaaf4fe233a7e1e0d8a47806c65b96c7 languageName: node linkType: hard "character-entities-legacy@npm:^3.0.0": version: 3.0.0 resolution: "character-entities-legacy@npm:3.0.0" checksum: 10c0/ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1 languageName: node linkType: hard "character-entities@npm:^1.0.0": version: 1.2.4 resolution: "character-entities@npm:1.2.4" checksum: 10c0/ad015c3d7163563b8a0ee1f587fb0ef305ef344e9fd937f79ca51cccc233786a01d591d989d5bf7b2e66b528ac9efba47f3b1897358324e69932f6d4b25adfe1 languageName: node linkType: hard "character-entities@npm:^2.0.0": version: 2.0.2 resolution: "character-entities@npm:2.0.2" checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308 languageName: node linkType: hard "character-reference-invalid@npm:^1.0.0": version: 1.1.4 resolution: "character-reference-invalid@npm:1.1.4" checksum: 10c0/29f05081c5817bd1e975b0bf61e77b60a40f62ad371d0f0ce0fdb48ab922278bc744d1fbe33771dced751887a8403f265ff634542675c8d7375f6ff4811efd0e languageName: node linkType: hard "character-reference-invalid@npm:^2.0.0": version: 2.0.1 resolution: "character-reference-invalid@npm:2.0.1" checksum: 10c0/2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1 languageName: node linkType: hard "charenc@npm:0.0.2": version: 0.0.2 resolution: "charenc@npm:0.0.2" checksum: 10c0/a45ec39363a16799d0f9365c8dd0c78e711415113c6f14787a22462ef451f5013efae8a28f1c058f81fc01f2a6a16955f7a5fd0cd56247ce94a45349c89877d8 languageName: node linkType: hard "check-error@npm:^2.1.1": version: 2.1.1 resolution: "check-error@npm:2.1.1" checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e languageName: node linkType: hard "chokidar@npm:^3.5.3": version: 3.6.0 resolution: "chokidar@npm:3.6.0" dependencies: anymatch: "npm:~3.1.2" braces: "npm:~3.0.2" fsevents: "npm:~2.3.2" glob-parent: "npm:~5.1.2" is-binary-path: "npm:~2.1.0" is-glob: "npm:~4.0.1" normalize-path: "npm:~3.0.0" readdirp: "npm:~3.6.0" dependenciesMeta: fsevents: optional: true checksum: 10c0/8361dcd013f2ddbe260eacb1f3cb2f2c6f2b0ad118708a343a5ed8158941a39cb8fb1d272e0f389712e74ee90ce8ba864eece9e0e62b9705cb468a2f6d917462 languageName: node linkType: hard "chokidar@npm:^4.0.0": version: 4.0.1 resolution: "chokidar@npm:4.0.1" dependencies: readdirp: "npm:^4.0.1" checksum: 10c0/4bb7a3adc304059810bb6c420c43261a15bb44f610d77c35547addc84faa0374265c3adc67f25d06f363d9a4571962b02679268c40de07676d260de1986efea9 languageName: node linkType: hard "chownr@npm:^3.0.0": version: 3.0.0 resolution: "chownr@npm:3.0.0" checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 languageName: node linkType: hard "chrome-launcher@npm:^1.2.0": version: 1.2.0 resolution: "chrome-launcher@npm:1.2.0" dependencies: "@types/node": "npm:*" escape-string-regexp: "npm:^4.0.0" is-wsl: "npm:^2.2.0" lighthouse-logger: "npm:^2.0.1" bin: print-chrome-path: bin/print-chrome-path.cjs checksum: 10c0/3598bedecf70e42babada1df4f1bfa37071906973044737ff91d0e9ab53c4fac8cabd7489edb8bd4fcd83a70ae50c671265453d62f612419b745bfab63875817 languageName: node linkType: hard "chromium-bidi@npm:8.0.0": version: 8.0.0 resolution: "chromium-bidi@npm:8.0.0" dependencies: mitt: "npm:^3.0.1" zod: "npm:^3.24.1" peerDependencies: devtools-protocol: "*" checksum: 10c0/d012b76c8b3ef06fd0d1e288668c92db56a8723edeff3a32e7c8029a18e3afcae435a0da381e22145611d9d96f20ea91a43fbb43ae84b6edfc76ab60c65d67f7 languageName: node linkType: hard "cjs-module-lexer@npm:^1.2.2": version: 1.4.3 resolution: "cjs-module-lexer@npm:1.4.3" checksum: 10c0/076b3af85adc4d65dbdab1b5b240fe5b45d44fcf0ef9d429044dd94d19be5589376805c44fb2d4b3e684e5fe6a9b7cf3e426476a6507c45283c5fc6ff95240be languageName: node linkType: hard "clamp@npm:^1.0.1": version: 1.0.1 resolution: "clamp@npm:1.0.1" checksum: 10c0/8f95ccbc5d646a98c1d690bce820f3d060a5267242083e8994f70dc504ce441dbc7b8ef13b93819129fc166e7a5b6abd320f109bdba0f49b8dcc794710987c97 languageName: node linkType: hard "classnames@npm:^2.2.1, classnames@npm:^2.2.5, classnames@npm:^2.3.2": version: 2.5.1 resolution: "classnames@npm:2.5.1" checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 languageName: node linkType: hard "cliui@npm:^7.0.2": version: 7.0.4 resolution: "cliui@npm:7.0.4" dependencies: string-width: "npm:^4.2.0" strip-ansi: "npm:^6.0.0" wrap-ansi: "npm:^7.0.0" checksum: 10c0/6035f5daf7383470cef82b3d3db00bec70afb3423538c50394386ffbbab135e26c3689c41791f911fa71b62d13d3863c712fdd70f0fbdffd938a1e6fd09aac00 languageName: node linkType: hard "cliui@npm:^8.0.1": version: 8.0.1 resolution: "cliui@npm:8.0.1" dependencies: string-width: "npm:^4.2.0" strip-ansi: "npm:^6.0.1" wrap-ansi: "npm:^7.0.0" checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 languageName: node linkType: hard "cliui@npm:^9.0.1": version: 9.0.1 resolution: "cliui@npm:9.0.1" dependencies: string-width: "npm:^7.2.0" strip-ansi: "npm:^7.1.0" wrap-ansi: "npm:^9.0.0" checksum: 10c0/13441832e9efe7c7a76bd2b8e683555c478d461a9f249dc5db9b17fe8d4b47fa9277b503914b90bd00e4a151abb6b9b02b2288972ffe2e5e3ca40bcb1c2330d3 languageName: node linkType: hard "clsx@npm:^1.0.4": version: 1.2.1 resolution: "clsx@npm:1.2.1" checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27 languageName: node linkType: hard "color-alpha@npm:1.0.4": version: 1.0.4 resolution: "color-alpha@npm:1.0.4" dependencies: color-parse: "npm:^1.3.8" checksum: 10c0/dd78453f9c9fc20e9303d085357594abe26ec5ea644d87ef21d6bd61e1eaf02e324d43efaa00dd68af2b7e551f4bc53c11dafd9556835c3707a7b29623053842 languageName: node linkType: hard "color-alpha@npm:^1.0.4": version: 1.1.3 resolution: "color-alpha@npm:1.1.3" dependencies: color-parse: "npm:^1.4.1" checksum: 10c0/3481da412db67716860e86af89f75b3db550cf38879086208314863f4bd2b6004c42d6d8532970d9482bd75c47f60eab6a5002c4b3740d0e0c2f81bfb1caad15 languageName: node linkType: hard "color-convert@npm:^2.0.1": version: 2.0.1 resolution: "color-convert@npm:2.0.1" dependencies: color-name: "npm:~1.1.4" checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 languageName: node linkType: hard "color-id@npm:^1.1.0": version: 1.1.0 resolution: "color-id@npm:1.1.0" dependencies: clamp: "npm:^1.0.1" checksum: 10c0/620d9184529c917e994a2b172ca2a73af33df0608596ed07ea42fed22fe308c164a08903e1dce88185e5b39ee9c7a5580cbf87a52c1fd8455c3fa8d359b6263d languageName: node linkType: hard "color-name@npm:^1.0.0, color-name@npm:^1.1.4, color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 languageName: node linkType: hard "color-name@npm:^2.0.0": version: 2.0.0 resolution: "color-name@npm:2.0.0" checksum: 10c0/fc0304606e5c5941f4649a9975c03a2ecd52a22aba3dadb3309b3e4ee61d78c3e13ff245e80b9a930955d38c5f32a9004196a7456c4542822aa1fcfea8e928ed languageName: node linkType: hard "color-normalize@npm:1.5.0": version: 1.5.0 resolution: "color-normalize@npm:1.5.0" dependencies: clamp: "npm:^1.0.1" color-rgba: "npm:^2.1.1" dtype: "npm:^2.0.0" checksum: 10c0/86131bb0c3c4cc16f63423c08d523915825b30c08b3b1e36f9cac52e3710209ef47f623b2f0943b6efc4f6d71f098922e6795e2546d8885398643ff1b96ee623 languageName: node linkType: hard "color-normalize@npm:^1.5.0": version: 1.5.2 resolution: "color-normalize@npm:1.5.2" dependencies: color-rgba: "npm:^2.2.0" dtype: "npm:^2.0.0" checksum: 10c0/d9d536b9cb9b14a5ee6dc0555f12e846ef2fdb478fddd245478ad414b6d60f0da42c9b76bf99cc23a42e30e06d5e2ff3a69ddb8e4d767f3f3ac14669ecebc5d0 languageName: node linkType: hard "color-parse@npm:2.0.0": version: 2.0.0 resolution: "color-parse@npm:2.0.0" dependencies: color-name: "npm:^1.0.0" checksum: 10c0/f489deaea5bb323e05f41436d747e22bbb45928420fce8a989c209a4baa71c7ee90f8b43298d9565844af1d02580743d5d87b506519f755b4b218df6b72eb4a0 languageName: node linkType: hard "color-parse@npm:^1.3.8, color-parse@npm:^1.4.1, color-parse@npm:^1.4.2": version: 1.4.3 resolution: "color-parse@npm:1.4.3" dependencies: color-name: "npm:^1.0.0" checksum: 10c0/3473e7fb53d643dffc508c4f3161890f405ece9d78cc84277576212346b17ad037d1a0c6beb49e9b55bc11435a8c85b7ff9f94a6b898eb82647d4a46615d23da languageName: node linkType: hard "color-parse@npm:^2.0.0": version: 2.0.2 resolution: "color-parse@npm:2.0.2" dependencies: color-name: "npm:^2.0.0" checksum: 10c0/5761baa81e3c8acf3625f4a6ca77b72e77ee9429c0b9757baab18ea1af0861919aee47e337675c47ee5bf3bc2b10cd0690e226322058e94457f2b501e1ef132b languageName: node linkType: hard "color-rgba@npm:3.0.0": version: 3.0.0 resolution: "color-rgba@npm:3.0.0" dependencies: color-parse: "npm:^2.0.0" color-space: "npm:^2.0.0" checksum: 10c0/8f3920cd1dcafde31c9240e54c2aba3c4fc43e350dc15cc00de3ea988800e1a533f85b38aa67867acfd51634a92bfd5e8aa9f06f1b42965c8fa538b5e16d9667 languageName: node linkType: hard "color-rgba@npm:^2.1.1, color-rgba@npm:^2.2.0": version: 2.4.0 resolution: "color-rgba@npm:2.4.0" dependencies: color-parse: "npm:^1.4.2" color-space: "npm:^2.0.0" checksum: 10c0/b2d952a464a51ff446927b60528c94caee8987bcf1609dce7a18589a2d2febeab79d8c66c9eb1c4d9ef69ae4b5dfebc9f8fc858ad45d6cae7d2b013c562893ee languageName: node linkType: hard "color-space@npm:^2.0.0": version: 2.0.1 resolution: "color-space@npm:2.0.1" checksum: 10c0/aeeca8d5f99f108a056df9dbadcebfe0e8c352004a5999c858ecc48ef8e52f5d06d137b7f330100d68c61dfb83fd6a7c1c113fcc2dfc37d783351b03536aa33f languageName: node linkType: hard "color2k@npm:^2.0.2": version: 2.0.3 resolution: "color2k@npm:2.0.3" checksum: 10c0/e7c13d212c9d1abb1690e378bbc0a6fb1751e4b02e9a73ba3b2ade9d54da673834597d342791d577d1ce400ec486c7f92c5098f9fa85cd113bcfde57420a2bb9 languageName: node linkType: hard "colorbrewer@npm:1.5.6": version: 1.5.6 resolution: "colorbrewer@npm:1.5.6" checksum: 10c0/da8045058698e2df21df1b676184d9db6651b5c4c2d4775d24bfb60c761150c4e102b54db4a85f4b3019726b5a16053b040f026ee0214cc0ee6ba8612d8a54cd languageName: node linkType: hard "combined-stream@npm:^1.0.8": version: 1.0.8 resolution: "combined-stream@npm:1.0.8" dependencies: delayed-stream: "npm:~1.0.0" checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 languageName: node linkType: hard "comma-separated-tokens@npm:^1.0.0": version: 1.0.8 resolution: "comma-separated-tokens@npm:1.0.8" checksum: 10c0/c3bcfeaa6d50313528a006a40bcc0f9576086665c9b48d4b3a76ddd63e7d6174734386c98be1881cbf6ecfc25e1db61cd775a7b896d2ea7a65de28f83a0f9b17 languageName: node linkType: hard "comma-separated-tokens@npm:^2.0.0": version: 2.0.3 resolution: "comma-separated-tokens@npm:2.0.3" checksum: 10c0/91f90f1aae320f1755d6957ef0b864fe4f54737f3313bd95e0802686ee2ca38bff1dd381964d00ae5db42912dd1f4ae5c2709644e82706ffc6f6842a813cdd67 languageName: node linkType: hard "command-line-args@npm:^6.0.1": version: 6.0.1 resolution: "command-line-args@npm:6.0.1" dependencies: array-back: "npm:^6.2.2" find-replace: "npm:^5.0.2" lodash.camelcase: "npm:^4.3.0" typical: "npm:^7.2.0" peerDependencies: "@75lb/nature": "*" peerDependenciesMeta: "@75lb/nature": optional: true checksum: 10c0/45556284f60db8d258fa262a0532ce7eadeb87da3475a5c39191b5c208c02a726f84a117c71d91fe3600f764f77bd5269e0c77444fb3eed4525be610802dcef4 languageName: node linkType: hard "command-line-usage@npm:^7.0.1": version: 7.0.3 resolution: "command-line-usage@npm:7.0.3" dependencies: array-back: "npm:^6.2.2" chalk-template: "npm:^0.4.0" table-layout: "npm:^4.1.0" typical: "npm:^7.1.1" checksum: 10c0/444a3e3c6fcbdcb5802de0fd2864ea5aef83eeeb3a825fd24846b996503d4b4140e75aeb2939b3430a06407f3acc02b76b3e08dafb3a3092d22fdcced0ecb0b0 languageName: node linkType: hard "commander@npm:2, commander@npm:^2.15.1": version: 2.20.3 resolution: "commander@npm:2.20.3" checksum: 10c0/74c781a5248c2402a0a3e966a0a2bba3c054aad144f5c023364be83265e796b20565aa9feff624132ff629aa64e16999fa40a743c10c12f7c61e96a794b99288 languageName: node linkType: hard "commander@npm:7": version: 7.2.0 resolution: "commander@npm:7.2.0" checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a languageName: node linkType: hard "commander@npm:^8.3.0": version: 8.3.0 resolution: "commander@npm:8.3.0" checksum: 10c0/8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060 languageName: node linkType: hard "commander@npm:^9.0.0": version: 9.5.0 resolution: "commander@npm:9.5.0" checksum: 10c0/5f7784fbda2aaec39e89eb46f06a999e00224b3763dc65976e05929ec486e174fe9aac2655f03ba6a5e83875bd173be5283dc19309b7c65954701c02025b3c1d languageName: node linkType: hard "compare-versions@npm:^6.1.1": version: 6.1.1 resolution: "compare-versions@npm:6.1.1" checksum: 10c0/415205c7627f9e4f358f571266422980c9fe2d99086be0c9a48008ef7c771f32b0fbe8e97a441ffedc3910872f917a0675fe0fe3c3b6d331cda6d8690be06338 languageName: node linkType: hard "concat-map@npm:0.0.1": version: 0.0.1 resolution: "concat-map@npm:0.0.1" checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f languageName: node linkType: hard "concat-stream@npm:^1.5.2": version: 1.6.2 resolution: "concat-stream@npm:1.6.2" dependencies: buffer-from: "npm:^1.0.0" inherits: "npm:^2.0.3" readable-stream: "npm:^2.2.2" typedarray: "npm:^0.0.6" checksum: 10c0/2e9864e18282946dabbccb212c5c7cec0702745e3671679eb8291812ca7fd12023f7d8cb36493942a62f770ac96a7f90009dc5c82ad69893438371720fa92617 languageName: node linkType: hard "concurrently@npm:^9.2.1": version: 9.2.1 resolution: "concurrently@npm:9.2.1" dependencies: chalk: "npm:4.1.2" rxjs: "npm:7.8.2" shell-quote: "npm:1.8.3" supports-color: "npm:8.1.1" tree-kill: "npm:1.2.2" yargs: "npm:17.7.2" bin: conc: dist/bin/concurrently.js concurrently: dist/bin/concurrently.js checksum: 10c0/da37f239f82eb7ac24f5ddb56259861e5f1d6da2ade7602b6ea7ad3101b13b5ccec02a77b7001402d1028ff2fdc38eed55644b32853ad5abf30e057002a963aa languageName: node linkType: hard "confbox@npm:^0.1.8": version: 0.1.8 resolution: "confbox@npm:0.1.8" checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418 languageName: node linkType: hard "configstore@npm:^7.0.0": version: 7.0.0 resolution: "configstore@npm:7.0.0" dependencies: atomically: "npm:^2.0.3" dot-prop: "npm:^9.0.0" graceful-fs: "npm:^4.2.11" xdg-basedir: "npm:^5.1.0" checksum: 10c0/46639ddcebe94e58ab903d1bcfaddf297585469ee11fb2900975531cf6e59f495fa1324bf594d6bf13c5daf02e1110e9f0634caecc11203c52283ff26e2a4d8b languageName: node linkType: hard "convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.7.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" checksum: 10c0/281da55454bf8126cbc6625385928c43479f2060984180c42f3a86c8b8c12720a24eac260624a7d1e090004028d2dee78602330578ceec1a08e27cb8bb0a8a5b languageName: node linkType: hard "convert-source-map@npm:^2.0.0": version: 2.0.0 resolution: "convert-source-map@npm:2.0.0" checksum: 10c0/8f2f7a27a1a011cc6cc88cc4da2d7d0cfa5ee0369508baae3d98c260bb3ac520691464e5bbe4ae7cdf09860c1d69ecc6f70c63c6e7c7f7e3f18ec08484dc7d9b languageName: node linkType: hard "core-assert@npm:^0.2.0": version: 0.2.1 resolution: "core-assert@npm:0.2.1" dependencies: buf-compare: "npm:^1.0.0" is-error: "npm:^2.2.0" checksum: 10c0/d4eb0482861a77ac476e01b6eb48f924adeb94003c01c541e020b7cfacddca28fc30be183cdda42231a2e90e66afeeaac46028c9885bfa98faee8d15bdb6e3c6 languageName: node linkType: hard "core-js@npm:^2.5.0": version: 2.6.12 resolution: "core-js@npm:2.6.12" checksum: 10c0/00128efe427789120a06b819adc94cc72b96955acb331cb71d09287baf9bd37bebd191d91f1ee4939c893a050307ead4faea08876f09115112612b6a05684b63 languageName: node linkType: hard "core-util-is@npm:~1.0.0": version: 1.0.3 resolution: "core-util-is@npm:1.0.3" checksum: 10c0/90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9 languageName: node linkType: hard "cosmiconfig@npm:^7.0.0": version: 7.1.0 resolution: "cosmiconfig@npm:7.1.0" dependencies: "@types/parse-json": "npm:^4.0.0" import-fresh: "npm:^3.2.1" parse-json: "npm:^5.0.0" path-type: "npm:^4.0.0" yaml: "npm:^1.10.0" checksum: 10c0/b923ff6af581638128e5f074a5450ba12c0300b71302398ea38dbeabd33bbcaa0245ca9adbedfcf284a07da50f99ede5658c80bb3e39e2ce770a99d28a21ef03 languageName: node linkType: hard "cosmiconfig@npm:^8.1.3": version: 8.3.6 resolution: "cosmiconfig@npm:8.3.6" dependencies: import-fresh: "npm:^3.3.0" js-yaml: "npm:^4.1.0" parse-json: "npm:^5.2.0" path-type: "npm:^4.0.0" peerDependencies: typescript: ">=4.9.5" peerDependenciesMeta: typescript: optional: true checksum: 10c0/0382a9ed13208f8bfc22ca2f62b364855207dffdb73dc26e150ade78c3093f1cf56172df2dd460c8caf2afa91c0ed4ec8a88c62f8f9cd1cf423d26506aa8797a languageName: node linkType: hard "country-regex@npm:^1.1.0": version: 1.1.0 resolution: "country-regex@npm:1.1.0" checksum: 10c0/3e95be9c3065dbf7dfafae8bb951e36b2805b8dd7dbba5688c74cedaf7c86effd74b7a7b43116bf57709560e7ace7e5001d34f62bf25802aa1a90052dba1a667 languageName: node linkType: hard "credit-card-type@npm:^8.0.0": version: 8.3.0 resolution: "credit-card-type@npm:8.3.0" checksum: 10c0/da4ab27a5c99e138e25badbb75a8f487c67e1f5838529057f637227e908ce0edf38f2b55bea0f08de3fe48632a8b52680f68485e5bc24d2c220395cbfb46c2b3 languageName: node linkType: hard "cross-fetch@npm:^3.1.5": version: 3.1.8 resolution: "cross-fetch@npm:3.1.8" dependencies: node-fetch: "npm:^2.6.12" checksum: 10c0/4c5e022ffe6abdf380faa6e2373c0c4ed7ef75e105c95c972b6f627c3f083170b6886f19fb488a7fa93971f4f69dcc890f122b0d97f0bf5f41ca1d9a8f58c8af languageName: node linkType: hard "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.6": version: 7.0.6 resolution: "cross-spawn@npm:7.0.6" dependencies: path-key: "npm:^3.1.0" shebang-command: "npm:^2.0.0" which: "npm:^2.0.1" checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 languageName: node linkType: hard "crypt@npm:0.0.2": version: 0.0.2 resolution: "crypt@npm:0.0.2" checksum: 10c0/adbf263441dd801665d5425f044647533f39f4612544071b1471962209d235042fb703c27eea2795c7c53e1dfc242405173003f83cf4f4761a633d11f9653f18 languageName: node linkType: hard "csp_evaluator@npm:1.1.5": version: 1.1.5 resolution: "csp_evaluator@npm:1.1.5" checksum: 10c0/dca8fb98c142f01ca7279f31e6f8e8eb467e59f41df737c0446bdaeca414cf68637606b1e824f4ff1ad453323b91dcafc650abce93283691249348aee118e8ef languageName: node linkType: hard "css-font-size-keywords@npm:^1.0.0": version: 1.0.0 resolution: "css-font-size-keywords@npm:1.0.0" checksum: 10c0/afc3e296a20e533da5fe84e1436914b5ec789d2db851b856688a1aa80f88c2ee408580a8a0a1e0581cc0952b65bfb37a769c841df185c7b1d95198c563996465 languageName: node linkType: hard "css-font-stretch-keywords@npm:^1.0.1": version: 1.0.1 resolution: "css-font-stretch-keywords@npm:1.0.1" checksum: 10c0/9f5c405c99962f2bf77ed79f9f137ac7eecbc2e0f64cfe448277af9924ec2717214369d0e9a02b4520e3e0812b6a5289fad36911678a13f5505e972889cb27a9 languageName: node linkType: hard "css-font-style-keywords@npm:^1.0.1": version: 1.0.1 resolution: "css-font-style-keywords@npm:1.0.1" checksum: 10c0/431bb7ee0346302abc9c94a74df0c20b8f5173ef8b29284c571bbba4eec4e22a461dcb6a7d0ae764f9b02f9a7a185612193906122c744af96eb6e4be72e646d2 languageName: node linkType: hard "css-font-weight-keywords@npm:^1.0.0": version: 1.0.0 resolution: "css-font-weight-keywords@npm:1.0.0" checksum: 10c0/99fbf6ca55ca86cbb083786f6ca83d47c0284eab1a96929b71401a50969e18a901474ffe8b1a895226f9bbde461c77d88ca50fcc871ce8a8926a2d2ba65bb847 languageName: node linkType: hard "css-font@npm:^1.0.0, css-font@npm:^1.2.0": version: 1.2.0 resolution: "css-font@npm:1.2.0" dependencies: css-font-size-keywords: "npm:^1.0.0" css-font-stretch-keywords: "npm:^1.0.1" css-font-style-keywords: "npm:^1.0.1" css-font-weight-keywords: "npm:^1.0.0" css-global-keywords: "npm:^1.0.1" css-system-font-keywords: "npm:^1.0.0" pick-by-alias: "npm:^1.2.0" string-split-by: "npm:^1.0.0" unquote: "npm:^1.1.0" checksum: 10c0/6a68aeb6529e179ff3d5d4de52f96f89de507d06b69a0d3899c0d06448530a6e755342f390a42bf9c8672411694618a9a6e204dc808918cd98d5c08cedc5455e languageName: node linkType: hard "css-global-keywords@npm:^1.0.1": version: 1.0.1 resolution: "css-global-keywords@npm:1.0.1" checksum: 10c0/c49de806fa532fda2c2ba5b27b3443a2ad3d7b05a0a80d9eeae81231a67b7fa09b772dc87226d82a62b8a429141001a62f9eb3b78a4ad8ee85551beb65215a48 languageName: node linkType: hard "css-in-js-utils@npm:^2.0.0": version: 2.0.1 resolution: "css-in-js-utils@npm:2.0.1" dependencies: hyphenate-style-name: "npm:^1.0.2" isobject: "npm:^3.0.1" checksum: 10c0/6696cda3ebd596fc42ff40059546786936a8cf709e00bc8dedce6cd42c2b3edb19333a5d5bba6ac35b75b58cf55c021cee7ab3ec0f13fb2cf59fbb024ba0894f languageName: node linkType: hard "css-system-font-keywords@npm:^1.0.0": version: 1.0.0 resolution: "css-system-font-keywords@npm:1.0.0" checksum: 10c0/8eb3c1d70f70f4727d273cfdc37c53cb0e312286c070f9ec1cf24b7c2602cf8b128f2a127004f1f9feca45848442ad99c22875a440457a238fcd3b9307c8f0ce languageName: node linkType: hard "css.escape@npm:^1.5.1": version: 1.5.1 resolution: "css.escape@npm:1.5.1" checksum: 10c0/5e09035e5bf6c2c422b40c6df2eb1529657a17df37fda5d0433d722609527ab98090baf25b13970ca754079a0f3161dd3dfc0e743563ded8cfa0749d861c1525 languageName: node linkType: hard "csscolorparser@npm:~1.0.3": version: 1.0.3 resolution: "csscolorparser@npm:1.0.3" checksum: 10c0/57b30e1dd3e639fb74d63d3ee5a078ae6d0aaba26bc731fdec1a0f50fd77c2531a1fca2bbe07c18e0569255f92064cda0747e0115955fdb8c037332798ca634f languageName: node linkType: hard "cssfontparser@npm:^1.2.1": version: 1.2.1 resolution: "cssfontparser@npm:1.2.1" checksum: 10c0/ceb9b2976d503dbff3ac2aff0229b263affb4fb221a6947b357682cd8a952f6995253646ca5f820020d2fe05b5e29b56dbdd2343388c32203e8dd0ed15bdc1ca languageName: node linkType: hard "cssstyle@npm:^4.0.1": version: 4.1.0 resolution: "cssstyle@npm:4.1.0" dependencies: rrweb-cssom: "npm:^0.7.1" checksum: 10c0/05c6597e5d3e0ec6b15221f2c0ce9a0443a46cc50a6089a3ba9ee1ac27f83ff86a445a8f95435137dadd859f091fc61b6d342abaf396d3c910471b5b33cfcbfa languageName: node linkType: hard "csstype@npm:^3.0.0, csstype@npm:^3.0.2": version: 3.1.3 resolution: "csstype@npm:3.1.3" checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 languageName: node linkType: hard "cuint@npm:^0.2.2": version: 0.2.2 resolution: "cuint@npm:0.2.2" checksum: 10c0/ba56735799e04cd8fd8e386bfde52298e26179665f0063a7a22aaf5771e1b350f1b3baa83c719097cb650766b0e5067d16121db71f88fad4b2ef1ed423d646b7 languageName: node linkType: hard "d3-array@npm:1 - 3, d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3, d3-array@npm:3.2.4, d3-array@npm:^3.2.0, d3-array@npm:^3.2.4": version: 3.2.4 resolution: "d3-array@npm:3.2.4" dependencies: internmap: "npm:1 - 2" checksum: 10c0/08b95e91130f98c1375db0e0af718f4371ccacef7d5d257727fe74f79a24383e79aba280b9ffae655483ffbbad4fd1dec4ade0119d88c4749f388641c8bf8c50 languageName: node linkType: hard "d3-array@npm:1, d3-array@npm:^1.2.1": version: 1.2.4 resolution: "d3-array@npm:1.2.4" checksum: 10c0/7ac0ae096838e75d06350381442d84b327e3215d470f26c297851675bd25c47a633d35b04bfaa0397c529f42428d19f3f80bead24e1e866832e064cc6af24f3a languageName: node linkType: hard "d3-array@npm:2, d3-array@npm:^2.3.0, d3-array@npm:^2.5.0": version: 2.12.1 resolution: "d3-array@npm:2.12.1" dependencies: internmap: "npm:^1.0.0" checksum: 10c0/7eca10427a9f113a4ca6a0f7301127cab26043fd5e362631ef5a0edd1c4b2dd70c56ed317566700c31e4a6d88b55f3951aaba192291817f243b730cb2352882e languageName: node linkType: hard "d3-axis@npm:2": version: 2.1.0 resolution: "d3-axis@npm:2.1.0" checksum: 10c0/812558c0a016f8541e4704837b4428060695e2397e00a374caab5ae060a8ea6254bb097a4cfb7e01deff61da8a91c582eda614659ada5fd590da902a397428cc languageName: node linkType: hard "d3-axis@npm:3": version: 3.0.0 resolution: "d3-axis@npm:3.0.0" checksum: 10c0/a271e70ba1966daa5aaf6a7f959ceca3e12997b43297e757c7b945db2e1ead3c6ee226f2abcfa22abbd4e2e28bd2b71a0911794c4e5b911bbba271328a582c78 languageName: node linkType: hard "d3-brush@npm:2": version: 2.1.0 resolution: "d3-brush@npm:2.1.0" dependencies: d3-dispatch: "npm:1 - 2" d3-drag: "npm:2" d3-interpolate: "npm:1 - 2" d3-selection: "npm:2" d3-transition: "npm:2" checksum: 10c0/f4221f815f8b0fb5af42a2c5baf7cb884067fdddfe5e3d9ae8b603912a47c205e138b8cdcb19a693feac46aa790c0dc9204c893e4b09cfdb944d31bde0b81126 languageName: node linkType: hard "d3-brush@npm:3": version: 3.0.0 resolution: "d3-brush@npm:3.0.0" dependencies: d3-dispatch: "npm:1 - 3" d3-drag: "npm:2 - 3" d3-interpolate: "npm:1 - 3" d3-selection: "npm:3" d3-transition: "npm:3" checksum: 10c0/07baf00334c576da2f68a91fc0da5732c3a5fa19bd3d7aed7fd24d1d674a773f71a93e9687c154176f7246946194d77c48c2d8fed757f5dcb1a4740067ec50a8 languageName: node linkType: hard "d3-chord@npm:2": version: 2.0.0 resolution: "d3-chord@npm:2.0.0" dependencies: d3-path: "npm:1 - 2" checksum: 10c0/675c4941cd9ea8dcf462622409a42b5de4120198b5016bf9a13e67074487b30a29ab5b7adbae3cab6ee56820255c320a56657fdf55538c4c7439cb9a4248dbb4 languageName: node linkType: hard "d3-chord@npm:3": version: 3.0.1 resolution: "d3-chord@npm:3.0.1" dependencies: d3-path: "npm:1 - 3" checksum: 10c0/baa6013914af3f4fe1521f0d16de31a38eb8a71d08ff1dec4741f6f45a828661e5cd3935e39bd14e3032bdc78206c283ca37411da21d46ec3cfc520be6e7a7ce languageName: node linkType: hard "d3-collection@npm:1, d3-collection@npm:^1.0.4": version: 1.0.7 resolution: "d3-collection@npm:1.0.7" checksum: 10c0/7a3c7f733ce4a1a02f46a96c7dd02f8e46a2fa83fc4195682fd33624d6a56fbda6388c86ff5d30799cc768cb63bffcdb216b45c51a8d6e0b23117db9c18bedb3 languageName: node linkType: hard "d3-color@npm:^3.1.0": version: 3.1.0 resolution: "d3-color@npm:3.1.0" checksum: 10c0/a4e20e1115fa696fce041fbe13fbc80dc4c19150fa72027a7c128ade980bc0eeeba4bcf28c9e21f0bce0e0dbfe7ca5869ef67746541dcfda053e4802ad19783c languageName: node linkType: hard "d3-contour@npm:2": version: 2.0.0 resolution: "d3-contour@npm:2.0.0" dependencies: d3-array: "npm:2" checksum: 10c0/00b58abff5648438928571efc75a56e7459edcbb63ad807bcb38de13b337ac4a83286dabe33f53562ee5ebd2d83da31835cf46a1775fe35e03101772769d10ac languageName: node linkType: hard "d3-contour@npm:4": version: 4.0.2 resolution: "d3-contour@npm:4.0.2" dependencies: d3-array: "npm:^3.2.0" checksum: 10c0/98bc5fbed6009e08707434a952076f39f1cd6ed8b9288253cc3e6a3286e4e80c63c62d84954b20e64bf6e4ededcc69add54d3db25e990784a59c04edd3449032 languageName: node linkType: hard "d3-delaunay@npm:5": version: 5.3.0 resolution: "d3-delaunay@npm:5.3.0" dependencies: delaunator: "npm:4" checksum: 10c0/214aaddd01c58cadcfeea917ff7b7c3202083ac66fe5948d14558385d1ce495b33498ce10a3188ff144377d3da2f2ad72c2c3885407c325a24266c8f4c09347e languageName: node linkType: hard "d3-delaunay@npm:6, d3-delaunay@npm:^6.0.4": version: 6.0.4 resolution: "d3-delaunay@npm:6.0.4" dependencies: delaunator: "npm:5" checksum: 10c0/57c3aecd2525664b07c4c292aa11cf49b2752c0cf3f5257f752999399fe3c592de2d418644d79df1f255471eec8057a9cc0c3062ed7128cb3348c45f69597754 languageName: node linkType: hard "d3-dispatch@npm:1": version: 1.0.6 resolution: "d3-dispatch@npm:1.0.6" checksum: 10c0/6302554a019e2d75d4e3dc7e8757a00b4b12ac2a2952bccc66e4478ccd170f425e2b6a9443118d5feadcd2439f33582b63c7925e832104ff1978cadea2a30dc2 languageName: node linkType: hard "d3-dispatch@npm:1 - 2, d3-dispatch@npm:2": version: 2.0.0 resolution: "d3-dispatch@npm:2.0.0" checksum: 10c0/379f7ce1510f529da00a34016630e92e41c0f6bbffef7b849f4e46733c188c67418df266a9a541cda17572b5286e32fbaf66308fe04dcfe52aa551830825bc93 languageName: node linkType: hard "d3-dispatch@npm:1 - 3, d3-dispatch@npm:3, d3-dispatch@npm:^3.0.1": version: 3.0.1 resolution: "d3-dispatch@npm:3.0.1" checksum: 10c0/6eca77008ce2dc33380e45d4410c67d150941df7ab45b91d116dbe6d0a3092c0f6ac184dd4602c796dc9e790222bad3ff7142025f5fd22694efe088d1d941753 languageName: node linkType: hard "d3-drag@npm:2": version: 2.0.0 resolution: "d3-drag@npm:2.0.0" dependencies: d3-dispatch: "npm:1 - 2" d3-selection: "npm:2" checksum: 10c0/a6f2cfea47aa888b56476454554b37befb0d332f326704913142c6a89b295edfc0947a9fb5afdd0c6d0028878b832a975c80df55d009ab7ccf7b59faa99e926c languageName: node linkType: hard "d3-drag@npm:2 - 3, d3-drag@npm:3": version: 3.0.0 resolution: "d3-drag@npm:3.0.0" dependencies: d3-dispatch: "npm:1 - 3" d3-selection: "npm:3" checksum: 10c0/d2556e8dc720741a443b595a30af403dd60642dfd938d44d6e9bfc4c71a962142f9a028c56b61f8b4790b65a34acad177d1263d66f103c3c527767b0926ef5aa languageName: node linkType: hard "d3-dsv@npm:1 - 2, d3-dsv@npm:2": version: 2.0.0 resolution: "d3-dsv@npm:2.0.0" dependencies: commander: "npm:2" iconv-lite: "npm:0.4" rw: "npm:1" bin: csv2json: bin/dsv2json csv2tsv: bin/dsv2dsv dsv2dsv: bin/dsv2dsv dsv2json: bin/dsv2json json2csv: bin/json2dsv json2dsv: bin/json2dsv json2tsv: bin/json2dsv tsv2csv: bin/dsv2dsv tsv2json: bin/dsv2json checksum: 10c0/b5e4a0945664a941ad37d3c5ee8c8cbb3c99712ff7f36b2420446ebfc3b3909eb3d9ef2682b4a77afa6a6c5f5af1d659e17d6678863d95b244aed479b6c7c5c3 languageName: node linkType: hard "d3-dsv@npm:1 - 3, d3-dsv@npm:3, d3-dsv@npm:^3.0.1": version: 3.0.1 resolution: "d3-dsv@npm:3.0.1" dependencies: commander: "npm:7" iconv-lite: "npm:0.6" rw: "npm:1" bin: csv2json: bin/dsv2json.js csv2tsv: bin/dsv2dsv.js dsv2dsv: bin/dsv2dsv.js dsv2json: bin/dsv2json.js json2csv: bin/json2dsv.js json2dsv: bin/json2dsv.js json2tsv: bin/json2dsv.js tsv2csv: bin/dsv2dsv.js tsv2json: bin/dsv2json.js checksum: 10c0/10e6af9e331950ed258f34ab49ac1b7060128ef81dcf32afc790bd1f7e8c3cc2aac7f5f875250a83f21f39bb5925fbd0872bb209f8aca32b3b77d32bab8a65ab languageName: node linkType: hard "d3-dsv@npm:^1.2.0": version: 1.2.0 resolution: "d3-dsv@npm:1.2.0" dependencies: commander: "npm:2" iconv-lite: "npm:0.4" rw: "npm:1" bin: csv2json: bin/dsv2json csv2tsv: bin/dsv2dsv dsv2dsv: bin/dsv2dsv dsv2json: bin/dsv2json json2csv: bin/json2dsv json2dsv: bin/json2dsv json2tsv: bin/json2dsv tsv2csv: bin/dsv2dsv tsv2json: bin/dsv2json checksum: 10c0/e1698408b3c583d236f2c5f333d793cff2ac65e5ee11c4b6606becf86bf1d089e6de2be730aa9103c3d175fe3d63942de9a5a808e439ff9de7219149aa58aa37 languageName: node linkType: hard "d3-ease@npm:1 - 2, d3-ease@npm:2": version: 2.0.0 resolution: "d3-ease@npm:2.0.0" checksum: 10c0/4c2e74417739b73f5d185675be0a72b19df1f729b87c457d4b13976f7eef5c1f54739b4ccd71d9730521c959cfac28a56f5f4040dd2baf5729ac7e4adce344f1 languageName: node linkType: hard "d3-ease@npm:1 - 3, d3-ease@npm:3": version: 3.0.1 resolution: "d3-ease@npm:3.0.1" checksum: 10c0/fec8ef826c0cc35cda3092c6841e07672868b1839fcaf556e19266a3a37e6bc7977d8298c0fcb9885e7799bfdcef7db1baaba9cd4dcf4bc5e952cf78574a88b0 languageName: node linkType: hard "d3-fetch@npm:2": version: 2.0.0 resolution: "d3-fetch@npm:2.0.0" dependencies: d3-dsv: "npm:1 - 2" checksum: 10c0/c508e1fb9d0aa04af04d8021a658ce2726239c265ffe0762d9fda3f02a1d1958d87984b486a41141660f61258f5977deff84d87767422876aed12dca3407bf73 languageName: node linkType: hard "d3-fetch@npm:3": version: 3.0.1 resolution: "d3-fetch@npm:3.0.1" dependencies: d3-dsv: "npm:1 - 3" checksum: 10c0/4f467a79bf290395ac0cbb5f7562483f6a18668adc4c8eb84c9d3eff048b6f6d3b6f55079ba1ebf1908dabe000c941d46be447f8d78453b2dad5fb59fb6aa93b languageName: node linkType: hard "d3-force@npm:2": version: 2.1.1 resolution: "d3-force@npm:2.1.1" dependencies: d3-dispatch: "npm:1 - 2" d3-quadtree: "npm:1 - 2" d3-timer: "npm:1 - 2" checksum: 10c0/0044ad969c524fa32d39d414fb698d183a10b7a9ec9369ac04aa00cc026bc1262308971d70bf20873adfb3d73f557aea9203797d40bd7d7247ed9714be946fb4 languageName: node linkType: hard "d3-force@npm:3, d3-force@npm:^3.0.0": version: 3.0.0 resolution: "d3-force@npm:3.0.0" dependencies: d3-dispatch: "npm:1 - 3" d3-quadtree: "npm:1 - 3" d3-timer: "npm:1 - 3" checksum: 10c0/220a16a1a1ac62ba56df61028896e4b52be89c81040d20229c876efc8852191482c233f8a52bb5a4e0875c321b8e5cb6413ef3dfa4d8fe79eeb7d52c587f52cf languageName: node linkType: hard "d3-force@npm:^1.2.1": version: 1.2.1 resolution: "d3-force@npm:1.2.1" dependencies: d3-collection: "npm:1" d3-dispatch: "npm:1" d3-quadtree: "npm:1" d3-timer: "npm:1" checksum: 10c0/af699875547e3f5d8fc66ea5dd2a5479e06560a7583c37f3262e81474b8f38e44593124925f75796ac686d9db83831d52cbabbb650cc88c7b1235f51cfebe808 languageName: node linkType: hard "d3-format@npm:1 - 2, d3-format@npm:2": version: 2.0.0 resolution: "d3-format@npm:2.0.0" checksum: 10c0/c869af459e20767dc3d9cbb2946ba79cc266ae4fb35d11c50c63fc89ea4ed168c702c7e3db94d503b3618de9609bf3bf2d855ef53e21109ddd7eb9c8f3fcf8a1 languageName: node linkType: hard "d3-format@npm:1 - 3, d3-format@npm:3, d3-format@npm:^3.1.0": version: 3.1.0 resolution: "d3-format@npm:3.1.0" checksum: 10c0/049f5c0871ebce9859fc5e2f07f336b3c5bfff52a2540e0bac7e703fce567cd9346f4ad1079dd18d6f1e0eaa0599941c1810898926f10ac21a31fd0a34b4aa75 languageName: node linkType: hard "d3-format@npm:^1.4.5": version: 1.4.5 resolution: "d3-format@npm:1.4.5" checksum: 10c0/40800a2fb2182d2d711cea3acc2b8b2b3afdb6f644c51de77feb9b08a6150b14c753933d2fd4ad2f6f45130757b738673372c45b4b820466c560f3b1ec0b3ce8 languageName: node linkType: hard "d3-geo-projection@npm:^2.9.0": version: 2.9.0 resolution: "d3-geo-projection@npm:2.9.0" dependencies: commander: "npm:2" d3-array: "npm:1" d3-geo: "npm:^1.12.0" resolve: "npm:^1.1.10" bin: geo2svg: bin/geo2svg geograticule: bin/geograticule geoproject: bin/geoproject geoquantize: bin/geoquantize geostitch: bin/geostitch checksum: 10c0/eecbb87d1ffaea0a339035f7cc37d366fe877bb1c212f2034d8e44b14669815926f29bf8ca595beee7a620c82f10dc8cd67f461a94b79e0f9415a0aae7918a5d languageName: node linkType: hard "d3-geo-projection@npm:^4.0.0": version: 4.0.0 resolution: "d3-geo-projection@npm:4.0.0" dependencies: commander: "npm:7" d3-array: "npm:1 - 3" d3-geo: "npm:1.12.0 - 3" bin: geo2svg: bin/geo2svg.js geograticule: bin/geograticule.js geoproject: bin/geoproject.js geoquantize: bin/geoquantize.js geostitch: bin/geostitch.js checksum: 10c0/59fba176fb1bfcee2c46f3e543d97189179dead8e3e3ec030611d4878415f547ee710090a1a03dea085541227bb007d2080c32ddd0f817782c7e312680fd087c languageName: node linkType: hard "d3-geo@npm:1.12.0 - 3, d3-geo@npm:3, d3-geo@npm:^3.1.1": version: 3.1.1 resolution: "d3-geo@npm:3.1.1" dependencies: d3-array: "npm:2.5.0 - 3" checksum: 10c0/d32270dd2dc8ac3ea63e8805d63239c4c8ec6c0d339d73b5e5a30a87f8f54db22a78fb434369799465eae169503b25f9a107c642c8a16c32a3285bc0e6d8e8c1 languageName: node linkType: hard "d3-geo@npm:2": version: 2.0.2 resolution: "d3-geo@npm:2.0.2" dependencies: d3-array: "npm:^2.5.0" checksum: 10c0/6836feb33036f03ec1dc728d64171f3eb40ee2c1c0f2e28232055aa317e5e2d481075294babb9553596e2080496eda119b8a43c51f71c893e6258ccf002bd7f8 languageName: node linkType: hard "d3-geo@npm:^1.12.0, d3-geo@npm:^1.12.1": version: 1.12.1 resolution: "d3-geo@npm:1.12.1" dependencies: d3-array: "npm:1" checksum: 10c0/ec46ff8fdd824df2fbcb9c6e7a6e8c778ecaa196ba1a3265fa6b58d32e526d258dda7d6033698f9625189d364d70f5a9b9a7f6f54fdefe8ef677c28e9765b602 languageName: node linkType: hard "d3-graphviz@npm:^5.6.0": version: 5.6.0 resolution: "d3-graphviz@npm:5.6.0" dependencies: "@hpcc-js/wasm": "npm:^2.20.0" d3-dispatch: "npm:^3.0.1" d3-format: "npm:^3.1.0" d3-interpolate: "npm:^3.0.1" d3-path: "npm:^3.1.0" d3-timer: "npm:^3.0.1" d3-transition: "npm:^3.0.1" d3-zoom: "npm:^3.0.0" peerDependencies: d3-selection: ^3.0.0 checksum: 10c0/ffbe5facb35cfe80b9bc1985acbd1facdab180c0eb0cfaccaf6f662e9f1d6be6bd8d20539a5fa04f555075b0c511154ebb567e96335b9d3283874f9f3b5b2744 languageName: node linkType: hard "d3-hexbin@npm:^0.2.1": version: 0.2.2 resolution: "d3-hexbin@npm:0.2.2" checksum: 10c0/775ed2d2b278836c84de2ce97770e515e74d44cda28bd548fcee90b0fd4026da5abf0cb089d67b7af44e3ad092df5f3da04953172ddf66a6328e2b15d37f70ea languageName: node linkType: hard "d3-hierarchy@npm:2": version: 2.0.0 resolution: "d3-hierarchy@npm:2.0.0" checksum: 10c0/3216f9b8537ae2bf331006630f2075a81df4943edff077a60e19ca6f9a619c8494bf45bf7d89b409160b49edd1a49c0050002cdc8a9ae6e3672d20018a821fac languageName: node linkType: hard "d3-hierarchy@npm:3, d3-hierarchy@npm:^3.1.2": version: 3.1.2 resolution: "d3-hierarchy@npm:3.1.2" checksum: 10c0/6dcdb480539644aa7fc0d72dfc7b03f99dfbcdf02714044e8c708577e0d5981deb9d3e99bbbb2d26422b55bcc342ac89a0fa2ea6c9d7302e2fc0951dd96f89cf languageName: node linkType: hard "d3-hierarchy@npm:^1.1.9": version: 1.1.9 resolution: "d3-hierarchy@npm:1.1.9" checksum: 10c0/63b0ae0953bda076866b8705f8ea6fa1f67ded7ee99d98b20ef4364ce21868c292c9b45e887fde0f0dba1d0202466b2a87e7d5a6cc6388e759aadc5f055142e0 languageName: node linkType: hard "d3-interpolate@npm:1 - 2, d3-interpolate@npm:1.2.0 - 2, d3-interpolate@npm:2": version: 2.0.1 resolution: "d3-interpolate@npm:2.0.1" dependencies: d3-color: "npm:1 - 2" checksum: 10c0/2a5725b0c9c7fef3e8878cf75ad67be851b1472de3dda1f694c441786a1a32e198ddfaa6880d6b280401c1af5b844b61ccdd63d85d1607c1e6bb3a3f0bf532ea languageName: node linkType: hard "d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:3, d3-interpolate@npm:^3.0.1": version: 3.0.1 resolution: "d3-interpolate@npm:3.0.1" dependencies: d3-color: "npm:1 - 3" checksum: 10c0/19f4b4daa8d733906671afff7767c19488f51a43d251f8b7f484d5d3cfc36c663f0a66c38fe91eee30f40327443d799be17169f55a293a3ba949e84e57a33e6a languageName: node linkType: hard "d3-path@npm:1": version: 1.0.9 resolution: "d3-path@npm:1.0.9" checksum: 10c0/e35e84df5abc18091f585725b8235e1fa97efc287571585427d3a3597301e6c506dea56b11dfb3c06ca5858b3eb7f02c1bf4f6a716aa9eade01c41b92d497eb5 languageName: node linkType: hard "d3-path@npm:1 - 2, d3-path@npm:2": version: 2.0.0 resolution: "d3-path@npm:2.0.0" checksum: 10c0/ef206f83c1123d4ad364c23b6fe877a7cd8afa76c30e13bd0588cd9b7c4ed4b577ebfd9499cdcac63268d7ae29c0a53ec38d6623a7c98585f3c118323e8f473f languageName: node linkType: hard "d3-path@npm:1 - 3, d3-path@npm:3, d3-path@npm:^3.1.0": version: 3.1.0 resolution: "d3-path@npm:3.1.0" checksum: 10c0/dc1d58ec87fa8319bd240cf7689995111a124b141428354e9637aa83059eb12e681f77187e0ada5dedfce346f7e3d1f903467ceb41b379bfd01cd8e31721f5da languageName: node linkType: hard "d3-polygon@npm:2": version: 2.0.0 resolution: "d3-polygon@npm:2.0.0" checksum: 10c0/cb2f24cbdd0743ecaf7d0d7e060a00fd4ed8b1fbeb43b6db16878f7a8145ed5bedd60055d5f96b4ffc9aff3fd731926534af66007855e9eddb106c99a153ff5f languageName: node linkType: hard "d3-polygon@npm:3": version: 3.0.1 resolution: "d3-polygon@npm:3.0.1" checksum: 10c0/e236aa7f33efa9a4072907af7dc119f85b150a0716759d4fe5f12f62573018264a6cbde8617fbfa6944a7ae48c1c0c8d3f39ae72e11f66dd471e9b5e668385df languageName: node linkType: hard "d3-quadtree@npm:1": version: 1.0.7 resolution: "d3-quadtree@npm:1.0.7" checksum: 10c0/90571c7bfc7ee2db4bb3f80b1b06f3c653858c365644c31a0ecf0adec525c0d8a70c4eaa88bc8d364b1fa3c919ee55cc55cf82396f4729d2a4baec2b95832492 languageName: node linkType: hard "d3-quadtree@npm:1 - 2, d3-quadtree@npm:2": version: 2.0.0 resolution: "d3-quadtree@npm:2.0.0" checksum: 10c0/b8dcbda82a04915018ea5309bcdc045971afbea293d87d32a34c31c69351c153a9e1a4d0ea77163a8ebe8f4fd9a6b114a7360e436f34552f284c1457275eda97 languageName: node linkType: hard "d3-quadtree@npm:1 - 3, d3-quadtree@npm:3": version: 3.0.1 resolution: "d3-quadtree@npm:3.0.1" checksum: 10c0/18302d2548bfecaef788152397edec95a76400fd97d9d7f42a089ceb68d910f685c96579d74e3712d57477ed042b056881b47cd836a521de683c66f47ce89090 languageName: node linkType: hard "d3-random@npm:2": version: 2.2.2 resolution: "d3-random@npm:2.2.2" checksum: 10c0/2c7413c4c626272cf12945ff14dacffdccc531989b551f8cfdd9c0266ae902cd9ffffc9ff98b693594a5ff342fb0f22e70afcce908cc6c43fb082bd52ace5acf languageName: node linkType: hard "d3-random@npm:3": version: 3.0.1 resolution: "d3-random@npm:3.0.1" checksum: 10c0/987a1a1bcbf26e6cf01fd89d5a265b463b2cea93560fc17d9b1c45e8ed6ff2db5924601bcceb808de24c94133f000039eb7fa1c469a7a844ccbf1170cbb25b41 languageName: node linkType: hard "d3-scale-chromatic@npm:2": version: 2.0.0 resolution: "d3-scale-chromatic@npm:2.0.0" dependencies: d3-color: "npm:1 - 2" d3-interpolate: "npm:1 - 2" checksum: 10c0/93cafe497b00046b1d4e237a8bb8981fbb35ba03070f420bd913872f6e9d2c9628ed8bb8c84c6a6ffe16029359fa74b646c5c5129732ef4186ab059a77da3021 languageName: node linkType: hard "d3-scale-chromatic@npm:3, d3-scale-chromatic@npm:^3.1.0": version: 3.1.0 resolution: "d3-scale-chromatic@npm:3.1.0" dependencies: d3-color: "npm:1 - 3" d3-interpolate: "npm:1 - 3" checksum: 10c0/9a3f4671ab0b971f4a411b42180d7cf92bfe8e8584e637ce7e698d705e18d6d38efbd20ec64f60cc0dfe966c20d40fc172565bc28aaa2990c0a006360eed91af languageName: node linkType: hard "d3-scale@npm:3": version: 3.3.0 resolution: "d3-scale@npm:3.3.0" dependencies: d3-array: "npm:^2.3.0" d3-format: "npm:1 - 2" d3-interpolate: "npm:1.2.0 - 2" d3-time: "npm:^2.1.1" d3-time-format: "npm:2 - 3" checksum: 10c0/cb63c271ec9c5b632c245c63e0d0716b32adcc468247972c552f5be62fb34a17f71e4ac29fd8976704369f4b958bc6789c61a49427efe2160ae979d7843569dc languageName: node linkType: hard "d3-scale@npm:4, d3-scale@npm:^4.0.0, d3-scale@npm:^4.0.2": version: 4.0.2 resolution: "d3-scale@npm:4.0.2" dependencies: d3-array: "npm:2.10.0 - 3" d3-format: "npm:1 - 3" d3-interpolate: "npm:1.2.0 - 3" d3-time: "npm:2.1.1 - 3" d3-time-format: "npm:2 - 4" checksum: 10c0/65d9ad8c2641aec30ed5673a7410feb187a224d6ca8d1a520d68a7d6eac9d04caedbff4713d1e8545be33eb7fec5739983a7ab1d22d4e5ad35368c6729d362f1 languageName: node linkType: hard "d3-selection@npm:2": version: 2.0.0 resolution: "d3-selection@npm:2.0.0" checksum: 10c0/cd38f5e0baf2011f421e909ff5748235b18510175b7433ddddb04df325a4a03d7db07da09993afb464d5f050174c13cb5d843da902e71e3e8eb5f06c28fc8689 languageName: node linkType: hard "d3-selection@npm:2 - 3, d3-selection@npm:3": version: 3.0.0 resolution: "d3-selection@npm:3.0.0" checksum: 10c0/e59096bbe8f0cb0daa1001d9bdd6dbc93a688019abc97d1d8b37f85cd3c286a6875b22adea0931b0c88410d025563e1643019161a883c516acf50c190a11b56b languageName: node linkType: hard "d3-shape@npm:2": version: 2.1.0 resolution: "d3-shape@npm:2.1.0" dependencies: d3-path: "npm:1 - 2" checksum: 10c0/d86c84322b0ccd550df93ec4986359548cb2c25c9fae326984a59d1caeeb40c78f62678bb93951eed65536bc2d8efa446b13386acb79875234dc79dbcf16dbd7 languageName: node linkType: hard "d3-shape@npm:3, d3-shape@npm:^3.2.0": version: 3.2.0 resolution: "d3-shape@npm:3.2.0" dependencies: d3-path: "npm:^3.1.0" checksum: 10c0/f1c9d1f09926daaf6f6193ae3b4c4b5521e81da7d8902d24b38694517c7f527ce3c9a77a9d3a5722ad1e3ff355860b014557b450023d66a944eabf8cfde37132 languageName: node linkType: hard "d3-shape@npm:^1.2.0": version: 1.3.7 resolution: "d3-shape@npm:1.3.7" dependencies: d3-path: "npm:1" checksum: 10c0/548057ce59959815decb449f15632b08e2a1bdce208f9a37b5f98ec7629dda986c2356bc7582308405ce68aedae7d47b324df41507404df42afaf352907577ae languageName: node linkType: hard "d3-time-format@npm:2 - 3, d3-time-format@npm:3": version: 3.0.0 resolution: "d3-time-format@npm:3.0.0" dependencies: d3-time: "npm:1 - 2" checksum: 10c0/0abe3379f07d1c12ce8930cdddad1223c99cd3e4eac05cf409b5a7953e9ebed56a95a64b0977f63958cfb6101fa4a2a85533a5eae40df84f22c0117dbf5e8982 languageName: node linkType: hard "d3-time-format@npm:2 - 4, d3-time-format@npm:4, d3-time-format@npm:^4.1.0": version: 4.1.0 resolution: "d3-time-format@npm:4.1.0" dependencies: d3-time: "npm:1 - 3" checksum: 10c0/735e00fb25a7fd5d418fac350018713ae394eefddb0d745fab12bbff0517f9cdb5f807c7bbe87bb6eeb06249662f8ea84fec075f7d0cd68609735b2ceb29d206 languageName: node linkType: hard "d3-time-format@npm:^2.2.3": version: 2.3.0 resolution: "d3-time-format@npm:2.3.0" dependencies: d3-time: "npm:1" checksum: 10c0/4ca7b5b4ac8fcf4b7930a5dc4ee5f34b188ebd0a36029df2acee0f68b5028451c045c63a12e3970da8e9840548588bde3d366ef8ee7fcb107459d4a6ad11d8c5 languageName: node linkType: hard "d3-time@npm:1 - 2, d3-time@npm:2, d3-time@npm:^2.1.1": version: 2.1.1 resolution: "d3-time@npm:2.1.1" dependencies: d3-array: "npm:2" checksum: 10c0/4a01770a857bc37d2bafb8f00250e0e6a1fcc8051aea93e5eed168d8ee93e92da508a75ab5e42fc5472aa37e2a83aac68afaf3f12d9167c184ce781faadf5682 languageName: node linkType: hard "d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:3, d3-time@npm:^3.1.0": version: 3.1.0 resolution: "d3-time@npm:3.1.0" dependencies: d3-array: "npm:2 - 3" checksum: 10c0/a984f77e1aaeaa182679b46fbf57eceb6ebdb5f67d7578d6f68ef933f8eeb63737c0949991618a8d29472dbf43736c7d7f17c452b2770f8c1271191cba724ca1 languageName: node linkType: hard "d3-time@npm:1, d3-time@npm:^1.1.0": version: 1.1.0 resolution: "d3-time@npm:1.1.0" checksum: 10c0/69ab137adff5b22d0fa148ea514a207bd9cd7d2c042ccf34a268f2ef73720b404f0be6e7b56c95650c53caf52080b5254e2a27f0a676f41d1dd22ef8872c8335 languageName: node linkType: hard "d3-timer@npm:1": version: 1.0.10 resolution: "d3-timer@npm:1.0.10" checksum: 10c0/7e77030a206861e4e626754c689795d43f036fb07a7f8ca6360eb8b7cbe6f52bf43c9c4297ae9a9a906e4de594212702f83c0cde23d4e20d8689a4211e438155 languageName: node linkType: hard "d3-timer@npm:1 - 2, d3-timer@npm:2": version: 2.0.0 resolution: "d3-timer@npm:2.0.0" checksum: 10c0/95f92ed8edbd0844c023de543ebca4d6aba7f9f8b2ecdbc3d61e01e4df5e74ffbce81238a3c4fd63d118bb1d05ca6331522df565fab146a2790e5c6a847f6275 languageName: node linkType: hard "d3-timer@npm:1 - 3, d3-timer@npm:3, d3-timer@npm:^3.0.1": version: 3.0.1 resolution: "d3-timer@npm:3.0.1" checksum: 10c0/d4c63cb4bb5461d7038aac561b097cd1c5673969b27cbdd0e87fa48d9300a538b9e6f39b4a7f0e3592ef4f963d858c8a9f0e92754db73116770856f2fc04561a languageName: node linkType: hard "d3-transition@npm:2": version: 2.0.0 resolution: "d3-transition@npm:2.0.0" dependencies: d3-color: "npm:1 - 2" d3-dispatch: "npm:1 - 2" d3-ease: "npm:1 - 2" d3-interpolate: "npm:1 - 2" d3-timer: "npm:1 - 2" peerDependencies: d3-selection: 2 checksum: 10c0/a775365c90acfcf5745fb18146ce0a5cb71bfdf69433f4d12cc286da0f88b3b1fbdd6782ccfe8e60de95133107cd8a47a4736fa19e94ffb08f1000e6cd9ebdb6 languageName: node linkType: hard "d3-transition@npm:2 - 3, d3-transition@npm:3, d3-transition@npm:^3.0.1": version: 3.0.1 resolution: "d3-transition@npm:3.0.1" dependencies: d3-color: "npm:1 - 3" d3-dispatch: "npm:1 - 3" d3-ease: "npm:1 - 3" d3-interpolate: "npm:1 - 3" d3-timer: "npm:1 - 3" peerDependencies: d3-selection: 2 - 3 checksum: 10c0/4e74535dda7024aa43e141635b7522bb70cf9d3dfefed975eb643b36b864762eca67f88fafc2ca798174f83ca7c8a65e892624f824b3f65b8145c6a1a88dbbad languageName: node linkType: hard "d3-zoom@npm:2": version: 2.0.0 resolution: "d3-zoom@npm:2.0.0" dependencies: d3-dispatch: "npm:1 - 2" d3-drag: "npm:2" d3-interpolate: "npm:1 - 2" d3-selection: "npm:2" d3-transition: "npm:2" checksum: 10c0/d21bc3f5f7b92809d4bf75889ef6c91e708becc6a148148bc80847b2efdf96233c4437d96b9e1623dde33922e63d505debec1616906448780e0017a04aa7c09f languageName: node linkType: hard "d3-zoom@npm:3, d3-zoom@npm:^3.0.0": version: 3.0.0 resolution: "d3-zoom@npm:3.0.0" dependencies: d3-dispatch: "npm:1 - 3" d3-drag: "npm:2 - 3" d3-interpolate: "npm:1 - 3" d3-selection: "npm:2 - 3" d3-transition: "npm:2 - 3" checksum: 10c0/ee2036479049e70d8c783d594c444fe00e398246048e3f11a59755cd0e21de62ece3126181b0d7a31bf37bcf32fd726f83ae7dea4495ff86ec7736ce5ad36fd3 languageName: node linkType: hard "d3@npm:^6.7.0": version: 6.7.0 resolution: "d3@npm:6.7.0" dependencies: d3-array: "npm:2" d3-axis: "npm:2" d3-brush: "npm:2" d3-chord: "npm:2" d3-color: "npm:2" d3-contour: "npm:2" d3-delaunay: "npm:5" d3-dispatch: "npm:2" d3-drag: "npm:2" d3-dsv: "npm:2" d3-ease: "npm:2" d3-fetch: "npm:2" d3-force: "npm:2" d3-format: "npm:2" d3-geo: "npm:2" d3-hierarchy: "npm:2" d3-interpolate: "npm:2" d3-path: "npm:2" d3-polygon: "npm:2" d3-quadtree: "npm:2" d3-random: "npm:2" d3-scale: "npm:3" d3-scale-chromatic: "npm:2" d3-selection: "npm:2" d3-shape: "npm:2" d3-time: "npm:2" d3-time-format: "npm:3" d3-timer: "npm:2" d3-transition: "npm:2" d3-zoom: "npm:2" checksum: 10c0/07caaac5fba6dbc8bfac8db5ffb6df5c149b2c775b923ddea6660e84d3b4663644c646abf4ab38c173d63af9aeeb25ea69dad0676d0e6687c65776cff893b862 languageName: node linkType: hard "d3@npm:^7.9.0": version: 7.9.0 resolution: "d3@npm:7.9.0" dependencies: d3-array: "npm:3" d3-axis: "npm:3" d3-brush: "npm:3" d3-chord: "npm:3" d3-color: "npm:3" d3-contour: "npm:4" d3-delaunay: "npm:6" d3-dispatch: "npm:3" d3-drag: "npm:3" d3-dsv: "npm:3" d3-ease: "npm:3" d3-fetch: "npm:3" d3-force: "npm:3" d3-format: "npm:3" d3-geo: "npm:3" d3-hierarchy: "npm:3" d3-interpolate: "npm:3" d3-path: "npm:3" d3-polygon: "npm:3" d3-quadtree: "npm:3" d3-random: "npm:3" d3-scale: "npm:4" d3-scale-chromatic: "npm:3" d3-selection: "npm:3" d3-shape: "npm:3" d3-time: "npm:3" d3-time-format: "npm:4" d3-timer: "npm:3" d3-transition: "npm:3" d3-zoom: "npm:3" checksum: 10c0/3dd9c08c73cfaa69c70c49e603c85e049c3904664d9c79a1a52a0f52795828a1ff23592dc9a7b2257e711d68a615472a13103c212032f38e016d609796e087e8 languageName: node linkType: hard "d@npm:1, d@npm:^1.0.1, d@npm:^1.0.2": version: 1.0.2 resolution: "d@npm:1.0.2" dependencies: es5-ext: "npm:^0.10.64" type: "npm:^2.7.2" checksum: 10c0/3e6ede10cd3b77586c47da48423b62bed161bf1a48bdbcc94d87263522e22f5dfb0e678a6dba5323fdc14c5d8612b7f7eb9e7d9e37b2e2d67a7bf9f116dabe5a languageName: node linkType: hard "damerau-levenshtein@npm:^1.0.8": version: 1.0.8 resolution: "damerau-levenshtein@npm:1.0.8" checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 languageName: node linkType: hard "data-uri-to-buffer@npm:^4.0.0": version: 4.0.1 resolution: "data-uri-to-buffer@npm:4.0.1" checksum: 10c0/20a6b93107597530d71d4cb285acee17f66bcdfc03fd81040921a81252f19db27588d87fc8fc69e1950c55cfb0bf8ae40d0e5e21d907230813eb5d5a7f9eb45b languageName: node linkType: hard "data-uri-to-buffer@npm:^6.0.2": version: 6.0.2 resolution: "data-uri-to-buffer@npm:6.0.2" checksum: 10c0/f76922bf895b3d7d443059ff278c9cc5efc89d70b8b80cd9de0aa79b3adc6d7a17948eefb8692e30398c43635f70ece1673d6085cc9eba2878dbc6c6da5292ac languageName: node linkType: hard "data-urls@npm:^5.0.0": version: 5.0.0 resolution: "data-urls@npm:5.0.0" dependencies: whatwg-mimetype: "npm:^4.0.0" whatwg-url: "npm:^14.0.0" checksum: 10c0/1b894d7d41c861f3a4ed2ae9b1c3f0909d4575ada02e36d3d3bc584bdd84278e20709070c79c3b3bff7ac98598cb191eb3e86a89a79ea4ee1ef360e1694f92ad languageName: node linkType: hard "data-view-buffer@npm:^1.0.1": version: 1.0.1 resolution: "data-view-buffer@npm:1.0.1" dependencies: call-bind: "npm:^1.0.6" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.1" checksum: 10c0/8984119e59dbed906a11fcfb417d7d861936f16697a0e7216fe2c6c810f6b5e8f4a5281e73f2c28e8e9259027190ac4a33e2a65fdd7fa86ac06b76e838918583 languageName: node linkType: hard "data-view-buffer@npm:^1.0.2": version: 1.0.2 resolution: "data-view-buffer@npm:1.0.2" dependencies: call-bound: "npm:^1.0.3" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.2" checksum: 10c0/7986d40fc7979e9e6241f85db8d17060dd9a71bd53c894fa29d126061715e322a4cd47a00b0b8c710394854183d4120462b980b8554012acc1c0fa49df7ad38c languageName: node linkType: hard "data-view-byte-length@npm:^1.0.1": version: 1.0.1 resolution: "data-view-byte-length@npm:1.0.1" dependencies: call-bind: "npm:^1.0.7" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.1" checksum: 10c0/b7d9e48a0cf5aefed9ab7d123559917b2d7e0d65531f43b2fd95b9d3a6b46042dd3fca597c42bba384e66b70d7ad66ff23932f8367b241f53d93af42cfe04ec2 languageName: node linkType: hard "data-view-byte-length@npm:^1.0.2": version: 1.0.2 resolution: "data-view-byte-length@npm:1.0.2" dependencies: call-bound: "npm:^1.0.3" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.2" checksum: 10c0/f8a4534b5c69384d95ac18137d381f18a5cfae1f0fc1df0ef6feef51ef0d568606d970b69e02ea186c6c0f0eac77fe4e6ad96fec2569cc86c3afcc7475068c55 languageName: node linkType: hard "data-view-byte-offset@npm:^1.0.0": version: 1.0.0 resolution: "data-view-byte-offset@npm:1.0.0" dependencies: call-bind: "npm:^1.0.6" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.1" checksum: 10c0/21b0d2e53fd6e20cc4257c873bf6d36d77bd6185624b84076c0a1ddaa757b49aaf076254006341d35568e89f52eecd1ccb1a502cfb620f2beca04f48a6a62a8f languageName: node linkType: hard "data-view-byte-offset@npm:^1.0.1": version: 1.0.1 resolution: "data-view-byte-offset@npm:1.0.1" dependencies: call-bound: "npm:^1.0.2" es-errors: "npm:^1.3.0" is-data-view: "npm:^1.0.1" checksum: 10c0/fa7aa40078025b7810dcffc16df02c480573b7b53ef1205aa6a61533011005c1890e5ba17018c692ce7c900212b547262d33279fde801ad9843edc0863bf78c4 languageName: node linkType: hard "date-fns-tz@npm:^1.2.2": version: 1.3.8 resolution: "date-fns-tz@npm:1.3.8" peerDependencies: date-fns: ">=2.0.0" checksum: 10c0/4cb16aeae3ea4a72ac4ae9f7db2011e38797aff122a78be16217a0492dde3938e1e62d21dbf1469a36fb4426824196233cedc70807f0a3033bca132bf76d563e languageName: node linkType: hard "date-fns@npm:^2.6.0": version: 2.30.0 resolution: "date-fns@npm:2.30.0" dependencies: "@babel/runtime": "npm:^7.21.0" checksum: 10c0/e4b521fbf22bc8c3db332bbfb7b094fd3e7627de0259a9d17c7551e2d2702608a7307a449206065916538e384f37b181565447ce2637ae09828427aed9cb5581 languageName: node linkType: hard "date-fns@npm:^4.1.0": version: 4.1.0 resolution: "date-fns@npm:4.1.0" checksum: 10c0/b79ff32830e6b7faa009590af6ae0fb8c3fd9ffad46d930548fbb5acf473773b4712ae887e156ba91a7b3dc30591ce0f517d69fd83bd9c38650fdc03b4e0bac8 languageName: node linkType: hard "de-indent@npm:^1.0.2": version: 1.0.2 resolution: "de-indent@npm:1.0.2" checksum: 10c0/7058ce58abd6dfc123dd204e36be3797abd419b59482a634605420f47ae97639d0c183ec5d1b904f308a01033f473673897afc2bd59bc620ebf1658763ef4291 languageName: node linkType: hard "debug@npm:2, debug@npm:^2.6.9": version: 2.6.9 resolution: "debug@npm:2.6.9" dependencies: ms: "npm:2.0.0" checksum: 10c0/121908fb839f7801180b69a7e218a40b5a0b718813b886b7d6bdb82001b931c938e2941d1e4450f33a1b1df1da653f5f7a0440c197f29fbf8a6e9d45ff6ef589 languageName: node linkType: hard "debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.4.0": version: 4.4.0 resolution: "debug@npm:4.4.0" dependencies: ms: "npm:^2.1.3" peerDependenciesMeta: supports-color: optional: true checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de languageName: node linkType: hard "debug@npm:^3.2.6, debug@npm:^3.2.7": version: 3.2.7 resolution: "debug@npm:3.2.7" dependencies: ms: "npm:^2.1.1" checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a languageName: node linkType: hard "debug@npm:^4.3.5, debug@npm:^4.4.1": version: 4.4.1 resolution: "debug@npm:4.4.1" dependencies: ms: "npm:^2.1.3" peerDependenciesMeta: supports-color: optional: true checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 languageName: node linkType: hard "decamelize@npm:^6.0.0": version: 6.0.0 resolution: "decamelize@npm:6.0.0" checksum: 10c0/689888f5ea39add843d79fb5a8d3bc1ce1df7583899bc7cef081c3deecd54758e24e8692f4c214e0ea6917742bb05ea1991e3e15c33031e7aa7b9041e8e8033a languageName: node linkType: hard "decamelize@npm:^6.0.1": version: 6.0.1 resolution: "decamelize@npm:6.0.1" checksum: 10c0/c0a3a529591ebab1d1a9458b60684194e91d904e9b0a56367d3d507b2c8ab89dfd40c61423ca6a1eb2f70e2d44d2efe78f3342326395d3738d1d42592b1a6224 languageName: node linkType: hard "decimal.js@npm:^10.4.3": version: 10.4.3 resolution: "decimal.js@npm:10.4.3" checksum: 10c0/6d60206689ff0911f0ce968d40f163304a6c1bc739927758e6efc7921cfa630130388966f16bf6ef6b838cb33679fbe8e7a78a2f3c478afce841fd55ac8fb8ee languageName: node linkType: hard "deck.gl@npm:^9.1.14": version: 9.1.14 resolution: "deck.gl@npm:9.1.14" dependencies: "@deck.gl/aggregation-layers": "npm:9.1.14" "@deck.gl/arcgis": "npm:9.1.14" "@deck.gl/carto": "npm:9.1.14" "@deck.gl/core": "npm:9.1.14" "@deck.gl/extensions": "npm:9.1.14" "@deck.gl/geo-layers": "npm:9.1.14" "@deck.gl/google-maps": "npm:9.1.14" "@deck.gl/json": "npm:9.1.14" "@deck.gl/layers": "npm:9.1.14" "@deck.gl/mapbox": "npm:9.1.14" "@deck.gl/mesh-layers": "npm:9.1.14" "@deck.gl/react": "npm:9.1.14" "@deck.gl/widgets": "npm:9.1.14" "@loaders.gl/core": "npm:^4.2.0" "@luma.gl/core": "npm:~9.1.9" "@luma.gl/engine": "npm:~9.1.9" peerDependencies: "@arcgis/core": ^4.0.0 react: ">=16.3.0" react-dom: ">=16.3.0" peerDependenciesMeta: "@arcgis/core": optional: true react: optional: true react-dom: optional: true checksum: 10c0/4f545ac455cebf2e53f9a6f274bcef45569be118390413f06f9fcdcc58ecdaae021ece08f7f4c60771021bef31250e99acc98737a843d508025f5b06d01c4be9 languageName: node linkType: hard "decode-named-character-reference@npm:^1.0.0": version: 1.0.2 resolution: "decode-named-character-reference@npm:1.0.2" dependencies: character-entities: "npm:^2.0.0" checksum: 10c0/66a9fc5d9b5385a2b3675c69ba0d8e893393d64057f7dbbb585265bb4fc05ec513d76943b8e5aac7d8016d20eea4499322cbf4cd6d54b466976b78f3a7587a4c languageName: node linkType: hard "decode-uri-component@npm:^0.4.1": version: 0.4.1 resolution: "decode-uri-component@npm:0.4.1" checksum: 10c0/a180bbdb5398ec8270d236a3ac07cb988bbf6097428481780b85840f088951dc0318a8d8f9d56796e1a322b55b29859cea29982f22f9b03af0bc60974c54e591 languageName: node linkType: hard "deep-eql@npm:^5.0.1": version: 5.0.2 resolution: "deep-eql@npm:5.0.2" checksum: 10c0/7102cf3b7bb719c6b9c0db2e19bf0aa9318d141581befe8c7ce8ccd39af9eaa4346e5e05adef7f9bd7015da0f13a3a25dcfe306ef79dc8668aedbecb658dd247 languageName: node linkType: hard "deep-is@npm:^0.1.3, deep-is@npm:~0.1.3": version: 0.1.4 resolution: "deep-is@npm:0.1.4" checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c languageName: node linkType: hard "deep-strict-equal@npm:^0.2.0": version: 0.2.0 resolution: "deep-strict-equal@npm:0.2.0" dependencies: core-assert: "npm:^0.2.0" checksum: 10c0/774bffaa22c625e54452de4796183099ad95f03f6a4ead2dac7e61d884fddd7e56d56e07d89d31df5914a7172458377fedc33e84579a47301130c41da6fe06b1 languageName: node linkType: hard "define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": version: 1.1.4 resolution: "define-data-property@npm:1.1.4" dependencies: es-define-property: "npm:^1.0.0" es-errors: "npm:^1.3.0" gopd: "npm:^1.0.1" checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 languageName: node linkType: hard "define-lazy-prop@npm:^2.0.0": version: 2.0.0 resolution: "define-lazy-prop@npm:2.0.0" checksum: 10c0/db6c63864a9d3b7dc9def55d52764968a5af296de87c1b2cc71d8be8142e445208071953649e0386a8cc37cfcf9a2067a47207f1eb9ff250c2a269658fdae422 languageName: node linkType: hard "define-properties@npm:^1.1.3, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" dependencies: define-data-property: "npm:^1.0.1" has-property-descriptors: "npm:^1.0.0" object-keys: "npm:^1.1.1" checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3 languageName: node linkType: hard "defined@npm:^1.0.0": version: 1.0.1 resolution: "defined@npm:1.0.1" checksum: 10c0/357212c95fd69c3b431f4766440f1b10a8362d2663b86e3d7c139fe7fc98a1d5a4996b8b55ca62e97fb882f9887374b76944d29f9650a07993d98e7be86a804a languageName: node linkType: hard "degenerator@npm:^5.0.0": version: 5.0.1 resolution: "degenerator@npm:5.0.1" dependencies: ast-types: "npm:^0.13.4" escodegen: "npm:^2.1.0" esprima: "npm:^4.0.1" checksum: 10c0/e48d8a651edeb512a648711a09afec269aac6de97d442a4bb9cf121a66877e0eec11b9727100a10252335c0666ae1c84a8bc1e3a3f47788742c975064d2c7b1c languageName: node linkType: hard "delaunator@npm:4": version: 4.0.1 resolution: "delaunator@npm:4.0.1" checksum: 10c0/8d5be959a4bf79e5297ca58a3dc223434302200ac0efc2cee5434755b557957a824ee32328ed97f69df93d3819e063f3b4637dd6db4d14d50aa8591aeb6f98a7 languageName: node linkType: hard "delaunator@npm:5": version: 5.0.1 resolution: "delaunator@npm:5.0.1" dependencies: robust-predicates: "npm:^3.0.2" checksum: 10c0/3d7ea4d964731c5849af33fec0a271bc6753487b331fd7d43ccb17d77834706e1c383e6ab8fda0032da955e7576d1083b9603cdaf9cbdfd6b3ebd1fb8bb675a5 languageName: node linkType: hard "delayed-stream@npm:~1.0.0": version: 1.0.0 resolution: "delayed-stream@npm:1.0.0" checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 languageName: node linkType: hard "dequal@npm:^2.0.0, dequal@npm:^2.0.3": version: 2.0.3 resolution: "dequal@npm:2.0.3" checksum: 10c0/f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888 languageName: node linkType: hard "detect-indent@npm:^7.0.1": version: 7.0.1 resolution: "detect-indent@npm:7.0.1" checksum: 10c0/47b6e3e3dda603c386e73b129f3e84844ae59bc2615f5072becf3cc02eab400bed5a4e6379c49d0b18cf630e80c2b07e87e0038b777addbc6ef793ad77dd05bc languageName: node linkType: hard "detect-kerning@npm:^2.1.2": version: 2.1.2 resolution: "detect-kerning@npm:2.1.2" checksum: 10c0/290f31729f4fc900fc0755a1dd5c5b210b03845b7b0b4ebe2ee29a19a905d7aac1d17adfb700e5ee3ea632cb248cc0acab3280a513b82633c1089daebdcf064d languageName: node linkType: hard "detect-node-es@npm:^1.1.0": version: 1.1.0 resolution: "detect-node-es@npm:1.1.0" checksum: 10c0/e562f00de23f10c27d7119e1af0e7388407eb4b06596a25f6d79a360094a109ff285de317f02b090faae093d314cf6e73ac3214f8a5bb3a0def5bece94557fbe languageName: node linkType: hard "devlop@npm:^1.0.0, devlop@npm:^1.1.0": version: 1.1.0 resolution: "devlop@npm:1.1.0" dependencies: dequal: "npm:^2.0.0" checksum: 10c0/e0928ab8f94c59417a2b8389c45c55ce0a02d9ac7fd74ef62d01ba48060129e1d594501b77de01f3eeafc7cb00773819b0df74d96251cf20b31c5b3071f45c0e languageName: node linkType: hard "devtools-protocol@npm:0.0.1475386": version: 0.0.1475386 resolution: "devtools-protocol@npm:0.0.1475386" checksum: 10c0/6f717f77c6152565edd01265c6489c5cd5bac2e37f6497c47b11f843f20a669eccddd93dd5603b38e1dd892b849635eee3b9621ea121aba445d37b40cc064450 languageName: node linkType: hard "devtools-protocol@npm:0.0.1507524": version: 0.0.1507524 resolution: "devtools-protocol@npm:0.0.1507524" checksum: 10c0/101f60f1665b8509cad136b7670039fb955dbd3ddf3a18b11df7220ab72cc83273b2e1af9c5a28ad0c768271215384a9c3cfad61bb6d1de95462ddcb073b842d languageName: node linkType: hard "dir-glob@npm:^3.0.1": version: 3.0.1 resolution: "dir-glob@npm:3.0.1" dependencies: path-type: "npm:^4.0.0" checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c languageName: node linkType: hard "doctrine@npm:^2.1.0": version: 2.1.0 resolution: "doctrine@npm:2.1.0" dependencies: esutils: "npm:^2.0.2" checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac languageName: node linkType: hard "dom-accessibility-api@npm:^0.5.9": version: 0.5.16 resolution: "dom-accessibility-api@npm:0.5.16" checksum: 10c0/b2c2eda4fae568977cdac27a9f0c001edf4f95a6a6191dfa611e3721db2478d1badc01db5bb4fa8a848aeee13e442a6c2a4386d65ec65a1436f24715a2f8d053 languageName: node linkType: hard "dom-accessibility-api@npm:^0.6.3": version: 0.6.3 resolution: "dom-accessibility-api@npm:0.6.3" checksum: 10c0/10bee5aa514b2a9a37c87cd81268db607a2e933a050074abc2f6fa3da9080ebed206a320cbc123567f2c3087d22292853bdfdceaffdd4334ffe2af9510b29360 languageName: node linkType: hard "dom-helpers@npm:^5.0.1, dom-helpers@npm:^5.1.3": version: 5.2.1 resolution: "dom-helpers@npm:5.2.1" dependencies: "@babel/runtime": "npm:^7.8.7" csstype: "npm:^3.0.2" checksum: 10c0/f735074d66dd759b36b158fa26e9d00c9388ee0e8c9b16af941c38f014a37fc80782de83afefd621681b19ac0501034b4f1c4a3bff5caa1b8667f0212b5e124c languageName: node linkType: hard "dompurify@npm:^3.2.4": version: 3.2.6 resolution: "dompurify@npm:3.2.6" dependencies: "@types/trusted-types": "npm:^2.0.7" dependenciesMeta: "@types/trusted-types": optional: true checksum: 10c0/c8f8e5b0879a0d93c84a2e5e78649a47d0c057ed0f7850ca3d573d2cca64b84fb1ff85bd4b20980ade69c4e5b80ae73011340f1c2ff375c7ef98bb8268e1d13a languageName: node linkType: hard "dot-case@npm:^3.0.4": version: 3.0.4 resolution: "dot-case@npm:3.0.4" dependencies: no-case: "npm:^3.0.4" tslib: "npm:^2.0.3" checksum: 10c0/5b859ea65097a7ea870e2c91b5768b72ddf7fa947223fd29e167bcdff58fe731d941c48e47a38ec8aa8e43044c8fbd15cd8fa21689a526bc34b6548197cd5b05 languageName: node linkType: hard "dot-prop@npm:^9.0.0": version: 9.0.0 resolution: "dot-prop@npm:9.0.0" dependencies: type-fest: "npm:^4.18.2" checksum: 10c0/4bac49a2f559156811862ac92813906f70529c50da918eaab81b38dd869743c667d578e183607f5ae11e8ae2a02e43e98e32c8a37bc4cae76b04d5b576e3112f languageName: node linkType: hard "draco3d@npm:1.5.7": version: 1.5.7 resolution: "draco3d@npm:1.5.7" checksum: 10c0/4419509bb93c31560a22a1a54e1c394a5b5017cab39941120c75151d941c11dec05925abf31f597ac2694c570b78c04f82aa3d69e5311f8f8e71fc8b9d92d12f languageName: node linkType: hard "draw-svg-path@npm:^1.0.0": version: 1.0.0 resolution: "draw-svg-path@npm:1.0.0" dependencies: abs-svg-path: "npm:~0.1.1" normalize-svg-path: "npm:~0.1.0" checksum: 10c0/659482ae77a013940002292d25a42ff6a4817031ae705e1e9682c7c0b81616081c2ff4a982cd52fba2fbd8f3814aea0875c2831b91a73a85f631b9db1c3fc83d languageName: node linkType: hard "dtype@npm:^2.0.0": version: 2.0.0 resolution: "dtype@npm:2.0.0" checksum: 10c0/f1478e537d4e90b8d99f0c4b4f28daf588f9b1a9a314eb137a582ab407e64e4867382cbd73cd87892f81c9f195e519d03b9017a3c47bba2cff3e706b9e6a18e5 languageName: node linkType: hard "dunder-proto@npm:^1.0.0, dunder-proto@npm:^1.0.1": version: 1.0.1 resolution: "dunder-proto@npm:1.0.1" dependencies: call-bind-apply-helpers: "npm:^1.0.1" es-errors: "npm:^1.3.0" gopd: "npm:^1.2.0" checksum: 10c0/199f2a0c1c16593ca0a145dbf76a962f8033ce3129f01284d48c45ed4e14fea9bbacd7b3610b6cdc33486cef20385ac054948fefc6272fcce645c09468f93031 languageName: node linkType: hard "dup@npm:^1.0.0": version: 1.0.0 resolution: "dup@npm:1.0.0" checksum: 10c0/990cde73bbecf90ff58101d2fd96016930fbefd03f047a041a3cc83fcfa22e04c7a02ee4747707b5dabe87fc3a78814d95a9b20d9e6dc98738bd2388efde6f64 languageName: node linkType: hard "duplexer@npm:^0.1.2": version: 0.1.2 resolution: "duplexer@npm:0.1.2" checksum: 10c0/c57bcd4bdf7e623abab2df43a7b5b23d18152154529d166c1e0da6bee341d84c432d157d7e97b32fecb1bf3a8b8857dd85ed81a915789f550637ed25b8e64fc2 languageName: node linkType: hard "duplexify@npm:^3.4.5": version: 3.7.1 resolution: "duplexify@npm:3.7.1" dependencies: end-of-stream: "npm:^1.0.0" inherits: "npm:^2.0.1" readable-stream: "npm:^2.0.0" stream-shift: "npm:^1.0.0" checksum: 10c0/59d1440c1b4e3a4db35ae96933392703ce83518db1828d06b9b6322920d6cbbf0b7159e88be120385fe459e77f1eb0c7622f26e9ec1f47c9ff05c2b35747dbd3 languageName: node linkType: hard "earcut@npm:^2.1.5, earcut@npm:^2.2.2, earcut@npm:^2.2.4": version: 2.2.4 resolution: "earcut@npm:2.2.4" checksum: 10c0/01ca51830edd2787819f904ae580087d37351f6048b4565e7add4b3da8a86b7bc19262ab2aa7fdc64129ab03af2d9cec8cccee4d230c82275f97ef285c79aafb languageName: node linkType: hard "earcut@npm:^3.0.0": version: 3.0.0 resolution: "earcut@npm:3.0.0" checksum: 10c0/20f3d8492f02452648466d2ce98276c9317c4d6980fc2596b1cb119fc3ef2d034724c5721de2af191331fb43610a27995b0f1b611d3386976b770ae9af7b3bbe languageName: node linkType: hard "eastasianwidth@npm:^0.2.0": version: 0.2.0 resolution: "eastasianwidth@npm:0.2.0" checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 languageName: node linkType: hard "ejs@npm:^3.1.5": version: 3.1.10 resolution: "ejs@npm:3.1.10" dependencies: jake: "npm:^10.8.5" bin: ejs: bin/cli.js checksum: 10c0/52eade9e68416ed04f7f92c492183340582a36482836b11eab97b159fcdcfdedc62233a1bf0bf5e5e1851c501f2dca0e2e9afd111db2599e4e7f53ee29429ae1 languageName: node linkType: hard "electron-to-chromium@npm:^1.5.41": version: 1.5.54 resolution: "electron-to-chromium@npm:1.5.54" checksum: 10c0/e37ebadc832de1548045ca8b415f96539f4a2fad74a81c25d81ef3c161793443bf2ebbc0c5abd9a7fa4f42ba50cb2af4912c77177806b7dc904a5050409048ac languageName: node linkType: hard "element-size@npm:^1.1.1": version: 1.1.1 resolution: "element-size@npm:1.1.1" checksum: 10c0/517560f4e0b2dbd0adfe5660bb2572625f605a6268e7983cf96c7584538bef8733fd34e213dc5f653eaea9db5c38069d6e7a3ab960f03c460bcd51e42ee1554d languageName: node linkType: hard "elementary-circuits-directed-graph@npm:^1.0.4": version: 1.3.1 resolution: "elementary-circuits-directed-graph@npm:1.3.1" dependencies: strongly-connected-components: "npm:^1.0.1" checksum: 10c0/a6e8ee9e5724b8d15841e8d456340b25a46c2a501cef2b60a46f1a1808dfade47f2027c4a5e37be6ddafd31a78c3b58e01b12a4f6166649f89e2c9a52507d481 languageName: node linkType: hard "emoji-regex@npm:^10.3.0": version: 10.4.0 resolution: "emoji-regex@npm:10.4.0" checksum: 10c0/a3fcedfc58bfcce21a05a5f36a529d81e88d602100145fcca3dc6f795e3c8acc4fc18fe773fbf9b6d6e9371205edb3afa2668ec3473fa2aa7fd47d2a9d46482d languageName: node linkType: hard "emoji-regex@npm:^8.0.0": version: 8.0.0 resolution: "emoji-regex@npm:8.0.0" checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 languageName: node linkType: hard "emoji-regex@npm:^9.2.2": version: 9.2.2 resolution: "emoji-regex@npm:9.2.2" checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 languageName: node linkType: hard "emojilib@npm:^2.4.0": version: 2.4.0 resolution: "emojilib@npm:2.4.0" checksum: 10c0/6e66ba8921175842193f974e18af448bb6adb0cf7aeea75e08b9d4ea8e9baba0e4a5347b46ed901491dcaba277485891c33a8d70b0560ca5cc9672a94c21ab8f languageName: node linkType: hard "emoticon@npm:^4.0.1": version: 4.1.0 resolution: "emoticon@npm:4.1.0" checksum: 10c0/b3bc0a9b370445ac1e980ccba7baea614b4648199cc6fa0a51696a6d2393733e8f985edc4f1af381a1903f625789483dd155de427ec9fa2ea415fac116adc06d languageName: node linkType: hard "encoding@npm:^0.1.13": version: 0.1.13 resolution: "encoding@npm:0.1.13" dependencies: iconv-lite: "npm:^0.6.2" checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 languageName: node linkType: hard "end-of-stream@npm:^1.0.0, end-of-stream@npm:^1.1.0": version: 1.4.4 resolution: "end-of-stream@npm:1.4.4" dependencies: once: "npm:^1.4.0" checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 languageName: node linkType: hard "enhanced-resolve@npm:^5.7.0": version: 5.17.1 resolution: "enhanced-resolve@npm:5.17.1" dependencies: graceful-fs: "npm:^4.2.4" tapable: "npm:^2.2.0" checksum: 10c0/81a0515675eca17efdba2cf5bad87abc91a528fc1191aad50e275e74f045b41506167d420099022da7181c8d787170ea41e4a11a0b10b7a16f6237daecb15370 languageName: node linkType: hard "enquirer@npm:^2.3.6": version: 2.4.1 resolution: "enquirer@npm:2.4.1" dependencies: ansi-colors: "npm:^4.1.1" strip-ansi: "npm:^6.0.1" checksum: 10c0/43850479d7a51d36a9c924b518dcdc6373b5a8ae3401097d336b7b7e258324749d0ad37a1fcaa5706f04799baa05585cd7af19ebdf7667673e7694435fcea918 languageName: node linkType: hard "entities@npm:^4.4.0, entities@npm:^4.5.0": version: 4.5.0 resolution: "entities@npm:4.5.0" checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 languageName: node linkType: hard "env-paths@npm:^2.2.0": version: 2.2.1 resolution: "env-paths@npm:2.2.1" checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 languageName: node linkType: hard "err-code@npm:^2.0.2": version: 2.0.3 resolution: "err-code@npm:2.0.3" checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 languageName: node linkType: hard "error-ex@npm:^1.3.1": version: 1.3.2 resolution: "error-ex@npm:1.3.2" dependencies: is-arrayish: "npm:^0.2.1" checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce languageName: node linkType: hard "es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3": version: 1.23.3 resolution: "es-abstract@npm:1.23.3" dependencies: array-buffer-byte-length: "npm:^1.0.1" arraybuffer.prototype.slice: "npm:^1.0.3" available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.7" data-view-buffer: "npm:^1.0.1" data-view-byte-length: "npm:^1.0.1" data-view-byte-offset: "npm:^1.0.0" es-define-property: "npm:^1.0.0" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" es-set-tostringtag: "npm:^2.0.3" es-to-primitive: "npm:^1.2.1" function.prototype.name: "npm:^1.1.6" get-intrinsic: "npm:^1.2.4" get-symbol-description: "npm:^1.0.2" globalthis: "npm:^1.0.3" gopd: "npm:^1.0.1" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.0.3" has-symbols: "npm:^1.0.3" hasown: "npm:^2.0.2" internal-slot: "npm:^1.0.7" is-array-buffer: "npm:^3.0.4" is-callable: "npm:^1.2.7" is-data-view: "npm:^1.0.1" is-negative-zero: "npm:^2.0.3" is-regex: "npm:^1.1.4" is-shared-array-buffer: "npm:^1.0.3" is-string: "npm:^1.0.7" is-typed-array: "npm:^1.1.13" is-weakref: "npm:^1.0.2" object-inspect: "npm:^1.13.1" object-keys: "npm:^1.1.1" object.assign: "npm:^4.1.5" regexp.prototype.flags: "npm:^1.5.2" safe-array-concat: "npm:^1.1.2" safe-regex-test: "npm:^1.0.3" string.prototype.trim: "npm:^1.2.9" string.prototype.trimend: "npm:^1.0.8" string.prototype.trimstart: "npm:^1.0.8" typed-array-buffer: "npm:^1.0.2" typed-array-byte-length: "npm:^1.0.1" typed-array-byte-offset: "npm:^1.0.2" typed-array-length: "npm:^1.0.6" unbox-primitive: "npm:^1.0.2" which-typed-array: "npm:^1.1.15" checksum: 10c0/d27e9afafb225c6924bee9971a7f25f20c314f2d6cb93a63cada4ac11dcf42040896a6c22e5fb8f2a10767055ed4ddf400be3b1eb12297d281726de470b75666 languageName: node linkType: hard "es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9": version: 1.23.9 resolution: "es-abstract@npm:1.23.9" dependencies: array-buffer-byte-length: "npm:^1.0.2" arraybuffer.prototype.slice: "npm:^1.0.4" available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" data-view-buffer: "npm:^1.0.2" data-view-byte-length: "npm:^1.0.2" data-view-byte-offset: "npm:^1.0.1" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" es-set-tostringtag: "npm:^2.1.0" es-to-primitive: "npm:^1.3.0" function.prototype.name: "npm:^1.1.8" get-intrinsic: "npm:^1.2.7" get-proto: "npm:^1.0.0" get-symbol-description: "npm:^1.1.0" globalthis: "npm:^1.0.4" gopd: "npm:^1.2.0" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" internal-slot: "npm:^1.1.0" is-array-buffer: "npm:^3.0.5" is-callable: "npm:^1.2.7" is-data-view: "npm:^1.0.2" is-regex: "npm:^1.2.1" is-shared-array-buffer: "npm:^1.0.4" is-string: "npm:^1.1.1" is-typed-array: "npm:^1.1.15" is-weakref: "npm:^1.1.0" math-intrinsics: "npm:^1.1.0" object-inspect: "npm:^1.13.3" object-keys: "npm:^1.1.1" object.assign: "npm:^4.1.7" own-keys: "npm:^1.0.1" regexp.prototype.flags: "npm:^1.5.3" safe-array-concat: "npm:^1.1.3" safe-push-apply: "npm:^1.0.0" safe-regex-test: "npm:^1.1.0" set-proto: "npm:^1.0.0" string.prototype.trim: "npm:^1.2.10" string.prototype.trimend: "npm:^1.0.9" string.prototype.trimstart: "npm:^1.0.8" typed-array-buffer: "npm:^1.0.3" typed-array-byte-length: "npm:^1.0.3" typed-array-byte-offset: "npm:^1.0.4" typed-array-length: "npm:^1.0.7" unbox-primitive: "npm:^1.1.0" which-typed-array: "npm:^1.1.18" checksum: 10c0/1de229c9e08fe13c17fe5abaec8221545dfcd57e51f64909599a6ae896df84b8fd2f7d16c60cb00d7bf495b9298ca3581aded19939d4b7276854a4b066f8422b languageName: node linkType: hard "es-abstract@npm:^1.24.0": version: 1.24.0 resolution: "es-abstract@npm:1.24.0" dependencies: array-buffer-byte-length: "npm:^1.0.2" arraybuffer.prototype.slice: "npm:^1.0.4" available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.4" data-view-buffer: "npm:^1.0.2" data-view-byte-length: "npm:^1.0.2" data-view-byte-offset: "npm:^1.0.1" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" es-set-tostringtag: "npm:^2.1.0" es-to-primitive: "npm:^1.3.0" function.prototype.name: "npm:^1.1.8" get-intrinsic: "npm:^1.3.0" get-proto: "npm:^1.0.1" get-symbol-description: "npm:^1.1.0" globalthis: "npm:^1.0.4" gopd: "npm:^1.2.0" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" internal-slot: "npm:^1.1.0" is-array-buffer: "npm:^3.0.5" is-callable: "npm:^1.2.7" is-data-view: "npm:^1.0.2" is-negative-zero: "npm:^2.0.3" is-regex: "npm:^1.2.1" is-set: "npm:^2.0.3" is-shared-array-buffer: "npm:^1.0.4" is-string: "npm:^1.1.1" is-typed-array: "npm:^1.1.15" is-weakref: "npm:^1.1.1" math-intrinsics: "npm:^1.1.0" object-inspect: "npm:^1.13.4" object-keys: "npm:^1.1.1" object.assign: "npm:^4.1.7" own-keys: "npm:^1.0.1" regexp.prototype.flags: "npm:^1.5.4" safe-array-concat: "npm:^1.1.3" safe-push-apply: "npm:^1.0.0" safe-regex-test: "npm:^1.1.0" set-proto: "npm:^1.0.0" stop-iteration-iterator: "npm:^1.1.0" string.prototype.trim: "npm:^1.2.10" string.prototype.trimend: "npm:^1.0.9" string.prototype.trimstart: "npm:^1.0.8" typed-array-buffer: "npm:^1.0.3" typed-array-byte-length: "npm:^1.0.3" typed-array-byte-offset: "npm:^1.0.4" typed-array-length: "npm:^1.0.7" unbox-primitive: "npm:^1.1.0" which-typed-array: "npm:^1.1.19" checksum: 10c0/b256e897be32df5d382786ce8cce29a1dd8c97efbab77a26609bd70f2ed29fbcfc7a31758cb07488d532e7ccccdfca76c1118f2afe5a424cdc05ca007867c318 languageName: node linkType: hard "es-define-property@npm:^1.0.0": version: 1.0.0 resolution: "es-define-property@npm:1.0.0" dependencies: get-intrinsic: "npm:^1.2.4" checksum: 10c0/6bf3191feb7ea2ebda48b577f69bdfac7a2b3c9bcf97307f55fd6ef1bbca0b49f0c219a935aca506c993d8c5d8bddd937766cb760cd5e5a1071351f2df9f9aa4 languageName: node linkType: hard "es-define-property@npm:^1.0.1": version: 1.0.1 resolution: "es-define-property@npm:1.0.1" checksum: 10c0/3f54eb49c16c18707949ff25a1456728c883e81259f045003499efba399c08bad00deebf65cccde8c0e07908c1a225c9d472b7107e558f2a48e28d530e34527c languageName: node linkType: hard "es-errors@npm:^1.2.1, es-errors@npm:^1.3.0": version: 1.3.0 resolution: "es-errors@npm:1.3.0" checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 languageName: node linkType: hard "es-iterator-helpers@npm:^1.2.1": version: 1.2.1 resolution: "es-iterator-helpers@npm:1.2.1" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.6" es-errors: "npm:^1.3.0" es-set-tostringtag: "npm:^2.0.3" function-bind: "npm:^1.1.2" get-intrinsic: "npm:^1.2.6" globalthis: "npm:^1.0.4" gopd: "npm:^1.2.0" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.2.0" has-symbols: "npm:^1.1.0" internal-slot: "npm:^1.1.0" iterator.prototype: "npm:^1.1.4" safe-array-concat: "npm:^1.1.3" checksum: 10c0/97e3125ca472d82d8aceea11b790397648b52c26d8768ea1c1ee6309ef45a8755bb63225a43f3150c7591cffc17caf5752459f1e70d583b4184370a8f04ebd2f languageName: node linkType: hard "es-module-lexer@npm:^1.7.0": version: 1.7.0 resolution: "es-module-lexer@npm:1.7.0" checksum: 10c0/4c935affcbfeba7fb4533e1da10fa8568043df1e3574b869385980de9e2d475ddc36769891936dbb07036edb3c3786a8b78ccf44964cd130dedc1f2c984b6c7b languageName: node linkType: hard "es-object-atoms@npm:^1.0.0": version: 1.0.0 resolution: "es-object-atoms@npm:1.0.0" dependencies: es-errors: "npm:^1.3.0" checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 languageName: node linkType: hard "es-object-atoms@npm:^1.1.1": version: 1.1.1 resolution: "es-object-atoms@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c languageName: node linkType: hard "es-set-tostringtag@npm:^2.0.3": version: 2.0.3 resolution: "es-set-tostringtag@npm:2.0.3" dependencies: get-intrinsic: "npm:^1.2.4" has-tostringtag: "npm:^1.0.2" hasown: "npm:^2.0.1" checksum: 10c0/f22aff1585eb33569c326323f0b0d175844a1f11618b86e193b386f8be0ea9474cfbe46df39c45d959f7aa8f6c06985dc51dd6bce5401645ec5a74c4ceaa836a languageName: node linkType: hard "es-set-tostringtag@npm:^2.1.0": version: 2.1.0 resolution: "es-set-tostringtag@npm:2.1.0" dependencies: es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.6" has-tostringtag: "npm:^1.0.2" hasown: "npm:^2.0.2" checksum: 10c0/ef2ca9ce49afe3931cb32e35da4dcb6d86ab02592cfc2ce3e49ced199d9d0bb5085fc7e73e06312213765f5efa47cc1df553a6a5154584b21448e9fb8355b1af languageName: node linkType: hard "es-shim-unscopables@npm:^1.0.0, es-shim-unscopables@npm:^1.0.2": version: 1.0.2 resolution: "es-shim-unscopables@npm:1.0.2" dependencies: hasown: "npm:^2.0.0" checksum: 10c0/f495af7b4b7601a4c0cfb893581c352636e5c08654d129590386a33a0432cf13a7bdc7b6493801cadd990d838e2839b9013d1de3b880440cb537825e834fe783 languageName: node linkType: hard "es-shim-unscopables@npm:^1.1.0": version: 1.1.0 resolution: "es-shim-unscopables@npm:1.1.0" dependencies: hasown: "npm:^2.0.2" checksum: 10c0/1b9702c8a1823fc3ef39035a4e958802cf294dd21e917397c561d0b3e195f383b978359816b1732d02b255ccf63e1e4815da0065b95db8d7c992037be3bbbcdb languageName: node linkType: hard "es-to-primitive@npm:^1.2.1": version: 1.2.1 resolution: "es-to-primitive@npm:1.2.1" dependencies: is-callable: "npm:^1.1.4" is-date-object: "npm:^1.0.1" is-symbol: "npm:^1.0.2" checksum: 10c0/0886572b8dc075cb10e50c0af62a03d03a68e1e69c388bd4f10c0649ee41b1fbb24840a1b7e590b393011b5cdbe0144b776da316762653685432df37d6de60f1 languageName: node linkType: hard "es-to-primitive@npm:^1.3.0": version: 1.3.0 resolution: "es-to-primitive@npm:1.3.0" dependencies: is-callable: "npm:^1.2.7" is-date-object: "npm:^1.0.5" is-symbol: "npm:^1.0.4" checksum: 10c0/c7e87467abb0b438639baa8139f701a06537d2b9bc758f23e8622c3b42fd0fdb5bde0f535686119e446dd9d5e4c0f238af4e14960f4771877cf818d023f6730b languageName: node linkType: hard "es5-ext@npm:^0.10.35, es5-ext@npm:^0.10.46, es5-ext@npm:^0.10.62, es5-ext@npm:^0.10.64, es5-ext@npm:~0.10.14": version: 0.10.64 resolution: "es5-ext@npm:0.10.64" dependencies: es6-iterator: "npm:^2.0.3" es6-symbol: "npm:^3.1.3" esniff: "npm:^2.0.1" next-tick: "npm:^1.1.0" checksum: 10c0/4459b6ae216f3c615db086e02437bdfde851515a101577fd61b19f9b3c1ad924bab4d197981eb7f0ccb915f643f2fc10ff76b97a680e96cbb572d15a27acd9a3 languageName: node linkType: hard "es6-iterator@npm:^2.0.3": version: 2.0.3 resolution: "es6-iterator@npm:2.0.3" dependencies: d: "npm:1" es5-ext: "npm:^0.10.35" es6-symbol: "npm:^3.1.1" checksum: 10c0/91f20b799dba28fb05bf623c31857fc1524a0f1c444903beccaf8929ad196c8c9ded233e5ac7214fc63a92b3f25b64b7f2737fcca8b1f92d2d96cf3ac902f5d8 languageName: node linkType: hard "es6-symbol@npm:^3.1.1, es6-symbol@npm:^3.1.3": version: 3.1.4 resolution: "es6-symbol@npm:3.1.4" dependencies: d: "npm:^1.0.2" ext: "npm:^1.7.0" checksum: 10c0/777bf3388db5d7919e09a0fd175aa5b8a62385b17cb2227b7a137680cba62b4d9f6193319a102642aa23d5840d38a62e4784f19cfa5be4a2210a3f0e9b23d15d languageName: node linkType: hard "es6-weak-map@npm:^2.0.3": version: 2.0.3 resolution: "es6-weak-map@npm:2.0.3" dependencies: d: "npm:1" es5-ext: "npm:^0.10.46" es6-iterator: "npm:^2.0.3" es6-symbol: "npm:^3.1.1" checksum: 10c0/460932be9542473dbbddd183e21c15a66cfec1b2c17dae2b514e190d6fb2896b7eb683783d4b36da036609d2e1c93d2815f21b374dfccaf02a8978694c2f7b67 languageName: node linkType: hard "esbuild@npm:^0.25.0": version: 0.25.0 resolution: "esbuild@npm:0.25.0" dependencies: "@esbuild/aix-ppc64": "npm:0.25.0" "@esbuild/android-arm": "npm:0.25.0" "@esbuild/android-arm64": "npm:0.25.0" "@esbuild/android-x64": "npm:0.25.0" "@esbuild/darwin-arm64": "npm:0.25.0" "@esbuild/darwin-x64": "npm:0.25.0" "@esbuild/freebsd-arm64": "npm:0.25.0" "@esbuild/freebsd-x64": "npm:0.25.0" "@esbuild/linux-arm": "npm:0.25.0" "@esbuild/linux-arm64": "npm:0.25.0" "@esbuild/linux-ia32": "npm:0.25.0" "@esbuild/linux-loong64": "npm:0.25.0" "@esbuild/linux-mips64el": "npm:0.25.0" "@esbuild/linux-ppc64": "npm:0.25.0" "@esbuild/linux-riscv64": "npm:0.25.0" "@esbuild/linux-s390x": "npm:0.25.0" "@esbuild/linux-x64": "npm:0.25.0" "@esbuild/netbsd-arm64": "npm:0.25.0" "@esbuild/netbsd-x64": "npm:0.25.0" "@esbuild/openbsd-arm64": "npm:0.25.0" "@esbuild/openbsd-x64": "npm:0.25.0" "@esbuild/sunos-x64": "npm:0.25.0" "@esbuild/win32-arm64": "npm:0.25.0" "@esbuild/win32-ia32": "npm:0.25.0" "@esbuild/win32-x64": "npm:0.25.0" dependenciesMeta: "@esbuild/aix-ppc64": optional: true "@esbuild/android-arm": optional: true "@esbuild/android-arm64": optional: true "@esbuild/android-x64": optional: true "@esbuild/darwin-arm64": optional: true "@esbuild/darwin-x64": optional: true "@esbuild/freebsd-arm64": optional: true "@esbuild/freebsd-x64": optional: true "@esbuild/linux-arm": optional: true "@esbuild/linux-arm64": optional: true "@esbuild/linux-ia32": optional: true "@esbuild/linux-loong64": optional: true "@esbuild/linux-mips64el": optional: true "@esbuild/linux-ppc64": optional: true "@esbuild/linux-riscv64": optional: true "@esbuild/linux-s390x": optional: true "@esbuild/linux-x64": optional: true "@esbuild/netbsd-arm64": optional: true "@esbuild/netbsd-x64": optional: true "@esbuild/openbsd-arm64": optional: true "@esbuild/openbsd-x64": optional: true "@esbuild/sunos-x64": optional: true "@esbuild/win32-arm64": optional: true "@esbuild/win32-ia32": optional: true "@esbuild/win32-x64": optional: true bin: esbuild: bin/esbuild checksum: 10c0/5767b72da46da3cfec51661647ec850ddbf8a8d0662771139f10ef0692a8831396a0004b2be7966cecdb08264fb16bdc16290dcecd92396fac5f12d722fa013d languageName: node linkType: hard "escalade@npm:^3.1.1, escalade@npm:^3.2.0": version: 3.2.0 resolution: "escalade@npm:3.2.0" checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 languageName: node linkType: hard "escape-html@npm:^1.0.3": version: 1.0.3 resolution: "escape-html@npm:1.0.3" checksum: 10c0/524c739d776b36c3d29fa08a22e03e8824e3b2fd57500e5e44ecf3cc4707c34c60f9ca0781c0e33d191f2991161504c295e98f68c78fe7baa6e57081ec6ac0a3 languageName: node linkType: hard "escape-string-regexp@npm:^2.0.0": version: 2.0.0 resolution: "escape-string-regexp@npm:2.0.0" checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507 languageName: node linkType: hard "escape-string-regexp@npm:^4.0.0": version: 4.0.0 resolution: "escape-string-regexp@npm:4.0.0" checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 languageName: node linkType: hard "escape-string-regexp@npm:^5.0.0": version: 5.0.0 resolution: "escape-string-regexp@npm:5.0.0" checksum: 10c0/6366f474c6f37a802800a435232395e04e9885919873e382b157ab7e8f0feb8fed71497f84a6f6a81a49aab41815522f5839112bd38026d203aea0c91622df95 languageName: node linkType: hard "escodegen@npm:^1.13.0": version: 1.14.3 resolution: "escodegen@npm:1.14.3" dependencies: esprima: "npm:^4.0.1" estraverse: "npm:^4.2.0" esutils: "npm:^2.0.2" optionator: "npm:^0.8.1" source-map: "npm:~0.6.1" dependenciesMeta: source-map: optional: true bin: escodegen: bin/escodegen.js esgenerate: bin/esgenerate.js checksum: 10c0/30d337803e8f44308c90267bf6192399e4b44792497c77a7506b68ab802ba6a48ebbe1ce77b219aba13dfd2de5f5e1c267e35be1ed87b2a9c3315e8b283e302a languageName: node linkType: hard "escodegen@npm:^2.1.0": version: 2.1.0 resolution: "escodegen@npm:2.1.0" dependencies: esprima: "npm:^4.0.1" estraverse: "npm:^5.2.0" esutils: "npm:^2.0.2" source-map: "npm:~0.6.1" dependenciesMeta: source-map: optional: true bin: escodegen: bin/escodegen.js esgenerate: bin/esgenerate.js checksum: 10c0/e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3 languageName: node linkType: hard "eslint-config-prettier@npm:^10.1.8": version: 10.1.8 resolution: "eslint-config-prettier@npm:10.1.8" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js checksum: 10c0/e1bcfadc9eccd526c240056b1e59c5cd26544fe59feb85f38f4f1f116caed96aea0b3b87868e68b3099e55caaac3f2e5b9f58110f85db893e83a332751192682 languageName: node linkType: hard "eslint-import-context@npm:^0.1.8": version: 0.1.8 resolution: "eslint-import-context@npm:0.1.8" dependencies: get-tsconfig: "npm:^4.10.1" stable-hash-x: "npm:^0.1.1" peerDependencies: unrs-resolver: ^1.0.0 peerDependenciesMeta: unrs-resolver: optional: true checksum: 10c0/61e7f63eadcf9345a905acd67f3742b855bc0638e2ed2a7072b184d183f35c69d547d5a6d2adc8535f589e9daaa293b5ce352dcb79f6188fbd125899c1e28e40 languageName: node linkType: hard "eslint-import-resolver-node@npm:^0.3.9": version: 0.3.9 resolution: "eslint-import-resolver-node@npm:0.3.9" dependencies: debug: "npm:^3.2.7" is-core-module: "npm:^2.13.0" resolve: "npm:^1.22.4" checksum: 10c0/0ea8a24a72328a51fd95aa8f660dcca74c1429806737cf10261ab90cfcaaf62fd1eff664b76a44270868e0a932711a81b250053942595bcd00a93b1c1575dd61 languageName: node linkType: hard "eslint-import-resolver-typescript@npm:^4.4.4": version: 4.4.4 resolution: "eslint-import-resolver-typescript@npm:4.4.4" dependencies: debug: "npm:^4.4.1" eslint-import-context: "npm:^0.1.8" get-tsconfig: "npm:^4.10.1" is-bun-module: "npm:^2.0.0" stable-hash-x: "npm:^0.2.0" tinyglobby: "npm:^0.2.14" unrs-resolver: "npm:^1.7.11" peerDependencies: eslint: "*" eslint-plugin-import: "*" eslint-plugin-import-x: "*" peerDependenciesMeta: eslint-plugin-import: optional: true eslint-plugin-import-x: optional: true checksum: 10c0/3bf8ad77c21660f77a0e455555ab179420f68ae7a132906c85a217ccce51cb6680cf70027cab32a358d193e5b9e476f6ba2e595585242aa97d4f6435ca22104e languageName: node linkType: hard "eslint-module-utils@npm:^2.12.1": version: 2.12.1 resolution: "eslint-module-utils@npm:2.12.1" dependencies: debug: "npm:^3.2.7" peerDependenciesMeta: eslint: optional: true checksum: 10c0/6f4efbe7a91ae49bf67b4ab3644cb60bc5bd7db4cb5521de1b65be0847ffd3fb6bce0dd68f0995e1b312d137f768e2a1f842ee26fe73621afa05f850628fdc40 languageName: node linkType: hard "eslint-plugin-import@npm:^2.32.0": version: 2.32.0 resolution: "eslint-plugin-import@npm:2.32.0" dependencies: "@rtsao/scc": "npm:^1.1.0" array-includes: "npm:^3.1.9" array.prototype.findlastindex: "npm:^1.2.6" array.prototype.flat: "npm:^1.3.3" array.prototype.flatmap: "npm:^1.3.3" debug: "npm:^3.2.7" doctrine: "npm:^2.1.0" eslint-import-resolver-node: "npm:^0.3.9" eslint-module-utils: "npm:^2.12.1" hasown: "npm:^2.0.2" is-core-module: "npm:^2.16.1" is-glob: "npm:^4.0.3" minimatch: "npm:^3.1.2" object.fromentries: "npm:^2.0.8" object.groupby: "npm:^1.0.3" object.values: "npm:^1.2.1" semver: "npm:^6.3.1" string.prototype.trimend: "npm:^1.0.9" tsconfig-paths: "npm:^3.15.0" peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 checksum: 10c0/bfb1b8fc8800398e62ddfefbf3638d185286edfed26dfe00875cc2846d954491b4f5112457831588b757fa789384e1ae585f812614c4797f0499fa234fd4a48b languageName: node linkType: hard "eslint-plugin-jsx-a11y@npm:^6.10.2": version: 6.10.2 resolution: "eslint-plugin-jsx-a11y@npm:6.10.2" dependencies: aria-query: "npm:^5.3.2" array-includes: "npm:^3.1.8" array.prototype.flatmap: "npm:^1.3.2" ast-types-flow: "npm:^0.0.8" axe-core: "npm:^4.10.0" axobject-query: "npm:^4.1.0" damerau-levenshtein: "npm:^1.0.8" emoji-regex: "npm:^9.2.2" hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^3.3.5" language-tags: "npm:^1.0.9" minimatch: "npm:^3.1.2" object.fromentries: "npm:^2.0.8" safe-regex-test: "npm:^1.0.3" string.prototype.includes: "npm:^2.0.1" peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 checksum: 10c0/d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e languageName: node linkType: hard "eslint-plugin-lodash@npm:^8.0.0": version: 8.0.0 resolution: "eslint-plugin-lodash@npm:8.0.0" dependencies: lodash: "npm:^4.17.21" peerDependencies: eslint: ">=9.0.0" checksum: 10c0/7850aa39e44db6bf3590460b6b7fcdbb41dfbfcfda8f20d04d12e09127154e86811c8c9c291151d214422daa5aa50812525569ff58837c53c0e93c1ebb8cbc54 languageName: node linkType: hard "eslint-plugin-no-relative-import-paths@npm:^1.6.1": version: 1.6.1 resolution: "eslint-plugin-no-relative-import-paths@npm:1.6.1" checksum: 10c0/952d136ae959408d7f50fc6a630a010421ac39e7b8ccb0980817ae058941d19d6abe60233eabb5e9f32198de17d5d6ce9432f87ee8e2f2a243d71605b2e247ef languageName: node linkType: hard "eslint-plugin-prettier@npm:^5.5.4": version: 5.5.4 resolution: "eslint-plugin-prettier@npm:5.5.4" dependencies: prettier-linter-helpers: "npm:^1.0.0" synckit: "npm:^0.11.7" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0" prettier: ">=3.0.0" peerDependenciesMeta: "@types/eslint": optional: true eslint-config-prettier: optional: true checksum: 10c0/5cc780e0ab002f838ad8057409e86de4ff8281aa2704a50fa8511abff87028060c2e45741bc9cbcbd498712e8d189de8026e70aed9e20e50fe5ba534ee5a8442 languageName: node linkType: hard "eslint-plugin-react-dom@npm:2.3.1": version: 2.3.1 resolution: "eslint-plugin-react-dom@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/core": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" compare-versions: "npm:^6.1.1" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.9.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/5262b99a7d7ed99ccaa373e48e80e80fe6db129b564ddacda2d4c740bdc69a5c45d7364425c9711f5670d6c0a73fb011e9839e8253b6282d412f2769e8605a6c languageName: node linkType: hard "eslint-plugin-react-hooks-extra@npm:2.3.1": version: 2.3.1 resolution: "eslint-plugin-react-hooks-extra@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/core": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/type-utils": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.9.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/8e99c718751e582cc573f638525d13d2af6adc61a5c4eeeaeb4fe4d03e99a7b71f41fbd9183bbc872d8920a5af11adf84af34ff525d3522ff513228941a42b2d languageName: node linkType: hard "eslint-plugin-react-hooks@npm:^7.0.1": version: 7.0.1 resolution: "eslint-plugin-react-hooks@npm:7.0.1" dependencies: "@babel/core": "npm:^7.24.4" "@babel/parser": "npm:^7.24.4" hermes-parser: "npm:^0.25.1" zod: "npm:^3.25.0 || ^4.0.0" zod-validation-error: "npm:^3.5.0 || ^4.0.0" peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 checksum: 10c0/1e711d1a9d1fa9cfc51fa1572500656577201199c70c795c6a27adfc1df39e5c598f69aab6aa91117753d23cc1f11388579a2bed14921cf9a4efe60ae8618496 languageName: node linkType: hard "eslint-plugin-react-naming-convention@npm:2.3.1": version: 2.3.1 resolution: "eslint-plugin-react-naming-convention@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/core": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/type-utils": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.9.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/c727a8ad82338754b83200d23a0ddf4b463674fdac1d1a826dbe0ccc4b3eb53bf61ca90cc3119863c7fca4e0f48604326890ff9ab551fb7010c2d137c58e7a3c languageName: node linkType: hard "eslint-plugin-react-web-api@npm:2.3.1": version: 2.3.1 resolution: "eslint-plugin-react-web-api@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/core": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" string-ts: "npm:^2.2.1" ts-pattern: "npm:^5.9.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/f0a3c3335aedae7f08ac082c9d96e92e37112689770739da44025d5045262cd16d1b420e423df14e117b513c9bbf8dff431fb7583b03e20110e76d18881fdaad languageName: node linkType: hard "eslint-plugin-react-x@npm:2.3.1": version: 2.3.1 resolution: "eslint-plugin-react-x@npm:2.3.1" dependencies: "@eslint-react/ast": "npm:2.3.1" "@eslint-react/core": "npm:2.3.1" "@eslint-react/eff": "npm:2.3.1" "@eslint-react/shared": "npm:2.3.1" "@eslint-react/var": "npm:2.3.1" "@typescript-eslint/scope-manager": "npm:^8.46.2" "@typescript-eslint/type-utils": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" compare-versions: "npm:^6.1.1" is-immutable-type: "npm:^5.0.1" string-ts: "npm:^2.2.1" ts-api-utils: "npm:^2.1.0" ts-pattern: "npm:^5.9.0" peerDependencies: eslint: ^9.38.0 typescript: ^5.9.3 checksum: 10c0/5bf58cf49e153fd52e70a51840a9052855cb64c83f56f2c1c827901e20d61d56a59a548334cc11477aa81fa02ed1bc2287c06764b419e32856c6e673ce116e2e languageName: node linkType: hard "eslint-plugin-react@npm:^7.37.5": version: 7.37.5 resolution: "eslint-plugin-react@npm:7.37.5" dependencies: array-includes: "npm:^3.1.8" array.prototype.findlast: "npm:^1.2.5" array.prototype.flatmap: "npm:^1.3.3" array.prototype.tosorted: "npm:^1.1.4" doctrine: "npm:^2.1.0" es-iterator-helpers: "npm:^1.2.1" estraverse: "npm:^5.3.0" hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" minimatch: "npm:^3.1.2" object.entries: "npm:^1.1.9" object.fromentries: "npm:^2.0.8" object.values: "npm:^1.2.1" prop-types: "npm:^15.8.1" resolve: "npm:^2.0.0-next.5" semver: "npm:^6.3.1" string.prototype.matchall: "npm:^4.0.12" string.prototype.repeat: "npm:^1.0.0" peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 checksum: 10c0/c850bfd556291d4d9234f5ca38db1436924a1013627c8ab1853f77cac73ec19b020e861e6c7b783436a48b6ffcdfba4547598235a37ad4611b6739f65fd8ad57 languageName: node linkType: hard "eslint-plugin-streamlit-custom@workspace:^, eslint-plugin-streamlit-custom@workspace:eslint-plugin-streamlit-custom": version: 0.0.0-use.local resolution: "eslint-plugin-streamlit-custom@workspace:eslint-plugin-streamlit-custom" dependencies: "@typescript-eslint/rule-tester": "npm:^8.46.2" "@typescript-eslint/types": "npm:^8.46.2" "@typescript-eslint/utils": "npm:^8.46.2" "@vitest/coverage-v8": "npm:^3.2.4" eslint: "npm:^9.39.0" prettier: "npm:^3.6.2" typescript: "npm:^5.9.2" typesync: "npm:^0.14.3" vitest: "npm:^3.2.4" peerDependencies: "@typescript-eslint/utils": ^8.46.2 eslint: ^9.0.0 languageName: unknown linkType: soft "eslint-plugin-testing-library@npm:^7.13.3": version: 7.13.3 resolution: "eslint-plugin-testing-library@npm:7.13.3" dependencies: "@typescript-eslint/scope-manager": "npm:^8.15.0" "@typescript-eslint/utils": "npm:^8.15.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 checksum: 10c0/c36847adb1f4d11c9c608eb305c949721714a6a2e838b90958e84747ebe36e62e53e09766fe10fb28e3244d99ce170ee63230b1d44dafc89b9f4494485920301 languageName: node linkType: hard "eslint-scope@npm:^8.4.0": version: 8.4.0 resolution: "eslint-scope@npm:8.4.0" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" checksum: 10c0/407f6c600204d0f3705bd557f81bd0189e69cd7996f408f8971ab5779c0af733d1af2f1412066b40ee1588b085874fc37a2333986c6521669cdbdd36ca5058e0 languageName: node linkType: hard "eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 languageName: node linkType: hard "eslint-visitor-keys@npm:^4.2.0": version: 4.2.0 resolution: "eslint-visitor-keys@npm:4.2.0" checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269 languageName: node linkType: hard "eslint-visitor-keys@npm:^4.2.1": version: 4.2.1 resolution: "eslint-visitor-keys@npm:4.2.1" checksum: 10c0/fcd43999199d6740db26c58dbe0c2594623e31ca307e616ac05153c9272f12f1364f5a0b1917a8e962268fdecc6f3622c1c2908b4fcc2e047a106fe6de69dc43 languageName: node linkType: hard "eslint@npm:^9, eslint@npm:^9.39.0": version: 9.39.1 resolution: "eslint@npm:9.39.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.8.0" "@eslint-community/regexpp": "npm:^4.12.1" "@eslint/config-array": "npm:^0.21.1" "@eslint/config-helpers": "npm:^0.4.2" "@eslint/core": "npm:^0.17.0" "@eslint/eslintrc": "npm:^3.3.1" "@eslint/js": "npm:9.39.1" "@eslint/plugin-kit": "npm:^0.4.1" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" "@humanwhocodes/retry": "npm:^0.4.2" "@types/estree": "npm:^1.0.6" ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.6" debug: "npm:^4.3.2" escape-string-regexp: "npm:^4.0.0" eslint-scope: "npm:^8.4.0" eslint-visitor-keys: "npm:^4.2.1" espree: "npm:^10.4.0" esquery: "npm:^1.5.0" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" file-entry-cache: "npm:^8.0.0" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" ignore: "npm:^5.2.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" lodash.merge: "npm:^4.6.2" minimatch: "npm:^3.1.2" natural-compare: "npm:^1.4.0" optionator: "npm:^0.9.3" peerDependencies: jiti: "*" peerDependenciesMeta: jiti: optional: true bin: eslint: bin/eslint.js checksum: 10c0/59b2480639404ba24578ca480f973683b87b7aac8aa7e349240474a39067804fd13cd8b9cb22fee074170b8c7c563b57bab703ec0f0d3f81ea017e5d2cad299d languageName: node linkType: hard "esniff@npm:^2.0.1": version: 2.0.1 resolution: "esniff@npm:2.0.1" dependencies: d: "npm:^1.0.1" es5-ext: "npm:^0.10.62" event-emitter: "npm:^0.3.5" type: "npm:^2.7.2" checksum: 10c0/7efd8d44ac20e5db8cb0ca77eb65eca60628b2d0f3a1030bcb05e71cc40e6e2935c47b87dba3c733db12925aa5b897f8e0e7a567a2c274206f184da676ea2e65 languageName: node linkType: hard "espree@npm:^10.0.1": version: 10.3.0 resolution: "espree@npm:10.3.0" dependencies: acorn: "npm:^8.14.0" acorn-jsx: "npm:^5.3.2" eslint-visitor-keys: "npm:^4.2.0" checksum: 10c0/272beeaca70d0a1a047d61baff64db04664a33d7cfb5d144f84bc8a5c6194c6c8ebe9cc594093ca53add88baa23e59b01e69e8a0160ab32eac570482e165c462 languageName: node linkType: hard "espree@npm:^10.4.0": version: 10.4.0 resolution: "espree@npm:10.4.0" dependencies: acorn: "npm:^8.15.0" acorn-jsx: "npm:^5.3.2" eslint-visitor-keys: "npm:^4.2.1" checksum: 10c0/c63fe06131c26c8157b4083313cb02a9a54720a08e21543300e55288c40e06c3fc284bdecf108d3a1372c5934a0a88644c98714f38b6ae8ed272b40d9ea08d6b languageName: node linkType: hard "espree@npm:^9.0.0": version: 9.6.1 resolution: "espree@npm:9.6.1" dependencies: acorn: "npm:^8.9.0" acorn-jsx: "npm:^5.3.2" eslint-visitor-keys: "npm:^3.4.1" checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 languageName: node linkType: hard "esprima@npm:^4.0.1": version: 4.0.1 resolution: "esprima@npm:4.0.1" bin: esparse: ./bin/esparse.js esvalidate: ./bin/esvalidate.js checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 languageName: node linkType: hard "esquery@npm:^1.5.0": version: 1.6.0 resolution: "esquery@npm:1.6.0" dependencies: estraverse: "npm:^5.1.0" checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 languageName: node linkType: hard "esrecurse@npm:^4.3.0": version: 4.3.0 resolution: "esrecurse@npm:4.3.0" dependencies: estraverse: "npm:^5.2.0" checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 languageName: node linkType: hard "esri-loader@npm:^3.7.0": version: 3.7.0 resolution: "esri-loader@npm:3.7.0" checksum: 10c0/56c8febebb8698cb9884b9dd5d6c5800da0f4f3b66a10c0959892564621fbf976d73a3e65c5e940f86f7498897d50dff7354e17862041e9698a92a15efc60f8b languageName: node linkType: hard "estraverse@npm:^4.2.0": version: 4.3.0 resolution: "estraverse@npm:4.3.0" checksum: 10c0/9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d languageName: node linkType: hard "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": version: 5.3.0 resolution: "estraverse@npm:5.3.0" checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 languageName: node linkType: hard "estree-util-is-identifier-name@npm:^3.0.0": version: 3.0.0 resolution: "estree-util-is-identifier-name@npm:3.0.0" checksum: 10c0/d1881c6ed14bd588ebd508fc90bf2a541811dbb9ca04dec2f39d27dcaa635f85b5ed9bbbe7fc6fb1ddfca68744a5f7c70456b4b7108b6c4c52780631cc787c5b languageName: node linkType: hard "estree-walker@npm:^2.0.2": version: 2.0.2 resolution: "estree-walker@npm:2.0.2" checksum: 10c0/53a6c54e2019b8c914dc395890153ffdc2322781acf4bd7d1a32d7aedc1710807bdcd866ac133903d5629ec601fbb50abe8c2e5553c7f5a0afdd9b6af6c945af languageName: node linkType: hard "estree-walker@npm:^3.0.3": version: 3.0.3 resolution: "estree-walker@npm:3.0.3" dependencies: "@types/estree": "npm:^1.0.0" checksum: 10c0/c12e3c2b2642d2bcae7d5aa495c60fa2f299160946535763969a1c83fc74518ffa9c2cd3a8b69ac56aea547df6a8aac25f729a342992ef0bbac5f1c73e78995d languageName: node linkType: hard "esutils@npm:^2.0.2": version: 2.0.3 resolution: "esutils@npm:2.0.3" checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 languageName: node linkType: hard "event-emitter@npm:^0.3.5": version: 0.3.5 resolution: "event-emitter@npm:0.3.5" dependencies: d: "npm:1" es5-ext: "npm:~0.10.14" checksum: 10c0/75082fa8ffb3929766d0f0a063bfd6046bd2a80bea2666ebaa0cfd6f4a9116be6647c15667bea77222afc12f5b4071b68d393cf39fdaa0e8e81eda006160aff0 languageName: node linkType: hard "events@npm:^3.2.0": version: 3.3.0 resolution: "events@npm:3.3.0" checksum: 10c0/d6b6f2adbccbcda74ddbab52ed07db727ef52e31a61ed26db9feb7dc62af7fc8e060defa65e5f8af9449b86b52cc1a1f6a79f2eafcf4e62add2b7a1fa4a432f6 languageName: node linkType: hard "expect-type@npm:^1.2.1": version: 1.2.1 resolution: "expect-type@npm:1.2.1" checksum: 10c0/b775c9adab3c190dd0d398c722531726cdd6022849b4adba19dceab58dda7e000a7c6c872408cd73d665baa20d381eca36af4f7b393a4ba60dd10232d1fb8898 languageName: node linkType: hard "exponential-backoff@npm:^3.1.1": version: 3.1.1 resolution: "exponential-backoff@npm:3.1.1" checksum: 10c0/160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 languageName: node linkType: hard "ext@npm:^1.7.0": version: 1.7.0 resolution: "ext@npm:1.7.0" dependencies: type: "npm:^2.7.2" checksum: 10c0/a8e5f34e12214e9eee3a4af3b5c9d05ba048f28996450975b369fc86e5d0ef13b6df0615f892f5396a9c65d616213c25ec5b0ad17ef42eac4a500512a19da6c7 languageName: node linkType: hard "extend-shallow@npm:^2.0.1": version: 2.0.1 resolution: "extend-shallow@npm:2.0.1" dependencies: is-extendable: "npm:^0.1.0" checksum: 10c0/ee1cb0a18c9faddb42d791b2d64867bd6cfd0f3affb711782eb6e894dd193e2934a7f529426aac7c8ddb31ac5d38000a00aa2caf08aa3dfc3e1c8ff6ba340bd9 languageName: node linkType: hard "extend-shallow@npm:^3.0.0": version: 3.0.2 resolution: "extend-shallow@npm:3.0.2" dependencies: assign-symbols: "npm:^1.0.0" is-extendable: "npm:^1.0.1" checksum: 10c0/f39581b8f98e3ad94995e33214fff725b0297cf09f2725b6f624551cfb71e0764accfd0af80becc0182af5014d2a57b31b85ec999f9eb8a6c45af81752feac9a languageName: node linkType: hard "extend@npm:^3.0.0": version: 3.0.2 resolution: "extend@npm:3.0.2" checksum: 10c0/73bf6e27406e80aa3e85b0d1c4fd987261e628064e170ca781125c0b635a3dabad5e05adbf07595ea0cf1e6c5396cacb214af933da7cbaf24fe75ff14818e8f9 languageName: node linkType: hard "extract-zip@npm:^2.0.1": version: 2.0.1 resolution: "extract-zip@npm:2.0.1" dependencies: "@types/yauzl": "npm:^2.9.1" debug: "npm:^4.1.1" get-stream: "npm:^5.1.0" yauzl: "npm:^2.10.0" dependenciesMeta: "@types/yauzl": optional: true bin: extract-zip: cli.js checksum: 10c0/9afbd46854aa15a857ae0341a63a92743a7b89c8779102c3b4ffc207516b2019337353962309f85c66ee3d9092202a83cdc26dbf449a11981272038443974aee languageName: node linkType: hard "falafel@npm:^2.1.0": version: 2.2.5 resolution: "falafel@npm:2.2.5" dependencies: acorn: "npm:^7.1.1" isarray: "npm:^2.0.1" checksum: 10c0/8c65a82d6b1d84928373bd1f4ba7452bce2936b3761558d770163b637930db70a9f79f296caaf6b3c63262cb0c9501a727061ee75224fb7a5a9334dadd1ff787 languageName: node linkType: hard "fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 languageName: node linkType: hard "fast-diff@npm:^1.1.2": version: 1.3.0 resolution: "fast-diff@npm:1.3.0" checksum: 10c0/5c19af237edb5d5effda008c891a18a585f74bf12953be57923f17a3a4d0979565fc64dbc73b9e20926b9d895f5b690c618cbb969af0cf022e3222471220ad29 languageName: node linkType: hard "fast-fifo@npm:^1.2.0, fast-fifo@npm:^1.3.2": version: 1.3.2 resolution: "fast-fifo@npm:1.3.2" checksum: 10c0/d53f6f786875e8b0529f784b59b4b05d4b5c31c651710496440006a398389a579c8dbcd2081311478b5bf77f4b0b21de69109c5a4eabea9d8e8783d1eb864e4c languageName: node linkType: hard "fast-glob@npm:^3.2.9": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: "@nodelib/fs.stat": "npm:^2.0.2" "@nodelib/fs.walk": "npm:^1.2.3" glob-parent: "npm:^5.1.2" merge2: "npm:^1.3.0" micromatch: "npm:^4.0.4" checksum: 10c0/42baad7b9cd40b63e42039132bde27ca2cb3a4950d0a0f9abe4639ea1aa9d3e3b40f98b1fe31cbc0cc17b664c9ea7447d911a152fa34ec5b72977b125a6fc845 languageName: node linkType: hard "fast-glob@npm:^3.3.2, fast-glob@npm:^3.3.3": version: 3.3.3 resolution: "fast-glob@npm:3.3.3" dependencies: "@nodelib/fs.stat": "npm:^2.0.2" "@nodelib/fs.walk": "npm:^1.2.3" glob-parent: "npm:^5.1.2" merge2: "npm:^1.3.0" micromatch: "npm:^4.0.8" checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe languageName: node linkType: hard "fast-isnumeric@npm:^1.1.4": version: 1.1.4 resolution: "fast-isnumeric@npm:1.1.4" dependencies: is-string-blank: "npm:^1.0.1" checksum: 10c0/595da81fcabe7bebd62429a4fcc5b150aa576a744209e769c9c8cd2a1f0d2db546ab71df9de6f50a41768fa2daf35171b8270a0c3aa25235022a10ebda7dcec8 languageName: node linkType: hard "fast-json-patch@npm:^3.1.1": version: 3.1.1 resolution: "fast-json-patch@npm:3.1.1" checksum: 10c0/8a0438b4818bb53153275fe5b38033610e8c9d9eb11869e6a7dc05eb92fa70f3caa57015e344eb3ae1e71c7a75ad4cc6bc2dc9e0ff281d6ed8ecd44505210ca8 languageName: node linkType: hard "fast-json-stable-stringify@npm:^2.0.0": version: 2.1.0 resolution: "fast-json-stable-stringify@npm:2.1.0" checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b languageName: node linkType: hard "fast-levenshtein@npm:^2.0.6, fast-levenshtein@npm:~2.0.6": version: 2.0.6 resolution: "fast-levenshtein@npm:2.0.6" checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 languageName: node linkType: hard "fast-uri@npm:^3.0.1": version: 3.0.3 resolution: "fast-uri@npm:3.0.3" checksum: 10c0/4b2c5ce681a062425eae4f15cdc8fc151fd310b2f69b1f96680677820a8b49c3cd6e80661a406e19d50f0c40a3f8bffdd458791baf66f4a879d80be28e10a320 languageName: node linkType: hard "fast-xml-parser@npm:^4.2.5": version: 4.5.0 resolution: "fast-xml-parser@npm:4.5.0" dependencies: strnum: "npm:^1.0.5" bin: fxparser: src/cli/cli.js checksum: 10c0/71d206c9e137f5c26af88d27dde0108068a5d074401901d643c500c36e95dfd828333a98bda020846c41f5b9b364e2b0e9be5b19b0bdcab5cf31559c07b80a95 languageName: node linkType: hard "fastq@npm:^1.6.0": version: 1.17.1 resolution: "fastq@npm:1.17.1" dependencies: reusify: "npm:^1.0.4" checksum: 10c0/1095f16cea45fb3beff558bb3afa74ca7a9250f5a670b65db7ed585f92b4b48381445cd328b3d87323da81e43232b5d5978a8201bde84e0cd514310f1ea6da34 languageName: node linkType: hard "fault@npm:^1.0.0": version: 1.0.4 resolution: "fault@npm:1.0.4" dependencies: format: "npm:^0.2.0" checksum: 10c0/c86c11500c1b676787296f31ade8473adcc6784f118f07c1a9429730b6288d0412f96e069ce010aa57e4f65a9cccb5abee8868bbe3c5f10de63b20482c9baebd languageName: node linkType: hard "fbemitter@npm:^3.0.0": version: 3.0.0 resolution: "fbemitter@npm:3.0.0" dependencies: fbjs: "npm:^3.0.0" checksum: 10c0/f130dd8e15dc3fc6709a26586b7a589cd994e1d1024b624f2cc8ef1b12401536a94bb30038e68150a24f9ba18863e9a3fe87941ade2c87667bfbd17f4848d5c7 languageName: node linkType: hard "fbjs-css-vars@npm:^1.0.0": version: 1.0.2 resolution: "fbjs-css-vars@npm:1.0.2" checksum: 10c0/dfb64116b125a64abecca9e31477b5edb9a2332c5ffe74326fe36e0a72eef7fc8a49b86adf36c2c293078d79f4524f35e80f5e62546395f53fb7c9e69821f54f languageName: node linkType: hard "fbjs@npm:^3.0.0, fbjs@npm:^3.0.1": version: 3.0.5 resolution: "fbjs@npm:3.0.5" dependencies: cross-fetch: "npm:^3.1.5" fbjs-css-vars: "npm:^1.0.0" loose-envify: "npm:^1.0.0" object-assign: "npm:^4.1.0" promise: "npm:^7.1.1" setimmediate: "npm:^1.0.5" ua-parser-js: "npm:^1.0.35" checksum: 10c0/66d0a2fc9a774f9066e35ac2ac4bf1245931d27f3ac287c7d47e6aa1fc152b243c2109743eb8f65341e025621fb51a12038fadb9fd8fda2e3ddae04ebab06f91 languageName: node linkType: hard "fd-slicer@npm:~1.1.0": version: 1.1.0 resolution: "fd-slicer@npm:1.1.0" dependencies: pend: "npm:~1.2.0" checksum: 10c0/304dd70270298e3ffe3bcc05e6f7ade2511acc278bc52d025f8918b48b6aa3b77f10361bddfadfe2a28163f7af7adbdce96f4d22c31b2f648ba2901f0c5fc20e languageName: node linkType: hard "fdir@npm:^6.4.3": version: 6.4.3 resolution: "fdir@npm:6.4.3" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true checksum: 10c0/d13c10120e9625adf21d8d80481586200759928c19405a816b77dd28eaeb80e7c59c5def3e2941508045eb06d34eb47fad865ccc8bf98e6ab988bb0ed160fb6f languageName: node linkType: hard "fdir@npm:^6.4.4": version: 6.4.4 resolution: "fdir@npm:6.4.4" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true checksum: 10c0/6ccc33be16945ee7bc841e1b4178c0b4cf18d3804894cb482aa514651c962a162f96da7ffc6ebfaf0df311689fb70091b04dd6caffe28d56b9ebdc0e7ccadfdd languageName: node linkType: hard "fdir@npm:^6.5.0": version: 6.5.0 resolution: "fdir@npm:6.5.0" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true checksum: 10c0/e345083c4306b3aed6cb8ec551e26c36bab5c511e99ea4576a16750ddc8d3240e63826cc624f5ae17ad4dc82e68a253213b60d556c11bfad064b7607847ed07f languageName: node linkType: hard "fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4, fetch-blob@npm:^3.2.0": version: 3.2.0 resolution: "fetch-blob@npm:3.2.0" dependencies: node-domexception: "npm:^1.0.0" web-streams-polyfill: "npm:^3.0.3" checksum: 10c0/60054bf47bfa10fb0ba6cb7742acec2f37c1f56344f79a70bb8b1c48d77675927c720ff3191fa546410a0442c998d27ab05e9144c32d530d8a52fbe68f843b69 languageName: node linkType: hard "fflate@npm:0.7.4": version: 0.7.4 resolution: "fflate@npm:0.7.4" checksum: 10c0/5e749eb3a6ed61a0f6c55756abf9f4258f06f60505db689e22d18503dd252ca5af656d32668e4b7b20714adf8b313febf695d23863a8352f23e325baee0f672d languageName: node linkType: hard "file-entry-cache@npm:^8.0.0": version: 8.0.0 resolution: "file-entry-cache@npm:8.0.0" dependencies: flat-cache: "npm:^4.0.0" checksum: 10c0/9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 languageName: node linkType: hard "file-selector@npm:^0.1.8": version: 0.1.19 resolution: "file-selector@npm:0.1.19" dependencies: tslib: "npm:^2.0.1" checksum: 10c0/6ed76fd91b77f05c0f3d089aa67d198e4c6096b5752796f1875cd9302664acaccfa35bf2fb6f4c6bcf5527775d9ef80f6d2dc6197d6a5eee91ef26c2160853c1 languageName: node linkType: hard "file-selector@npm:^2.1.0": version: 2.1.2 resolution: "file-selector@npm:2.1.2" dependencies: tslib: "npm:^2.7.0" checksum: 10c0/fe827e0e95410aacfcc3eabc38c29cc36055257f03c1c06b631a2b5af9730c142ad2c52f5d64724d02231709617bda984701f52bd1f4b7aca50fb6585a27c1d2 languageName: node linkType: hard "filelist@npm:^1.0.4": version: 1.0.4 resolution: "filelist@npm:1.0.4" dependencies: minimatch: "npm:^5.0.1" checksum: 10c0/426b1de3944a3d153b053f1c0ebfd02dccd0308a4f9e832ad220707a6d1f1b3c9784d6cadf6b2f68f09a57565f63ebc7bcdc913ccf8012d834f472c46e596f41 languageName: node linkType: hard "fill-range@npm:^7.1.1": version: 7.1.1 resolution: "fill-range@npm:7.1.1" dependencies: to-regex-range: "npm:^5.0.1" checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018 languageName: node linkType: hard "filter-obj@npm:^5.1.0": version: 5.1.0 resolution: "filter-obj@npm:5.1.0" checksum: 10c0/716e8ad2bc352e206556b3e5695b3cdff8aab80c53ea4b00c96315bbf467b987df3640575100aef8b84e812cf5ea4251db4cd672bbe33b1e78afea88400c67dd languageName: node linkType: hard "find-replace@npm:^5.0.2": version: 5.0.2 resolution: "find-replace@npm:5.0.2" peerDependencies: "@75lb/nature": "*" peerDependenciesMeta: "@75lb/nature": optional: true checksum: 10c0/25db7167e8767b0683251a985af82e29b0ac26003fe2cd6ddd86e4f2c83fc10d97a81c6f6686034d8c2b9ee88bc53547bf86cc103479a7323342da5ace9f6504 languageName: node linkType: hard "find-root@npm:^1.1.0": version: 1.1.0 resolution: "find-root@npm:1.1.0" checksum: 10c0/1abc7f3bf2f8d78ff26d9e00ce9d0f7b32e5ff6d1da2857bcdf4746134c422282b091c672cde0572cac3840713487e0a7a636af9aa1b74cb11894b447a521efa languageName: node linkType: hard "find-up@npm:^5.0.0": version: 5.0.0 resolution: "find-up@npm:5.0.0" dependencies: locate-path: "npm:^6.0.0" path-exists: "npm:^4.0.0" checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a languageName: node linkType: hard "flat-cache@npm:^4.0.0": version: 4.0.1 resolution: "flat-cache@npm:4.0.1" dependencies: flatted: "npm:^3.2.9" keyv: "npm:^4.5.4" checksum: 10c0/2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc languageName: node linkType: hard "flatbuffers@npm:^25.1.24": version: 25.2.10 resolution: "flatbuffers@npm:25.2.10" checksum: 10c0/2ea1ab805d4ec35fb61e7d3b69c90886e4a35683cd0460da667c234400b2fa2e3e79992a73848cf18d5995c8e7d9eaef0e54f0d0aec5192b17b0014113cf90b9 languageName: node linkType: hard "flatted@npm:^3.2.9": version: 3.3.1 resolution: "flatted@npm:3.3.1" checksum: 10c0/324166b125ee07d4ca9bcf3a5f98d915d5db4f39d711fba640a3178b959919aae1f7cfd8aabcfef5826ed8aa8a2aa14cc85b2d7d18ff638ddf4ae3df39573eaf languageName: node linkType: hard "flatten-vertex-data@npm:^1.0.2": version: 1.0.2 resolution: "flatten-vertex-data@npm:1.0.2" dependencies: dtype: "npm:^2.0.0" checksum: 10c0/ef4e03483da4cc839f9f30f9ad419143ace7b9867fbfc55d87c62dfbd613ce99388628995f14580230292d38147c48e1b41cd4d574b2cd86ad63c6ca18e955bf languageName: node linkType: hard "flux@npm:^4.0.1": version: 4.0.4 resolution: "flux@npm:4.0.4" dependencies: fbemitter: "npm:^3.0.0" fbjs: "npm:^3.0.1" peerDependencies: react: ^15.0.2 || ^16.0.0 || ^17.0.0 checksum: 10c0/948bc01b97ff21babc8bfe5c40543d643ca126b71edd447a9ac051b05d20fd549a6bcc4afe043bcde56201782e688a5eaeda1bd8e3e58915641abdd5b3ea21e0 languageName: node linkType: hard "focus-lock@npm:^1.3.5": version: 1.3.5 resolution: "focus-lock@npm:1.3.5" dependencies: tslib: "npm:^2.0.3" checksum: 10c0/240fe013c2945200d3391856789d381bf3e09f488342a7965e00d0933de93ac2e8b0ccfa7da6353c11a30e369035f3b7e54cac9b0ebaf6825252a9ffc6445978 languageName: node linkType: hard "follow-redirects@npm:^1.15.6": version: 1.15.9 resolution: "follow-redirects@npm:1.15.9" peerDependenciesMeta: debug: optional: true checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f languageName: node linkType: hard "font-atlas@npm:^2.1.0": version: 2.1.0 resolution: "font-atlas@npm:2.1.0" dependencies: css-font: "npm:^1.0.0" checksum: 10c0/b012db553a168de977fbdebd3bd36f29fc7686d2382198ec84c81e45f55356002736f05045ed35acebc6c1277688f4322f7c979e9a58a3aecf3cfb681eac5665 languageName: node linkType: hard "font-measure@npm:^1.2.2": version: 1.2.2 resolution: "font-measure@npm:1.2.2" dependencies: css-font: "npm:^1.2.0" checksum: 10c0/97c4590b91078cce928a6ba4b8762b5a3fb6eedf4ecf59aeccd93c0031f3a952360221622802ee41e737d720c8f385520d4467c650a7d682924085bc782af8d5 languageName: node linkType: hard "for-each@npm:^0.3.3": version: 0.3.3 resolution: "for-each@npm:0.3.3" dependencies: is-callable: "npm:^1.1.3" checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa languageName: node linkType: hard "for-each@npm:^0.3.5": version: 0.3.5 resolution: "for-each@npm:0.3.5" dependencies: is-callable: "npm:^1.2.7" checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee languageName: node linkType: hard "foreground-child@npm:^3.1.0": version: 3.3.0 resolution: "foreground-child@npm:3.3.0" dependencies: cross-spawn: "npm:^7.0.0" signal-exit: "npm:^4.0.1" checksum: 10c0/028f1d41000553fcfa6c4bb5c372963bf3d9bf0b1f25a87d1a6253014343fb69dfb1b42d9625d7cf44c8ba429940f3d0ff718b62105d4d4a4f6ef8ca0a53faa2 languageName: node linkType: hard "form-data@npm:^4.0.0, form-data@npm:^4.0.4": version: 4.0.4 resolution: "form-data@npm:4.0.4" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" es-set-tostringtag: "npm:^2.1.0" hasown: "npm:^2.0.2" mime-types: "npm:^2.1.12" checksum: 10c0/373525a9a034b9d57073e55eab79e501a714ffac02e7a9b01be1c820780652b16e4101819785e1e18f8d98f0aee866cc654d660a435c378e16a72f2e7cac9695 languageName: node linkType: hard "format@npm:^0.2.0": version: 0.2.2 resolution: "format@npm:0.2.2" checksum: 10c0/6032ba747541a43abf3e37b402b2f72ee08ebcb58bf84d816443dd228959837f1cddf1e8775b29fa27ff133f4bd146d041bfca5f9cf27f048edf3d493cf8fee6 languageName: node linkType: hard "formdata-polyfill@npm:^4.0.10": version: 4.0.10 resolution: "formdata-polyfill@npm:4.0.10" dependencies: fetch-blob: "npm:^3.1.2" checksum: 10c0/5392ec484f9ce0d5e0d52fb5a78e7486637d516179b0eb84d81389d7eccf9ca2f663079da56f761355c0a65792810e3b345dc24db9a8bbbcf24ef3c8c88570c6 languageName: node linkType: hard "forwarded-parse@npm:2.1.2": version: 2.1.2 resolution: "forwarded-parse@npm:2.1.2" checksum: 10c0/0c6b4c631775f272b4475e935108635495e8a5b261d1b4a5caef31c47c5a0b04134adc564e655aadfef366a02647fa3ae90a1d3ac19929f3ade47f9bed53036a languageName: node linkType: hard "from2@npm:^2.3.0": version: 2.3.0 resolution: "from2@npm:2.3.0" dependencies: inherits: "npm:^2.0.1" readable-stream: "npm:^2.0.0" checksum: 10c0/f87f7a2e4513244d551454a7f8324ef1f7837864a8701c536417286ec19ff4915606b1dfa8909a21b7591ebd8440ffde3642f7c303690b9a4d7c832d62248aa1 languageName: node linkType: hard "fs-extra@npm:^11.2.0": version: 11.2.0 resolution: "fs-extra@npm:11.2.0" dependencies: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" checksum: 10c0/d77a9a9efe60532d2e790e938c81a02c1b24904ef7a3efb3990b835514465ba720e99a6ea56fd5e2db53b4695319b644d76d5a0e9988a2beef80aa7b1da63398 languageName: node linkType: hard "fs-extra@npm:~11.3.0": version: 11.3.0 resolution: "fs-extra@npm:11.3.0" dependencies: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" checksum: 10c0/5f95e996186ff45463059feb115a22fb048bdaf7e487ecee8a8646c78ed8fdca63630e3077d4c16ce677051f5e60d3355a06f3cd61f3ca43f48cc58822a44d0a languageName: node linkType: hard "fs-minipass@npm:^3.0.0": version: 3.0.3 resolution: "fs-minipass@npm:3.0.3" dependencies: minipass: "npm:^7.0.3" checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 languageName: node linkType: hard "fs.realpath@npm:^1.0.0": version: 1.0.0 resolution: "fs.realpath@npm:1.0.0" checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 languageName: node linkType: hard "fsevents@npm:~2.3.2, fsevents@npm:~2.3.3": version: 2.3.3 resolution: "fsevents@npm:2.3.3" dependencies: node-gyp: "npm:latest" checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 conditions: os=darwin languageName: node linkType: hard "fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin<compat/fsevents>": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin<compat/fsevents>::version=2.3.3&hash=df0bf1" dependencies: node-gyp: "npm:latest" conditions: os=darwin languageName: node linkType: hard "function-bind@npm:^1.1.2": version: 1.1.2 resolution: "function-bind@npm:1.1.2" checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 languageName: node linkType: hard "function.prototype.name@npm:^1.1.6": version: 1.1.6 resolution: "function.prototype.name@npm:1.1.6" dependencies: call-bind: "npm:^1.0.2" define-properties: "npm:^1.2.0" es-abstract: "npm:^1.22.1" functions-have-names: "npm:^1.2.3" checksum: 10c0/9eae11294905b62cb16874adb4fc687927cda3162285e0ad9612e6a1d04934005d46907362ea9cdb7428edce05a2f2c3dabc3b2d21e9fd343e9bb278230ad94b languageName: node linkType: hard "function.prototype.name@npm:^1.1.8": version: 1.1.8 resolution: "function.prototype.name@npm:1.1.8" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" define-properties: "npm:^1.2.1" functions-have-names: "npm:^1.2.3" hasown: "npm:^2.0.2" is-callable: "npm:^1.2.7" checksum: 10c0/e920a2ab52663005f3cbe7ee3373e3c71c1fb5558b0b0548648cdf3e51961085032458e26c71ff1a8c8c20e7ee7caeb03d43a5d1fa8610c459333323a2e71253 languageName: node linkType: hard "functions-have-names@npm:^1.2.3": version: 1.2.3 resolution: "functions-have-names@npm:1.2.3" checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca languageName: node linkType: hard "gensync@npm:^1.0.0-beta.2": version: 1.0.0-beta.2 resolution: "gensync@npm:1.0.0-beta.2" checksum: 10c0/782aba6cba65b1bb5af3b095d96249d20edbe8df32dbf4696fd49be2583faf676173bf4809386588828e4dd76a3354fcbeb577bab1c833ccd9fc4577f26103f8 languageName: node linkType: hard "geojson-vt@npm:^3.2.1": version: 3.2.1 resolution: "geojson-vt@npm:3.2.1" checksum: 10c0/db2fc1a452067ee8436fa86e5a138f6ebd3d64893e0af097bc1cc960ec63d67c0ce77444711e9583036192d6bf9ce754bf9b56a76789684fc0fea4d52321fffc languageName: node linkType: hard "geojson-vt@npm:^4.0.2": version: 4.0.2 resolution: "geojson-vt@npm:4.0.2" checksum: 10c0/f2ca14d868e46f6262f5d3862f8e38a2418ecf9bd7cd6938a67bf87f1e2f8fbf65345d95996711b07cdf8f05ef512be0e2c20f0a8179c6393c2fd41badcb0532 languageName: node linkType: hard "get-caller-file@npm:^2.0.5": version: 2.0.5 resolution: "get-caller-file@npm:2.0.5" checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde languageName: node linkType: hard "get-canvas-context@npm:^1.0.1": version: 1.0.2 resolution: "get-canvas-context@npm:1.0.2" checksum: 10c0/bfb1eefb3ecce1ffcc7b5bffd729c5b7c9873e8cd52ac1f9c3592a11d08e4ffae296a2dfb69039df91a687233b4e989729e888754ab7a1d10d14b269caea463b languageName: node linkType: hard "get-east-asian-width@npm:^1.0.0": version: 1.3.0 resolution: "get-east-asian-width@npm:1.3.0" checksum: 10c0/1a049ba697e0f9a4d5514c4623781c5246982bdb61082da6b5ae6c33d838e52ce6726407df285cdbb27ec1908b333cf2820989bd3e986e37bb20979437fdf34b languageName: node linkType: hard "get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": version: 1.2.4 resolution: "get-intrinsic@npm:1.2.4" dependencies: es-errors: "npm:^1.3.0" function-bind: "npm:^1.1.2" has-proto: "npm:^1.0.1" has-symbols: "npm:^1.0.3" hasown: "npm:^2.0.0" checksum: 10c0/0a9b82c16696ed6da5e39b1267104475c47e3a9bdbe8b509dfe1710946e38a87be70d759f4bb3cda042d76a41ef47fe769660f3b7c0d1f68750299344ffb15b7 languageName: node linkType: hard "get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.2.7, get-intrinsic@npm:^1.3.0": version: 1.3.0 resolution: "get-intrinsic@npm:1.3.0" dependencies: call-bind-apply-helpers: "npm:^1.0.2" es-define-property: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.1.1" function-bind: "npm:^1.1.2" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-symbols: "npm:^1.1.0" hasown: "npm:^2.0.2" math-intrinsics: "npm:^1.1.0" checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a languageName: node linkType: hard "get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": version: 1.0.1 resolution: "get-proto@npm:1.0.1" dependencies: dunder-proto: "npm:^1.0.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/9224acb44603c5526955e83510b9da41baf6ae73f7398875fba50edc5e944223a89c4a72b070fcd78beb5f7bdda58ecb6294adc28f7acfc0da05f76a2399643c languageName: node linkType: hard "get-stream@npm:^5.1.0": version: 5.2.0 resolution: "get-stream@npm:5.2.0" dependencies: pump: "npm:^3.0.0" checksum: 10c0/43797ffd815fbb26685bf188c8cfebecb8af87b3925091dd7b9a9c915993293d78e3c9e1bce125928ff92f2d0796f3889b92b5ec6d58d1041b574682132e0a80 languageName: node linkType: hard "get-stream@npm:^6.0.1": version: 6.0.1 resolution: "get-stream@npm:6.0.1" checksum: 10c0/49825d57d3fd6964228e6200a58169464b8e8970489b3acdc24906c782fb7f01f9f56f8e6653c4a50713771d6658f7cfe051e5eb8c12e334138c9c918b296341 languageName: node linkType: hard "get-symbol-description@npm:^1.0.2": version: 1.0.2 resolution: "get-symbol-description@npm:1.0.2" dependencies: call-bind: "npm:^1.0.5" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.4" checksum: 10c0/867be6d63f5e0eb026cb3b0ef695ec9ecf9310febb041072d2e142f260bd91ced9eeb426b3af98791d1064e324e653424afa6fd1af17dee373bea48ae03162bc languageName: node linkType: hard "get-symbol-description@npm:^1.1.0": version: 1.1.0 resolution: "get-symbol-description@npm:1.1.0" dependencies: call-bound: "npm:^1.0.3" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.6" checksum: 10c0/d6a7d6afca375779a4b307738c9e80dbf7afc0bdbe5948768d54ab9653c865523d8920e670991a925936eb524b7cb6a6361d199a760b21d0ca7620194455aa4b languageName: node linkType: hard "get-tsconfig@npm:^4.10.0": version: 4.10.0 resolution: "get-tsconfig@npm:4.10.0" dependencies: resolve-pkg-maps: "npm:^1.0.0" checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86 languageName: node linkType: hard "get-tsconfig@npm:^4.10.1": version: 4.10.1 resolution: "get-tsconfig@npm:4.10.1" dependencies: resolve-pkg-maps: "npm:^1.0.0" checksum: 10c0/7f8e3dabc6a49b747920a800fb88e1952fef871cdf51b79e98db48275a5de6cdaf499c55ee67df5fa6fe7ce65f0063e26de0f2e53049b408c585aa74d39ffa21 languageName: node linkType: hard "get-uri@npm:^6.0.1": version: 6.0.3 resolution: "get-uri@npm:6.0.3" dependencies: basic-ftp: "npm:^5.0.2" data-uri-to-buffer: "npm:^6.0.2" debug: "npm:^4.3.4" fs-extra: "npm:^11.2.0" checksum: 10c0/8d801c462cd5b9c171d4d9e5f17afce3d9ebfbbfb006a88e3e768ce0071a8e2e59ee1ce822915fc43b9d6b83fde7b8d1c9648330ae89778fa41ad774df8ee0ac languageName: node linkType: hard "get-value@npm:^2.0.2, get-value@npm:^2.0.6": version: 2.0.6 resolution: "get-value@npm:2.0.6" checksum: 10c0/f069c132791b357c8fc4adfe9e2929b0a2c6e95f98ca7bc6fcbc27f8a302e552f86b4ae61ec56d9e9ac2544b93b6a39743d479866a37b43fcc104088ba74f0d9 languageName: node linkType: hard "gl-mat4@npm:^1.2.0": version: 1.2.0 resolution: "gl-mat4@npm:1.2.0" checksum: 10c0/0cbff006c65bf2b72fae325a10f9940ebf8d1f4c92337efb10c0322a61e03a1921ec5a8f330738fe06fe66f8757e12df0c914fd05155436b9ab5263ccc8b0f66 languageName: node linkType: hard "gl-matrix@npm:^3.0.0, gl-matrix@npm:^3.2.1, gl-matrix@npm:^3.4.0, gl-matrix@npm:^3.4.3": version: 3.4.3 resolution: "gl-matrix@npm:3.4.3" checksum: 10c0/c8ee6e2ce2d089b4ba4ae13ec9d4cb99bf2abe5f68f0cb08d94bbd8bafbec13aacc7230b86539ce5ca01b79226ea8c3194f971f5ca0c81838bc5e4e619dc398e languageName: node linkType: hard "gl-text@npm:^1.4.0": version: 1.4.0 resolution: "gl-text@npm:1.4.0" dependencies: bit-twiddle: "npm:^1.0.2" color-normalize: "npm:^1.5.0" css-font: "npm:^1.2.0" detect-kerning: "npm:^2.1.2" es6-weak-map: "npm:^2.0.3" flatten-vertex-data: "npm:^1.0.2" font-atlas: "npm:^2.1.0" font-measure: "npm:^1.2.2" gl-util: "npm:^3.1.2" is-plain-obj: "npm:^1.1.0" object-assign: "npm:^4.1.1" parse-rect: "npm:^1.2.0" parse-unit: "npm:^1.0.1" pick-by-alias: "npm:^1.2.0" regl: "npm:^2.0.0" to-px: "npm:^1.0.1" typedarray-pool: "npm:^1.1.0" checksum: 10c0/bb694f69bd6b8c6186482990c12a3d07c54fc92d7c13623ca3cffd3c564045336e7db00d638623517dbd1678cf25986515f6db8f8a984b119867c60bfab6069d languageName: node linkType: hard "gl-util@npm:^3.1.2": version: 3.1.3 resolution: "gl-util@npm:3.1.3" dependencies: is-browser: "npm:^2.0.1" is-firefox: "npm:^1.0.3" is-plain-obj: "npm:^1.1.0" number-is-integer: "npm:^1.0.1" object-assign: "npm:^4.1.0" pick-by-alias: "npm:^1.2.0" weak-map: "npm:^1.0.5" checksum: 10c0/4cff7edbf447d5d6e2260769a46dd9037f631fb6413d0de609d6efe7519b683d3f022f03ee5031079bdf11f276bd2c17c130baffe69a73162fe5f44c88a19d77 languageName: node linkType: hard "glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": version: 5.1.2 resolution: "glob-parent@npm:5.1.2" dependencies: is-glob: "npm:^4.0.1" checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee languageName: node linkType: hard "glob-parent@npm:^6.0.2": version: 6.0.2 resolution: "glob-parent@npm:6.0.2" dependencies: is-glob: "npm:^4.0.3" checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 languageName: node linkType: hard "glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7, glob@npm:^10.4.1": version: 10.4.5 resolution: "glob@npm:10.4.5" dependencies: foreground-child: "npm:^3.1.0" jackspeak: "npm:^3.1.2" minimatch: "npm:^9.0.4" minipass: "npm:^7.1.2" package-json-from-dist: "npm:^1.0.0" path-scurry: "npm:^1.11.1" bin: glob: dist/esm/bin.mjs checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e languageName: node linkType: hard "glob@npm:^7.1.3, glob@npm:^7.1.6": version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: fs.realpath: "npm:^1.0.0" inflight: "npm:^1.0.4" inherits: "npm:2" minimatch: "npm:^3.1.1" once: "npm:^1.3.0" path-is-absolute: "npm:^1.0.0" checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe languageName: node linkType: hard "glob@npm:^8.0.0": version: 8.1.0 resolution: "glob@npm:8.1.0" dependencies: fs.realpath: "npm:^1.0.0" inflight: "npm:^1.0.4" inherits: "npm:2" minimatch: "npm:^5.0.1" once: "npm:^1.3.0" checksum: 10c0/cb0b5cab17a59c57299376abe5646c7070f8acb89df5595b492dba3bfb43d301a46c01e5695f01154e6553168207cb60d4eaf07d3be4bc3eb9b0457c5c561d0f languageName: node linkType: hard "global-prefix@npm:^4.0.0": version: 4.0.0 resolution: "global-prefix@npm:4.0.0" dependencies: ini: "npm:^4.1.3" kind-of: "npm:^6.0.3" which: "npm:^4.0.0" checksum: 10c0/a757bba494f0542a34e82716450506a076e769e05993a9739aea3bf27c3f710cd5635d0f4c1c242650c0dc133bf20a8e8fc9cfd3d1d1c371717218ef561f1ac4 languageName: node linkType: hard "globals@npm:^11.1.0": version: 11.12.0 resolution: "globals@npm:11.12.0" checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 languageName: node linkType: hard "globals@npm:^14.0.0": version: 14.0.0 resolution: "globals@npm:14.0.0" checksum: 10c0/b96ff42620c9231ad468d4c58ff42afee7777ee1c963013ff8aabe095a451d0ceeb8dcd8ef4cbd64d2538cef45f787a78ba3a9574f4a634438963e334471302d languageName: node linkType: hard "globals@npm:^16.4.0": version: 16.4.0 resolution: "globals@npm:16.4.0" checksum: 10c0/a14b447a78b664b42f6d324e8675fcae6fe5e57924fecc1f6328dce08af9b2ca3a3138501e1b1f244a49814a732dc60cfc1aa24e714e0b64ac8bd18910bfac90 languageName: node linkType: hard "globalthis@npm:^1.0.3, globalthis@npm:^1.0.4": version: 1.0.4 resolution: "globalthis@npm:1.0.4" dependencies: define-properties: "npm:^1.2.1" gopd: "npm:^1.0.1" checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846 languageName: node linkType: hard "globby@npm:^11.0.4": version: 11.1.0 resolution: "globby@npm:11.1.0" dependencies: array-union: "npm:^2.1.0" dir-glob: "npm:^3.0.1" fast-glob: "npm:^3.2.9" ignore: "npm:^5.2.0" merge2: "npm:^1.4.1" slash: "npm:^3.0.0" checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 languageName: node linkType: hard "globrex@npm:^0.1.2": version: 0.1.2 resolution: "globrex@npm:0.1.2" checksum: 10c0/a54c029520cf58bda1d8884f72bd49b4cd74e977883268d931fd83bcbd1a9eb96d57c7dbd4ad80148fb9247467ebfb9b215630b2ed7563b2a8de02e1ff7f89d1 languageName: node linkType: hard "glsl-inject-defines@npm:^1.0.1": version: 1.0.3 resolution: "glsl-inject-defines@npm:1.0.3" dependencies: glsl-token-inject-block: "npm:^1.0.0" glsl-token-string: "npm:^1.0.1" glsl-tokenizer: "npm:^2.0.2" checksum: 10c0/a91217705737773ec33123627c679992b085ca810c3b02943834801d8cbbaa892c4a8ae6d44047685fdd0d6c871accca2c64e68c998c10e236c27ea1d5af8fb3 languageName: node linkType: hard "glsl-resolve@npm:0.0.1": version: 0.0.1 resolution: "glsl-resolve@npm:0.0.1" dependencies: resolve: "npm:^0.6.1" xtend: "npm:^2.1.2" checksum: 10c0/2ae3220dc55af84bd21e4014c4cb0118381221d13419750fd0651e08c1a69d5b0c14c7b3c4362594ab8dcd3a0ae103d206c465b67304e2774ad7e5a7ef382655 languageName: node linkType: hard "glsl-token-assignments@npm:^2.0.0": version: 2.0.2 resolution: "glsl-token-assignments@npm:2.0.2" checksum: 10c0/da50a255b2c8ced68154a6451e1bb4b9c898399e7751c2084a8f942fd96596701b2281976dec974187c27b5b17ec18affe5fd74ecc4a2e119b427fa07593a4e9 languageName: node linkType: hard "glsl-token-defines@npm:^1.0.0": version: 1.0.0 resolution: "glsl-token-defines@npm:1.0.0" dependencies: glsl-tokenizer: "npm:^2.0.0" checksum: 10c0/a1282c01186ea93a6a398c0af74f8857e82ead6e2d7201353edb88a6e7fd5852a575cc49a5d0e7cf116ca346c32569bb64419a8697cf9be878f5d070ca07bd60 languageName: node linkType: hard "glsl-token-depth@npm:^1.1.0, glsl-token-depth@npm:^1.1.1": version: 1.1.2 resolution: "glsl-token-depth@npm:1.1.2" checksum: 10c0/e9a476fee487080c2247bb5edde34ee15d027dfe66802ec1cb501d5a0a99964faaa06f2643e575089acd931a917735d3d10045743f0c3e5f1c482de94cb9bd6c languageName: node linkType: hard "glsl-token-descope@npm:^1.0.2": version: 1.0.2 resolution: "glsl-token-descope@npm:1.0.2" dependencies: glsl-token-assignments: "npm:^2.0.0" glsl-token-depth: "npm:^1.1.0" glsl-token-properties: "npm:^1.0.0" glsl-token-scope: "npm:^1.1.0" checksum: 10c0/7018b13194d5cec87d97c3ce0dd64c554fd9d6b547854bc1789dad407c079b5d53445649d930b18c9a1eb8704666c37821ccc796b865fc751ff66c7e5cf04413 languageName: node linkType: hard "glsl-token-inject-block@npm:^1.0.0": version: 1.1.0 resolution: "glsl-token-inject-block@npm:1.1.0" checksum: 10c0/d5ed326f2b8e016997e201316bca7f02bf38cc75e5b6a965819e0819d67aadd1b5c5f236acacabb125e2c3383b5a9f096ad9aed3fb469bbc5014bc7990797641 languageName: node linkType: hard "glsl-token-properties@npm:^1.0.0": version: 1.0.1 resolution: "glsl-token-properties@npm:1.0.1" checksum: 10c0/fa63c248648861bb1fde5d49cb000f930c8a3864c02cdc2f7d62ff669a4fdb1458f3ea4fceac993a94440d8a4883395698d225e8d7b18c01a42bf95c997667d4 languageName: node linkType: hard "glsl-token-scope@npm:^1.1.0, glsl-token-scope@npm:^1.1.1": version: 1.1.2 resolution: "glsl-token-scope@npm:1.1.2" checksum: 10c0/5b5dd2cb78d63ec7c52d3134aabcdf3a0d0e7b1f3d42f6a45169485ff3b31ecba0ec374ceb59a6ebb16e0d5e3b24b2e247faa7bda4e7c56faea02c44110e0ef4 languageName: node linkType: hard "glsl-token-string@npm:^1.0.1": version: 1.0.1 resolution: "glsl-token-string@npm:1.0.1" checksum: 10c0/01ff4fbfa02956d5b10e96f98ab1066937993b2ff9a2c24d23bf72fd417b59d9849cd856815c84d6170d3715bd064c4fbd1cff540a0e315c1fa9b20f2f3306e6 languageName: node linkType: hard "glsl-token-whitespace-trim@npm:^1.0.0": version: 1.0.0 resolution: "glsl-token-whitespace-trim@npm:1.0.0" checksum: 10c0/319dd8ff0db0c0109914711845e9fd3eda403ad53c9d499ea5a83167b277390186669242b2d1ca791efa7334ffc7fac58fe2d5172859cd79e51e12df909e5416 languageName: node linkType: hard "glsl-tokenizer@npm:^2.0.0, glsl-tokenizer@npm:^2.0.2": version: 2.1.5 resolution: "glsl-tokenizer@npm:2.1.5" dependencies: through2: "npm:^0.6.3" checksum: 10c0/5bcc4491afb0b09032702af83f0afa8acadfa0f5c94a7a0d7c3498396cc35722e1915c976c8efef80a1a9ef0976ecb8ce4e044a34b16d7d537ae4c80f346ad19 languageName: node linkType: hard "glslify-bundle@npm:^5.0.0": version: 5.1.1 resolution: "glslify-bundle@npm:5.1.1" dependencies: glsl-inject-defines: "npm:^1.0.1" glsl-token-defines: "npm:^1.0.0" glsl-token-depth: "npm:^1.1.1" glsl-token-descope: "npm:^1.0.2" glsl-token-scope: "npm:^1.1.1" glsl-token-string: "npm:^1.0.1" glsl-token-whitespace-trim: "npm:^1.0.0" glsl-tokenizer: "npm:^2.0.2" murmurhash-js: "npm:^1.0.0" shallow-copy: "npm:0.0.1" checksum: 10c0/a3e79b5cd1f7aec444d29b855612ed6884a23b28bdc1656e180cdbc04ab0aad5e5f77a1c776bed335d4e9a0c781fd39295f045fa6c34e358fe7ccbe3606e8d8d languageName: node linkType: hard "glslify-deps@npm:^1.2.5": version: 1.3.2 resolution: "glslify-deps@npm:1.3.2" dependencies: "@choojs/findup": "npm:^0.2.0" events: "npm:^3.2.0" glsl-resolve: "npm:0.0.1" glsl-tokenizer: "npm:^2.0.0" graceful-fs: "npm:^4.1.2" inherits: "npm:^2.0.1" map-limit: "npm:0.0.1" resolve: "npm:^1.0.0" checksum: 10c0/d89d9ca0bcccb1eb0c2f31d21a0fad9592df5faa30fa63416064cfc4776a3ea38c9e0da2425d2ac5a5a5625012baac95a0bd056e3a525bbf1d149894c140b00f languageName: node linkType: hard "glslify@npm:^7.0.0": version: 7.1.1 resolution: "glslify@npm:7.1.1" dependencies: bl: "npm:^2.2.1" concat-stream: "npm:^1.5.2" duplexify: "npm:^3.4.5" falafel: "npm:^2.1.0" from2: "npm:^2.3.0" glsl-resolve: "npm:0.0.1" glsl-token-whitespace-trim: "npm:^1.0.0" glslify-bundle: "npm:^5.0.0" glslify-deps: "npm:^1.2.5" minimist: "npm:^1.2.5" resolve: "npm:^1.1.5" stack-trace: "npm:0.0.9" static-eval: "npm:^2.0.5" through2: "npm:^2.0.1" xtend: "npm:^4.0.0" bin: glslify: bin.js checksum: 10c0/ccf277220047752ee9ddfb8e1398846a747ca8eb6601a71c4e34278b2e15845affbb52d4ef0023cb21bb0f52785b585c5af9189cc2f0abfca1ffab15c1b3f6f6 languageName: node linkType: hard "gopd@npm:^1.0.1": version: 1.0.1 resolution: "gopd@npm:1.0.1" dependencies: get-intrinsic: "npm:^1.1.3" checksum: 10c0/505c05487f7944c552cee72087bf1567debb470d4355b1335f2c262d218ebbff805cd3715448fe29b4b380bae6912561d0467233e4165830efd28da241418c63 languageName: node linkType: hard "gopd@npm:^1.2.0": version: 1.2.0 resolution: "gopd@npm:1.2.0" checksum: 10c0/50fff1e04ba2b7737c097358534eacadad1e68d24cccee3272e04e007bed008e68d2614f3987788428fd192a5ae3889d08fb2331417e4fc4a9ab366b2043cead languageName: node linkType: hard "graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.1.9, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6": version: 4.2.11 resolution: "graceful-fs@npm:4.2.11" checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 languageName: node linkType: hard "graphemer@npm:^1.4.0": version: 1.4.0 resolution: "graphemer@npm:1.4.0" checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 languageName: node linkType: hard "grid-index@npm:^1.1.0": version: 1.1.0 resolution: "grid-index@npm:1.1.0" checksum: 10c0/0ba2a622a52badc86642a002abee79b48c207092347e869528253e634573b9b55494db649fbd1779122d797aaa3b59e284023a96a7a5c666c7375f0e320f8f57 languageName: node linkType: hard "gzip-size@npm:^6.0.0": version: 6.0.0 resolution: "gzip-size@npm:6.0.0" dependencies: duplexer: "npm:^0.1.2" checksum: 10c0/4ccb924626c82125897a997d1c84f2377846a6ef57fbee38f7c0e6b41387fba4d00422274440747b58008b5d60114bac2349c2908e9aba55188345281af40a3f languageName: node linkType: hard "h3-js@npm:^4.1.0": version: 4.1.0 resolution: "h3-js@npm:4.1.0" checksum: 10c0/58adb7c7a19ff6e6959ef97a60b383bb06c560ffd12826ce603470b25bb34bb26b9bedee6e406591b97017fb888a6194b4043d16abd0d100e6cb51d449e9c3d1 languageName: node linkType: hard "hammerjs@npm:^2.0.8": version: 2.0.8 resolution: "hammerjs@npm:2.0.8" checksum: 10c0/5c95e5774b5ea49492cb3fa8f1949aea67048a0b84af33acb555e7139abfcf3c83aca2b83e0c5008755bc230166df7b5e469d1e3eb6746c48f215f3672609fed languageName: node linkType: hard "has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": version: 1.0.2 resolution: "has-bigints@npm:1.0.2" checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b languageName: node linkType: hard "has-flag@npm:^4.0.0": version: 4.0.0 resolution: "has-flag@npm:4.0.0" checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 languageName: node linkType: hard "has-hover@npm:^1.0.1": version: 1.0.1 resolution: "has-hover@npm:1.0.1" dependencies: is-browser: "npm:^2.0.1" checksum: 10c0/c3abd4be00fc20b3e3ff84def23330174b13c46c76831b712444806421f2d9ac1d7d46c5e94bb207ea893a7b765ce0d5b92b3e1d741fc83d182bdd8e678b4d70 languageName: node linkType: hard "has-passive-events@npm:^1.0.0": version: 1.0.0 resolution: "has-passive-events@npm:1.0.0" dependencies: is-browser: "npm:^2.0.1" checksum: 10c0/438e63c0c66274559bc74b2b4f8c1e93e8779caceee27141b59c87b984765b39d5fc5cf0f709a5ecc915cdc1138cf3d206daeece15fcfb41ec1c721ddbae05fc languageName: node linkType: hard "has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2": version: 1.0.2 resolution: "has-property-descriptors@npm:1.0.2" dependencies: es-define-property: "npm:^1.0.0" checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 languageName: node linkType: hard "has-proto@npm:^1.0.1, has-proto@npm:^1.0.3": version: 1.0.3 resolution: "has-proto@npm:1.0.3" checksum: 10c0/35a6989f81e9f8022c2f4027f8b48a552de714938765d019dbea6bb547bd49ce5010a3c7c32ec6ddac6e48fc546166a3583b128f5a7add8b058a6d8b4afec205 languageName: node linkType: hard "has-proto@npm:^1.2.0": version: 1.2.0 resolution: "has-proto@npm:1.2.0" dependencies: dunder-proto: "npm:^1.0.0" checksum: 10c0/46538dddab297ec2f43923c3d35237df45d8c55a6fc1067031e04c13ed8a9a8f94954460632fd4da84c31a1721eefee16d901cbb1ae9602bab93bb6e08f93b95 languageName: node linkType: hard "has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": version: 1.0.3 resolution: "has-symbols@npm:1.0.3" checksum: 10c0/e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 languageName: node linkType: hard "has-symbols@npm:^1.1.0": version: 1.1.0 resolution: "has-symbols@npm:1.1.0" checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e languageName: node linkType: hard "has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2": version: 1.0.2 resolution: "has-tostringtag@npm:1.0.2" dependencies: has-symbols: "npm:^1.0.3" checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c languageName: node linkType: hard "hasown@npm:^2.0.0, hasown@npm:^2.0.1, hasown@npm:^2.0.2": version: 2.0.2 resolution: "hasown@npm:2.0.2" dependencies: function-bind: "npm:^1.1.2" checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 languageName: node linkType: hard "hast-util-from-dom@npm:^5.0.0": version: 5.0.1 resolution: "hast-util-from-dom@npm:5.0.1" dependencies: "@types/hast": "npm:^3.0.0" hastscript: "npm:^9.0.0" web-namespaces: "npm:^2.0.0" checksum: 10c0/9a90381e048107a093a3da758bb17b67aaf5322e222f02497f841c4990abf94aa177d38d5b9bf61ad07b3601d0409f34f5b556d89578cc189230c6b994d2af77 languageName: node linkType: hard "hast-util-from-html-isomorphic@npm:^2.0.0": version: 2.0.0 resolution: "hast-util-from-html-isomorphic@npm:2.0.0" dependencies: "@types/hast": "npm:^3.0.0" hast-util-from-dom: "npm:^5.0.0" hast-util-from-html: "npm:^2.0.0" unist-util-remove-position: "npm:^5.0.0" checksum: 10c0/fc68d9245e794483a802d5c85a9f6c25959e00db78cc796411efc965134f3206f9cc9fa38134572ea781ad74663e801f1f83202007b208e27a770855566a62b6 languageName: node linkType: hard "hast-util-from-html@npm:^2.0.0": version: 2.0.3 resolution: "hast-util-from-html@npm:2.0.3" dependencies: "@types/hast": "npm:^3.0.0" devlop: "npm:^1.1.0" hast-util-from-parse5: "npm:^8.0.0" parse5: "npm:^7.0.0" vfile: "npm:^6.0.0" vfile-message: "npm:^4.0.0" checksum: 10c0/993ef707c1a12474c8d4094fc9706a72826c660a7e308ea54c50ad893353d32e139b7cbc67510c2e82feac572b320e3b05aeb13d0f9c6302d61261f337b46764 languageName: node linkType: hard "hast-util-from-parse5@npm:^8.0.0": version: 8.0.3 resolution: "hast-util-from-parse5@npm:8.0.3" dependencies: "@types/hast": "npm:^3.0.0" "@types/unist": "npm:^3.0.0" devlop: "npm:^1.0.0" hastscript: "npm:^9.0.0" property-information: "npm:^7.0.0" vfile: "npm:^6.0.0" vfile-location: "npm:^5.0.0" web-namespaces: "npm:^2.0.0" checksum: 10c0/40ace6c0ad43c26f721c7499fe408e639cde917b2350c9299635e6326559855896dae3c3ebf7440df54766b96c4276a7823e8f376a2b6a28b37b591f03412545 languageName: node linkType: hard "hast-util-is-element@npm:^3.0.0": version: 3.0.0 resolution: "hast-util-is-element@npm:3.0.0" dependencies: "@types/hast": "npm:^3.0.0" checksum: 10c0/f5361e4c9859c587ca8eb0d8343492f3077ccaa0f58a44cd09f35d5038f94d65152288dcd0c19336ef2c9491ec4d4e45fde2176b05293437021570aa0bc3613b languageName: node linkType: hard "hast-util-parse-selector@npm:^2.0.0": version: 2.2.5 resolution: "hast-util-parse-selector@npm:2.2.5" checksum: 10c0/29b7ee77960ded6a99d30c287d922243071cc07b39f2006f203bd08ee54eb8f66bdaa86ef6527477c766e2382d520b60ee4e4087f189888c35d8bcc020173648 languageName: node linkType: hard "hast-util-parse-selector@npm:^4.0.0": version: 4.0.0 resolution: "hast-util-parse-selector@npm:4.0.0" dependencies: "@types/hast": "npm:^3.0.0" checksum: 10c0/5e98168cb44470dc274aabf1a28317e4feb09b1eaf7a48bbaa8c1de1b43a89cd195cb1284e535698e658e3ec26ad91bc5e52c9563c36feb75abbc68aaf68fb9f languageName: node linkType: hard "hast-util-raw@npm:^9.0.0": version: 9.1.0 resolution: "hast-util-raw@npm:9.1.0" dependencies: "@types/hast": "npm:^3.0.0" "@types/unist": "npm:^3.0.0" "@ungap/structured-clone": "npm:^1.0.0" hast-util-from-parse5: "npm:^8.0.0" hast-util-to-parse5: "npm:^8.0.0" html-void-elements: "npm:^3.0.0" mdast-util-to-hast: "npm:^13.0.0" parse5: "npm:^7.0.0" unist-util-position: "npm:^5.0.0" unist-util-visit: "npm:^5.0.0" vfile: "npm:^6.0.0" web-namespaces: "npm:^2.0.0" zwitch: "npm:^2.0.0" checksum: 10c0/d0d909d2aedecef6a06f0005cfae410d6475e6e182d768bde30c3af9fcbbe4f9beb0522bdc21d0679cb3c243c0df40385797ed255148d68b3d3f12e82d12aacc languageName: node linkType: hard "hast-util-to-jsx-runtime@npm:^2.0.0": version: 2.3.6 resolution: "hast-util-to-jsx-runtime@npm:2.3.6" dependencies: "@types/estree": "npm:^1.0.0" "@types/hast": "npm:^3.0.0" "@types/unist": "npm:^3.0.0" comma-separated-tokens: "npm:^2.0.0" devlop: "npm:^1.0.0" estree-util-is-identifier-name: "npm:^3.0.0" hast-util-whitespace: "npm:^3.0.0" mdast-util-mdx-expression: "npm:^2.0.0" mdast-util-mdx-jsx: "npm:^3.0.0" mdast-util-mdxjs-esm: "npm:^2.0.0" property-information: "npm:^7.0.0" space-separated-tokens: "npm:^2.0.0" style-to-js: "npm:^1.0.0" unist-util-position: "npm:^5.0.0" vfile-message: "npm:^4.0.0" checksum: 10c0/27297e02848fe37ef219be04a26ce708d17278a175a807689e94a821dcffc88aa506d62c3a85beed1f9a8544f7211bdcbcde0528b7b456a57c2e342c3fd11056 languageName: node linkType: hard "hast-util-to-parse5@npm:^8.0.0": version: 8.0.0 resolution: "hast-util-to-parse5@npm:8.0.0" dependencies: "@types/hast": "npm:^3.0.0" comma-separated-tokens: "npm:^2.0.0" devlop: "npm:^1.0.0" property-information: "npm:^6.0.0" space-separated-tokens: "npm:^2.0.0" web-namespaces: "npm:^2.0.0" zwitch: "npm:^2.0.0" checksum: 10c0/3c0c7fba026e0c4be4675daf7277f9ff22ae6da801435f1b7104f7740de5422576f1c025023c7b3df1d0a161e13a04c6ab8f98ada96eb50adb287b537849a2bd languageName: node linkType: hard "hast-util-to-text@npm:^4.0.0": version: 4.0.2 resolution: "hast-util-to-text@npm:4.0.2" dependencies: "@types/hast": "npm:^3.0.0" "@types/unist": "npm:^3.0.0" hast-util-is-element: "npm:^3.0.0" unist-util-find-after: "npm:^5.0.0" checksum: 10c0/93ecc10e68fe5391c6e634140eb330942e71dea2724c8e0c647c73ed74a8ec930a4b77043b5081284808c96f73f2bee64ee416038ece75a63a467e8d14f09946 languageName: node linkType: hard "hast-util-whitespace@npm:^3.0.0": version: 3.0.0 resolution: "hast-util-whitespace@npm:3.0.0" dependencies: "@types/hast": "npm:^3.0.0" checksum: 10c0/b898bc9fe27884b272580d15260b6bbdabe239973a147e97fa98c45fa0ffec967a481aaa42291ec34fb56530dc2d484d473d7e2bae79f39c83f3762307edfea8 languageName: node linkType: hard "hastscript@npm:^6.0.0": version: 6.0.0 resolution: "hastscript@npm:6.0.0" dependencies: "@types/hast": "npm:^2.0.0" comma-separated-tokens: "npm:^1.0.0" hast-util-parse-selector: "npm:^2.0.0" property-information: "npm:^5.0.0" space-separated-tokens: "npm:^1.0.0" checksum: 10c0/f76d9cf373cb075c8523c8ad52709f09f7e02b7c9d3152b8d35c65c265b9f1878bed6023f215a7d16523921036d40a7da292cb6f4399af9b5eccac2a5a5eb330 languageName: node linkType: hard "hastscript@npm:^9.0.0": version: 9.0.1 resolution: "hastscript@npm:9.0.1" dependencies: "@types/hast": "npm:^3.0.0" comma-separated-tokens: "npm:^2.0.0" hast-util-parse-selector: "npm:^4.0.0" property-information: "npm:^7.0.0" space-separated-tokens: "npm:^2.0.0" checksum: 10c0/18dc8064e5c3a7a2ae862978e626b97a254e1c8a67ee9d0c9f06d373bba155ed805fc5b5ce21b990fb7bc174624889e5e1ce1cade264f1b1d58b48f994bc85ce languageName: node linkType: hard "he@npm:^1.2.0": version: 1.2.0 resolution: "he@npm:1.2.0" bin: he: bin/he checksum: 10c0/a27d478befe3c8192f006cdd0639a66798979dfa6e2125c6ac582a19a5ebfec62ad83e8382e6036170d873f46e4536a7e795bf8b95bf7c247f4cc0825ccc8c17 languageName: node linkType: hard "hermes-estree@npm:0.25.1": version: 0.25.1 resolution: "hermes-estree@npm:0.25.1" checksum: 10c0/48be3b2fa37a0cbc77a112a89096fa212f25d06de92781b163d67853d210a8a5c3784fac23d7d48335058f7ed283115c87b4332c2a2abaaccc76d0ead1a282ac languageName: node linkType: hard "hermes-parser@npm:^0.25.1": version: 0.25.1 resolution: "hermes-parser@npm:0.25.1" dependencies: hermes-estree: "npm:0.25.1" checksum: 10c0/3abaa4c6f1bcc25273f267297a89a4904963ea29af19b8e4f6eabe04f1c2c7e9abd7bfc4730ddb1d58f2ea04b6fee74053d8bddb5656ec6ebf6c79cc8d14202c languageName: node linkType: hard "highlight.js@npm:^10.4.1, highlight.js@npm:~10.7.0": version: 10.7.3 resolution: "highlight.js@npm:10.7.3" checksum: 10c0/073837eaf816922427a9005c56c42ad8786473dc042332dfe7901aa065e92bc3d94ebf704975257526482066abb2c8677cc0326559bb8621e046c21c5991c434 languageName: node linkType: hard "highlightjs-vue@npm:^1.0.0": version: 1.0.0 resolution: "highlightjs-vue@npm:1.0.0" checksum: 10c0/9be378c70b864ca5eee87b07859222e31c946a8ad176227e54f7006a498223974ebe19fcce6e38ad5eb3c1ed0e16a580c4edefdf2cb882b6dfab1c3866cc047a languageName: node linkType: hard "hoist-non-react-statics@npm:^3.3.0, hoist-non-react-statics@npm:^3.3.1, hoist-non-react-statics@npm:^3.3.2": version: 3.3.2 resolution: "hoist-non-react-statics@npm:3.3.2" dependencies: react-is: "npm:^16.7.0" checksum: 10c0/fe0889169e845d738b59b64badf5e55fa3cf20454f9203d1eb088df322d49d4318df774828e789898dcb280e8a5521bb59b3203385662ca5e9218a6ca5820e74 languageName: node linkType: hard "hosted-git-info@npm:^8.0.0": version: 8.1.0 resolution: "hosted-git-info@npm:8.1.0" dependencies: lru-cache: "npm:^10.0.1" checksum: 10c0/53cc838ecaa7d4aa69a81d9d8edc362c9d415f67b76ad38cdd781d2a2f5b45ad0aa9f9b013fb4ea54a9f64fd2365d0b6386b5a24bdf4cb90c80477cf3175aaa2 languageName: node linkType: hard "hotkeys-js@npm:^3.13.2": version: 3.13.7 resolution: "hotkeys-js@npm:3.13.7" checksum: 10c0/5e3ed01d1993202a0c77298caf1b9ec13d70b7fe1a85fcc45f5886f1805318af32e01039c952d45ad0f768984887eca85942a3b5326f39cd2bc3dede1c3ba949 languageName: node linkType: hard "html-element-attributes@npm:^1.0.0": version: 1.3.1 resolution: "html-element-attributes@npm:1.3.1" checksum: 10c0/caf9704577854275bfe4b6f5a77c9b5f2d988b6bc86f48aa1ee043421950c314c43d8f2915178f5cb7a00409e1f2690c1ddb0f4758f9d63b875172cbaa32bc9f languageName: node linkType: hard "html-encoding-sniffer@npm:^4.0.0": version: 4.0.0 resolution: "html-encoding-sniffer@npm:4.0.0" dependencies: whatwg-encoding: "npm:^3.1.1" checksum: 10c0/523398055dc61ac9b34718a719cb4aa691e4166f29187e211e1607de63dc25ac7af52ca7c9aead0c4b3c0415ffecb17326396e1202e2e86ff4bca4c0ee4c6140 languageName: node linkType: hard "html-escaper@npm:^2.0.0": version: 2.0.2 resolution: "html-escaper@npm:2.0.2" checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 languageName: node linkType: hard "html-url-attributes@npm:^3.0.0": version: 3.0.1 resolution: "html-url-attributes@npm:3.0.1" checksum: 10c0/496e4908aa8b77665f348b4b03521901794f648b8ac34a581022cd6f2c97934d5c910cd91bc6593bbf2994687549037bc2520fcdc769b31484f29ffdd402acd0 languageName: node linkType: hard "html-void-elements@npm:^3.0.0": version: 3.0.0 resolution: "html-void-elements@npm:3.0.0" checksum: 10c0/a8b9ec5db23b7c8053876dad73a0336183e6162bf6d2677376d8b38d654fdc59ba74fdd12f8812688f7db6fad451210c91b300e472afc0909224e0a44c8610d2 languageName: node linkType: hard "http-cache-semantics@npm:^4.1.1": version: 4.1.1 resolution: "http-cache-semantics@npm:4.1.1" checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc languageName: node linkType: hard "http-link-header@npm:^1.1.1": version: 1.1.3 resolution: "http-link-header@npm:1.1.3" checksum: 10c0/56698a9d3aee4d5319d1cdfe62ef5d7179f179ec1e6432d23c9e6a0c896be642ba47a4985a45419cff91008032aef920aca9df94ff9e763e646c83bf54b7243d languageName: node linkType: hard "http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.1, http-proxy-agent@npm:^7.0.2": version: 7.0.2 resolution: "http-proxy-agent@npm:7.0.2" dependencies: agent-base: "npm:^7.1.0" debug: "npm:^4.3.4" checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 languageName: node linkType: hard "https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.5, https-proxy-agent@npm:^7.0.6": version: 7.0.6 resolution: "https-proxy-agent@npm:7.0.6" dependencies: agent-base: "npm:^7.1.2" debug: "npm:4" checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac languageName: node linkType: hard "humanize-string@npm:^3.1.0": version: 3.1.0 resolution: "humanize-string@npm:3.1.0" dependencies: decamelize: "npm:^6.0.0" checksum: 10c0/64c0a65d43727971fc14db0fc6d9caa469bc58fb6dbd6e1900d87d331de108454bee16c0a2cb41f7967e1c4c351609f3092f377d83ad1f3a619c8b6870619084 languageName: node linkType: hard "hyphenate-style-name@npm:^1.0.2": version: 1.1.0 resolution: "hyphenate-style-name@npm:1.1.0" checksum: 10c0/bfe88deac2414a41a0d08811e277c8c098f23993d6a1eb17f14a0f11b54c4d42865a63d3cfe1914668eefb9a188e2de58f38b55a179a238fd1fef606893e194f languageName: node linkType: hard "iconv-lite@npm:0.4, iconv-lite@npm:^0.4.4": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24" dependencies: safer-buffer: "npm:>= 2.1.2 < 3" checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4 languageName: node linkType: hard "iconv-lite@npm:0.6, iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 languageName: node linkType: hard "ieee754@npm:^1.1.12, ieee754@npm:^1.2.1": version: 1.2.1 resolution: "ieee754@npm:1.2.1" checksum: 10c0/b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb languageName: node linkType: hard "iframe-resizer@npm:4.3.11": version: 4.3.11 resolution: "iframe-resizer@npm:4.3.11" checksum: 10c0/9b4d24f36cce03b871122f1aab6b38895d0865a6fd115d3b102d9fd83526a082a804090bcf5b5f71d68f5e718ec5e39b9bf65b8d257af94d3baf99bd60af90a8 languageName: node linkType: hard "ignore@npm:^5.2.0": version: 5.3.2 resolution: "ignore@npm:5.3.2" checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 languageName: node linkType: hard "ignore@npm:^7.0.0": version: 7.0.4 resolution: "ignore@npm:7.0.4" checksum: 10c0/90e1f69ce352b9555caecd9cbfd07abe7626d312a6f90efbbb52c7edca6ea8df065d66303863b30154ab1502afb2da8bc59d5b04e1719a52ef75bbf675c488eb languageName: node linkType: hard "image-size@npm:^0.7.4": version: 0.7.5 resolution: "image-size@npm:0.7.5" bin: image-size: bin/image-size.js checksum: 10c0/74e978c525e7d777df145bc66cfc4a4a7aa56de8e5daead3a69b0872082dbe385deb4a3b80799810df9e34b2031467412ae28810f2f65ec2e5fe08b895aa3491 languageName: node linkType: hard "image-ssim@npm:^0.2.0": version: 0.2.0 resolution: "image-ssim@npm:0.2.0" checksum: 10c0/9c669c3e66f6bdff2e1c32e88c930db6b832bc2a62bc2c48ab4a11cae208f95b37a86794ddcf000a6fd72f3c51eb3ad6fc0d8b755c4c0574ae3a61304ddba4b1 languageName: node linkType: hard "immediate@npm:~3.0.5": version: 3.0.6 resolution: "immediate@npm:3.0.6" checksum: 10c0/f8ba7ede69bee9260241ad078d2d535848745ff5f6995c7c7cb41cfdc9ccc213f66e10fa5afb881f90298b24a3f7344b637b592beb4f54e582770cdce3f1f039 languageName: node linkType: hard "immer@npm:^10.1.3": version: 10.1.3 resolution: "immer@npm:10.1.3" checksum: 10c0/b3929022c1999935c9c5e9491fce20d883c15a04072628056f3b8c51a63ac0876d1c1f25cec146e325c30c906bc7f15a636c29ed53156f0a3049150f152df4c8 languageName: node linkType: hard "immutable@npm:^4.0.0": version: 4.3.7 resolution: "immutable@npm:4.3.7" checksum: 10c0/9b099197081b22f6433003e34929da8ecddbbdc1474cdc8aa3b7669dee4adda349c06143de22def36016d1b6de5322b043eccd7a11db1dad2ca85dad4fff5435 languageName: node linkType: hard "import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": version: 3.3.0 resolution: "import-fresh@npm:3.3.0" dependencies: parent-module: "npm:^1.0.0" resolve-from: "npm:^4.0.0" checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 languageName: node linkType: hard "import-in-the-middle@npm:^1.14.2, import-in-the-middle@npm:^1.8.1": version: 1.14.2 resolution: "import-in-the-middle@npm:1.14.2" dependencies: acorn: "npm:^8.14.0" acorn-import-attributes: "npm:^1.9.5" cjs-module-lexer: "npm:^1.2.2" module-details-from-path: "npm:^1.0.3" checksum: 10c0/ee614a09d3772ad39f8005d798458e541cbfb897b8f97623f4bac527eecc51984586cfbf8f195715df5c463ec0b7fce8086489dc12f758ffe5ea485b8a29da01 languageName: node linkType: hard "import-lazy@npm:~4.0.0": version: 4.0.0 resolution: "import-lazy@npm:4.0.0" checksum: 10c0/a3520313e2c31f25c0b06aa66d167f329832b68a4f957d7c9daf6e0fa41822b6e84948191648b9b9d8ca82f94740cdf15eecf2401a5b42cd1c33fd84f2225cca languageName: node linkType: hard "imurmurhash@npm:^0.1.4": version: 0.1.4 resolution: "imurmurhash@npm:0.1.4" checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 languageName: node linkType: hard "indent-string@npm:^4.0.0": version: 4.0.0 resolution: "indent-string@npm:4.0.0" checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f languageName: node linkType: hard "inflight@npm:^1.0.4": version: 1.0.6 resolution: "inflight@npm:1.0.6" dependencies: once: "npm:^1.3.0" wrappy: "npm:1" checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 languageName: node linkType: hard "inherits@npm:2, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:~2.0.1, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 languageName: node linkType: hard "ini@npm:^4.1.3": version: 4.1.3 resolution: "ini@npm:4.1.3" checksum: 10c0/0d27eff094d5f3899dd7c00d0c04ea733ca03a8eb6f9406ce15daac1a81de022cb417d6eaff7e4342451ffa663389c565ffc68d6825eaf686bf003280b945764 languageName: node linkType: hard "inline-style-parser@npm:0.2.4": version: 0.2.4 resolution: "inline-style-parser@npm:0.2.4" checksum: 10c0/ddc0b210eaa03e0f98d677b9836242c583c7c6051e84ce0e704ae4626e7871c5b78f8e30853480218b446355745775df318d4f82d33087ff7e393245efa9a881 languageName: node linkType: hard "inline-style-prefixer@npm:^5.1.0": version: 5.1.2 resolution: "inline-style-prefixer@npm:5.1.2" dependencies: css-in-js-utils: "npm:^2.0.0" checksum: 10c0/2f74f596996dd0c4776999d690923fd5fb50f0a0a25b25c9c1e0c555df5f0beb9ddd1790b32486a918a87888a78f978eb36490c455e95b71c6af5c67ba0c8782 languageName: node linkType: hard "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" dependencies: es-errors: "npm:^1.3.0" hasown: "npm:^2.0.0" side-channel: "npm:^1.0.4" checksum: 10c0/f8b294a4e6ea3855fc59551bbf35f2b832cf01fd5e6e2a97f5c201a071cc09b49048f856e484b67a6c721da5e55736c5b6ddafaf19e2dbeb4a3ff1821680de6c languageName: node linkType: hard "internal-slot@npm:^1.1.0": version: 1.1.0 resolution: "internal-slot@npm:1.1.0" dependencies: es-errors: "npm:^1.3.0" hasown: "npm:^2.0.2" side-channel: "npm:^1.1.0" checksum: 10c0/03966f5e259b009a9bf1a78d60da920df198af4318ec004f57b8aef1dd3fe377fbc8cce63a96e8c810010302654de89f9e19de1cd8ad0061d15be28a695465c7 languageName: node linkType: hard "internmap@npm:1 - 2": version: 2.0.3 resolution: "internmap@npm:2.0.3" checksum: 10c0/8cedd57f07bbc22501516fbfc70447f0c6812871d471096fad9ea603516eacc2137b633633daf432c029712df0baefd793686388ddf5737e3ea15074b877f7ed languageName: node linkType: hard "internmap@npm:^1.0.0": version: 1.0.1 resolution: "internmap@npm:1.0.1" checksum: 10c0/60942be815ca19da643b6d4f23bd0bf4e8c97abbd080fb963fe67583b60bdfb3530448ad4486bae40810e92317bded9995cc31411218acc750d72cd4e8646eee languageName: node linkType: hard "intl-messageformat@npm:^10.5.3": version: 10.7.6 resolution: "intl-messageformat@npm:10.7.6" dependencies: "@formatjs/ecma402-abstract": "npm:2.2.3" "@formatjs/fast-memoize": "npm:2.2.3" "@formatjs/icu-messageformat-parser": "npm:2.9.3" tslib: "npm:2" checksum: 10c0/5e1309ed97523eafaf1bfb690b56441d4cb3ea9e62acdd7d7b5be56288b14752ce8570ce6e8238f275c846e3eaba6af23e537d0b85499a158592d512f21a0774 languageName: node linkType: hard "invariant@npm:^2.2.4": version: 2.2.4 resolution: "invariant@npm:2.2.4" dependencies: loose-envify: "npm:^1.0.0" checksum: 10c0/5af133a917c0bcf65e84e7f23e779e7abc1cd49cb7fdc62d00d1de74b0d8c1b5ee74ac7766099fb3be1b05b26dfc67bab76a17030d2fe7ea2eef867434362dfc languageName: node linkType: hard "ip-address@npm:^9.0.5": version: 9.0.5 resolution: "ip-address@npm:9.0.5" dependencies: jsbn: "npm:1.1.0" sprintf-js: "npm:^1.1.3" checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc languageName: node linkType: hard "is-alphabetical@npm:^1.0.0": version: 1.0.4 resolution: "is-alphabetical@npm:1.0.4" checksum: 10c0/1505b1de5a1fd74022c05fb21b0e683a8f5229366bac8dc4d34cf6935bcfd104d1125a5e6b083fb778847629f76e5bdac538de5367bdf2b927a1356164e23985 languageName: node linkType: hard "is-alphabetical@npm:^2.0.0": version: 2.0.1 resolution: "is-alphabetical@npm:2.0.1" checksum: 10c0/932367456f17237533fd1fc9fe179df77957271020b83ea31da50e5cc472d35ef6b5fb8147453274ffd251134472ce24eb6f8d8398d96dee98237cdb81a6c9a7 languageName: node linkType: hard "is-alphanumerical@npm:^1.0.0": version: 1.0.4 resolution: "is-alphanumerical@npm:1.0.4" dependencies: is-alphabetical: "npm:^1.0.0" is-decimal: "npm:^1.0.0" checksum: 10c0/d623abae7130a7015c6bf33d99151d4e7005572fd170b86568ff4de5ae86ac7096608b87dd4a1d4dbbd497e392b6396930ba76c9297a69455909cebb68005905 languageName: node linkType: hard "is-alphanumerical@npm:^2.0.0": version: 2.0.1 resolution: "is-alphanumerical@npm:2.0.1" dependencies: is-alphabetical: "npm:^2.0.0" is-decimal: "npm:^2.0.0" checksum: 10c0/4b35c42b18e40d41378293f82a3ecd9de77049b476f748db5697c297f686e1e05b072a6aaae2d16f54d2a57f85b00cbbe755c75f6d583d1c77d6657bd0feb5a2 languageName: node linkType: hard "is-arguments@npm:^1.0.4": version: 1.1.1 resolution: "is-arguments@npm:1.1.1" dependencies: call-bind: "npm:^1.0.2" has-tostringtag: "npm:^1.0.0" checksum: 10c0/5ff1f341ee4475350adfc14b2328b38962564b7c2076be2f5bac7bd9b61779efba99b9f844a7b82ba7654adccf8e8eb19d1bb0cc6d1c1a085e498f6793d4328f languageName: node linkType: hard "is-array-buffer@npm:^3.0.4": version: 3.0.4 resolution: "is-array-buffer@npm:3.0.4" dependencies: call-bind: "npm:^1.0.2" get-intrinsic: "npm:^1.2.1" checksum: 10c0/42a49d006cc6130bc5424eae113e948c146f31f9d24460fc0958f855d9d810e6fd2e4519bf19aab75179af9c298ea6092459d8cafdec523cd19e529b26eab860 languageName: node linkType: hard "is-array-buffer@npm:^3.0.5": version: 3.0.5 resolution: "is-array-buffer@npm:3.0.5" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" get-intrinsic: "npm:^1.2.6" checksum: 10c0/c5c9f25606e86dbb12e756694afbbff64bc8b348d1bc989324c037e1068695131930199d6ad381952715dad3a9569333817f0b1a72ce5af7f883ce802e49c83d languageName: node linkType: hard "is-arrayish@npm:^0.2.1": version: 0.2.1 resolution: "is-arrayish@npm:0.2.1" checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 languageName: node linkType: hard "is-async-function@npm:^2.0.0": version: 2.0.0 resolution: "is-async-function@npm:2.0.0" dependencies: has-tostringtag: "npm:^1.0.0" checksum: 10c0/787bc931576aad525d751fc5ce211960fe91e49ac84a5c22d6ae0bc9541945fbc3f686dc590c3175722ce4f6d7b798a93f6f8ff4847fdb2199aea6f4baf5d668 languageName: node linkType: hard "is-bigint@npm:^1.0.1": version: 1.0.4 resolution: "is-bigint@npm:1.0.4" dependencies: has-bigints: "npm:^1.0.1" checksum: 10c0/eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 languageName: node linkType: hard "is-bigint@npm:^1.1.0": version: 1.1.0 resolution: "is-bigint@npm:1.1.0" dependencies: has-bigints: "npm:^1.0.2" checksum: 10c0/f4f4b905ceb195be90a6ea7f34323bf1c18e3793f18922e3e9a73c684c29eeeeff5175605c3a3a74cc38185fe27758f07efba3dbae812e5c5afbc0d2316b40e4 languageName: node linkType: hard "is-binary-path@npm:~2.1.0": version: 2.1.0 resolution: "is-binary-path@npm:2.1.0" dependencies: binary-extensions: "npm:^2.0.0" checksum: 10c0/a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38 languageName: node linkType: hard "is-boolean-object@npm:^1.1.0": version: 1.1.2 resolution: "is-boolean-object@npm:1.1.2" dependencies: call-bind: "npm:^1.0.2" has-tostringtag: "npm:^1.0.0" checksum: 10c0/6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 languageName: node linkType: hard "is-boolean-object@npm:^1.2.1": version: 1.2.2 resolution: "is-boolean-object@npm:1.2.2" dependencies: call-bound: "npm:^1.0.3" has-tostringtag: "npm:^1.0.2" checksum: 10c0/36ff6baf6bd18b3130186990026f5a95c709345c39cd368468e6c1b6ab52201e9fd26d8e1f4c066357b4938b0f0401e1a5000e08257787c1a02f3a719457001e languageName: node linkType: hard "is-browser@npm:^2.0.1": version: 2.1.0 resolution: "is-browser@npm:2.1.0" checksum: 10c0/107cb5211009823df2c3001e419bd9806472f9f2ca81e87b2e60b36c0a4ac709dc5f093d415c372d37758a39f22c98fd5bff060c1d0cfbb74c694b41d3df75c9 languageName: node linkType: hard "is-buffer@npm:^2.0.5": version: 2.0.5 resolution: "is-buffer@npm:2.0.5" checksum: 10c0/e603f6fced83cf94c53399cff3bda1a9f08e391b872b64a73793b0928be3e5f047f2bcece230edb7632eaea2acdbfcb56c23b33d8a20c820023b230f1485679a languageName: node linkType: hard "is-buffer@npm:~1.1.6": version: 1.1.6 resolution: "is-buffer@npm:1.1.6" checksum: 10c0/ae18aa0b6e113d6c490ad1db5e8df9bdb57758382b313f5a22c9c61084875c6396d50bbf49315f5b1926d142d74dfb8d31b40d993a383e0a158b15fea7a82234 languageName: node linkType: hard "is-bun-module@npm:^2.0.0": version: 2.0.0 resolution: "is-bun-module@npm:2.0.0" dependencies: semver: "npm:^7.7.1" checksum: 10c0/7d27a0679cfa5be1f5052650391f9b11040cd70c48d45112e312c56bc6b6ca9c9aea70dcce6cc40b1e8947bfff8567a5c5715d3b066fb478522dab46ea379240 languageName: node linkType: hard "is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f languageName: node linkType: hard "is-core-module@npm:^2.13.0": version: 2.15.1 resolution: "is-core-module@npm:2.15.1" dependencies: hasown: "npm:^2.0.2" checksum: 10c0/53432f10c69c40bfd2fa8914133a68709ff9498c86c3bf5fca3cdf3145a56fd2168cbf4a43b29843a6202a120a5f9c5ffba0a4322e1e3441739bc0b641682612 languageName: node linkType: hard "is-core-module@npm:^2.16.0, is-core-module@npm:^2.16.1": version: 2.16.1 resolution: "is-core-module@npm:2.16.1" dependencies: hasown: "npm:^2.0.2" checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd languageName: node linkType: hard "is-data-view@npm:^1.0.1": version: 1.0.1 resolution: "is-data-view@npm:1.0.1" dependencies: is-typed-array: "npm:^1.1.13" checksum: 10c0/a3e6ec84efe303da859107aed9b970e018e2bee7ffcb48e2f8096921a493608134240e672a2072577e5f23a729846241d9634806e8a0e51d9129c56d5f65442d languageName: node linkType: hard "is-data-view@npm:^1.0.2": version: 1.0.2 resolution: "is-data-view@npm:1.0.2" dependencies: call-bound: "npm:^1.0.2" get-intrinsic: "npm:^1.2.6" is-typed-array: "npm:^1.1.13" checksum: 10c0/ef3548a99d7e7f1370ce21006baca6d40c73e9f15c941f89f0049c79714c873d03b02dae1c64b3f861f55163ecc16da06506c5b8a1d4f16650b3d9351c380153 languageName: node linkType: hard "is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5": version: 1.0.5 resolution: "is-date-object@npm:1.0.5" dependencies: has-tostringtag: "npm:^1.0.0" checksum: 10c0/eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e languageName: node linkType: hard "is-date-object@npm:^1.1.0": version: 1.1.0 resolution: "is-date-object@npm:1.1.0" dependencies: call-bound: "npm:^1.0.2" has-tostringtag: "npm:^1.0.2" checksum: 10c0/1a4d199c8e9e9cac5128d32e6626fa7805175af9df015620ac0d5d45854ccf348ba494679d872d37301032e35a54fc7978fba1687e8721b2139aea7870cafa2f languageName: node linkType: hard "is-decimal@npm:^1.0.0": version: 1.0.4 resolution: "is-decimal@npm:1.0.4" checksum: 10c0/a4ad53c4c5c4f5a12214e7053b10326711f6a71f0c63ba1314a77bd71df566b778e4ebd29f9fb6815f07a4dc50c3767fb19bd6fc9fa05e601410f1d64ffeac48 languageName: node linkType: hard "is-decimal@npm:^2.0.0": version: 2.0.1 resolution: "is-decimal@npm:2.0.1" checksum: 10c0/8085dd66f7d82f9de818fba48b9e9c0429cb4291824e6c5f2622e96b9680b54a07a624cfc663b24148b8e853c62a1c987cfe8b0b5a13f5156991afaf6736e334 languageName: node linkType: hard "is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": version: 2.2.1 resolution: "is-docker@npm:2.2.1" bin: is-docker: cli.js checksum: 10c0/e828365958d155f90c409cdbe958f64051d99e8aedc2c8c4cd7c89dcf35329daed42f7b99346f7828df013e27deb8f721cf9408ba878c76eb9e8290235fbcdcc languageName: node linkType: hard "is-error@npm:^2.2.0": version: 2.2.2 resolution: "is-error@npm:2.2.2" checksum: 10c0/475d3463968bf16e94485555d7cb7a879ed68685e08d365a3370972e626054f1846ebbb3934403091e06682445568601fe919e41646096e5007952d0c1f4fd9b languageName: node linkType: hard "is-extendable@npm:^0.1.0, is-extendable@npm:^0.1.1": version: 0.1.1 resolution: "is-extendable@npm:0.1.1" checksum: 10c0/dd5ca3994a28e1740d1e25192e66eed128e0b2ff161a7ea348e87ae4f616554b486854de423877a2a2c171d5f7cd6e8093b91f54533bc88a59ee1c9838c43879 languageName: node linkType: hard "is-extendable@npm:^1.0.1": version: 1.0.1 resolution: "is-extendable@npm:1.0.1" dependencies: is-plain-object: "npm:^2.0.4" checksum: 10c0/1d6678a5be1563db6ecb121331c819c38059703f0179f52aa80c242c223ee9c6b66470286636c0e63d7163e4d905c0a7d82a096e0b5eaeabb51b9f8d0af0d73f languageName: node linkType: hard "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 languageName: node linkType: hard "is-finalizationregistry@npm:^1.1.0": version: 1.1.1 resolution: "is-finalizationregistry@npm:1.1.1" dependencies: call-bound: "npm:^1.0.3" checksum: 10c0/818dff679b64f19e228a8205a1e2d09989a98e98def3a817f889208cfcbf918d321b251aadf2c05918194803ebd2eb01b14fc9d0b2bea53d984f4137bfca5e97 languageName: node linkType: hard "is-finite@npm:^1.0.1": version: 1.1.0 resolution: "is-finite@npm:1.1.0" checksum: 10c0/ca6bc7a0321b339f098e657bd4cbf4bb2410f5a11f1b9adb1a1a9ab72288b64368e8251326cb1f74e985f2779299cec3e1f1e558b68ce7e1e2c9be17b7cfd626 languageName: node linkType: hard "is-firefox@npm:^1.0.3": version: 1.0.3 resolution: "is-firefox@npm:1.0.3" checksum: 10c0/05acae8ad7f836088dd735f78c2da298f6b5bf2141498b214a370f4a99a22f837a130ebb3bce2320ecfcd68783f0eda231a04b3b5015b5894a5a297b16357bc2 languageName: node linkType: hard "is-fullwidth-code-point@npm:^3.0.0": version: 3.0.0 resolution: "is-fullwidth-code-point@npm:3.0.0" checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc languageName: node linkType: hard "is-generator-function@npm:^1.0.10, is-generator-function@npm:^1.0.7": version: 1.0.10 resolution: "is-generator-function@npm:1.0.10" dependencies: has-tostringtag: "npm:^1.0.0" checksum: 10c0/df03514df01a6098945b5a0cfa1abff715807c8e72f57c49a0686ad54b3b74d394e2d8714e6f709a71eb00c9630d48e73ca1796c1ccc84ac95092c1fecc0d98b languageName: node linkType: hard "is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": version: 4.0.3 resolution: "is-glob@npm:4.0.3" dependencies: is-extglob: "npm:^2.1.1" checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a languageName: node linkType: hard "is-hexadecimal@npm:^1.0.0": version: 1.0.4 resolution: "is-hexadecimal@npm:1.0.4" checksum: 10c0/ec4c64e5624c0f240922324bc697e166554f09d3ddc7633fc526084502626445d0a871fbd8cae52a9844e83bd0bb414193cc5a66806d7b2867907003fc70c5ea languageName: node linkType: hard "is-hexadecimal@npm:^2.0.0": version: 2.0.1 resolution: "is-hexadecimal@npm:2.0.1" checksum: 10c0/3eb60fe2f1e2bbc760b927dcad4d51eaa0c60138cf7fc671803f66353ad90c301605b502c7ea4c6bb0548e1c7e79dfd37b73b632652e3b76030bba603a7e9626 languageName: node linkType: hard "is-iexplorer@npm:^1.0.0": version: 1.0.0 resolution: "is-iexplorer@npm:1.0.0" checksum: 10c0/f1e9483fe0675b0a8424f0d4e07fe33508452760f221bad609ff28c8834e8decbdaa080727bb54da8414e0420c5184f761267d86cdddad3897062701f31eb49d languageName: node linkType: hard "is-immutable-type@npm:^5.0.1": version: 5.0.1 resolution: "is-immutable-type@npm:5.0.1" dependencies: "@typescript-eslint/type-utils": "npm:^8.0.0" ts-api-utils: "npm:^2.0.0" ts-declaration-location: "npm:^1.0.4" peerDependencies: eslint: "*" typescript: ">=4.7.4" checksum: 10c0/a46dec39942844f14d9938dd3ff7a9b345ecbb7d9a308a3719b303a088859e5efcfd765730d3bbfcc80fd32bd267d53fa49abaa2313bc792cdaa95ccce0e54c4 languageName: node linkType: hard "is-map@npm:^2.0.3": version: 2.0.3 resolution: "is-map@npm:2.0.3" checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc languageName: node linkType: hard "is-mobile@npm:^4.0.0": version: 4.0.0 resolution: "is-mobile@npm:4.0.0" checksum: 10c0/7d1f1c9ead3f140728318df7b1d6f2f19f28d96bf09c3a9016fe473ccccd32c4d03a01aeec68b612d48f1c0f776e7f1f18a1d83a7e95fb8199b4eb8536db01bc languageName: node linkType: hard "is-negative-zero@npm:^2.0.3": version: 2.0.3 resolution: "is-negative-zero@npm:2.0.3" checksum: 10c0/bcdcf6b8b9714063ffcfa9929c575ac69bfdabb8f4574ff557dfc086df2836cf07e3906f5bbc4f2a5c12f8f3ba56af640c843cdfc74da8caed86c7c7d66fd08e languageName: node linkType: hard "is-number-object@npm:^1.0.4": version: 1.0.7 resolution: "is-number-object@npm:1.0.7" dependencies: has-tostringtag: "npm:^1.0.0" checksum: 10c0/aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b languageName: node linkType: hard "is-number-object@npm:^1.1.1": version: 1.1.1 resolution: "is-number-object@npm:1.1.1" dependencies: call-bound: "npm:^1.0.3" has-tostringtag: "npm:^1.0.2" checksum: 10c0/97b451b41f25135ff021d85c436ff0100d84a039bb87ffd799cbcdbea81ef30c464ced38258cdd34f080be08fc3b076ca1f472086286d2aa43521d6ec6a79f53 languageName: node linkType: hard "is-number@npm:^7.0.0": version: 7.0.0 resolution: "is-number@npm:7.0.0" checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 languageName: node linkType: hard "is-obj@npm:^1.0.1": version: 1.0.1 resolution: "is-obj@npm:1.0.1" checksum: 10c0/5003acba0af7aa47dfe0760e545a89bbac89af37c12092c3efadc755372cdaec034f130e7a3653a59eb3c1843cfc72ca71eaf1a6c3bafe5a0bab3611a47f9945 languageName: node linkType: hard "is-plain-obj@npm:^1.1.0": version: 1.1.0 resolution: "is-plain-obj@npm:1.1.0" checksum: 10c0/daaee1805add26f781b413fdf192fc91d52409583be30ace35c82607d440da63cc4cac0ac55136716688d6c0a2c6ef3edb2254fecbd1fe06056d6bd15975ee8c languageName: node linkType: hard "is-plain-obj@npm:^4.0.0": version: 4.1.0 resolution: "is-plain-obj@npm:4.1.0" checksum: 10c0/32130d651d71d9564dc88ba7e6fda0e91a1010a3694648e9f4f47bb6080438140696d3e3e15c741411d712e47ac9edc1a8a9de1fe76f3487b0d90be06ac9975e languageName: node linkType: hard "is-plain-object@npm:^2.0.3, is-plain-object@npm:^2.0.4": version: 2.0.4 resolution: "is-plain-object@npm:2.0.4" dependencies: isobject: "npm:^3.0.1" checksum: 10c0/f050fdd5203d9c81e8c4df1b3ff461c4bc64e8b5ca383bcdde46131361d0a678e80bcf00b5257646f6c636197629644d53bd8e2375aea633de09a82d57e942f4 languageName: node linkType: hard "is-potential-custom-element-name@npm:^1.0.1": version: 1.0.1 resolution: "is-potential-custom-element-name@npm:1.0.1" checksum: 10c0/b73e2f22bc863b0939941d369486d308b43d7aef1f9439705e3582bfccaa4516406865e32c968a35f97a99396dac84e2624e67b0a16b0a15086a785e16ce7db9 languageName: node linkType: hard "is-regex@npm:^1.1.4": version: 1.1.4 resolution: "is-regex@npm:1.1.4" dependencies: call-bind: "npm:^1.0.2" has-tostringtag: "npm:^1.0.0" checksum: 10c0/bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 languageName: node linkType: hard "is-regex@npm:^1.2.1": version: 1.2.1 resolution: "is-regex@npm:1.2.1" dependencies: call-bound: "npm:^1.0.2" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" hasown: "npm:^2.0.2" checksum: 10c0/1d3715d2b7889932349241680032e85d0b492cfcb045acb75ffc2c3085e8d561184f1f7e84b6f8321935b4aea39bc9c6ba74ed595b57ce4881a51dfdbc214e04 languageName: node linkType: hard "is-set@npm:^2.0.3": version: 2.0.3 resolution: "is-set@npm:2.0.3" checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7 languageName: node linkType: hard "is-shared-array-buffer@npm:^1.0.2, is-shared-array-buffer@npm:^1.0.3": version: 1.0.3 resolution: "is-shared-array-buffer@npm:1.0.3" dependencies: call-bind: "npm:^1.0.7" checksum: 10c0/adc11ab0acbc934a7b9e5e9d6c588d4ec6682f6fea8cda5180721704fa32927582ede5b123349e32517fdadd07958973d24716c80e7ab198970c47acc09e59c7 languageName: node linkType: hard "is-shared-array-buffer@npm:^1.0.4": version: 1.0.4 resolution: "is-shared-array-buffer@npm:1.0.4" dependencies: call-bound: "npm:^1.0.3" checksum: 10c0/65158c2feb41ff1edd6bbd6fd8403a69861cf273ff36077982b5d4d68e1d59278c71691216a4a64632bd76d4792d4d1d2553901b6666d84ade13bba5ea7bc7db languageName: node linkType: hard "is-string-blank@npm:^1.0.1": version: 1.0.1 resolution: "is-string-blank@npm:1.0.1" checksum: 10c0/2e664a061fb9354f6eccffdd7d662051d19ce951f59ae25392b871f796e06dc82659fb68560b267ccc81b700c1078c0fb8e31959955d759c2f3713015ccfb60f languageName: node linkType: hard "is-string@npm:^1.0.5, is-string@npm:^1.0.7": version: 1.0.7 resolution: "is-string@npm:1.0.7" dependencies: has-tostringtag: "npm:^1.0.0" checksum: 10c0/905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 languageName: node linkType: hard "is-string@npm:^1.1.1": version: 1.1.1 resolution: "is-string@npm:1.1.1" dependencies: call-bound: "npm:^1.0.3" has-tostringtag: "npm:^1.0.2" checksum: 10c0/2f518b4e47886bb81567faba6ffd0d8a8333cf84336e2e78bf160693972e32ad00fe84b0926491cc598dee576fdc55642c92e62d0cbe96bf36f643b6f956f94d languageName: node linkType: hard "is-svg-path@npm:^1.0.1": version: 1.0.2 resolution: "is-svg-path@npm:1.0.2" checksum: 10c0/59596bdb3e3a748e654c9c2362a55234ff7350131de235c49b9794e8bbdbeab57f2f06803ec5dbfb5e65a023967ff1322cc75135b841fa82f88f032e1cb407d5 languageName: node linkType: hard "is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": version: 1.0.4 resolution: "is-symbol@npm:1.0.4" dependencies: has-symbols: "npm:^1.0.2" checksum: 10c0/9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 languageName: node linkType: hard "is-symbol@npm:^1.0.4, is-symbol@npm:^1.1.1": version: 1.1.1 resolution: "is-symbol@npm:1.1.1" dependencies: call-bound: "npm:^1.0.2" has-symbols: "npm:^1.1.0" safe-regex-test: "npm:^1.1.0" checksum: 10c0/f08f3e255c12442e833f75a9e2b84b2d4882fdfd920513cf2a4a2324f0a5b076c8fd913778e3ea5d258d5183e9d92c0cd20e04b03ab3df05316b049b2670af1e languageName: node linkType: hard "is-typed-array@npm:^1.1.13, is-typed-array@npm:^1.1.3": version: 1.1.13 resolution: "is-typed-array@npm:1.1.13" dependencies: which-typed-array: "npm:^1.1.14" checksum: 10c0/fa5cb97d4a80e52c2cc8ed3778e39f175a1a2ae4ddf3adae3187d69586a1fd57cfa0b095db31f66aa90331e9e3da79184cea9c6abdcd1abc722dc3c3edd51cca languageName: node linkType: hard "is-typed-array@npm:^1.1.14, is-typed-array@npm:^1.1.15": version: 1.1.15 resolution: "is-typed-array@npm:1.1.15" dependencies: which-typed-array: "npm:^1.1.16" checksum: 10c0/415511da3669e36e002820584e264997ffe277ff136643a3126cc949197e6ca3334d0f12d084e83b1994af2e9c8141275c741cf2b7da5a2ff62dd0cac26f76c4 languageName: node linkType: hard "is-weakmap@npm:^2.0.2": version: 2.0.2 resolution: "is-weakmap@npm:2.0.2" checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299 languageName: node linkType: hard "is-weakref@npm:^1.0.2": version: 1.0.2 resolution: "is-weakref@npm:1.0.2" dependencies: call-bind: "npm:^1.0.2" checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1 languageName: node linkType: hard "is-weakref@npm:^1.1.0, is-weakref@npm:^1.1.1": version: 1.1.1 resolution: "is-weakref@npm:1.1.1" dependencies: call-bound: "npm:^1.0.3" checksum: 10c0/8e0a9c07b0c780949a100e2cab2b5560a48ecd4c61726923c1a9b77b6ab0aa0046c9e7fb2206042296817045376dee2c8ab1dabe08c7c3dfbf195b01275a085b languageName: node linkType: hard "is-weakset@npm:^2.0.3": version: 2.0.3 resolution: "is-weakset@npm:2.0.3" dependencies: call-bind: "npm:^1.0.7" get-intrinsic: "npm:^1.2.4" checksum: 10c0/8ad6141b6a400e7ce7c7442a13928c676d07b1f315ab77d9912920bf5f4170622f43126f111615788f26c3b1871158a6797c862233124507db0bcc33a9537d1a languageName: node linkType: hard "is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": version: 2.2.0 resolution: "is-wsl@npm:2.2.0" dependencies: is-docker: "npm:^2.0.0" checksum: 10c0/a6fa2d370d21be487c0165c7a440d567274fbba1a817f2f0bfa41cc5e3af25041d84267baa22df66696956038a43973e72fca117918c91431920bdef490fa25e languageName: node linkType: hard "isarray@npm:0.0.1": version: 0.0.1 resolution: "isarray@npm:0.0.1" checksum: 10c0/ed1e62da617f71fe348907c71743b5ed550448b455f8d269f89a7c7ddb8ae6e962de3dab6a74a237b06f5eb7f6ece7a45ada8ce96d87fe972926530f91ae3311 languageName: node linkType: hard "isarray@npm:^2.0.1, isarray@npm:^2.0.5": version: 2.0.5 resolution: "isarray@npm:2.0.5" checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd languageName: node linkType: hard "isarray@npm:~1.0.0": version: 1.0.0 resolution: "isarray@npm:1.0.0" checksum: 10c0/18b5be6669be53425f0b84098732670ed4e727e3af33bc7f948aac01782110eb9a18b3b329c5323bcdd3acdaae547ee077d3951317e7f133bff7105264b3003d languageName: node linkType: hard "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d languageName: node linkType: hard "isexe@npm:^3.1.1": version: 3.1.1 resolution: "isexe@npm:3.1.1" checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 languageName: node linkType: hard "isobject@npm:^3.0.1": version: 3.0.1 resolution: "isobject@npm:3.0.1" checksum: 10c0/03344f5064a82f099a0cd1a8a407f4c0d20b7b8485e8e816c39f249e9416b06c322e8dec5b842b6bb8a06de0af9cb48e7bc1b5352f0fadc2f0abac033db3d4db languageName: node linkType: hard "istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.2": version: 3.2.2 resolution: "istanbul-lib-coverage@npm:3.2.2" checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b languageName: node linkType: hard "istanbul-lib-report@npm:^3.0.0, istanbul-lib-report@npm:^3.0.1": version: 3.0.1 resolution: "istanbul-lib-report@npm:3.0.1" dependencies: istanbul-lib-coverage: "npm:^3.0.0" make-dir: "npm:^4.0.0" supports-color: "npm:^7.1.0" checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7 languageName: node linkType: hard "istanbul-lib-source-maps@npm:^5.0.6": version: 5.0.6 resolution: "istanbul-lib-source-maps@npm:5.0.6" dependencies: "@jridgewell/trace-mapping": "npm:^0.3.23" debug: "npm:^4.1.1" istanbul-lib-coverage: "npm:^3.0.0" checksum: 10c0/ffe75d70b303a3621ee4671554f306e0831b16f39ab7f4ab52e54d356a5d33e534d97563e318f1333a6aae1d42f91ec49c76b6cd3f3fb378addcb5c81da0255f languageName: node linkType: hard "istanbul-reports@npm:^3.1.7": version: 3.1.7 resolution: "istanbul-reports@npm:3.1.7" dependencies: html-escaper: "npm:^2.0.0" istanbul-lib-report: "npm:^3.0.0" checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 languageName: node linkType: hard "iterator.prototype@npm:^1.1.4": version: 1.1.5 resolution: "iterator.prototype@npm:1.1.5" dependencies: define-data-property: "npm:^1.1.4" es-object-atoms: "npm:^1.0.0" get-intrinsic: "npm:^1.2.6" get-proto: "npm:^1.0.0" has-symbols: "npm:^1.1.0" set-function-name: "npm:^2.0.2" checksum: 10c0/f7a262808e1b41049ab55f1e9c29af7ec1025a000d243b83edf34ce2416eedd56079b117fa59376bb4a724110690f13aa8427f2ee29a09eec63a7e72367626d0 languageName: node linkType: hard "jackspeak@npm:^3.1.2": version: 3.4.3 resolution: "jackspeak@npm:3.4.3" dependencies: "@isaacs/cliui": "npm:^8.0.2" "@pkgjs/parseargs": "npm:^0.11.0" dependenciesMeta: "@pkgjs/parseargs": optional: true checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 languageName: node linkType: hard "jake@npm:^10.8.5": version: 10.9.2 resolution: "jake@npm:10.9.2" dependencies: async: "npm:^3.2.3" chalk: "npm:^4.0.2" filelist: "npm:^1.0.4" minimatch: "npm:^3.1.2" bin: jake: bin/cli.js checksum: 10c0/c4597b5ed9b6a908252feab296485a4f87cba9e26d6c20e0ca144fb69e0c40203d34a2efddb33b3d297b8bd59605e6c1f44f6221ca1e10e69175ecbf3ff5fe31 languageName: node linkType: hard "jest-canvas-mock@npm:~2.5.2": version: 2.5.2 resolution: "jest-canvas-mock@npm:2.5.2" dependencies: cssfontparser: "npm:^1.2.1" moo-color: "npm:^1.0.2" checksum: 10c0/6a4190354b1e9aedcb3045273f13f6f1d2d1efb00cfe6458707fae538a8f91f6afdf72b9e201b653666863054edc783428bdc0c1a2c71d66d9ac364b4893f6d6 languageName: node linkType: hard "jiti@npm:^2.5.1": version: 2.5.1 resolution: "jiti@npm:2.5.1" bin: jiti: lib/jiti-cli.mjs checksum: 10c0/f0a38d7d8842cb35ffe883038166aa2d52ffd21f1a4fc839ae4076ea7301c22a1f11373f8fc52e2667de7acde8f3e092835620dd6f72a0fbe9296b268b0874bb languageName: node linkType: hard "jju@npm:~1.4.0": version: 1.4.0 resolution: "jju@npm:1.4.0" checksum: 10c0/f3f444557e4364cfc06b1abf8331bf3778b26c0c8552ca54429bc0092652172fdea26cbffe33e1017b303d5aa506f7ede8571857400efe459cb7439180e2acad languageName: node linkType: hard "jpeg-js@npm:^0.4.1, jpeg-js@npm:^0.4.4": version: 0.4.4 resolution: "jpeg-js@npm:0.4.4" checksum: 10c0/4d0d5097f8e55d8bbce6f1dc32ffaf3f43f321f6222e4e6490734fdc6d005322e3bd6fb992c2df7f5b587343b1441a1c333281dc3285bc9116e369fd2a2b43a7 languageName: node linkType: hard "js-library-detector@npm:^6.7.0": version: 6.7.0 resolution: "js-library-detector@npm:6.7.0" checksum: 10c0/492264f9fb42976fc054b36416bbf4eb760586a4df39f465bc9185186928b16728ecb1ab256b81ebddd16a680fee38a94205f0fb023c816729c0bed2cea73624 languageName: node linkType: hard "js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed languageName: node linkType: hard "js-tokens@npm:^9.0.1": version: 9.0.1 resolution: "js-tokens@npm:9.0.1" checksum: 10c0/68dcab8f233dde211a6b5fd98079783cbcd04b53617c1250e3553ee16ab3e6134f5e65478e41d82f6d351a052a63d71024553933808570f04dbf828d7921e80e languageName: node linkType: hard "js-yaml@npm:^4.1.0": version: 4.1.1 resolution: "js-yaml@npm:4.1.1" dependencies: argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js checksum: 10c0/561c7d7088c40a9bb53cc75becbfb1df6ae49b34b5e6e5a81744b14ae8667ec564ad2527709d1a6e7d5e5fa6d483aa0f373a50ad98d42fde368ec4a190d4fae7 languageName: node linkType: hard "js2xmlparser@npm:^4.0.2": version: 4.0.2 resolution: "js2xmlparser@npm:4.0.2" dependencies: xmlcreate: "npm:^2.0.4" checksum: 10c0/b00de9351649d67d225e21734a08f456a4ecb3c29cafcd3bbecb36a8ab61ec841fad7f425bed50e21936fe387f472e49cfe75ce71d0beaacb0475b077c88ed39 languageName: node linkType: hard "jsbn@npm:1.1.0": version: 1.1.0 resolution: "jsbn@npm:1.1.0" checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 languageName: node linkType: hard "jsdoc@npm:^4.0.0": version: 4.0.3 resolution: "jsdoc@npm:4.0.3" dependencies: "@babel/parser": "npm:^7.20.15" "@jsdoc/salty": "npm:^0.2.1" "@types/markdown-it": "npm:^14.1.1" bluebird: "npm:^3.7.2" catharsis: "npm:^0.9.0" escape-string-regexp: "npm:^2.0.0" js2xmlparser: "npm:^4.0.2" klaw: "npm:^3.0.0" markdown-it: "npm:^14.1.0" markdown-it-anchor: "npm:^8.6.7" marked: "npm:^4.0.10" mkdirp: "npm:^1.0.4" requizzle: "npm:^0.2.3" strip-json-comments: "npm:^3.1.0" underscore: "npm:~1.13.2" bin: jsdoc: ./jsdoc.js checksum: 10c0/0ad7b1fad0c55627809080e3195649c215c5f711d4b718c4cf907d2ac390c571b524077a02d928a2f56fd73dbe439ca2c09fdea6d8af9ca325e0e6c5801fd7cb languageName: node linkType: hard "jsdom@npm:24.1.3": version: 24.1.3 resolution: "jsdom@npm:24.1.3" dependencies: cssstyle: "npm:^4.0.1" data-urls: "npm:^5.0.0" decimal.js: "npm:^10.4.3" form-data: "npm:^4.0.0" html-encoding-sniffer: "npm:^4.0.0" http-proxy-agent: "npm:^7.0.2" https-proxy-agent: "npm:^7.0.5" is-potential-custom-element-name: "npm:^1.0.1" nwsapi: "npm:^2.2.12" parse5: "npm:^7.1.2" rrweb-cssom: "npm:^0.7.1" saxes: "npm:^6.0.0" symbol-tree: "npm:^3.2.4" tough-cookie: "npm:^4.1.4" w3c-xmlserializer: "npm:^5.0.0" webidl-conversions: "npm:^7.0.0" whatwg-encoding: "npm:^3.1.1" whatwg-mimetype: "npm:^4.0.0" whatwg-url: "npm:^14.0.0" ws: "npm:^8.18.0" xml-name-validator: "npm:^5.0.0" peerDependencies: canvas: ^2.11.2 peerDependenciesMeta: canvas: optional: true checksum: 10c0/e48b342afacd7418a23dac204a62deea729c50f4d072a7c04c09fd32355fdb4335f8779fa79fd0277a2dbeb2d356250a950955719d00047324b251233b11277f languageName: node linkType: hard "jsep@npm:^0.3.0": version: 0.3.5 resolution: "jsep@npm:0.3.5" checksum: 10c0/fb5def7a4ba1cee41d144ebdd0d477785dc84b6bc1fed6cf5169f106de980dbe363bf99cb36a450435d7fd952d22b1d76e1609aeb5c7e7cbbbdb6d15fad03614 languageName: node linkType: hard "jsesc@npm:^3.0.2": version: 3.0.2 resolution: "jsesc@npm:3.0.2" bin: jsesc: bin/jsesc checksum: 10c0/ef22148f9e793180b14d8a145ee6f9f60f301abf443288117b4b6c53d0ecd58354898dc506ccbb553a5f7827965cd38bc5fb726575aae93c5e8915e2de8290e1 languageName: node linkType: hard "json-bignum@npm:^0.0.3": version: 0.0.3 resolution: "json-bignum@npm:0.0.3" checksum: 10c0/f9f9312d57a68f72676802fa087da4ed60241d73b6cc0e3fb9f587ca0de7364efb62612a14414ccfbedc0b77ce3c320adca21834a5673c99eb3375aef9f561db languageName: node linkType: hard "json-buffer@npm:3.0.1": version: 3.0.1 resolution: "json-buffer@npm:3.0.1" checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 languageName: node linkType: hard "json-parse-even-better-errors@npm:^2.3.0": version: 2.3.1 resolution: "json-parse-even-better-errors@npm:2.3.1" checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 languageName: node linkType: hard "json-schema-traverse@npm:^0.4.1": version: 0.4.1 resolution: "json-schema-traverse@npm:0.4.1" checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce languageName: node linkType: hard "json-schema-traverse@npm:^1.0.0": version: 1.0.0 resolution: "json-schema-traverse@npm:1.0.0" checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 languageName: node linkType: hard "json-stable-stringify-without-jsonify@npm:^1.0.1": version: 1.0.1 resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 languageName: node linkType: hard "json-stringify-pretty-compact@npm:^4.0.0, json-stringify-pretty-compact@npm:~4.0.0": version: 4.0.0 resolution: "json-stringify-pretty-compact@npm:4.0.0" checksum: 10c0/505781b4be7c72047ae8dfa667b520d20461ceac451b6516cb8ac5e12a758fbd7491d99d5e3f7e60423ce9d26ed4e4bcaccab3420bf651298901635c849017cf languageName: node linkType: hard "json5@npm:^1.0.2": version: 1.0.2 resolution: "json5@npm:1.0.2" dependencies: minimist: "npm:^1.2.0" bin: json5: lib/cli.js checksum: 10c0/9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f languageName: node linkType: hard "json5@npm:^2.2.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" bin: json5: lib/cli.js checksum: 10c0/5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c languageName: node linkType: hard "jsonfile@npm:^6.0.1": version: 6.1.0 resolution: "jsonfile@npm:6.1.0" dependencies: graceful-fs: "npm:^4.1.6" universalify: "npm:^2.0.0" dependenciesMeta: graceful-fs: optional: true checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 languageName: node linkType: hard "jsonparse@npm:^1.3.1": version: 1.3.1 resolution: "jsonparse@npm:1.3.1" checksum: 10c0/89bc68080cd0a0e276d4b5ab1b79cacd68f562467008d176dc23e16e97d4efec9e21741d92ba5087a8433526a45a7e6a9d5ef25408696c402ca1cfbc01a90bf0 languageName: node linkType: hard "jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5": version: 3.3.5 resolution: "jsx-ast-utils@npm:3.3.5" dependencies: array-includes: "npm:^3.1.6" array.prototype.flat: "npm:^1.3.1" object.assign: "npm:^4.1.4" object.values: "npm:^1.1.6" checksum: 10c0/a32679e9cb55469cb6d8bbc863f7d631b2c98b7fc7bf172629261751a6e7bc8da6ae374ddb74d5fbd8b06cf0eb4572287b259813d92b36e384024ed35e4c13e1 languageName: node linkType: hard "jszip@npm:^3.1.5": version: 3.10.1 resolution: "jszip@npm:3.10.1" dependencies: lie: "npm:~3.3.0" pako: "npm:~1.0.2" readable-stream: "npm:~2.3.6" setimmediate: "npm:^1.0.5" checksum: 10c0/58e01ec9c4960383fb8b38dd5f67b83ccc1ec215bf74c8a5b32f42b6e5fb79fada5176842a11409c4051b5b94275044851814a31076bf49e1be218d3ef57c863 languageName: node linkType: hard "just-extend@npm:^4.0.2": version: 4.2.1 resolution: "just-extend@npm:4.2.1" checksum: 10c0/ab01b807ae064eee016001df7e958fab9d878a6e2e32119f5f5a94e986daca9d940aa6176889f04c2658e6e3edd75000d7bab1a2376d473ccb20ae571f4b8cbc languageName: node linkType: hard "katex@npm:^0.16.0": version: 0.16.21 resolution: "katex@npm:0.16.21" dependencies: commander: "npm:^8.3.0" bin: katex: cli.js checksum: 10c0/e2e4139ba72a13f2393308fbb2b4c5511611a19a40a6e39d956cf775e553af3517dbfd0a54477faaf401c923e4654e32296347846b8ff15dfa579f88ff8579bb languageName: node linkType: hard "katex@npm:^0.16.22": version: 0.16.22 resolution: "katex@npm:0.16.22" dependencies: commander: "npm:^8.3.0" bin: katex: cli.js checksum: 10c0/07b8b1f07ae53171b5f1ea0cf6f18841d2055825c8b11cd81cfe039afcd3af2cfc84ad033531ee3875088329105195b039c267e0dd4b0c237807e3c3b2009913 languageName: node linkType: hard "kdbush@npm:^3.0.0": version: 3.0.0 resolution: "kdbush@npm:3.0.0" checksum: 10c0/3fc8795870bd04f60627e7345b26fd0644beb91bc4164912c9d9378b39c674ba01c31db68ecaf6266d51c9ad81bf5b770b7effa51eeee37553d38293a094a686 languageName: node linkType: hard "kdbush@npm:^4.0.2": version: 4.0.2 resolution: "kdbush@npm:4.0.2" checksum: 10c0/d50183b299c57e2573114e902ab47aed7494be3ca41b66d456779ecc3b2f153f491de341f9609965414784f728894f9a9001152eb9f3a40cd3755521c06a45a3 languageName: node linkType: hard "keyv@npm:^4.5.4": version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies: json-buffer: "npm:3.0.1" checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e languageName: node linkType: hard "kind-of@npm:^6.0.3": version: 6.0.3 resolution: "kind-of@npm:6.0.3" checksum: 10c0/61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4 languageName: node linkType: hard "klaw@npm:^3.0.0": version: 3.0.0 resolution: "klaw@npm:3.0.0" dependencies: graceful-fs: "npm:^4.1.9" checksum: 10c0/8391cf6df6337dce02e44628b620b39412d007eff162d907d37063c23986041d9b5c3558851d473c2fae92c1ccb0fde8864e36f9c55ac339fc469b517a2caa1b languageName: node linkType: hard "kolorist@npm:^1.8.0": version: 1.8.0 resolution: "kolorist@npm:1.8.0" checksum: 10c0/73075db44a692bf6c34a649f3b4b3aea4993b84f6b754cbf7a8577e7c7db44c0bad87752bd23b0ce533f49de2244ce2ce03b7b1b667a85ae170a94782cc50f9b languageName: node linkType: hard "ktx-parse@npm:^0.0.4": version: 0.0.4 resolution: "ktx-parse@npm:0.0.4" checksum: 10c0/806d5005696c25147dcc9aa6a2033587041fb391c58faaecd88b94ad17b3edfc145d3d69746a218f569600e8e9c7116886e70251c5fd1c813086a093271643b2 languageName: node linkType: hard "ktx-parse@npm:^0.7.0": version: 0.7.1 resolution: "ktx-parse@npm:0.7.1" checksum: 10c0/07c0870a0d0fe0bd412b430ac58afd721136a1ca76db83a066b6d20810878822822cbe3b8c8507c15ae8680be0988675b4f5c3d1243262284f161b52c59d09e9 languageName: node linkType: hard "language-subtag-registry@npm:^0.3.20": version: 0.3.23 resolution: "language-subtag-registry@npm:0.3.23" checksum: 10c0/e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c languageName: node linkType: hard "language-tags@npm:^1.0.9": version: 1.0.9 resolution: "language-tags@npm:1.0.9" dependencies: language-subtag-registry: "npm:^0.3.20" checksum: 10c0/9ab911213c4bd8bd583c850201c17794e52cb0660d1ab6e32558aadc8324abebf6844e46f92b80a5d600d0fbba7eface2c207bfaf270a1c7fd539e4c3a880bff languageName: node linkType: hard "legacy-javascript@npm:latest": version: 0.0.1 resolution: "legacy-javascript@npm:0.0.1" checksum: 10c0/105dc8f952671d34f97767a67d58cd24ccd9f1e2d06f5acf6a24b904c38b794b84542ba9c66e66c63769b8df9e3e4c8187c295c333b0743e1438a8a93614fd78 languageName: node linkType: hard "levn@npm:^0.4.1": version: 0.4.1 resolution: "levn@npm:0.4.1" dependencies: prelude-ls: "npm:^1.2.1" type-check: "npm:~0.4.0" checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e languageName: node linkType: hard "levn@npm:~0.3.0": version: 0.3.0 resolution: "levn@npm:0.3.0" dependencies: prelude-ls: "npm:~1.1.2" type-check: "npm:~0.3.2" checksum: 10c0/e440df9de4233da0b389cd55bd61f0f6aaff766400bebbccd1231b81801f6dbc1d816c676ebe8d70566394b749fa624b1ed1c68070e9c94999f0bdecc64cb676 languageName: node linkType: hard "lie@npm:~3.3.0": version: 3.3.0 resolution: "lie@npm:3.3.0" dependencies: immediate: "npm:~3.0.5" checksum: 10c0/56dd113091978f82f9dc5081769c6f3b947852ecf9feccaf83e14a123bc630c2301439ce6182521e5fbafbde88e88ac38314327a4e0493a1bea7e0699a7af808 languageName: node linkType: hard "lighthouse-logger@npm:^2.0.1": version: 2.0.1 resolution: "lighthouse-logger@npm:2.0.1" dependencies: debug: "npm:^2.6.9" marky: "npm:^1.2.2" checksum: 10c0/414743d9b1491ad127c78741edfe88bd1c2411b267274c973036b90f56a268c3b8c3e02498bce04b560083da34a149bc3f81d2c47b6c6ad592202354cf781c43 languageName: node linkType: hard "lighthouse-logger@npm:^2.0.2": version: 2.0.2 resolution: "lighthouse-logger@npm:2.0.2" dependencies: debug: "npm:^4.4.1" marky: "npm:^1.2.2" checksum: 10c0/bbce3939a0359d5f1f84b7cc623f1ee3daf5a28e55b7b9bf7d461d906121e64fa6de290c53bd6bdd6068a67442fa39a7deb6f61da2e0e1721c39ec4cc80876b8 languageName: node linkType: hard "lighthouse-stack-packs@npm:1.12.2": version: 1.12.2 resolution: "lighthouse-stack-packs@npm:1.12.2" checksum: 10c0/34fb78127792a2036f560f446b28ce2446712e4a18e8036971c80f30127150ef1a85b2cef1713110da52bbc8c526742b8165e517330755e3a94598c1a2bc3eba languageName: node linkType: hard "lighthouse@npm:^12.8.2": version: 12.8.2 resolution: "lighthouse@npm:12.8.2" dependencies: "@paulirish/trace_engine": "npm:0.0.59" "@sentry/node": "npm:^9.28.1" axe-core: "npm:^4.10.3" chrome-launcher: "npm:^1.2.0" configstore: "npm:^7.0.0" csp_evaluator: "npm:1.1.5" devtools-protocol: "npm:0.0.1507524" enquirer: "npm:^2.3.6" http-link-header: "npm:^1.1.1" intl-messageformat: "npm:^10.5.3" jpeg-js: "npm:^0.4.4" js-library-detector: "npm:^6.7.0" lighthouse-logger: "npm:^2.0.2" lighthouse-stack-packs: "npm:1.12.2" lodash-es: "npm:^4.17.21" lookup-closest-locale: "npm:6.2.0" metaviewport-parser: "npm:0.3.0" open: "npm:^8.4.0" parse-cache-control: "npm:1.0.1" puppeteer-core: "npm:^24.17.1" robots-parser: "npm:^3.0.1" speedline-core: "npm:^1.4.3" third-party-web: "npm:^0.27.0" tldts-icann: "npm:^7.0.12" ws: "npm:^7.0.0" yargs: "npm:^17.3.1" yargs-parser: "npm:^21.0.0" bin: chrome-debug: core/scripts/manual-chrome-launcher.js lighthouse: cli/index.js smokehouse: cli/test/smokehouse/frontends/smokehouse-bin.js checksum: 10c0/f5765451c230ab32b5500c1d82ba4fb65b905403de1f36815cb84cde7796efd9f7b0d43a6fb0f97ae1f6332f4b0f515a4c58bcbd23be1a0e7e31d0e3458c3568 languageName: node linkType: hard "lilconfig@npm:^3.1.3": version: 3.1.3 resolution: "lilconfig@npm:3.1.3" checksum: 10c0/f5604e7240c5c275743561442fbc5abf2a84ad94da0f5adc71d25e31fa8483048de3dcedcb7a44112a942fed305fd75841cdf6c9681c7f640c63f1049e9a5dcc languageName: node linkType: hard "lines-and-columns@npm:^1.1.6": version: 1.2.4 resolution: "lines-and-columns@npm:1.2.4" checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d languageName: node linkType: hard "linkify-it@npm:^5.0.0": version: 5.0.0 resolution: "linkify-it@npm:5.0.0" dependencies: uc.micro: "npm:^2.0.0" checksum: 10c0/ff4abbcdfa2003472fc3eb4b8e60905ec97718e11e33cca52059919a4c80cc0e0c2a14d23e23d8c00e5402bc5a885cdba8ca053a11483ab3cc8b3c7a52f88e2d languageName: node linkType: hard "local-pkg@npm:^1.0.0": version: 1.1.0 resolution: "local-pkg@npm:1.1.0" dependencies: mlly: "npm:^1.7.4" pkg-types: "npm:^1.3.1" quansync: "npm:^0.2.1" checksum: 10c0/0dae67e1400e2af8ee2e0c9ecb2cf4517a9f4fe67cafba2f9a706ed7a8dce9a864edc35fdfc0980a098f84954281df834b8dccaf8095ae33ac49e5c44afb72e2 languageName: node linkType: hard "locate-path@npm:^6.0.0": version: 6.0.0 resolution: "locate-path@npm:6.0.0" dependencies: p-locate: "npm:^5.0.0" checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 languageName: node linkType: hard "lodash-es@npm:^4.17.15, lodash-es@npm:^4.17.21": version: 4.17.21 resolution: "lodash-es@npm:4.17.21" checksum: 10c0/fb407355f7e6cd523a9383e76e6b455321f0f153a6c9625e21a8827d10c54c2a2341bd2ae8d034358b60e07325e1330c14c224ff582d04612a46a4f0479ff2f2 languageName: node linkType: hard "lodash.camelcase@npm:^4.3.0": version: 4.3.0 resolution: "lodash.camelcase@npm:4.3.0" checksum: 10c0/fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 languageName: node linkType: hard "lodash.curry@npm:^4.0.1": version: 4.1.1 resolution: "lodash.curry@npm:4.1.1" checksum: 10c0/f0431947dc9236df879fc13eb40c31a2839c958bd0eaa39170a5758c25a7d85d461716a851ab45a175371950b283480615cdd4b07fb0dd1afff7a2914a90696f languageName: node linkType: hard "lodash.flow@npm:^3.3.0": version: 3.5.0 resolution: "lodash.flow@npm:3.5.0" checksum: 10c0/b3202ddbb79e5aab41719806d0d5ae969f64ae6b59e6bdaaecaa96ec68d6ba429e544017fe0e71ecf5b7ee3cea7b45d43c46b7d67ca159d6cca86fca76c61a31 languageName: node linkType: hard "lodash.merge@npm:4.6.2, lodash.merge@npm:^4.6.2": version: 4.6.2 resolution: "lodash.merge@npm:4.6.2" checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 languageName: node linkType: hard "lodash@npm:^4.0.1, lodash@npm:^4.17.15, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:~4.17.15": version: 4.17.21 resolution: "lodash@npm:4.17.21" checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c languageName: node linkType: hard "loglevel@npm:^1.9.2": version: 1.9.2 resolution: "loglevel@npm:1.9.2" checksum: 10c0/1e317fa4648fe0b4a4cffef6de037340592cee8547b07d4ce97a487abe9153e704b98451100c799b032c72bb89c9366d71c9fb8192ada8703269263ae77acdc7 languageName: node linkType: hard "long@npm:^3.2.0": version: 3.2.0 resolution: "long@npm:3.2.0" checksum: 10c0/03884ad097403bda356228899c8397d7e4e2cd26489983034faa8e52ab9f18df4539de548571ad2f574ecf78454fc377bbcd2ba8ba76d567bf973345aefcbdb2 languageName: node linkType: hard "long@npm:^5.0.0, long@npm:^5.2.1": version: 5.2.3 resolution: "long@npm:5.2.3" checksum: 10c0/6a0da658f5ef683b90330b1af76f06790c623e148222da9d75b60e266bbf88f803232dd21464575681638894a84091616e7f89557aa087fd14116c0f4e0e43d9 languageName: node linkType: hard "longest-streak@npm:^3.0.0": version: 3.1.0 resolution: "longest-streak@npm:3.1.0" checksum: 10c0/7c2f02d0454b52834d1bcedef79c557bd295ee71fdabb02d041ff3aa9da48a90b5df7c0409156dedbc4df9b65da18742652aaea4759d6ece01f08971af6a7eaa languageName: node linkType: hard "lookup-closest-locale@npm:6.2.0": version: 6.2.0 resolution: "lookup-closest-locale@npm:6.2.0" checksum: 10c0/e9b48a011300a4e052b697453115fee0b551820afbf5cd4a71647d5be570e9f67a60a28be8afc6c2d6213d9c4bc154d42bf656f9ca1d7ba18e90a3706a3fdf26 languageName: node linkType: hard "loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: js-tokens: "npm:^3.0.0 || ^4.0.0" bin: loose-envify: cli.js checksum: 10c0/655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e languageName: node linkType: hard "loupe@npm:^3.1.0": version: 3.1.2 resolution: "loupe@npm:3.1.2" checksum: 10c0/b13c02e3ddd6a9d5f8bf84133b3242de556512d824dddeea71cce2dbd6579c8f4d672381c4e742d45cf4423d0701765b4a6e5fbc24701def16bc2b40f8daa96a languageName: node linkType: hard "loupe@npm:^3.1.3": version: 3.1.3 resolution: "loupe@npm:3.1.3" checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541 languageName: node linkType: hard "loupe@npm:^3.1.4": version: 3.1.4 resolution: "loupe@npm:3.1.4" checksum: 10c0/5c2e6aefaad25f812d361c750b8cf4ff91d68de289f141d7c85c2ce9bb79eeefa06a93c85f7b87cba940531ed8f15e492f32681d47eed23842ad1963eb3a154d languageName: node linkType: hard "lower-case@npm:^2.0.2": version: 2.0.2 resolution: "lower-case@npm:2.0.2" dependencies: tslib: "npm:^2.0.3" checksum: 10c0/3d925e090315cf7dc1caa358e0477e186ffa23947740e4314a7429b6e62d72742e0bbe7536a5ae56d19d7618ce998aba05caca53c2902bd5742fdca5fc57fd7b languageName: node linkType: hard "lowlight@npm:^1.17.0": version: 1.20.0 resolution: "lowlight@npm:1.20.0" dependencies: fault: "npm:^1.0.0" highlight.js: "npm:~10.7.0" checksum: 10c0/728bce6f6fe8b157f48d3324e597f452ce0eed2ccff1c0f41a9047380f944e971eb45bceb31f08fbb64d8f338dabb166f10049b35b92c7ec5cf0241d6adb3dea languageName: node linkType: hard "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": version: 10.4.3 resolution: "lru-cache@npm:10.4.3" checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb languageName: node linkType: hard "lru-cache@npm:^5.1.1": version: 5.1.1 resolution: "lru-cache@npm:5.1.1" dependencies: yallist: "npm:^3.0.2" checksum: 10c0/89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482 languageName: node linkType: hard "lru-cache@npm:^6.0.0": version: 6.0.0 resolution: "lru-cache@npm:6.0.0" dependencies: yallist: "npm:^4.0.0" checksum: 10c0/cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 languageName: node linkType: hard "lru-cache@npm:^7.14.1": version: 7.18.3 resolution: "lru-cache@npm:7.18.3" checksum: 10c0/b3a452b491433db885beed95041eb104c157ef7794b9c9b4d647be503be91769d11206bb573849a16b4cc0d03cbd15ffd22df7960997788b74c1d399ac7a4fed languageName: node linkType: hard "lz-string@npm:^1.5.0": version: 1.5.0 resolution: "lz-string@npm:1.5.0" bin: lz-string: bin/bin.js checksum: 10c0/36128e4de34791838abe979b19927c26e67201ca5acf00880377af7d765b38d1c60847e01c5ec61b1a260c48029084ab3893a3925fd6e48a04011364b089991b languageName: node linkType: hard "lz4js@npm:^0.2.0": version: 0.2.0 resolution: "lz4js@npm:0.2.0" checksum: 10c0/73c6dd5117a6fa465e6be1bd5ae34ef4f02e4eb164a47d77f8c2483ccdde43cbdf8509a5e5a4480ef812e5c7a2cb946e026b9c784533775ee5c91861edaefb39 languageName: node linkType: hard "lzo-wasm@npm:^0.0.4": version: 0.0.4 resolution: "lzo-wasm@npm:0.0.4" checksum: 10c0/33c0d43c9617f23e03196f475fd35b6b4a725e7252cf328002a606a4377ea281d380f12160df80bedfbe5516f7d9ad70592f469a6bef1e91db274e86d411452e languageName: node linkType: hard "magic-string@npm:^0.30.17": version: 0.30.17 resolution: "magic-string@npm:0.30.17" dependencies: "@jridgewell/sourcemap-codec": "npm:^1.5.0" checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 languageName: node linkType: hard "magicast@npm:^0.3.5": version: 0.3.5 resolution: "magicast@npm:0.3.5" dependencies: "@babel/parser": "npm:^7.25.4" "@babel/types": "npm:^7.25.4" source-map-js: "npm:^1.2.0" checksum: 10c0/a6cacc0a848af84f03e3f5bda7b0de75e4d0aa9ddce5517fd23ed0f31b5ddd51b2d0ff0b7e09b51f7de0f4053c7a1107117edda6b0732dca3e9e39e6c5a68c64 languageName: node linkType: hard "make-dir@npm:^4.0.0": version: 4.0.0 resolution: "make-dir@npm:4.0.0" dependencies: semver: "npm:^7.5.3" checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68 languageName: node linkType: hard "make-fetch-happen@npm:^14.0.0, make-fetch-happen@npm:^14.0.3": version: 14.0.3 resolution: "make-fetch-happen@npm:14.0.3" dependencies: "@npmcli/agent": "npm:^3.0.0" cacache: "npm:^19.0.1" http-cache-semantics: "npm:^4.1.1" minipass: "npm:^7.0.2" minipass-fetch: "npm:^4.0.0" minipass-flush: "npm:^1.0.5" minipass-pipeline: "npm:^1.2.4" negotiator: "npm:^1.0.0" proc-log: "npm:^5.0.0" promise-retry: "npm:^2.0.1" ssri: "npm:^12.0.0" checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0 languageName: node linkType: hard "map-limit@npm:0.0.1": version: 0.0.1 resolution: "map-limit@npm:0.0.1" dependencies: once: "npm:~1.3.0" checksum: 10c0/b83e5c24b07596f65ce3a09592932ae1b9c91658587d339e9700121bae79c212d91fe60dde7f2ef976309522dae50b04858b8c06f30b770303900fdbee37239c languageName: node linkType: hard "mapbox-gl@npm:^1.0.0, mapbox-gl@npm:^1.13.2": version: 1.13.3 resolution: "mapbox-gl@npm:1.13.3" dependencies: "@mapbox/geojson-rewind": "npm:^0.5.2" "@mapbox/geojson-types": "npm:^1.0.2" "@mapbox/jsonlint-lines-primitives": "npm:^2.0.2" "@mapbox/mapbox-gl-supported": "npm:^1.5.0" "@mapbox/point-geometry": "npm:^0.1.0" "@mapbox/tiny-sdf": "npm:^1.1.1" "@mapbox/unitbezier": "npm:^0.0.0" "@mapbox/vector-tile": "npm:^1.3.1" "@mapbox/whoots-js": "npm:^3.1.0" csscolorparser: "npm:~1.0.3" earcut: "npm:^2.2.2" geojson-vt: "npm:^3.2.1" gl-matrix: "npm:^3.2.1" grid-index: "npm:^1.1.0" murmurhash-js: "npm:^1.0.0" pbf: "npm:^3.2.1" potpack: "npm:^1.0.1" quickselect: "npm:^2.0.0" rw: "npm:^1.3.3" supercluster: "npm:^7.1.0" tinyqueue: "npm:^2.0.3" vt-pbf: "npm:^3.1.1" checksum: 10c0/82bf86daa69e068d4138c4e5a1dbfc2a28c6d0e2cc142ef96d3ce671770e8173d3ffd62e6614b3606f932f99b40eb4dfc52d5f44c48dabd393ba27b61d9e50c4 languageName: node linkType: hard "maplibre-gl@npm:^4.7.1": version: 4.7.1 resolution: "maplibre-gl@npm:4.7.1" dependencies: "@mapbox/geojson-rewind": "npm:^0.5.2" "@mapbox/jsonlint-lines-primitives": "npm:^2.0.2" "@mapbox/point-geometry": "npm:^0.1.0" "@mapbox/tiny-sdf": "npm:^2.0.6" "@mapbox/unitbezier": "npm:^0.0.1" "@mapbox/vector-tile": "npm:^1.3.1" "@mapbox/whoots-js": "npm:^3.1.0" "@maplibre/maplibre-gl-style-spec": "npm:^20.3.1" "@types/geojson": "npm:^7946.0.14" "@types/geojson-vt": "npm:3.2.5" "@types/mapbox__point-geometry": "npm:^0.1.4" "@types/mapbox__vector-tile": "npm:^1.3.4" "@types/pbf": "npm:^3.0.5" "@types/supercluster": "npm:^7.1.3" earcut: "npm:^3.0.0" geojson-vt: "npm:^4.0.2" gl-matrix: "npm:^3.4.3" global-prefix: "npm:^4.0.0" kdbush: "npm:^4.0.2" murmurhash-js: "npm:^1.0.0" pbf: "npm:^3.3.0" potpack: "npm:^2.0.0" quickselect: "npm:^3.0.0" supercluster: "npm:^8.0.1" tinyqueue: "npm:^3.0.0" vt-pbf: "npm:^3.1.3" checksum: 10c0/dad2da8474af68647f882d5c4ff6df1c9afbe49f6d06c4594e4a55df0a34674f64d347b10b7af2869ac62fe837af6a56caa7617d5602724185e4df674be67b51 languageName: node linkType: hard "markdown-it-anchor@npm:^8.6.7": version: 8.6.7 resolution: "markdown-it-anchor@npm:8.6.7" peerDependencies: "@types/markdown-it": "*" markdown-it: "*" checksum: 10c0/f117866488013b7e4085a6b59d12bf62879181aef65ea2851f01ed1b763b8c052580c2c27fa8bd009421886220c6beeb373a65af9e885ce63a36ee9f8dcd0e89 languageName: node linkType: hard "markdown-it@npm:^14.1.0": version: 14.1.0 resolution: "markdown-it@npm:14.1.0" dependencies: argparse: "npm:^2.0.1" entities: "npm:^4.4.0" linkify-it: "npm:^5.0.0" mdurl: "npm:^2.0.0" punycode.js: "npm:^2.3.1" uc.micro: "npm:^2.1.0" bin: markdown-it: bin/markdown-it.mjs checksum: 10c0/9a6bb444181d2db7016a4173ae56a95a62c84d4cbfb6916a399b11d3e6581bf1cc2e4e1d07a2f022ae72c25f56db90fbe1e529fca16fbf9541659dc53480d4b4 languageName: node linkType: hard "markdown-table@npm:^3.0.0": version: 3.0.3 resolution: "markdown-table@npm:3.0.3" checksum: 10c0/47433a3f31e4637a184e38e873ab1d2fadfb0106a683d466fec329e99a2d8dfa09f091fa42202c6f13ec94aef0199f449a684b28042c636f2edbc1b7e1811dcd languageName: node linkType: hard "marked@npm:^4.0.10": version: 4.3.0 resolution: "marked@npm:4.3.0" bin: marked: bin/marked.js checksum: 10c0/0013463855e31b9c88d8bb2891a611d10ef1dc79f2e3cbff1bf71ba389e04c5971298c886af0be799d7fa9aa4593b086a136062d59f1210b0480b026a8c5dc47 languageName: node linkType: hard "marky@npm:^1.2.2": version: 1.2.5 resolution: "marky@npm:1.2.5" checksum: 10c0/ca8a011f287dab1ac3291df720fc32b366c4cd767347b63722966650405ce71ec6566f71d1e22e1768bf6461a7fd689b9038e7df0fcfb62eacf3a5a6dcac249e languageName: node linkType: hard "material-colors@npm:^1.2.1": version: 1.2.6 resolution: "material-colors@npm:1.2.6" checksum: 10c0/6502ab25b23b783cca4112946bc28a64fdba8bf8efcfbb1e76028d21ecc4b88a2b1338dacf1b64e4b6af46ab98984080586002cdaa9428dc91f6fdcc6909b12a languageName: node linkType: hard "math-intrinsics@npm:^1.1.0": version: 1.1.0 resolution: "math-intrinsics@npm:1.1.0" checksum: 10c0/7579ff94e899e2f76ab64491d76cf606274c874d8f2af4a442c016bd85688927fcfca157ba6bf74b08e9439dc010b248ce05b96cc7c126a354c3bae7fcb48b7f languageName: node linkType: hard "math-log2@npm:^1.0.1": version: 1.0.1 resolution: "math-log2@npm:1.0.1" checksum: 10c0/6bd247d50f526d4521bceb23c8adff5f93bc60df7e073cf14ea1a45be7e53ff2d24779b3bf22f174831a33ff33a9026022bde314b6fe77ee89cd2444489ae9e3 languageName: node linkType: hard "md5@npm:^2.3.0": version: 2.3.0 resolution: "md5@npm:2.3.0" dependencies: charenc: "npm:0.0.2" crypt: "npm:0.0.2" is-buffer: "npm:~1.1.6" checksum: 10c0/14a21d597d92e5b738255fbe7fe379905b8cb97e0a49d44a20b58526a646ec5518c337b817ce0094ca94d3e81a3313879c4c7b510d250c282d53afbbdede9110 languageName: node linkType: hard "mdast-util-directive@npm:^3.0.0": version: 3.1.0 resolution: "mdast-util-directive@npm:3.1.0" dependencies: "@types/mdast": "npm:^4.0.0" "@types/unist": "npm:^3.0.0" ccount: "npm:^2.0.0" devlop: "npm:^1.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" parse-entities: "npm:^4.0.0" stringify-entities: "npm:^4.0.0" unist-util-visit-parents: "npm:^6.0.0" checksum: 10c0/596b093b940197cf43af4d0de12e82a1d2b1eb5add73dd16077aa80e0d0e1f208ea642c420726e59ccd352c193d6ecd5c106d6fab769f252617c75333f91a314 languageName: node linkType: hard "mdast-util-find-and-replace@npm:^3.0.0, mdast-util-find-and-replace@npm:^3.0.1, mdast-util-find-and-replace@npm:^3.0.2": version: 3.0.2 resolution: "mdast-util-find-and-replace@npm:3.0.2" dependencies: "@types/mdast": "npm:^4.0.0" escape-string-regexp: "npm:^5.0.0" unist-util-is: "npm:^6.0.0" unist-util-visit-parents: "npm:^6.0.0" checksum: 10c0/c8417a35605d567772ff5c1aa08363ff3010b0d60c8ea68c53cba09bf25492e3dd261560425c1756535f3b7107f62e7ff3857cdd8fb1e62d1b2cc2ea6e074ca2 languageName: node linkType: hard "mdast-util-from-markdown@npm:^2.0.0": version: 2.0.2 resolution: "mdast-util-from-markdown@npm:2.0.2" dependencies: "@types/mdast": "npm:^4.0.0" "@types/unist": "npm:^3.0.0" decode-named-character-reference: "npm:^1.0.0" devlop: "npm:^1.0.0" mdast-util-to-string: "npm:^4.0.0" micromark: "npm:^4.0.0" micromark-util-decode-numeric-character-reference: "npm:^2.0.0" micromark-util-decode-string: "npm:^2.0.0" micromark-util-normalize-identifier: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" unist-util-stringify-position: "npm:^4.0.0" checksum: 10c0/76eb2bd2c6f7a0318087c73376b8af6d7561c1e16654e7667e640f391341096c56142618fd0ff62f6d39e5ab4895898b9789c84cd7cec2874359a437a0e1ff15 languageName: node linkType: hard "mdast-util-gfm-autolink-literal@npm:^2.0.0": version: 2.0.1 resolution: "mdast-util-gfm-autolink-literal@npm:2.0.1" dependencies: "@types/mdast": "npm:^4.0.0" ccount: "npm:^2.0.0" devlop: "npm:^1.0.0" mdast-util-find-and-replace: "npm:^3.0.0" micromark-util-character: "npm:^2.0.0" checksum: 10c0/963cd22bd42aebdec7bdd0a527c9494d024d1ad0739c43dc040fee35bdfb5e29c22564330a7418a72b5eab51d47a6eff32bc0255ef3ccb5cebfe8970e91b81b6 languageName: node linkType: hard "mdast-util-gfm-footnote@npm:^2.0.0": version: 2.1.0 resolution: "mdast-util-gfm-footnote@npm:2.1.0" dependencies: "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.1.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" micromark-util-normalize-identifier: "npm:^2.0.0" checksum: 10c0/8ab965ee6be3670d76ec0e95b2ba3101fc7444eec47564943ab483d96ac17d29da2a4e6146a2a288be30c21b48c4f3938a1e54b9a46fbdd321d49a5bc0077ed0 languageName: node linkType: hard "mdast-util-gfm-strikethrough@npm:^2.0.0": version: 2.0.0 resolution: "mdast-util-gfm-strikethrough@npm:2.0.0" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/b053e93d62c7545019bd914271ea9e5667ad3b3b57d16dbf68e56fea39a7e19b4a345e781312714eb3d43fdd069ff7ee22a3ca7f6149dfa774554f19ce3ac056 languageName: node linkType: hard "mdast-util-gfm-table@npm:^2.0.0": version: 2.0.0 resolution: "mdast-util-gfm-table@npm:2.0.0" dependencies: "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" markdown-table: "npm:^3.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/128af47c503a53bd1c79f20642561e54a510ad5e2db1e418d28fefaf1294ab839e6c838e341aef5d7e404f9170b9ca3d1d89605f234efafde93ee51174a6e31e languageName: node linkType: hard "mdast-util-gfm-task-list-item@npm:^2.0.0": version: 2.0.0 resolution: "mdast-util-gfm-task-list-item@npm:2.0.0" dependencies: "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/258d725288482b636c0a376c296431390c14b4f29588675297cb6580a8598ed311fc73ebc312acfca12cc8546f07a3a285a53a3b082712e2cbf5c190d677d834 languageName: node linkType: hard "mdast-util-gfm@npm:^3.0.0": version: 3.1.0 resolution: "mdast-util-gfm@npm:3.1.0" dependencies: mdast-util-from-markdown: "npm:^2.0.0" mdast-util-gfm-autolink-literal: "npm:^2.0.0" mdast-util-gfm-footnote: "npm:^2.0.0" mdast-util-gfm-strikethrough: "npm:^2.0.0" mdast-util-gfm-table: "npm:^2.0.0" mdast-util-gfm-task-list-item: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/4bedcfb6a20e39901c8772f0d2bb2d7a64ae87a54c13cbd92eec062cf470fbb68c2ad754e149af5b30794e2de61c978ab1de1ace03c0c40f443ca9b9b8044f81 languageName: node linkType: hard "mdast-util-math@npm:^3.0.0": version: 3.0.0 resolution: "mdast-util-math@npm:3.0.0" dependencies: "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" longest-streak: "npm:^3.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.1.0" unist-util-remove-position: "npm:^5.0.0" checksum: 10c0/d4e839e38719f26872ed78aac18339805a892f1b56585a9cb8668f34e221b4f0660b9dfe49ec96dbbe79fd1b63b648608a64046d8286bcd2f9d576e80b48a0a1 languageName: node linkType: hard "mdast-util-mdx-expression@npm:^2.0.0": version: 2.0.1 resolution: "mdast-util-mdx-expression@npm:2.0.1" dependencies: "@types/estree-jsx": "npm:^1.0.0" "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/9a1e57940f66431f10312fa239096efa7627f375e7933b5d3162c0b5c1712a72ac87447aff2b6838d2bbd5c1311b188718cc90b33b67dc67a88550e0a6ef6183 languageName: node linkType: hard "mdast-util-mdx-jsx@npm:^3.0.0": version: 3.2.0 resolution: "mdast-util-mdx-jsx@npm:3.2.0" dependencies: "@types/estree-jsx": "npm:^1.0.0" "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" "@types/unist": "npm:^3.0.0" ccount: "npm:^2.0.0" devlop: "npm:^1.1.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" parse-entities: "npm:^4.0.0" stringify-entities: "npm:^4.0.0" unist-util-stringify-position: "npm:^4.0.0" vfile-message: "npm:^4.0.0" checksum: 10c0/3acadaf3b962254f7ad2990fed4729961dc0217ca31fde9917986e880843f3ecf3392b1f22d569235cacd180d50894ad266db7af598aedca69d330d33c7ac613 languageName: node linkType: hard "mdast-util-mdxjs-esm@npm:^2.0.0": version: 2.0.1 resolution: "mdast-util-mdxjs-esm@npm:2.0.1" dependencies: "@types/estree-jsx": "npm:^1.0.0" "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" mdast-util-from-markdown: "npm:^2.0.0" mdast-util-to-markdown: "npm:^2.0.0" checksum: 10c0/5bda92fc154141705af2b804a534d891f28dac6273186edf1a4c5e3f045d5b01dbcac7400d27aaf91b7e76e8dce007c7b2fdf136c11ea78206ad00bdf9db46bc languageName: node linkType: hard "mdast-util-phrasing@npm:^4.0.0": version: 4.1.0 resolution: "mdast-util-phrasing@npm:4.1.0" dependencies: "@types/mdast": "npm:^4.0.0" unist-util-is: "npm:^6.0.0" checksum: 10c0/bf6c31d51349aa3d74603d5e5a312f59f3f65662ed16c58017169a5fb0f84ca98578f626c5ee9e4aa3e0a81c996db8717096705521bddb4a0185f98c12c9b42f languageName: node linkType: hard "mdast-util-to-hast@npm:^13.0.0": version: 13.2.0 resolution: "mdast-util-to-hast@npm:13.2.0" dependencies: "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" "@ungap/structured-clone": "npm:^1.0.0" devlop: "npm:^1.0.0" micromark-util-sanitize-uri: "npm:^2.0.0" trim-lines: "npm:^3.0.0" unist-util-position: "npm:^5.0.0" unist-util-visit: "npm:^5.0.0" vfile: "npm:^6.0.0" checksum: 10c0/9ee58def9287df8350cbb6f83ced90f9c088d72d4153780ad37854f87144cadc6f27b20347073b285173b1649b0723ddf0b9c78158608a804dcacb6bda6e1816 languageName: node linkType: hard "mdast-util-to-markdown@npm:^2.0.0, mdast-util-to-markdown@npm:^2.1.0": version: 2.1.2 resolution: "mdast-util-to-markdown@npm:2.1.2" dependencies: "@types/mdast": "npm:^4.0.0" "@types/unist": "npm:^3.0.0" longest-streak: "npm:^3.0.0" mdast-util-phrasing: "npm:^4.0.0" mdast-util-to-string: "npm:^4.0.0" micromark-util-classify-character: "npm:^2.0.0" micromark-util-decode-string: "npm:^2.0.0" unist-util-visit: "npm:^5.0.0" zwitch: "npm:^2.0.0" checksum: 10c0/4649722a6099f12e797bd8d6469b2b43b44e526b5182862d9c7766a3431caad2c0112929c538a972f214e63c015395e5d3f54bd81d9ac1b16e6d8baaf582f749 languageName: node linkType: hard "mdast-util-to-string@npm:^4.0.0": version: 4.0.0 resolution: "mdast-util-to-string@npm:4.0.0" dependencies: "@types/mdast": "npm:^4.0.0" checksum: 10c0/2d3c1af29bf3fe9c20f552ee9685af308002488f3b04b12fa66652c9718f66f41a32f8362aa2d770c3ff464c034860b41715902ada2306bb0a055146cef064d7 languageName: node linkType: hard "mdurl@npm:^2.0.0": version: 2.0.0 resolution: "mdurl@npm:2.0.0" checksum: 10c0/633db522272f75ce4788440669137c77540d74a83e9015666a9557a152c02e245b192edc20bc90ae953bbab727503994a53b236b4d9c99bdaee594d0e7dd2ce0 languageName: node linkType: hard "memoize-one@npm:>=3.1.1 <6, memoize-one@npm:^5.1.1": version: 5.2.1 resolution: "memoize-one@npm:5.2.1" checksum: 10c0/fd22dbe9a978a2b4f30d6a491fc02fb90792432ad0dab840dc96c1734d2bd7c9cdeb6a26130ec60507eb43230559523615873168bcbe8fafab221c30b11d54c1 languageName: node linkType: hard "memoize-one@npm:^6.0.0": version: 6.0.0 resolution: "memoize-one@npm:6.0.0" checksum: 10c0/45c88e064fd715166619af72e8cf8a7a17224d6edf61f7a8633d740ed8c8c0558a4373876c9b8ffc5518c2b65a960266adf403cc215cb1e90f7e262b58991f54 languageName: node linkType: hard "merge2@npm:^1.3.0, merge2@npm:^1.4.1": version: 1.4.1 resolution: "merge2@npm:1.4.1" checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb languageName: node linkType: hard "metaviewport-parser@npm:0.3.0": version: 0.3.0 resolution: "metaviewport-parser@npm:0.3.0" checksum: 10c0/c6bd79013449a4f3d6697c8b931f4c6655c140f42b56e761aff221a506ac6d3aac6b590e845f6a4101877b6b89ef57f08523b49d94236cadba7f9d5d97d27271 languageName: node linkType: hard "micromark-core-commonmark@npm:^2.0.0": version: 2.0.2 resolution: "micromark-core-commonmark@npm:2.0.2" dependencies: decode-named-character-reference: "npm:^1.0.0" devlop: "npm:^1.0.0" micromark-factory-destination: "npm:^2.0.0" micromark-factory-label: "npm:^2.0.0" micromark-factory-space: "npm:^2.0.0" micromark-factory-title: "npm:^2.0.0" micromark-factory-whitespace: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-chunked: "npm:^2.0.0" micromark-util-classify-character: "npm:^2.0.0" micromark-util-html-tag-name: "npm:^2.0.0" micromark-util-normalize-identifier: "npm:^2.0.0" micromark-util-resolve-all: "npm:^2.0.0" micromark-util-subtokenize: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/87c7a75cd339189eb6f1d6323037f7d108d1331d953b84fe839b37fd385ee2292b27222327c1ceffda46ba5d5d4dee703482475e5ee8744be40c9e308d8acb77 languageName: node linkType: hard "micromark-extension-directive@npm:^4.0.0": version: 4.0.0 resolution: "micromark-extension-directive@npm:4.0.0" dependencies: devlop: "npm:^1.0.0" micromark-factory-space: "npm:^2.0.0" micromark-factory-whitespace: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" parse-entities: "npm:^4.0.0" checksum: 10c0/b4aef0f44339543466ae186130a4514985837b6b12d0c155bd1162e740f631e58f0883a39d0c723206fa0ff53a9b579965c79116f902236f6f123c3340b5fefb languageName: node linkType: hard "micromark-extension-gfm-autolink-literal@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-autolink-literal@npm:2.1.0" dependencies: micromark-util-character: "npm:^2.0.0" micromark-util-sanitize-uri: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/84e6fbb84ea7c161dfa179665dc90d51116de4c28f3e958260c0423e5a745372b7dcbc87d3cde98213b532e6812f847eef5ae561c9397d7f7da1e59872ef3efe languageName: node linkType: hard "micromark-extension-gfm-footnote@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-footnote@npm:2.1.0" dependencies: devlop: "npm:^1.0.0" micromark-core-commonmark: "npm:^2.0.0" micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-normalize-identifier: "npm:^2.0.0" micromark-util-sanitize-uri: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/d172e4218968b7371b9321af5cde8c77423f73b233b2b0fcf3ff6fd6f61d2e0d52c49123a9b7910612478bf1f0d5e88c75a3990dd68f70f3933fe812b9f77edc languageName: node linkType: hard "micromark-extension-gfm-strikethrough@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-strikethrough@npm:2.1.0" dependencies: devlop: "npm:^1.0.0" micromark-util-chunked: "npm:^2.0.0" micromark-util-classify-character: "npm:^2.0.0" micromark-util-resolve-all: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/ef4f248b865bdda71303b494671b7487808a340b25552b11ca6814dff3fcfaab9be8d294643060bbdb50f79313e4a686ab18b99cbe4d3ee8a4170fcd134234fb languageName: node linkType: hard "micromark-extension-gfm-table@npm:^2.0.0": version: 2.1.1 resolution: "micromark-extension-gfm-table@npm:2.1.1" dependencies: devlop: "npm:^1.0.0" micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/04bc00e19b435fa0add62cd029d8b7eb6137522f77832186b1d5ef34544a9bd030c9cf85e92ddfcc5c31f6f0a58a43d4b96dba4fc21316037c734630ee12c912 languageName: node linkType: hard "micromark-extension-gfm-tagfilter@npm:^2.0.0": version: 2.0.0 resolution: "micromark-extension-gfm-tagfilter@npm:2.0.0" dependencies: micromark-util-types: "npm:^2.0.0" checksum: 10c0/995558843fff137ae4e46aecb878d8a4691cdf23527dcf1e2f0157d66786be9f7bea0109c52a8ef70e68e3f930af811828ba912239438e31a9cfb9981f44d34d languageName: node linkType: hard "micromark-extension-gfm-task-list-item@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-task-list-item@npm:2.1.0" dependencies: devlop: "npm:^1.0.0" micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/78aa537d929e9309f076ba41e5edc99f78d6decd754b6734519ccbbfca8abd52e1c62df68d41a6ae64d2a3fc1646cea955893c79680b0b4385ced4c52296181f languageName: node linkType: hard "micromark-extension-gfm@npm:^3.0.0": version: 3.0.0 resolution: "micromark-extension-gfm@npm:3.0.0" dependencies: micromark-extension-gfm-autolink-literal: "npm:^2.0.0" micromark-extension-gfm-footnote: "npm:^2.0.0" micromark-extension-gfm-strikethrough: "npm:^2.0.0" micromark-extension-gfm-table: "npm:^2.0.0" micromark-extension-gfm-tagfilter: "npm:^2.0.0" micromark-extension-gfm-task-list-item: "npm:^2.0.0" micromark-util-combine-extensions: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/970e28df6ebdd7c7249f52a0dda56e0566fbfa9ae56c8eeeb2445d77b6b89d44096880cd57a1c01e7821b1f4e31009109fbaca4e89731bff7b83b8519690e5d9 languageName: node linkType: hard "micromark-extension-math@npm:^3.0.0": version: 3.1.0 resolution: "micromark-extension-math@npm:3.1.0" dependencies: "@types/katex": "npm:^0.16.0" devlop: "npm:^1.0.0" katex: "npm:^0.16.0" micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/56e6f2185a4613f9d47e7e98cf8605851c990957d9229c942b005e286c8087b61dc9149448d38b2f8be6d42cc6a64aad7e1f2778ddd86fbbb1a2f48a3ca1872f languageName: node linkType: hard "micromark-factory-destination@npm:^2.0.0": version: 2.0.1 resolution: "micromark-factory-destination@npm:2.0.1" dependencies: micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/bbafcf869cee5bf511161354cb87d61c142592fbecea051000ff116068dc85216e6d48519d147890b9ea5d7e2864a6341c0c09d9948c203bff624a80a476023c languageName: node linkType: hard "micromark-factory-label@npm:^2.0.0": version: 2.0.1 resolution: "micromark-factory-label@npm:2.0.1" dependencies: devlop: "npm:^1.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/0137716b4ecb428114165505e94a2f18855c8bbea21b07a8b5ce514b32a595ed789d2b967125718fc44c4197ceaa48f6609d58807a68e778138d2e6b91b824e8 languageName: node linkType: hard "micromark-factory-space@npm:^2.0.0": version: 2.0.1 resolution: "micromark-factory-space@npm:2.0.1" dependencies: micromark-util-character: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/f9ed43f1c0652d8d898de0ac2be3f77f776fffe7dd96bdbba1e02d7ce33d3853c6ff5daa52568fc4fa32cdf3a62d86b85ead9b9189f7211e1d69ff2163c450fb languageName: node linkType: hard "micromark-factory-title@npm:^2.0.0": version: 2.0.1 resolution: "micromark-factory-title@npm:2.0.1" dependencies: micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/e72fad8d6e88823514916890099a5af20b6a9178ccf78e7e5e05f4de99bb8797acb756257d7a3a57a53854cb0086bf8aab15b1a9e9db8982500dd2c9ff5948b6 languageName: node linkType: hard "micromark-factory-whitespace@npm:^2.0.0": version: 2.0.1 resolution: "micromark-factory-whitespace@npm:2.0.1" dependencies: micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/20a1ec58698f24b766510a309b23a10175034fcf1551eaa9da3adcbed3e00cd53d1ebe5f030cf873f76a1cec3c34eb8c50cc227be3344caa9ed25d56cf611224 languageName: node linkType: hard "micromark-util-character@npm:^2.0.0": version: 2.1.1 resolution: "micromark-util-character@npm:2.1.1" dependencies: micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/d3fe7a5e2c4060fc2a076f9ce699c82a2e87190a3946e1e5eea77f563869b504961f5668d9c9c014724db28ac32fa909070ea8b30c3a39bd0483cc6c04cc76a1 languageName: node linkType: hard "micromark-util-chunked@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-chunked@npm:2.0.1" dependencies: micromark-util-symbol: "npm:^2.0.0" checksum: 10c0/b68c0c16fe8106949537bdcfe1be9cf36c0ccd3bc54c4007003cb0984c3750b6cdd0fd77d03f269a3382b85b0de58bde4f6eedbe7ecdf7244759112289b1ab56 languageName: node linkType: hard "micromark-util-classify-character@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-classify-character@npm:2.0.1" dependencies: micromark-util-character: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/8a02e59304005c475c332f581697e92e8c585bcd45d5d225a66c1c1b14ab5a8062705188c2ccec33cc998d33502514121478b2091feddbc751887fc9c290ed08 languageName: node linkType: hard "micromark-util-combine-extensions@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-combine-extensions@npm:2.0.1" dependencies: micromark-util-chunked: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/f15e282af24c8372cbb10b9b0b3e2c0aa681fea0ca323a44d6bc537dc1d9382c819c3689f14eaa000118f5a163245358ce6276b2cda9a84439cdb221f5d86ae7 languageName: node linkType: hard "micromark-util-decode-numeric-character-reference@npm:^2.0.0": version: 2.0.2 resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2" dependencies: micromark-util-symbol: "npm:^2.0.0" checksum: 10c0/9c8a9f2c790e5593ffe513901c3a110e9ec8882a08f466da014112a25e5059b51551ca0aeb7ff494657d86eceb2f02ee556c6558b8d66aadc61eae4a240da0df languageName: node linkType: hard "micromark-util-decode-string@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-decode-string@npm:2.0.1" dependencies: decode-named-character-reference: "npm:^1.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-decode-numeric-character-reference: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" checksum: 10c0/f24d75b2e5310be6e7b6dee532e0d17d3bf46996841d6295f2a9c87a2046fff4ab603c52ab9d7a7a6430a8b787b1574ae895849c603d262d1b22eef71736b5cb languageName: node linkType: hard "micromark-util-encode@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-encode@npm:2.0.1" checksum: 10c0/b2b29f901093845da8a1bf997ea8b7f5e061ffdba85070dfe14b0197c48fda64ffcf82bfe53c90cf9dc185e69eef8c5d41cae3ba918b96bc279326921b59008a languageName: node linkType: hard "micromark-util-html-tag-name@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-html-tag-name@npm:2.0.1" checksum: 10c0/ae80444db786fde908e9295f19a27a4aa304171852c77414516418650097b8afb401961c9edb09d677b06e97e8370cfa65638dde8438ebd41d60c0a8678b85b9 languageName: node linkType: hard "micromark-util-normalize-identifier@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-normalize-identifier@npm:2.0.1" dependencies: micromark-util-symbol: "npm:^2.0.0" checksum: 10c0/5299265fa360769fc499a89f40142f10a9d4a5c3dd8e6eac8a8ef3c2e4a6570e4c009cf75ea46dce5ee31c01f25587bde2f4a5cc0a935584ae86dd857f2babbd languageName: node linkType: hard "micromark-util-resolve-all@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-resolve-all@npm:2.0.1" dependencies: micromark-util-types: "npm:^2.0.0" checksum: 10c0/bb6ca28764696bb479dc44a2d5b5fe003e7177aeae1d6b0d43f24cc223bab90234092d9c3ce4a4d2b8df095ccfd820537b10eb96bb7044d635f385d65a4c984a languageName: node linkType: hard "micromark-util-sanitize-uri@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-sanitize-uri@npm:2.0.1" dependencies: micromark-util-character: "npm:^2.0.0" micromark-util-encode: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" checksum: 10c0/60e92166e1870fd4f1961468c2651013ff760617342918e0e0c3c4e872433aa2e60c1e5a672bfe5d89dc98f742d6b33897585cf86ae002cda23e905a3c02527c languageName: node linkType: hard "micromark-util-subtokenize@npm:^2.0.0": version: 2.0.4 resolution: "micromark-util-subtokenize@npm:2.0.4" dependencies: devlop: "npm:^1.0.0" micromark-util-chunked: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/d1d19c6ede87e5d3778aa7f6c56ad736a48404556757abf71ea87bd2baac71927d18db3c9a1f76c4b3f42f32d6032aea97d1de739b49872daf168c6f8f373f39 languageName: node linkType: hard "micromark-util-symbol@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-symbol@npm:2.0.1" checksum: 10c0/f2d1b207771e573232436618e78c5e46cd4b5c560dd4a6d63863d58018abbf49cb96ec69f7007471e51434c60de3c9268ef2bf46852f26ff4aacd10f9da16fe9 languageName: node linkType: hard "micromark-util-types@npm:^2.0.0": version: 2.0.1 resolution: "micromark-util-types@npm:2.0.1" checksum: 10c0/872ec9334bb42afcc91c5bed8b7ee03b75654b36c6f221ab4d2b1bb0299279f00db948bf38ec6bc1ec03d0cf7842c21ab805190bf676157ba587eb0386d38b71 languageName: node linkType: hard "micromark@npm:^4.0.0": version: 4.0.1 resolution: "micromark@npm:4.0.1" dependencies: "@types/debug": "npm:^4.0.0" debug: "npm:^4.0.0" decode-named-character-reference: "npm:^1.0.0" devlop: "npm:^1.0.0" micromark-core-commonmark: "npm:^2.0.0" micromark-factory-space: "npm:^2.0.0" micromark-util-character: "npm:^2.0.0" micromark-util-chunked: "npm:^2.0.0" micromark-util-combine-extensions: "npm:^2.0.0" micromark-util-decode-numeric-character-reference: "npm:^2.0.0" micromark-util-encode: "npm:^2.0.0" micromark-util-normalize-identifier: "npm:^2.0.0" micromark-util-resolve-all: "npm:^2.0.0" micromark-util-sanitize-uri: "npm:^2.0.0" micromark-util-subtokenize: "npm:^2.0.0" micromark-util-symbol: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" checksum: 10c0/b5d950c84664ce209575e5a54946488f0a1e1240d080544e657b65074c9b08208a5315d9db066b93cbc199ec05f68552ba8b09fd5e716c726f4a4712275a7c5c languageName: node linkType: hard "micromatch@npm:^4.0.4, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: braces: "npm:^3.0.3" picomatch: "npm:^2.3.1" checksum: 10c0/166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8 languageName: node linkType: hard "mime-db@npm:1.52.0": version: 1.52.0 resolution: "mime-db@npm:1.52.0" checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa languageName: node linkType: hard "mime-types@npm:^2.1.12": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: mime-db: "npm:1.52.0" checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 languageName: node linkType: hard "min-indent@npm:^1.0.0": version: 1.0.1 resolution: "min-indent@npm:1.0.1" checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c languageName: node linkType: hard "minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: brace-expansion: "npm:^1.1.7" checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 languageName: node linkType: hard "minimatch@npm:^5.0.1": version: 5.1.6 resolution: "minimatch@npm:5.1.6" dependencies: brace-expansion: "npm:^2.0.1" checksum: 10c0/3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3 languageName: node linkType: hard "minimatch@npm:^9.0.0, minimatch@npm:^9.0.3, minimatch@npm:^9.0.4": version: 9.0.5 resolution: "minimatch@npm:9.0.5" dependencies: brace-expansion: "npm:^2.0.1" checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed languageName: node linkType: hard "minimatch@npm:~3.0.3": version: 3.0.8 resolution: "minimatch@npm:3.0.8" dependencies: brace-expansion: "npm:^1.1.7" checksum: 10c0/72b226f452dcfb5075255f53534cb83fc25565b909e79b9be4fad463d735cb1084827f7013ff41d050e77ee6e474408c6073473edd2fb72c2fd630cfb0acc6ad languageName: node linkType: hard "minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 languageName: node linkType: hard "minipass-collect@npm:^2.0.1": version: 2.0.1 resolution: "minipass-collect@npm:2.0.1" dependencies: minipass: "npm:^7.0.3" checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e languageName: node linkType: hard "minipass-fetch@npm:^4.0.0": version: 4.0.0 resolution: "minipass-fetch@npm:4.0.0" dependencies: encoding: "npm:^0.1.13" minipass: "npm:^7.0.3" minipass-sized: "npm:^1.0.3" minizlib: "npm:^3.0.1" dependenciesMeta: encoding: optional: true checksum: 10c0/7fa30ce7c373fb6f94c086b374fff1589fd7e78451855d2d06c2e2d9df936d131e73e952163063016592ed3081444bd8d1ea608533313b0149156ce23311da4b languageName: node linkType: hard "minipass-flush@npm:^1.0.5": version: 1.0.5 resolution: "minipass-flush@npm:1.0.5" dependencies: minipass: "npm:^3.0.0" checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd languageName: node linkType: hard "minipass-pipeline@npm:^1.2.4": version: 1.2.4 resolution: "minipass-pipeline@npm:1.2.4" dependencies: minipass: "npm:^3.0.0" checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 languageName: node linkType: hard "minipass-sized@npm:^1.0.3": version: 1.0.3 resolution: "minipass-sized@npm:1.0.3" dependencies: minipass: "npm:^3.0.0" checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb languageName: node linkType: hard "minipass@npm:^3.0.0": version: 3.3.6 resolution: "minipass@npm:3.3.6" dependencies: yallist: "npm:^4.0.0" checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c languageName: node linkType: hard "minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": version: 7.1.2 resolution: "minipass@npm:7.1.2" checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 languageName: node linkType: hard "minizlib@npm:^3.0.1": version: 3.0.1 resolution: "minizlib@npm:3.0.1" dependencies: minipass: "npm:^7.0.4" rimraf: "npm:^5.0.5" checksum: 10c0/82f8bf70da8af656909a8ee299d7ed3b3372636749d29e105f97f20e88971be31f5ed7642f2e898f00283b68b701cc01307401cdc209b0efc5dd3818220e5093 languageName: node linkType: hard "mitt@npm:^3.0.1": version: 3.0.1 resolution: "mitt@npm:3.0.1" checksum: 10c0/3ab4fdecf3be8c5255536faa07064d05caa3dd332bd318ff02e04621f7b3069ca1de9106cfe8e7ced675abfc2bec2ce4c4ef321c4a1bb1fb29df8ae090741913 languageName: node linkType: hard "mjolnir.js@npm:^2.5.0": version: 2.7.3 resolution: "mjolnir.js@npm:2.7.3" dependencies: "@types/hammerjs": "npm:^2.0.41" hammerjs: "npm:^2.0.8" checksum: 10c0/82f86dedfd410a640e5d0ef6f04e1d72ab292e61d42434bc56f103670ada45b2aacf130527f434d7d4bd0b8d2d5bc82bd36850e7586f1b70ebb72da2fe2c72b2 languageName: node linkType: hard "mjolnir.js@npm:^3.0.0": version: 3.0.0 resolution: "mjolnir.js@npm:3.0.0" checksum: 10c0/bdbe0b6ab1420917a68fa0faa47351295b189816ad67c9ace36c24ff341f873a7e4d6ea704e33f2a6f9b8fc0ff6b8d17e30ad74aed455da38d97ba52198a6274 languageName: node linkType: hard "mkdirp@npm:^0.5.1": version: 0.5.6 resolution: "mkdirp@npm:0.5.6" dependencies: minimist: "npm:^1.2.6" bin: mkdirp: bin/cmd.js checksum: 10c0/e2e2be789218807b58abced04e7b49851d9e46e88a2f9539242cc8a92c9b5c3a0b9bab360bd3014e02a140fc4fbc58e31176c408b493f8a2a6f4986bd7527b01 languageName: node linkType: hard "mkdirp@npm:^1.0.4": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" bin: mkdirp: bin/cmd.js checksum: 10c0/46ea0f3ffa8bc6a5bc0c7081ffc3907777f0ed6516888d40a518c5111f8366d97d2678911ad1a6882bf592fa9de6c784fea32e1687bb94e1f4944170af48a5cf languageName: node linkType: hard "mkdirp@npm:^3.0.1": version: 3.0.1 resolution: "mkdirp@npm:3.0.1" bin: mkdirp: dist/cjs/src/bin.js checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d languageName: node linkType: hard "mlly@npm:^1.7.4": version: 1.7.4 resolution: "mlly@npm:1.7.4" dependencies: acorn: "npm:^8.14.0" pathe: "npm:^2.0.1" pkg-types: "npm:^1.3.0" ufo: "npm:^1.5.4" checksum: 10c0/69e738218a13d6365caf930e0ab4e2b848b84eec261597df9788cefb9930f3e40667be9cb58a4718834ba5f97a6efeef31d3b5a95f4388143fd4e0d0deff72ff languageName: node linkType: hard "mock-socket@npm:^9.2.1": version: 9.3.1 resolution: "mock-socket@npm:9.3.1" checksum: 10c0/0c53baa4acca12ed1ff9bddfdd4bc0cabe0fc96a3ed25a42a00d23b7a111eb6edfc2b44d93aef9a0c93a4a000b4d2d8dcff028488cd2a1e9cc416477ee341ce0 languageName: node linkType: hard "mockdate@npm:^3.0.5": version: 3.0.5 resolution: "mockdate@npm:3.0.5" checksum: 10c0/36ab00c4b94d3e3cc8b9ecec27730dcf396d47d2ba046ad96635e7f9bc4bba0fff6125dedaba7313b1cadc0cefc0eb3f3ac0d5c3655707afd3b82fa4550aae92 languageName: node linkType: hard "module-details-from-path@npm:^1.0.3": version: 1.0.4 resolution: "module-details-from-path@npm:1.0.4" checksum: 10c0/10863413e96dab07dee917eae07afe46f7bf853065cc75a7d2a718adf67574857fb64f8a2c0c9af12ac733a9a8cf652db7ed39b95f7a355d08106cb9cc50c83b languageName: node linkType: hard "moment-duration-format@npm:^2.3.2": version: 2.3.2 resolution: "moment-duration-format@npm:2.3.2" checksum: 10c0/c1783bdfaeb92400972845d62418b97bc38b53a85ecc222a36b4c2713fad64f628c70fa35834aa88487a6f4423fe02bfa08377506cfe217aeadcb86c19834da2 languageName: node linkType: hard "moment-timezone@npm:^0.5.33": version: 0.5.45 resolution: "moment-timezone@npm:0.5.45" dependencies: moment: "npm:^2.29.4" checksum: 10c0/7497f23c4b8c875dbf07c03f9a1253f79edaeedc29d5732e36bfd3c5577e25aed1924fbd84cbb713ce1920dbe822be0e21bd487851a7d13907226f289a5e568b languageName: node linkType: hard "moment-timezone@npm:^0.6.0": version: 0.6.0 resolution: "moment-timezone@npm:0.6.0" dependencies: moment: "npm:^2.29.4" checksum: 10c0/16164cf321d8be0bf7d43855286b426c94c8200e0634f2e42cf469f591c6a230ac43f37d3826d76b05ac221f69a571400323fb8625e3d4e8669f4d9ab00fe779 languageName: node linkType: hard "moment@npm:>=2.14.0, moment@npm:^2.29.4, moment@npm:^2.30.1": version: 2.30.1 resolution: "moment@npm:2.30.1" checksum: 10c0/865e4279418c6de666fca7786607705fd0189d8a7b7624e2e56be99290ac846f90878a6f602e34b4e0455c549b85385b1baf9966845962b313699e7cb847543a languageName: node linkType: hard "moo-color@npm:^1.0.2": version: 1.0.3 resolution: "moo-color@npm:1.0.3" dependencies: color-name: "npm:^1.1.4" checksum: 10c0/778c82f67f638c03a1d0fa78dcd6ea376a9f17b5e78e349c7e34a290b496dbdb43fd0b1c38070e2062d5e784bcf08e57f499015fcbcf52b3a1887d7825ebb80d languageName: node linkType: hard "mouse-change@npm:^1.4.0": version: 1.4.0 resolution: "mouse-change@npm:1.4.0" dependencies: mouse-event: "npm:^1.0.0" checksum: 10c0/e500b88fe23cceaee41d2e5120b91776b983767303ec307b113e88590b414638408dfc692e31a1b64f7bddc211e5b6c74fc9a3af8067ae7ca52202c7b42f2926 languageName: node linkType: hard "mouse-event-offset@npm:^3.0.2": version: 3.0.2 resolution: "mouse-event-offset@npm:3.0.2" checksum: 10c0/999a9f85082258fbd5a0478f54dbe4e6f064c13dae486e6fb39e5ebf73d81ee339f919c9ff7eb14819b6fd0e0f440f77506115e783582889f05549b2d9a1d2ef languageName: node linkType: hard "mouse-event@npm:^1.0.0": version: 1.0.5 resolution: "mouse-event@npm:1.0.5" checksum: 10c0/b8da3570537a08279ae19f5f4417b7814de0271c89ea4d5746d97f3de50abd62dd4499c0fca6c5ca2af7f8ddb79986493dfd2082669aab87783558adf2d56761 languageName: node linkType: hard "mouse-wheel@npm:^1.2.0": version: 1.2.0 resolution: "mouse-wheel@npm:1.2.0" dependencies: right-now: "npm:^1.0.0" signum: "npm:^1.0.0" to-px: "npm:^1.0.1" checksum: 10c0/a5710b0fa46d7465ad22146b5c43ab4475567eaee7d697936c6be751e05dad3e3433a069735bcdcd09b44de9f1cfd2223eb3e28a7a71e83ecfc3fdbeb3f064d7 languageName: node linkType: hard "ms@npm:2.0.0": version: 2.0.0 resolution: "ms@npm:2.0.0" checksum: 10c0/f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d languageName: node linkType: hard "ms@npm:^2.1.1, ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 languageName: node linkType: hard "muggle-string@npm:^0.4.1": version: 0.4.1 resolution: "muggle-string@npm:0.4.1" checksum: 10c0/e914b63e24cd23f97e18376ec47e4ba3aa24365e4776212b666add2e47bb158003212980d732c49abf3719568900af7861873844a6e2d3a7ca7e86952c0e99e9 languageName: node linkType: hard "murmurhash-js@npm:^1.0.0": version: 1.0.0 resolution: "murmurhash-js@npm:1.0.0" checksum: 10c0/f8569e16db0ba6f953bf88286e97cf737f1efe97b224e537c9308566ab963a067c7eca5b636fb473d6413c4cc3b79690b78ff7ab0f290e75db91c6fde0df92b4 languageName: node linkType: hard "mylas@npm:^2.1.9": version: 2.1.13 resolution: "mylas@npm:2.1.13" checksum: 10c0/093dfaf88f444d9da956c68a61ddcfe05ab9411c0024b0c7f4d721639ba7d311ea8f9c052ce617344e67d40982f67614cd634b525b923048bf9a191234968c9c languageName: node linkType: hard "nanoid@npm:^3.3.11": version: 3.3.11 resolution: "nanoid@npm:3.3.11" bin: nanoid: bin/nanoid.cjs checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b languageName: node linkType: hard "napi-postinstall@npm:^0.2.2": version: 0.2.4 resolution: "napi-postinstall@npm:0.2.4" bin: napi-postinstall: lib/cli.js checksum: 10c0/e8c357d7e27848c4af7becf2796afff245a2fc8ba176e1b133410bb1c9934a66d4bc542d0c9f04c73b0ba34ee0486b30b6cd1c62ed3aa36797d394200c9a2a8b languageName: node linkType: hard "native-file-system-adapter@npm:^3.0.1": version: 3.0.1 resolution: "native-file-system-adapter@npm:3.0.1" dependencies: fetch-blob: "npm:^3.2.0" dependenciesMeta: fetch-blob: optional: true checksum: 10c0/2a60cd7fa6b92a85b1fc9dbbda91135f66af424e240e36c7c3708b987330844fb689e29a92a8a472d7216f685423e863af8acfb4b9a7bd73c0f6093fff4bf2fd languageName: node linkType: hard "native-promise-only@npm:^0.8.1": version: 0.8.1 resolution: "native-promise-only@npm:0.8.1" checksum: 10c0/c1b41128ca9806818e12d0b84f7c71e88b1fa00f0f4857767d96206dbdd0af6755305103f55c583b045533185ffca863b0c34116ade507ff7ba2e417e076a5ac languageName: node linkType: hard "natural-compare@npm:^1.4.0": version: 1.4.0 resolution: "natural-compare@npm:1.4.0" checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 languageName: node linkType: hard "needle@npm:^2.5.2": version: 2.9.1 resolution: "needle@npm:2.9.1" dependencies: debug: "npm:^3.2.6" iconv-lite: "npm:^0.4.4" sax: "npm:^1.2.4" bin: needle: ./bin/needle checksum: 10c0/65a7eaeaf4ca3410de492957474592af9838e02875273d9232ff6cff331393c58a95e48c592bd9a05f575e5bb9b08543d6cfd19eb96595dbd3d7da2c5fe1accb languageName: node linkType: hard "negotiator@npm:^1.0.0": version: 1.0.0 resolution: "negotiator@npm:1.0.0" checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b languageName: node linkType: hard "netmask@npm:^2.0.2": version: 2.0.2 resolution: "netmask@npm:2.0.2" checksum: 10c0/cafd28388e698e1138ace947929f842944d0f1c0b87d3fa2601a61b38dc89397d33c0ce2c8e7b99e968584b91d15f6810b91bef3f3826adf71b1833b61d4bf4f languageName: node linkType: hard "next-tick@npm:^1.1.0": version: 1.1.0 resolution: "next-tick@npm:1.1.0" checksum: 10c0/3ba80dd805fcb336b4f52e010992f3e6175869c8d88bf4ff0a81d5d66e6049f89993463b28211613e58a6b7fe93ff5ccbba0da18d4fa574b96289e8f0b577f28 languageName: node linkType: hard "no-case@npm:^3.0.4": version: 3.0.4 resolution: "no-case@npm:3.0.4" dependencies: lower-case: "npm:^2.0.2" tslib: "npm:^2.0.3" checksum: 10c0/8ef545f0b3f8677c848f86ecbd42ca0ff3cd9dd71c158527b344c69ba14710d816d8489c746b6ca225e7b615108938a0bda0a54706f8c255933703ac1cf8e703 languageName: node linkType: hard "node-domexception@npm:^1.0.0": version: 1.0.0 resolution: "node-domexception@npm:1.0.0" checksum: 10c0/5e5d63cda29856402df9472335af4bb13875e1927ad3be861dc5ebde38917aecbf9ae337923777af52a48c426b70148815e890a5d72760f1b4d758cc671b1a2b languageName: node linkType: hard "node-emoji@npm:^2.1.3, node-emoji@npm:^2.2.0": version: 2.2.0 resolution: "node-emoji@npm:2.2.0" dependencies: "@sindresorhus/is": "npm:^4.6.0" char-regex: "npm:^1.0.2" emojilib: "npm:^2.4.0" skin-tone: "npm:^2.0.0" checksum: 10c0/9525defbd90a82a2131758c2470203fa2a2faa8edd177147a8654a26307fe03594e52847ecbe2746d06cfc5c50acd12bd500f035350a7609e8217c9894c19aad languageName: node linkType: hard "node-fetch@npm:3.3.2": version: 3.3.2 resolution: "node-fetch@npm:3.3.2" dependencies: data-uri-to-buffer: "npm:^4.0.0" fetch-blob: "npm:^3.1.4" formdata-polyfill: "npm:^4.0.10" checksum: 10c0/f3d5e56190562221398c9f5750198b34cf6113aa304e34ee97c94fd300ec578b25b2c2906edba922050fce983338fde0d5d34fcb0fc3336ade5bd0e429ad7538 languageName: node linkType: hard "node-fetch@npm:^2.6.12": version: 2.7.0 resolution: "node-fetch@npm:2.7.0" dependencies: whatwg-url: "npm:^5.0.0" peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: encoding: optional: true checksum: 10c0/b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8 languageName: node linkType: hard "node-gyp@npm:latest": version: 11.0.0 resolution: "node-gyp@npm:11.0.0" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" glob: "npm:^10.3.10" graceful-fs: "npm:^4.2.6" make-fetch-happen: "npm:^14.0.3" nopt: "npm:^8.0.0" proc-log: "npm:^5.0.0" semver: "npm:^7.3.5" tar: "npm:^7.4.3" which: "npm:^5.0.0" bin: node-gyp: bin/node-gyp.js checksum: 10c0/a3b885bbee2d271f1def32ba2e30ffcf4562a3db33af06b8b365e053153e2dd2051b9945783c3c8e852d26a0f20f65b251c7e83361623383a99635c0280ee573 languageName: node linkType: hard "node-releases@npm:^2.0.18": version: 2.0.18 resolution: "node-releases@npm:2.0.18" checksum: 10c0/786ac9db9d7226339e1dc84bbb42007cb054a346bd9257e6aa154d294f01bc6a6cddb1348fa099f079be6580acbb470e3c048effd5f719325abd0179e566fd27 languageName: node linkType: hard "nopt@npm:^8.0.0": version: 8.0.0 resolution: "nopt@npm:8.0.0" dependencies: abbrev: "npm:^2.0.0" bin: nopt: bin/nopt.js checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f languageName: node linkType: hard "normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": version: 3.0.0 resolution: "normalize-path@npm:3.0.0" checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 languageName: node linkType: hard "normalize-svg-path@npm:^1.0.0": version: 1.1.0 resolution: "normalize-svg-path@npm:1.1.0" dependencies: svg-arc-to-cubic-bezier: "npm:^3.0.0" checksum: 10c0/2e24e1d0a9ca7f172cec161d9c14fef616c57040664d82f6077d97c42e6e8a113f288dc0cb55e19fc4873baa0c5ddc7857d24d4a1b6df594924451d1adbb1b41 languageName: node linkType: hard "normalize-svg-path@npm:~0.1.0": version: 0.1.0 resolution: "normalize-svg-path@npm:0.1.0" checksum: 10c0/a693092f83e1f1836d0dac2d36c9d13455552987f31e42a91e1d96a94c2aaca6c4e3fea3348acb9b78380ec6f5fc7573176438f614c9c359c384ce03a1d7856d languageName: node linkType: hard "npm-package-arg@npm:^12.0.0": version: 12.0.2 resolution: "npm-package-arg@npm:12.0.2" dependencies: hosted-git-info: "npm:^8.0.0" proc-log: "npm:^5.0.0" semver: "npm:^7.3.5" validate-npm-package-name: "npm:^6.0.0" checksum: 10c0/a507046ca0999862d6f1a4878d2e22d47a728062b49d670ea7a965b0b555fc84ba4473daf34eb72c711b68aeb02e4f567fdb410d54385535cb7e4d85aaf49544 languageName: node linkType: hard "npm-registry-fetch@npm:^18.0.2": version: 18.0.2 resolution: "npm-registry-fetch@npm:18.0.2" dependencies: "@npmcli/redact": "npm:^3.0.0" jsonparse: "npm:^1.3.1" make-fetch-happen: "npm:^14.0.0" minipass: "npm:^7.0.2" minipass-fetch: "npm:^4.0.0" minizlib: "npm:^3.0.1" npm-package-arg: "npm:^12.0.0" proc-log: "npm:^5.0.0" checksum: 10c0/43e02befb393f67d5014d690a96d55f0b5f837a3eb9a79b17738ff0e3a1f081968480f2f280d1ad77a088ebd88c196793d929b0e4d24a8389a324dfd4006bc39 languageName: node linkType: hard "number-is-integer@npm:^1.0.1": version: 1.0.1 resolution: "number-is-integer@npm:1.0.1" dependencies: is-finite: "npm:^1.0.1" checksum: 10c0/8108530e1d6321f1f62855343d7cb02235b76b1127bc2665420d65a8ce0804c3b33441228d40a320bc870ddb6feeece5c9486bae883868eb771b03c3597ba939 languageName: node linkType: hard "numbro@npm:^2.5.0": version: 2.5.0 resolution: "numbro@npm:2.5.0" dependencies: bignumber.js: "npm:^8 || ^9" checksum: 10c0/5fce44fb0e9dd9e3d48b74f0f29910af515284ac35eff0c14911ccaa7a666c2b95a55be02d2605f30fd3fac7d522ffecb5c1f24acb91c1a1880eb53b268a2ccc languageName: node linkType: hard "nwsapi@npm:^2.2.12": version: 2.2.20 resolution: "nwsapi@npm:2.2.20" checksum: 10c0/07f4dafa3186aef7c007863e90acd4342a34ba9d44b22f14f644fdb311f6086887e21c2fc15efaa826c2bc39ab2bc841364a1a630e7c87e0cb723ba59d729297 languageName: node linkType: hard "object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414 languageName: node linkType: hard "object-inspect@npm:^1.13.1": version: 1.13.2 resolution: "object-inspect@npm:1.13.2" checksum: 10c0/b97835b4c91ec37b5fd71add84f21c3f1047d1d155d00c0fcd6699516c256d4fcc6ff17a1aced873197fe447f91a3964178fd2a67a1ee2120cdaf60e81a050b4 languageName: node linkType: hard "object-inspect@npm:^1.13.3, object-inspect@npm:^1.13.4": version: 1.13.4 resolution: "object-inspect@npm:1.13.4" checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692 languageName: node linkType: hard "object-keys@npm:^1.1.1": version: 1.1.1 resolution: "object-keys@npm:1.1.1" checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d languageName: node linkType: hard "object.assign@npm:^4.1.4, object.assign@npm:^4.1.5": version: 4.1.5 resolution: "object.assign@npm:4.1.5" dependencies: call-bind: "npm:^1.0.5" define-properties: "npm:^1.2.1" has-symbols: "npm:^1.0.3" object-keys: "npm:^1.1.1" checksum: 10c0/60108e1fa2706f22554a4648299b0955236c62b3685c52abf4988d14fffb0e7731e00aa8c6448397e3eb63d087dcc124a9f21e1980f36d0b2667f3c18bacd469 languageName: node linkType: hard "object.assign@npm:^4.1.7": version: 4.1.7 resolution: "object.assign@npm:4.1.7" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" has-symbols: "npm:^1.1.0" object-keys: "npm:^1.1.1" checksum: 10c0/3b2732bd860567ea2579d1567525168de925a8d852638612846bd8082b3a1602b7b89b67b09913cbb5b9bd6e95923b2ae73580baa9d99cb4e990564e8cbf5ddc languageName: node linkType: hard "object.entries@npm:^1.1.9": version: 1.1.9 resolution: "object.entries@npm:1.1.9" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.4" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.1.1" checksum: 10c0/d4b8c1e586650407da03370845f029aa14076caca4e4d4afadbc69cfb5b78035fd3ee7be417141abdb0258fa142e59b11923b4c44d8b1255b28f5ffcc50da7db languageName: node linkType: hard "object.fromentries@npm:^2.0.8": version: 2.0.8 resolution: "object.fromentries@npm:2.0.8" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" es-object-atoms: "npm:^1.0.0" checksum: 10c0/cd4327e6c3369cfa805deb4cbbe919bfb7d3aeebf0bcaba291bb568ea7169f8f8cdbcabe2f00b40db0c20cd20f08e11b5f3a5a36fb7dd3fe04850c50db3bf83b languageName: node linkType: hard "object.groupby@npm:^1.0.3": version: 1.0.3 resolution: "object.groupby@npm:1.0.3" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.2" checksum: 10c0/60d0455c85c736fbfeda0217d1a77525956f76f7b2495edeca9e9bbf8168a45783199e77b894d30638837c654d0cc410e0e02cbfcf445bc8de71c3da1ede6a9c languageName: node linkType: hard "object.values@npm:^1.1.6": version: 1.2.0 resolution: "object.values@npm:1.2.0" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/15809dc40fd6c5529501324fec5ff08570b7d70fb5ebbe8e2b3901afec35cf2b3dc484d1210c6c642cd3e7e0a5e18dd1d6850115337fef46bdae14ab0cb18ac3 languageName: node linkType: hard "object.values@npm:^1.2.1": version: 1.2.1 resolution: "object.values@npm:1.2.1" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/3c47814fdc64842ae3d5a74bc9d06bdd8d21563c04d9939bf6716a9c00596a4ebc342552f8934013d1ec991c74e3671b26710a0c51815f0b603795605ab6b2c9 languageName: node linkType: hard "once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": version: 1.4.0 resolution: "once@npm:1.4.0" dependencies: wrappy: "npm:1" checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 languageName: node linkType: hard "once@npm:~1.3.0": version: 1.3.3 resolution: "once@npm:1.3.3" dependencies: wrappy: "npm:1" checksum: 10c0/bb9c0fa8f6420b89fea4e0fc80aac175f025358cd1374a8e7afb92672f58473684f45a784e18f147d07cf87e629cc277f63f35c48fdfdced662edd18779c5876 languageName: node linkType: hard "open@npm:^7.3.1": version: 7.4.2 resolution: "open@npm:7.4.2" dependencies: is-docker: "npm:^2.0.0" is-wsl: "npm:^2.1.1" checksum: 10c0/77573a6a68f7364f3a19a4c80492712720746b63680ee304555112605ead196afe91052bd3c3d165efdf4e9d04d255e87de0d0a77acec11ef47fd5261251813f languageName: node linkType: hard "open@npm:^8.4.0": version: 8.4.2 resolution: "open@npm:8.4.2" dependencies: define-lazy-prop: "npm:^2.0.0" is-docker: "npm:^2.1.1" is-wsl: "npm:^2.2.0" checksum: 10c0/bb6b3a58401dacdb0aad14360626faf3fb7fba4b77816b373495988b724fb48941cad80c1b65d62bb31a17609b2cd91c41a181602caea597ca80dfbcc27e84c9 languageName: node linkType: hard "optionator@npm:^0.8.1": version: 0.8.3 resolution: "optionator@npm:0.8.3" dependencies: deep-is: "npm:~0.1.3" fast-levenshtein: "npm:~2.0.6" levn: "npm:~0.3.0" prelude-ls: "npm:~1.1.2" type-check: "npm:~0.3.2" word-wrap: "npm:~1.2.3" checksum: 10c0/ad7000ea661792b3ec5f8f86aac28895850988926f483b5f308f59f4607dfbe24c05df2d049532ee227c040081f39401a268cf7bbf3301512f74c4d760dc6dd8 languageName: node linkType: hard "optionator@npm:^0.9.3": version: 0.9.4 resolution: "optionator@npm:0.9.4" dependencies: deep-is: "npm:^0.1.3" fast-levenshtein: "npm:^2.0.6" levn: "npm:^0.4.1" prelude-ls: "npm:^1.2.1" type-check: "npm:^0.4.0" word-wrap: "npm:^1.2.5" checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 languageName: node linkType: hard "orderedmap@npm:^2.0.0": version: 2.1.1 resolution: "orderedmap@npm:2.1.1" checksum: 10c0/8d7d266659d1828937046e8b2a7b5f75914e0391db985da0ca75cd2246cccbf6d6f3a0886aa2034da15ee4923e8c45f95f8b588f575f535f0adecdefccc54634 languageName: node linkType: hard "own-keys@npm:^1.0.1": version: 1.0.1 resolution: "own-keys@npm:1.0.1" dependencies: get-intrinsic: "npm:^1.2.6" object-keys: "npm:^1.1.1" safe-push-apply: "npm:^1.0.0" checksum: 10c0/6dfeb3455bff92ec3f16a982d4e3e65676345f6902d9f5ded1d8265a6318d0200ce461956d6d1c70053c7fe9f9fe65e552faac03f8140d37ef0fdd108e67013a languageName: node linkType: hard "p-limit@npm:^3.0.2": version: 3.1.0 resolution: "p-limit@npm:3.1.0" dependencies: yocto-queue: "npm:^0.1.0" checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a languageName: node linkType: hard "p-locate@npm:^5.0.0": version: 5.0.0 resolution: "p-locate@npm:5.0.0" dependencies: p-limit: "npm:^3.0.2" checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a languageName: node linkType: hard "p-map@npm:^7.0.2": version: 7.0.3 resolution: "p-map@npm:7.0.3" checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c languageName: node linkType: hard "pac-proxy-agent@npm:^7.1.0": version: 7.1.0 resolution: "pac-proxy-agent@npm:7.1.0" dependencies: "@tootallnate/quickjs-emscripten": "npm:^0.23.0" agent-base: "npm:^7.1.2" debug: "npm:^4.3.4" get-uri: "npm:^6.0.1" http-proxy-agent: "npm:^7.0.0" https-proxy-agent: "npm:^7.0.6" pac-resolver: "npm:^7.0.1" socks-proxy-agent: "npm:^8.0.5" checksum: 10c0/072528e3e7a0bb1187d5c09687a112ae230f6fa0d974e7460eaa0c1406666930ed53ffadfbfadfe8e1c7a8cc8d6ae26a4db96e27723d40a918c8454f0f1a012a languageName: node linkType: hard "pac-resolver@npm:^7.0.1": version: 7.0.1 resolution: "pac-resolver@npm:7.0.1" dependencies: degenerator: "npm:^5.0.0" netmask: "npm:^2.0.2" checksum: 10c0/5f3edd1dd10fded31e7d1f95776442c3ee51aa098c28b74ede4927d9677ebe7cebb2636750c24e945f5b84445e41ae39093d3a1014a994e5ceb9f0b1b88ebff5 languageName: node linkType: hard "package-json-from-dist@npm:^1.0.0": version: 1.0.1 resolution: "package-json-from-dist@npm:1.0.1" checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b languageName: node linkType: hard "pako@npm:1.0.11, pako@npm:~1.0.2": version: 1.0.11 resolution: "pako@npm:1.0.11" checksum: 10c0/86dd99d8b34c3930345b8bbeb5e1cd8a05f608eeb40967b293f72fe469d0e9c88b783a8777e4cc7dc7c91ce54c5e93d88ff4b4f060e6ff18408fd21030d9ffbe languageName: node linkType: hard "parent-module@npm:^1.0.0": version: 1.0.1 resolution: "parent-module@npm:1.0.1" dependencies: callsites: "npm:^3.0.0" checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 languageName: node linkType: hard "parenthesis@npm:^3.1.5": version: 3.1.8 resolution: "parenthesis@npm:3.1.8" checksum: 10c0/1c0d5dd8b238b7c703db5ff1ca35f41952a7b2597c2e97cd0d32ab345179062611bc4f8a849787ed7f23508e91140d74fea7c0050b6978c56499f707ff54c99c languageName: node linkType: hard "parse-cache-control@npm:1.0.1": version: 1.0.1 resolution: "parse-cache-control@npm:1.0.1" checksum: 10c0/330a0d9e3a22a7b0f6e8a973c0b9f51275642ee28544cd0d546420273946d555d20a5c7b49fca24d68d2e698bae0186f0f41f48d62133d3153c32454db05f2df languageName: node linkType: hard "parse-entities@npm:^2.0.0": version: 2.0.0 resolution: "parse-entities@npm:2.0.0" dependencies: character-entities: "npm:^1.0.0" character-entities-legacy: "npm:^1.0.0" character-reference-invalid: "npm:^1.0.0" is-alphanumerical: "npm:^1.0.0" is-decimal: "npm:^1.0.0" is-hexadecimal: "npm:^1.0.0" checksum: 10c0/f85a22c0ea406ff26b53fdc28641f01cc36fa49eb2e3135f02693286c89ef0bcefc2262d99b3688e20aac2a14fd10b75c518583e875c1b9fe3d1f937795e0854 languageName: node linkType: hard "parse-entities@npm:^4.0.0": version: 4.0.1 resolution: "parse-entities@npm:4.0.1" dependencies: "@types/unist": "npm:^2.0.0" character-entities: "npm:^2.0.0" character-entities-legacy: "npm:^3.0.0" character-reference-invalid: "npm:^2.0.0" decode-named-character-reference: "npm:^1.0.0" is-alphanumerical: "npm:^2.0.0" is-decimal: "npm:^2.0.0" is-hexadecimal: "npm:^2.0.0" checksum: 10c0/9dfa3b0dc43a913c2558c4bd625b1abcc2d6c6b38aa5724b141ed988471977248f7ad234eed57e1bc70b694dd15b0d710a04f66c2f7c096e35abd91962b7d926 languageName: node linkType: hard "parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": version: 5.2.0 resolution: "parse-json@npm:5.2.0" dependencies: "@babel/code-frame": "npm:^7.0.0" error-ex: "npm:^1.3.1" json-parse-even-better-errors: "npm:^2.3.0" lines-and-columns: "npm:^1.1.6" checksum: 10c0/77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 languageName: node linkType: hard "parse-rect@npm:^1.2.0": version: 1.2.0 resolution: "parse-rect@npm:1.2.0" dependencies: pick-by-alias: "npm:^1.2.0" checksum: 10c0/70af64ef6b34a2d460ba54cb09c9f9159536c93278aae2d7878d0557e71d8b648406203a74db3955e68ce4c47f6c10b8d24288985628dbc2877d4390fba1d27c languageName: node linkType: hard "parse-svg-path@npm:^0.1.2": version: 0.1.2 resolution: "parse-svg-path@npm:0.1.2" checksum: 10c0/005af72d535f47bbe4673108e51d657b81cb19dcc4f10ab425dd9f824066ef300ddbc83640607ef318f853a9fce7065114705531dcf88fb87fe58c287b562f2b languageName: node linkType: hard "parse-unit@npm:^1.0.1": version: 1.0.1 resolution: "parse-unit@npm:1.0.1" checksum: 10c0/a7e63091ddccfd920ab1b85899ecb6cb0af8069fe36c5f8f6fa80eeb262a52686ab94d21ff02cde821570cb0d9c95e2f454672959a0f39df52ee5d3c95276022 languageName: node linkType: hard "parse5@npm:^7.0.0, parse5@npm:^7.1.2": version: 7.1.2 resolution: "parse5@npm:7.1.2" dependencies: entities: "npm:^4.4.0" checksum: 10c0/297d7af8224f4b5cb7f6617ecdae98eeaed7f8cbd78956c42785e230505d5a4f07cef352af10d3006fa5c1544b76b57784d3a22d861ae071bbc460c649482bf4 languageName: node linkType: hard "pascal-case@npm:^3.1.2": version: 3.1.2 resolution: "pascal-case@npm:3.1.2" dependencies: no-case: "npm:^3.0.4" tslib: "npm:^2.0.3" checksum: 10c0/05ff7c344809fd272fc5030ae0ee3da8e4e63f36d47a1e0a4855ca59736254192c5a27b5822ed4bae96e54048eec5f6907713cfcfff7cdf7a464eaf7490786d8 languageName: node linkType: hard "path-browserify@npm:^1.0.1": version: 1.0.1 resolution: "path-browserify@npm:1.0.1" checksum: 10c0/8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 languageName: node linkType: hard "path-exists@npm:^4.0.0": version: 4.0.0 resolution: "path-exists@npm:4.0.0" checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b languageName: node linkType: hard "path-is-absolute@npm:^1.0.0": version: 1.0.1 resolution: "path-is-absolute@npm:1.0.1" checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 languageName: node linkType: hard "path-key@npm:^3.1.0": version: 3.1.1 resolution: "path-key@npm:3.1.1" checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c languageName: node linkType: hard "path-parse@npm:^1.0.7": version: 1.0.7 resolution: "path-parse@npm:1.0.7" checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 languageName: node linkType: hard "path-scurry@npm:^1.11.1": version: 1.11.1 resolution: "path-scurry@npm:1.11.1" dependencies: lru-cache: "npm:^10.2.0" minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d languageName: node linkType: hard "path-type@npm:^4.0.0": version: 4.0.0 resolution: "path-type@npm:4.0.0" checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c languageName: node linkType: hard "pathe@npm:^2.0.1": version: 2.0.1 resolution: "pathe@npm:2.0.1" checksum: 10c0/902139a0beddcdc4396f59bf94315a2a228f01666348cd0b4274d9d0aab31325c390a883a6707b9149a9ec39a7a6fe4846e7d11de83be9c596a33daa850a37ef languageName: node linkType: hard "pathe@npm:^2.0.3": version: 2.0.3 resolution: "pathe@npm:2.0.3" checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1 languageName: node linkType: hard "pathval@npm:^2.0.0": version: 2.0.0 resolution: "pathval@npm:2.0.0" checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5 languageName: node linkType: hard "pbf@npm:^3.2.1, pbf@npm:^3.3.0": version: 3.3.0 resolution: "pbf@npm:3.3.0" dependencies: ieee754: "npm:^1.1.12" resolve-protobuf-schema: "npm:^2.1.0" bin: pbf: bin/pbf checksum: 10c0/79e5dc59a9391789de84b0a6d713fad0dd1e5ce6eb721536af8c9ec49feae04fdebab9f077b760bba858e615a95ac714a7d248ecb43736e904bb8396885e16d6 languageName: node linkType: hard "pend@npm:~1.2.0": version: 1.2.0 resolution: "pend@npm:1.2.0" checksum: 10c0/8a87e63f7a4afcfb0f9f77b39bb92374afc723418b9cb716ee4257689224171002e07768eeade4ecd0e86f1fa3d8f022994219fb45634f2dbd78c6803e452458 languageName: node linkType: hard "performance-now@npm:^2.1.0": version: 2.1.0 resolution: "performance-now@npm:2.1.0" checksum: 10c0/22c54de06f269e29f640e0e075207af57de5052a3d15e360c09b9a8663f393f6f45902006c1e71aa8a5a1cdfb1a47fe268826f8496d6425c362f00f5bc3e85d9 languageName: node linkType: hard "pg-int8@npm:1.0.1": version: 1.0.1 resolution: "pg-int8@npm:1.0.1" checksum: 10c0/be6a02d851fc2a4ae3e9de81710d861de3ba35ac927268973eb3cb618873a05b9424656df464dd43bd7dc3fc5295c3f5b3c8349494f87c7af50ec59ef14e0b98 languageName: node linkType: hard "pg-protocol@npm:*": version: 1.10.3 resolution: "pg-protocol@npm:1.10.3" checksum: 10c0/f7ef54708c93ee6d271e37678296fc5097e4337fca91a88a3d99359b78633dbdbf6e983f0adb34b7cdd261b7ec7266deb20c3233bf3dfdb498b3e1098e8750b9 languageName: node linkType: hard "pg-types@npm:^2.2.0": version: 2.2.0 resolution: "pg-types@npm:2.2.0" dependencies: pg-int8: "npm:1.0.1" postgres-array: "npm:~2.0.0" postgres-bytea: "npm:~1.0.0" postgres-date: "npm:~1.0.4" postgres-interval: "npm:^1.1.0" checksum: 10c0/ab3f8069a323f601cd2d2279ca8c425447dab3f9b61d933b0601d7ffc00d6200df25e26a4290b2b0783b59278198f7dd2ed03e94c4875797919605116a577c65 languageName: node linkType: hard "pick-by-alias@npm:^1.2.0": version: 1.2.0 resolution: "pick-by-alias@npm:1.2.0" checksum: 10c0/2336088c95a04f50b088986394e35d2d0b63a95d85ffec547dcdb0fe1ccd710ab36569607fcf72d8654bbbf49e1f983a25f2a7c57e8ff2d587cf86070fc669b6 languageName: node linkType: hard "picocolors@npm:1.1.1, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 languageName: node linkType: hard "picocolors@npm:^1.0.0, picocolors@npm:^1.1.0": version: 1.1.0 resolution: "picocolors@npm:1.1.0" checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023 languageName: node linkType: hard "picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1": version: 2.3.1 resolution: "picomatch@npm:2.3.1" checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be languageName: node linkType: hard "picomatch@npm:^4.0.2": version: 4.0.2 resolution: "picomatch@npm:4.0.2" checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc languageName: node linkType: hard "picomatch@npm:^4.0.3": version: 4.0.3 resolution: "picomatch@npm:4.0.3" checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2 languageName: node linkType: hard "picospinner@npm:^3.0.0": version: 3.0.0 resolution: "picospinner@npm:3.0.0" checksum: 10c0/2c0826a5471575ccec22cfc2a72a6faf14e4d3048af8f39c88932e8bed7fbf7aa303a53285f414c1b72081dbd8e8db4420cd032b8f6870cbdac21e82ce25f08e languageName: node linkType: hard "pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1": version: 1.3.1 resolution: "pkg-types@npm:1.3.1" dependencies: confbox: "npm:^0.1.8" mlly: "npm:^1.7.4" pathe: "npm:^2.0.1" checksum: 10c0/19e6cb8b66dcc66c89f2344aecfa47f2431c988cfa3366bdfdcfb1dd6695f87dcce37fbd90fe9d1605e2f4440b77f391e83c23255347c35cf84e7fd774d7fcea languageName: node linkType: hard "plimit-lit@npm:^1.2.6": version: 1.6.1 resolution: "plimit-lit@npm:1.6.1" dependencies: queue-lit: "npm:^1.5.1" checksum: 10c0/af5d351bb55afe1eaa84b27c2b329699e150e4cf70464f3d474f5eabe9bdb9f48ed378ada1498d3b893f68ee7da2423ba6d9a4d88b1429d3b0aea22afcf5292b languageName: node linkType: hard "plotly.js@npm:^3.1.0": version: 3.1.0 resolution: "plotly.js@npm:3.1.0" dependencies: "@plotly/d3": "npm:3.8.2" "@plotly/d3-sankey": "npm:0.7.2" "@plotly/d3-sankey-circular": "npm:0.33.1" "@plotly/mapbox-gl": "npm:1.13.4" "@plotly/regl": "npm:^2.1.2" "@turf/area": "npm:^7.1.0" "@turf/bbox": "npm:^7.1.0" "@turf/centroid": "npm:^7.1.0" base64-arraybuffer: "npm:^1.0.2" canvas-fit: "npm:^1.5.0" color-alpha: "npm:1.0.4" color-normalize: "npm:1.5.0" color-parse: "npm:2.0.0" color-rgba: "npm:3.0.0" country-regex: "npm:^1.1.0" d3-force: "npm:^1.2.1" d3-format: "npm:^1.4.5" d3-geo: "npm:^1.12.1" d3-geo-projection: "npm:^2.9.0" d3-hierarchy: "npm:^1.1.9" d3-interpolate: "npm:^3.0.1" d3-time: "npm:^1.1.0" d3-time-format: "npm:^2.2.3" fast-isnumeric: "npm:^1.1.4" gl-mat4: "npm:^1.2.0" gl-text: "npm:^1.4.0" has-hover: "npm:^1.0.1" has-passive-events: "npm:^1.0.0" is-mobile: "npm:^4.0.0" maplibre-gl: "npm:^4.7.1" mouse-change: "npm:^1.4.0" mouse-event-offset: "npm:^3.0.2" mouse-wheel: "npm:^1.2.0" native-promise-only: "npm:^0.8.1" parse-svg-path: "npm:^0.1.2" point-in-polygon: "npm:^1.1.0" polybooljs: "npm:^1.2.2" probe-image-size: "npm:^7.2.3" regl-error2d: "npm:^2.0.12" regl-line2d: "npm:^3.1.3" regl-scatter2d: "npm:^3.3.1" regl-splom: "npm:^1.0.14" strongly-connected-components: "npm:^1.0.1" superscript-text: "npm:^1.0.0" svg-path-sdf: "npm:^1.1.3" tinycolor2: "npm:^1.4.2" to-px: "npm:1.0.1" topojson-client: "npm:^3.1.0" webgl-context: "npm:^2.2.0" world-calendars: "npm:^1.0.4" checksum: 10c0/8a761514c9d977b8d1d611ed7e8683b79e6d2160d850178129e1546644ebbdfeaaae696cac942d8eb636da536338f553389e72de0fccea8ec8a2f37812e5f582 languageName: node linkType: hard "point-in-polygon@npm:^1.1.0": version: 1.1.0 resolution: "point-in-polygon@npm:1.1.0" checksum: 10c0/de00419585ee25555d97585b7a23eeb2464a87ef29404264bee55654ca2ecab5a5a99d33e689c07d045faf80091e838f44a1fd130bdd6134493df53114947343 languageName: node linkType: hard "polished@npm:^3.2.0": version: 3.7.2 resolution: "polished@npm:3.7.2" dependencies: "@babel/runtime": "npm:^7.12.5" checksum: 10c0/c36439946b5bfbac16c06dd7b00a89f45e07410427344e909c540ce3ddeb9b44d2ae9cc035a9d77f4551e07b9803419ae77767aec85958a0978158a95c0115d8 languageName: node linkType: hard "polybooljs@npm:^1.2.2": version: 1.2.2 resolution: "polybooljs@npm:1.2.2" checksum: 10c0/74f6e2d20cabde6c6d3021974e0ac54c85422f08a8c0b96add15cd97c23dcbb13509ca00086fdee2922ab7c85946a047e51e8c2f30df68bbc36dbd0c00ef2e30 languageName: node linkType: hard "polyclip-ts@npm:^0.16.8": version: 0.16.8 resolution: "polyclip-ts@npm:0.16.8" dependencies: bignumber.js: "npm:^9.1.0" splaytree-ts: "npm:^1.0.2" checksum: 10c0/8de02c32e566421875c70890fe6d3d7bd55a92fc39867446e65999e042c4632fb27ab1a7e106e96edd12d63b32a643f3a690d9a980aeda655a41ddf4e8750f5d languageName: node linkType: hard "polyfill-pseudoclass-has@npm:^1.1.0": version: 1.1.0 resolution: "polyfill-pseudoclass-has@npm:1.1.0" checksum: 10c0/19bfb2ded08aa82b8dd96b471431db763bcd6e2c93ba468d290bcab73f82a0834e8869371a167636bc3cbeb9e1e03b70e7549731aa541faa1e4ab3f3b0a4adea languageName: node linkType: hard "popper.js@npm:^1.16.0": version: 1.16.1 resolution: "popper.js@npm:1.16.1" checksum: 10c0/1c1a826f757edb5b8c2049dfd7a9febf6ae1e9d0e51342fc715b49a0c1020fced250d26484619883651e097c5764bbcacd2f31496e3646027f079dd83e072681 languageName: node linkType: hard "possible-typed-array-names@npm:^1.0.0": version: 1.0.0 resolution: "possible-typed-array-names@npm:1.0.0" checksum: 10c0/d9aa22d31f4f7680e20269db76791b41c3a32c01a373e25f8a4813b4d45f7456bfc2b6d68f752dc4aab0e0bb0721cb3d76fb678c9101cb7a16316664bc2c73fd languageName: node linkType: hard "postcss@npm:^8.5.6": version: 8.5.6 resolution: "postcss@npm:8.5.6" dependencies: nanoid: "npm:^3.3.11" picocolors: "npm:^1.1.1" source-map-js: "npm:^1.2.1" checksum: 10c0/5127cc7c91ed7a133a1b7318012d8bfa112da9ef092dddf369ae699a1f10ebbd89b1b9f25f3228795b84585c72aabd5ced5fc11f2ba467eedf7b081a66fad024 languageName: node linkType: hard "postgres-array@npm:~2.0.0": version: 2.0.0 resolution: "postgres-array@npm:2.0.0" checksum: 10c0/cbd56207e4141d7fbf08c86f2aebf21fa7064943d3f808ec85f442ff94b48d891e7a144cc02665fb2de5dbcb9b8e3183a2ac749959e794b4a4cfd379d7a21d08 languageName: node linkType: hard "postgres-bytea@npm:~1.0.0": version: 1.0.0 resolution: "postgres-bytea@npm:1.0.0" checksum: 10c0/febf2364b8a8953695cac159eeb94542ead5886792a9627b97e33f6b5bb6e263bc0706ab47ec221516e79fbd6b2452d668841830fb3b49ec6c0fc29be61892ce languageName: node linkType: hard "postgres-date@npm:~1.0.4": version: 1.0.7 resolution: "postgres-date@npm:1.0.7" checksum: 10c0/0ff91fccc64003e10b767fcfeefb5eaffbc522c93aa65d5051c49b3c4ce6cb93ab091a7d22877a90ad60b8874202c6f1d0f935f38a7235ed3b258efd54b97ca9 languageName: node linkType: hard "postgres-interval@npm:^1.1.0": version: 1.2.0 resolution: "postgres-interval@npm:1.2.0" dependencies: xtend: "npm:^4.0.0" checksum: 10c0/c1734c3cb79e7f22579af0b268a463b1fa1d084e742a02a7a290c4f041e349456f3bee3b4ee0bb3f226828597f7b76deb615c1b857db9a742c45520100456272 languageName: node linkType: hard "postinstall-postinstall@npm:^2.1.0": version: 2.1.0 resolution: "postinstall-postinstall@npm:2.1.0" checksum: 10c0/70488447292c712afa7806126824d6fe93362392cbe261ae60166d9119a350713e0dbf4deb2ca91637c1037bc030ed1de78d61d9041bf2504513070f1caacdfd languageName: node linkType: hard "potpack@npm:^1.0.1": version: 1.0.2 resolution: "potpack@npm:1.0.2" checksum: 10c0/670c23898a4257130858b960c2e654d3327c0f6a7e7091ff5846f213e65af8f9476320b995b8ad561a47a4d1c359c7ef347de57d22e7b02597051abb52bc85c4 languageName: node linkType: hard "potpack@npm:^2.0.0": version: 2.0.0 resolution: "potpack@npm:2.0.0" checksum: 10c0/8df693484486535b95586a624c5abf3fd7bebad161b1c10c10d86562c870fe1c90703b862a19020b1d1c2f3fbd6cea1e9d699c6eca6ded4b5792873a992c81e1 languageName: node linkType: hard "preact@npm:^10.17.0": version: 10.24.1 resolution: "preact@npm:10.24.1" checksum: 10c0/f9bc8b2f88d340f1b8f854208889244059c46916449b8f8f2174fcacbc0904c445c5870896fb0cfeaf442eeade975857e8e03f0785135c41d63cd32d9414c9c6 languageName: node linkType: hard "prelude-ls@npm:^1.2.1": version: 1.2.1 resolution: "prelude-ls@npm:1.2.1" checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd languageName: node linkType: hard "prelude-ls@npm:~1.1.2": version: 1.1.2 resolution: "prelude-ls@npm:1.1.2" checksum: 10c0/7284270064f74e0bb7f04eb9bff7be677e4146417e599ccc9c1200f0f640f8b11e592d94eb1b18f7aa9518031913bb42bea9c86af07ba69902864e61005d6f18 languageName: node linkType: hard "prettier-linter-helpers@npm:^1.0.0": version: 1.0.0 resolution: "prettier-linter-helpers@npm:1.0.0" dependencies: fast-diff: "npm:^1.1.2" checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab languageName: node linkType: hard "prettier@npm:^3.6.2": version: 3.6.2 resolution: "prettier@npm:3.6.2" bin: prettier: bin/prettier.cjs checksum: 10c0/488cb2f2b99ec13da1e50074912870217c11edaddedeadc649b1244c749d15ba94e846423d062e2c4c9ae683e2d65f754de28889ba06e697ac4f988d44f45812 languageName: node linkType: hard "pretty-format@npm:^27.0.2": version: 27.5.1 resolution: "pretty-format@npm:27.5.1" dependencies: ansi-regex: "npm:^5.0.1" ansi-styles: "npm:^5.0.0" react-is: "npm:^17.0.1" checksum: 10c0/0cbda1031aa30c659e10921fa94e0dd3f903ecbbbe7184a729ad66f2b6e7f17891e8c7d7654c458fa4ccb1a411ffb695b4f17bbcd3fe075fabe181027c4040ed languageName: node linkType: hard "prismjs@npm:^1.30.0": version: 1.30.0 resolution: "prismjs@npm:1.30.0" checksum: 10c0/f56205bfd58ef71ccfcbcb691fd0eb84adc96c6ff21b0b69fc6fdcf02be42d6ef972ba4aed60466310de3d67733f6a746f89f2fb79c00bf217406d465b3e8f23 languageName: node linkType: hard "probe-image-size@npm:^7.2.3": version: 7.2.3 resolution: "probe-image-size@npm:7.2.3" dependencies: lodash.merge: "npm:^4.6.2" needle: "npm:^2.5.2" stream-parser: "npm:~0.3.1" checksum: 10c0/bebe3b050889794565b66ea9749cb21fee4f3e99fea41a328e39f2929f2432ebb50ac974148c35c66dec5becc849b3185a7a6f39d3ff75247e8be0a2759c9627 languageName: node linkType: hard "proc-log@npm:^5.0.0": version: 5.0.0 resolution: "proc-log@npm:5.0.0" checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3 languageName: node linkType: hard "process-nextick-args@npm:~2.0.0": version: 2.0.1 resolution: "process-nextick-args@npm:2.0.1" checksum: 10c0/bec089239487833d46b59d80327a1605e1c5287eaad770a291add7f45fda1bb5e28b38e0e061add0a1d0ee0984788ce74fa394d345eed1c420cacf392c554367 languageName: node linkType: hard "progress@npm:^2.0.3": version: 2.0.3 resolution: "progress@npm:2.0.3" checksum: 10c0/1697e07cb1068055dbe9fe858d242368ff5d2073639e652b75a7eb1f2a1a8d4afd404d719de23c7b48481a6aa0040686310e2dac2f53d776daa2176d3f96369c languageName: node linkType: hard "promise-retry@npm:^2.0.1": version: 2.0.1 resolution: "promise-retry@npm:2.0.1" dependencies: err-code: "npm:^2.0.2" retry: "npm:^0.12.0" checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 languageName: node linkType: hard "promise@npm:^7.1.1": version: 7.3.1 resolution: "promise@npm:7.3.1" dependencies: asap: "npm:~2.0.3" checksum: 10c0/742e5c0cc646af1f0746963b8776299701ad561ce2c70b49365d62c8db8ea3681b0a1bf0d4e2fe07910bf72f02d39e51e8e73dc8d7503c3501206ac908be107f languageName: node linkType: hard "prop-types-extra@npm:^1.1.0": version: 1.1.1 resolution: "prop-types-extra@npm:1.1.1" dependencies: react-is: "npm:^16.3.2" warning: "npm:^4.0.0" peerDependencies: react: ">=0.14.0" checksum: 10c0/5521568f331f0ba426681fe368f8d43d58f5f3d7a82cd63411abad579d4ac2e6667dff0f76ace6bf7d61468c490c4201a1f658020fad0fb6bbf77e7902604380 languageName: node linkType: hard "prop-types@npm:^15.5.10, prop-types@npm:^15.5.8, prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: loose-envify: "npm:^1.4.0" object-assign: "npm:^4.1.1" react-is: "npm:^16.13.1" checksum: 10c0/59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077 languageName: node linkType: hard "property-information@npm:^5.0.0": version: 5.6.0 resolution: "property-information@npm:5.6.0" dependencies: xtend: "npm:^4.0.0" checksum: 10c0/d54b77c31dc13bb6819559080b2c67d37d94be7dc271f404f139a16a57aa96fcc0b3ad806d4a5baef9e031744853e4afe3df2e37275aacb1f78079bbb652c5af languageName: node linkType: hard "property-information@npm:^6.0.0": version: 6.5.0 resolution: "property-information@npm:6.5.0" checksum: 10c0/981e0f9cc2e5acdb414a6fd48a99dd0fd3a4079e7a91ab41cf97a8534cf43e0e0bc1ffada6602a1b3d047a33db8b5fc2ef46d863507eda712d5ceedac443f0ef languageName: node linkType: hard "property-information@npm:^7.0.0": version: 7.1.0 resolution: "property-information@npm:7.1.0" checksum: 10c0/e0fe22cff26103260ad0e82959229106563fa115a54c4d6c183f49d88054e489cc9f23452d3ad584179dc13a8b7b37411a5df873746b5e4086c865874bfa968e languageName: node linkType: hard "prosemirror-commands@npm:^1.1.9": version: 1.6.0 resolution: "prosemirror-commands@npm:1.6.0" dependencies: prosemirror-model: "npm:^1.0.0" prosemirror-state: "npm:^1.0.0" prosemirror-transform: "npm:^1.0.0" checksum: 10c0/ba7317917159645980b7cafb04d24c4b3c6cc877b30929c776f51242289930333dc2351f5b55d9a81153331cdfa5c6fe13742b7925d7ec290addadab5ff4affc languageName: node linkType: hard "prosemirror-history@npm:^1.1.3": version: 1.4.1 resolution: "prosemirror-history@npm:1.4.1" dependencies: prosemirror-state: "npm:^1.2.2" prosemirror-transform: "npm:^1.0.0" prosemirror-view: "npm:^1.31.0" rope-sequence: "npm:^1.3.0" checksum: 10c0/fd2dfae5fb956a8710bb1a4131e9b6d8b92e846bf88fa643bc59ba595c8a835f6695574d5e33bcea9a6e7fbf2eafc7c1b1003abf11326e8571e196cd0f16dcd8 languageName: node linkType: hard "prosemirror-inputrules@npm:^1.1.3": version: 1.4.0 resolution: "prosemirror-inputrules@npm:1.4.0" dependencies: prosemirror-state: "npm:^1.0.0" prosemirror-transform: "npm:^1.0.0" checksum: 10c0/8ec72b6c2982bbd9fd378e51d67c6424119d081a4dcdeff430ab58055596cf67b691a890f46f135746f4de9bc6a6afb6ef1c0596df13bd633997e32ba0a25ddf languageName: node linkType: hard "prosemirror-keymap@npm:^1.1.4": version: 1.2.2 resolution: "prosemirror-keymap@npm:1.2.2" dependencies: prosemirror-state: "npm:^1.0.0" w3c-keyname: "npm:^2.2.0" checksum: 10c0/7aa28c731e00962c90c91361a3c9f7000f960870a1300f7477da8afa8fd1b9cce0b3b7ca483aaa5832fd0bf88b5ff081defc184592997b08980b9ab67eeddcb7 languageName: node linkType: hard "prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.14.1, prosemirror-model@npm:^1.20.0, prosemirror-model@npm:^1.21.0": version: 1.22.3 resolution: "prosemirror-model@npm:1.22.3" dependencies: orderedmap: "npm:^2.0.0" checksum: 10c0/c1405f9643a720fa65acb23f5f6c3980eb7df3ea6098828e3cfeab1b8d35e4952c96406dc25877f7ec02647970090ef96288776554b50be90ecac139a8ca268b languageName: node linkType: hard "prosemirror-state@npm:^1.0.0, prosemirror-state@npm:^1.2.2, prosemirror-state@npm:^1.3.4": version: 1.4.3 resolution: "prosemirror-state@npm:1.4.3" dependencies: prosemirror-model: "npm:^1.0.0" prosemirror-transform: "npm:^1.0.0" prosemirror-view: "npm:^1.27.0" checksum: 10c0/e34dc9b1a6b23c23265569b2c246aaef4a61353a5fd33e933b62528917603382271d9f7d5212094e8928dee9bb4827e25a583104d43745e6ab3b8cbde12170f5 languageName: node linkType: hard "prosemirror-transform@npm:^1.0.0, prosemirror-transform@npm:^1.1.0": version: 1.10.0 resolution: "prosemirror-transform@npm:1.10.0" dependencies: prosemirror-model: "npm:^1.21.0" checksum: 10c0/72c10b7689e0e7a575e2df66ee58980ae612f7bbad78b6781828276b5872763e05cb8fb1a92920f77e30ce5dd061d67c3de081dc4c060f23db5cbb2083100928 languageName: node linkType: hard "prosemirror-view@npm:^1.18.7, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.31.0": version: 1.34.3 resolution: "prosemirror-view@npm:1.34.3" dependencies: prosemirror-model: "npm:^1.20.0" prosemirror-state: "npm:^1.0.0" prosemirror-transform: "npm:^1.1.0" checksum: 10c0/f08a9eeb6988e2180ec19989bb11c11db02c37952d1ab8b3ae8c7c1ebf9ce143725855bfa8cee59e4819aab3c9045ef5721cc90e69353f8fd81b7bb3a1c4ea03 languageName: node linkType: hard "protobufjs-cli@npm:^1.2.0": version: 1.2.0 resolution: "protobufjs-cli@npm:1.2.0" dependencies: chalk: "npm:^4.0.0" escodegen: "npm:^1.13.0" espree: "npm:^9.0.0" estraverse: "npm:^5.1.0" glob: "npm:^8.0.0" jsdoc: "npm:^4.0.0" minimist: "npm:^1.2.0" semver: "npm:^7.1.2" tmp: "npm:^0.2.1" uglify-js: "npm:^3.7.7" peerDependencies: protobufjs: ^7.0.0 bin: pbjs: bin/pbjs pbts: bin/pbts checksum: 10c0/23bff21695e34d92d19cb7f8115e157327af59b7a9154effd916aafefd8633d39e0ea8566c4f0d812193c5a83077448c20d4074aebb5924e0c96f2022a970aa5 languageName: node linkType: hard "protobufjs@npm:^7.5.4": version: 7.5.4 resolution: "protobufjs@npm:7.5.4" dependencies: "@protobufjs/aspromise": "npm:^1.1.2" "@protobufjs/base64": "npm:^1.1.2" "@protobufjs/codegen": "npm:^2.0.4" "@protobufjs/eventemitter": "npm:^1.1.0" "@protobufjs/fetch": "npm:^1.1.0" "@protobufjs/float": "npm:^1.0.2" "@protobufjs/inquire": "npm:^1.1.0" "@protobufjs/path": "npm:^1.1.2" "@protobufjs/pool": "npm:^1.1.0" "@protobufjs/utf8": "npm:^1.1.0" "@types/node": "npm:>=13.7.0" long: "npm:^5.0.0" checksum: 10c0/913b676109ffb3c05d3d31e03a684e569be91f3bba8613da4a683d69d9dba948daa2afd7d2e7944d1aa6c417890c35d9d9a8883c1160affafb0f9670d59ef722 languageName: node linkType: hard "protocol-buffers-schema@npm:^3.3.1": version: 3.6.0 resolution: "protocol-buffers-schema@npm:3.6.0" checksum: 10c0/23a08612e5cc903f917ae3b680216ccaf2d889c61daa68d224237f455182fa96fff16872ac94b1954b5dd26fc7e8ce7e9360c54d54ea26218d107b2f059fca37 languageName: node linkType: hard "proxy-agent@npm:^6.5.0": version: 6.5.0 resolution: "proxy-agent@npm:6.5.0" dependencies: agent-base: "npm:^7.1.2" debug: "npm:^4.3.4" http-proxy-agent: "npm:^7.0.1" https-proxy-agent: "npm:^7.0.6" lru-cache: "npm:^7.14.1" pac-proxy-agent: "npm:^7.1.0" proxy-from-env: "npm:^1.1.0" socks-proxy-agent: "npm:^8.0.5" checksum: 10c0/7fd4e6f36bf17098a686d4aee3b8394abfc0b0537c2174ce96b0a4223198b9fafb16576c90108a3fcfc2af0168bd7747152bfa1f58e8fee91d3780e79aab7fd8 languageName: node linkType: hard "proxy-from-env@npm:^1.1.0": version: 1.1.0 resolution: "proxy-from-env@npm:1.1.0" checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b languageName: node linkType: hard "psl@npm:^1.1.33": version: 1.9.0 resolution: "psl@npm:1.9.0" checksum: 10c0/6a3f805fdab9442f44de4ba23880c4eba26b20c8e8e0830eff1cb31007f6825dace61d17203c58bfe36946842140c97a1ba7f67bc63ca2d88a7ee052b65d97ab languageName: node linkType: hard "pump@npm:^3.0.0": version: 3.0.2 resolution: "pump@npm:3.0.2" dependencies: end-of-stream: "npm:^1.1.0" once: "npm:^1.3.1" checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f languageName: node linkType: hard "punycode.js@npm:^2.3.1": version: 2.3.1 resolution: "punycode.js@npm:2.3.1" checksum: 10c0/1d12c1c0e06127fa5db56bd7fdf698daf9a78104456a6b67326877afc21feaa821257b171539caedd2f0524027fa38e67b13dd094159c8d70b6d26d2bea4dfdb languageName: node linkType: hard "punycode@npm:^2.1.0, punycode@npm:^2.1.1, punycode@npm:^2.3.1": version: 2.3.1 resolution: "punycode@npm:2.3.1" checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 languageName: node linkType: hard "puppeteer-core@npm:^24.17.1": version: 24.18.0 resolution: "puppeteer-core@npm:24.18.0" dependencies: "@puppeteer/browsers": "npm:2.10.8" chromium-bidi: "npm:8.0.0" debug: "npm:^4.4.1" devtools-protocol: "npm:0.0.1475386" typed-query-selector: "npm:^2.12.0" ws: "npm:^8.18.3" checksum: 10c0/784dca37f24eb7db1aada19a2a2f108f9527b0b235ef87b2d67a44d2f0ec1f675089ee0b134ef8b92cc2eb78f74e04e58356a1a62686f91efa53b6231285b3eb languageName: node linkType: hard "pure-color@npm:^1.2.0": version: 1.3.0 resolution: "pure-color@npm:1.3.0" checksum: 10c0/50d0e088ad0349bdd508cddf7c7afbb2d14ba3c047628dbfcfddf467a98f10462caf91f3227172ada88f64afaf761c499ecba0d4053b06926f0f914769be24b9 languageName: node linkType: hard "quadbin@npm:^0.4.0": version: 0.4.0 resolution: "quadbin@npm:0.4.0" dependencies: "@mapbox/tile-cover": "npm:3.0.1" "@math.gl/web-mercator": "npm:^4.1.0" checksum: 10c0/24a49abadd820cbdd0187b6c16604401c6df9b3cfe1a5ac2cd02acf500de9f93cfd5a857f5882bfd8ce3e4bf9176512d9b6fe879158c7003ebca951b1b39457d languageName: node linkType: hard "quansync@npm:^0.2.1": version: 0.2.6 resolution: "quansync@npm:0.2.6" checksum: 10c0/de27a8dfa89de92a9b9fc10c49167ada1ea8b04b0335d0921e84abec51699b36f0f06f8ee0479514d5d5f32cb14e975a54a41e5fe3c3a96e72e3ad333aa422ca languageName: node linkType: hard "query-string@npm:^9.3.1": version: 9.3.1 resolution: "query-string@npm:9.3.1" dependencies: decode-uri-component: "npm:^0.4.1" filter-obj: "npm:^5.1.0" split-on-first: "npm:^3.0.0" checksum: 10c0/47f62350be7ace6d2e03d12becf5d1985731d97577963a4d8b684e166f6708cb42f63f09aa4c92931f2ee1ff57c0800a25807b95f28fd98f7064b1d06b02b07e languageName: node linkType: hard "querystringify@npm:^2.1.1": version: 2.2.0 resolution: "querystringify@npm:2.2.0" checksum: 10c0/3258bc3dbdf322ff2663619afe5947c7926a6ef5fb78ad7d384602974c467fadfc8272af44f5eb8cddd0d011aae8fabf3a929a8eee4b86edcc0a21e6bd10f9aa languageName: node linkType: hard "queue-lit@npm:^1.5.1": version: 1.5.2 resolution: "queue-lit@npm:1.5.2" checksum: 10c0/8aa838b2c939aeaa6cd272b5b6b172379a3fa1d9193b2a3e687643c68c0efee3cd3493af4f1f8a11ff79b8207e4d00cc5d0b072f6e4bbeaaa27ee01f567ec4ac languageName: node linkType: hard "queue-microtask@npm:^1.2.2": version: 1.2.3 resolution: "queue-microtask@npm:1.2.3" checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 languageName: node linkType: hard "queue-tick@npm:^1.0.1": version: 1.0.1 resolution: "queue-tick@npm:1.0.1" checksum: 10c0/0db998e2c9b15215317dbcf801e9b23e6bcde4044e115155dae34f8e7454b9a783f737c9a725528d677b7a66c775eb7a955cf144fe0b87f62b575ce5bfd515a9 languageName: node linkType: hard "quickselect@npm:^2.0.0": version: 2.0.0 resolution: "quickselect@npm:2.0.0" checksum: 10c0/6c8d591bc73beae4c1996b7b7138233a7dbbbdde29b7b6d822a02d08cd220fd27613f47d6e9635989b12e250d42ef9da3448de1ed12ad962974e207ab3c3562c languageName: node linkType: hard "quickselect@npm:^3.0.0": version: 3.0.0 resolution: "quickselect@npm:3.0.0" checksum: 10c0/3a0d33b0ec06841d953accdfd735aa3d8b7922cddd12970544a2c4b0278871280d8f5ba496803600693c1e7b7b2fb57c31d2b14d99132f478888006a1be6e6b7 languageName: node linkType: hard "raf@npm:^3.4.1": version: 3.4.1 resolution: "raf@npm:3.4.1" dependencies: performance-now: "npm:^2.1.0" checksum: 10c0/337f0853c9e6a77647b0f499beedafea5d6facfb9f2d488a624f88b03df2be72b8a0e7f9118a3ff811377d534912039a3311815700d2b6d2313f82f736f9eb6e languageName: node linkType: hard "rc-overflow@npm:^1.4.1": version: 1.4.1 resolution: "rc-overflow@npm:1.4.1" dependencies: "@babel/runtime": "npm:^7.11.1" classnames: "npm:^2.2.1" rc-resize-observer: "npm:^1.0.0" rc-util: "npm:^5.37.0" peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" checksum: 10c0/ac47d2c7b4cfc99e8ca20c75f99e601eac4d524f6690d9a36fb65d84b9f627f13aa70f11fc5c09b24c1e9a0395a15c16998a57f2517c08a6abe545539cb5e162 languageName: node linkType: hard "rc-resize-observer@npm:^1.0.0": version: 1.4.3 resolution: "rc-resize-observer@npm:1.4.3" dependencies: "@babel/runtime": "npm:^7.20.7" classnames: "npm:^2.2.1" rc-util: "npm:^5.44.1" resize-observer-polyfill: "npm:^1.5.1" peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" checksum: 10c0/93073c9ef5cc704f9d99307f58f8eeccabb953edf4e8a056b090104fc28ed19b77c2a32bd88ca2e0407fbedeb266d1985e655b35b8bc36b04d243e9d0471c911 languageName: node linkType: hard "rc-util@npm:^5.37.0, rc-util@npm:^5.44.1": version: 5.44.4 resolution: "rc-util@npm:5.44.4" dependencies: "@babel/runtime": "npm:^7.18.3" react-is: "npm:^18.2.0" peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" checksum: 10c0/748b71a6280ddaaac93d1fb2c92f03818775468e7ccb6c221484687cc0b7e879d083e98e338f75ac0fe2e942dbb9c2405bd32d25e5a804bf1fb7a11f3f897127 languageName: node linkType: hard "re-resizable@npm:^6.11.2": version: 6.11.2 resolution: "re-resizable@npm:6.11.2" peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 checksum: 10c0/964c37b02b03ba9103fd67e4a486cf8cb57856eb92508677d8e2a350ec2b2a978014ed7dd4e2531c90ba89eedb0982b613590311471bfd66b14fdec709a09f17 languageName: node linkType: hard "react-base16-styling@npm:^0.6.0": version: 0.6.0 resolution: "react-base16-styling@npm:0.6.0" dependencies: base16: "npm:^1.0.0" lodash.curry: "npm:^4.0.1" lodash.flow: "npm:^3.3.0" pure-color: "npm:^1.2.0" checksum: 10c0/4887ac57b36fedc7e1ebc99ae431c5feb07d60a9150770d0ca3a59f4ae7059434ea8813ca4f915e7434d4d8d8529b9ba072ceb85041fd52ca1cd6289c57c9621 languageName: node linkType: hard "react-clientside-effect@npm:^1.2.6": version: 1.2.6 resolution: "react-clientside-effect@npm:1.2.6" dependencies: "@babel/runtime": "npm:^7.12.13" peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 checksum: 10c0/aba0adb666018e5c64657c31f4914a8558be73f71d6e2210fa871ebfcab94d786c83082868d7c7fa66feddc2aec19e375745cf0903e0619f2efffef08b92d941 languageName: node linkType: hard "react-color@npm:^2.18.1": version: 2.19.3 resolution: "react-color@npm:2.19.3" dependencies: "@icons/material": "npm:^0.2.4" lodash: "npm:^4.17.15" lodash-es: "npm:^4.17.15" material-colors: "npm:^1.2.1" prop-types: "npm:^15.5.10" reactcss: "npm:^1.2.0" tinycolor2: "npm:^1.4.1" peerDependencies: react: "*" checksum: 10c0/6f9fce9ff3014926d960abccd5d79ecb391a41f835a4b85663fd48ff933554391222f40ed8cfc5417305d47b1e480023981ec22e13c3b16b0d8d718270fa815e languageName: node linkType: hard "react-dom@npm:^18.2.0": version: 18.3.1 resolution: "react-dom@npm:18.3.1" dependencies: loose-envify: "npm:^1.1.0" scheduler: "npm:^0.23.2" peerDependencies: react: ^18.3.1 checksum: 10c0/a752496c1941f958f2e8ac56239172296fcddce1365ce45222d04a1947e0cc5547df3e8447f855a81d6d39f008d7c32eab43db3712077f09e3f67c4874973e85 languageName: node linkType: hard "react-dropzone@npm:9.0.0": version: 9.0.0 resolution: "react-dropzone@npm:9.0.0" dependencies: attr-accept: "npm:^1.1.3" file-selector: "npm:^0.1.8" prop-types: "npm:^15.6.2" prop-types-extra: "npm:^1.1.0" peerDependencies: react: ">=0.14.0" checksum: 10c0/b4a072a2e98bd4c356e4353b8a96f216413c2b33b28c67dbc8d7e582a0a115ead9f70501a81d8959ea494a64a05406930e628fd9210423bea8f90bae93675bdc languageName: node linkType: hard "react-dropzone@npm:^14.3.8": version: 14.3.8 resolution: "react-dropzone@npm:14.3.8" dependencies: attr-accept: "npm:^2.2.4" file-selector: "npm:^2.1.0" prop-types: "npm:^15.8.1" peerDependencies: react: ">= 16.8 || 18.0.0" checksum: 10c0/e17b1832783cda7b8824fe9370e99185d1abbdd5e4980b2985d6321c5768c8de18ff7b9ad550c809ee9743269dea608ff74d5208062754ce8377ad022897b278 languageName: node linkType: hard "react-easy-swipe@npm:^0.0.21": version: 0.0.21 resolution: "react-easy-swipe@npm:0.0.21" dependencies: prop-types: "npm:^15.5.8" checksum: 10c0/f1831df379dfb5074b546de48f42db270bc1e97367342d07bb3fce07f4799a8d33d5e5a605b1b12243087d0eb0ab0fecc1fa0ade49c487b8504217824f3f2ad0 languageName: node linkType: hard "react-fast-compare@npm:^3.2.2": version: 3.2.2 resolution: "react-fast-compare@npm:3.2.2" checksum: 10c0/0bbd2f3eb41ab2ff7380daaa55105db698d965c396df73e6874831dbafec8c4b5b08ba36ff09df01526caa3c61595247e3269558c284e37646241cba2b90a367 languageName: node linkType: hard "react-feather@npm:^2.0.10": version: 2.0.10 resolution: "react-feather@npm:2.0.10" dependencies: prop-types: "npm:^15.7.2" peerDependencies: react: ">=16.8.6" checksum: 10c0/bcc312ab39a710d8fa6fb611fde2affb38cf183fa5215d46c78577d88950ecb9181b59e4b57d7683f543d25725a39deb0c2ad9a9f29cab1a44bf4cbca46e6b8e languageName: node linkType: hard "react-focus-lock@npm:^2.7.1": version: 2.13.2 resolution: "react-focus-lock@npm:2.13.2" dependencies: "@babel/runtime": "npm:^7.0.0" focus-lock: "npm:^1.3.5" prop-types: "npm:^15.6.2" react-clientside-effect: "npm:^1.2.6" use-callback-ref: "npm:^1.3.2" use-sidecar: "npm:^1.1.2" peerDependencies: "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/6d4539e9ec5943de8a7eb856df7ab97c3da751ce6515512ca337dfb2bd06499ebc1051f8c96b142ad093637825a0ddcceb884282c1ec246dd02f293a8aafa688 languageName: node linkType: hard "react-helmet-async@npm:*, react-helmet-async@npm:^2.0.5": version: 2.0.5 resolution: "react-helmet-async@npm:2.0.5" dependencies: invariant: "npm:^2.2.4" react-fast-compare: "npm:^3.2.2" shallowequal: "npm:^1.1.0" peerDependencies: react: ^16.6.0 || ^17.0.0 || ^18.0.0 checksum: 10c0/f390ea8bf13c2681850e5f8eb5b73d8613f407c245a5fd23e9db9b2cc14a3700dd1ce992d3966632886d1d613083294c2aeee009193f49dfa7d145d9f13ea2b0 languageName: node linkType: hard "react-hot-keys@npm:^2.7.3": version: 2.7.3 resolution: "react-hot-keys@npm:2.7.3" dependencies: hotkeys-js: "npm:^3.13.2" prop-types: "npm:^15.8.1" peerDependencies: "@babel/runtime": ">=7.10.0" react: ">=16.9.0" react-dom: ">=16.9.0" checksum: 10c0/3d4bf5dd1a9df104f309754e71437ac4afc271c956e6e3bcb9f191cac643339597747c26dd2aabc8695915f1f7e3b1a4cb0cd7f15bd1371bd18b6fb7cb53547e languageName: node linkType: hard "react-html-attributes@npm:^1.4.6": version: 1.4.6 resolution: "react-html-attributes@npm:1.4.6" dependencies: html-element-attributes: "npm:^1.0.0" checksum: 10c0/f2ef5b80c6254a0bc4cc802d7412bee0bd5008a1ac1a96eb52cdfde9b7e5017e9373ee613361d6c83df3faa8743c71fb42d1fb238bb797ece481d97848c02be2 languageName: node linkType: hard "react-input-mask@npm:^2.0.4": version: 2.0.4 resolution: "react-input-mask@npm:2.0.4" dependencies: invariant: "npm:^2.2.4" warning: "npm:^4.0.2" peerDependencies: react: ">=0.14.0" react-dom: ">=0.14.0" checksum: 10c0/89fc110a99e79ee3fa3f63696d5d46ab8889c653b33c0e50c6b24d70b715e1c8d475b8637ceb9e0f4fcacec5e39f653156faef4f5f06972886c4b1e643f66a82 languageName: node linkType: hard "react-is@npm:^16.13.1, react-is@npm:^16.3.2, react-is@npm:^16.7.0, react-is@npm:^16.8.6": version: 16.13.1 resolution: "react-is@npm:16.13.1" checksum: 10c0/33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1 languageName: node linkType: hard "react-is@npm:^17.0.1": version: 17.0.2 resolution: "react-is@npm:17.0.2" checksum: 10c0/2bdb6b93fbb1820b024b496042cce405c57e2f85e777c9aabd55f9b26d145408f9f74f5934676ffdc46f3dcff656d78413a6e43968e7b3f92eea35b3052e9053 languageName: node linkType: hard "react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 languageName: node linkType: hard "react-json-view@npm:^1.19.1": version: 1.21.3 resolution: "react-json-view@npm:1.21.3" dependencies: flux: "npm:^4.0.1" react-base16-styling: "npm:^0.6.0" react-lifecycles-compat: "npm:^3.0.4" react-textarea-autosize: "npm:^8.3.2" peerDependencies: react: ^17.0.0 || ^16.3.0 || ^15.5.4 react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4 checksum: 10c0/f41b38e599f148cf922f60390e56bb821f17a091373b08310fd82ebc526428683011751aa023687041481a46b20aeb1c47f660979d43db77674486aec9dc1d3f languageName: node linkType: hard "react-lifecycles-compat@npm:^3.0.4": version: 3.0.4 resolution: "react-lifecycles-compat@npm:3.0.4" checksum: 10c0/1d0df3c85af79df720524780f00c064d53a9dd1899d785eddb7264b378026979acbddb58a4b7e06e7d0d12aa1494fd5754562ee55d32907b15601068dae82c27 languageName: node linkType: hard "react-map-gl@npm:^5.3.21": version: 5.3.21 resolution: "react-map-gl@npm:5.3.21" dependencies: "@babel/runtime": "npm:^7.0.0" "@types/geojson": "npm:^7946.0.7" "@types/mapbox-gl": "npm:^2.0.3" mapbox-gl: "npm:^1.0.0" mjolnir.js: "npm:^2.5.0" prop-types: "npm:^15.7.2" resize-observer-polyfill: "npm:^1.5.1" viewport-mercator-project: "npm:^7.0.4" peerDependencies: react: ">=16.3.0" checksum: 10c0/fa7bf984b3c5af19dfdaf12018753bfe3cfd7a040bf94cb3ad669f5f1aa42a7ae8c32a8b4523554b16ba1c532197800a4656ecd7c0e2f8e5818b16b1c00ae0a3 languageName: node linkType: hard "react-markdown@npm:^10.1.0": version: 10.1.0 resolution: "react-markdown@npm:10.1.0" dependencies: "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" devlop: "npm:^1.0.0" hast-util-to-jsx-runtime: "npm:^2.0.0" html-url-attributes: "npm:^3.0.0" mdast-util-to-hast: "npm:^13.0.0" remark-parse: "npm:^11.0.0" remark-rehype: "npm:^11.0.0" unified: "npm:^11.0.0" unist-util-visit: "npm:^5.0.0" vfile: "npm:^6.0.0" peerDependencies: "@types/react": ">=18" react: ">=18" checksum: 10c0/4a5dc7d15ca6d05e9ee95318c1904f83b111a76f7588c44f50f1d54d4c97193b84e4f64c4b592057c989228238a2590306cedd0c4d398e75da49262b2b5ae1bf languageName: node linkType: hard "react-movable@npm:^2.5.4": version: 2.5.4 resolution: "react-movable@npm:2.5.4" peerDependencies: react: ^16.3.0-0 || ^17.0.0-0 react-dom: ^16.3.0-0 || ^17.0.0-0 checksum: 10c0/ffba2efb9bb7c926d60984c25333efa8722dbfd25286c5f0970b0b8a5ac876608e5b4054c8fe161fec05eb1d1dee89caea95c5b1a067942652797b82f10c4ad6 languageName: node linkType: hard "react-multi-ref@npm:^1.0.0": version: 1.0.2 resolution: "react-multi-ref@npm:1.0.2" dependencies: "@babel/runtime": "npm:^7.24.4" checksum: 10c0/049b1fd5b6eb57c0a4649d548b5a0f2c9ab6109657aa6ab6b99282ad7c013937c3c35ae44675cc38b80dc3a169bb4ee088e216364eded13e158dc931ea420139 languageName: node linkType: hard "react-number-format@npm:^5.4.4": version: 5.4.4 resolution: "react-number-format@npm:5.4.4" peerDependencies: react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 checksum: 10c0/e55cd16d9f7379a717e77d519db06ed455cc2df9842cd23499b60bc2ba1179df580742e27867a4ae84e0d308b18c0773b7e8943f9162e853f97bd194d15b0de7 languageName: node linkType: hard "react-plotly.js@npm:^2.6.0": version: 2.6.0 resolution: "react-plotly.js@npm:2.6.0" dependencies: prop-types: "npm:^15.8.1" peerDependencies: plotly.js: ">1.34.0" react: ">0.13.0" checksum: 10c0/9b5ba8e33782daa9624d79295975d08d4c7581bac41d67d497eec0a306e4d030465a1e8282fab145bc02705fe96262f6fb0d214133657c480982fc268763644a languageName: node linkType: hard "react-range@npm:^1.8.0": version: 1.10.0 resolution: "react-range@npm:1.10.0" peerDependencies: react: "*" react-dom: "*" checksum: 10c0/ca0a7c817fb1e18b15939d9a5ce14acb559c6f2b2f694de04f82e5f7493a16e1be54301f32f508277b302f557a5171ae9771dd7d869bc2c48ec52deaded2a0c2 languageName: node linkType: hard "react-responsive-carousel@npm:^3.2.23": version: 3.2.23 resolution: "react-responsive-carousel@npm:3.2.23" dependencies: classnames: "npm:^2.2.5" prop-types: "npm:^15.5.8" react-easy-swipe: "npm:^0.0.21" checksum: 10c0/47957d48898f550cfc7e3517ad755a4dd94ce78630480310db58ec5896de6d6f3c1ed253347432bee889860036a15e32b508cb19b121c4cdd634e78e6fe83064 languageName: node linkType: hard "react-select@npm:^5.10.1": version: 5.10.1 resolution: "react-select@npm:5.10.1" dependencies: "@babel/runtime": "npm:^7.12.0" "@emotion/cache": "npm:^11.4.0" "@emotion/react": "npm:^11.8.1" "@floating-ui/dom": "npm:^1.0.1" "@types/react-transition-group": "npm:^4.4.0" memoize-one: "npm:^6.0.0" prop-types: "npm:^15.6.0" react-transition-group: "npm:^4.3.0" use-isomorphic-layout-effect: "npm:^1.2.0" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 checksum: 10c0/0d10a249b96150bd648f2575d59c848b8fac7f4d368a97ae84e4aaba5bbc1035deba4cdc82e49a43904b79ec50494505809618b0e98022b2d51e7629551912ed languageName: node linkType: hard "react-syntax-highlighter@npm:^15.6.3": version: 15.6.6 resolution: "react-syntax-highlighter@npm:15.6.6" dependencies: "@babel/runtime": "npm:^7.3.1" highlight.js: "npm:^10.4.1" highlightjs-vue: "npm:^1.0.0" lowlight: "npm:^1.17.0" prismjs: "npm:^1.30.0" refractor: "npm:^3.6.0" peerDependencies: react: ">= 0.14.0" checksum: 10c0/894f8b7c79ed40866c0fc542ad0a2040128a8c7e6e6decfd06ef092d8af9c63788ecdd911ea9b2b433e361a4a33a14f721bcec81fd59f1e7394442ade4e7ea46 languageName: node linkType: hard "react-textarea-autosize@npm:^8.3.2": version: 8.5.3 resolution: "react-textarea-autosize@npm:8.5.3" dependencies: "@babel/runtime": "npm:^7.20.13" use-composed-ref: "npm:^1.3.0" use-latest: "npm:^1.2.1" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 checksum: 10c0/33d38a6d96cf584842695b50c341980944ece23a42155bf0bd1958f02396adb185c7720b88678dc677817fe111783059c0ebcdf7761644006892583b10e258ee languageName: node linkType: hard "react-transition-group@npm:^4.3.0, react-transition-group@npm:^4.4.5": version: 4.4.5 resolution: "react-transition-group@npm:4.4.5" dependencies: "@babel/runtime": "npm:^7.5.5" dom-helpers: "npm:^5.0.1" loose-envify: "npm:^1.4.0" prop-types: "npm:^15.6.2" peerDependencies: react: ">=16.6.0" react-dom: ">=16.6.0" checksum: 10c0/2ba754ba748faefa15f87c96dfa700d5525054a0141de8c75763aae6734af0740e77e11261a1e8f4ffc08fd9ab78510122e05c21c2d79066c38bb6861a886c82 languageName: node linkType: hard "react-uid@npm:^2.3.0": version: 2.3.3 resolution: "react-uid@npm:2.3.3" dependencies: tslib: "npm:^2.0.0" peerDependencies: "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/8aa30e92ee03561d25779c68ba6d9409ba4ea83386a8798729b6eb5977bbdc4a5ff199b758d2a29e958d7560b2a7517cab8671932b83e8fcd50092631c209b4c languageName: node linkType: hard "react-virtualized-auto-sizer@npm:^1.0.2": version: 1.0.24 resolution: "react-virtualized-auto-sizer@npm:1.0.24" peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 checksum: 10c0/d400489e5005a2ad0635228958379aa26b66fdae62a5b9fbf4dcb5fecd4e99454990b1cd59fe55ff277419b37bdf098c26e7185e0ef1b6ca775a477f913bb763 languageName: node linkType: hard "react-virtualized@npm:^9.21.1": version: 9.22.5 resolution: "react-virtualized@npm:9.22.5" dependencies: "@babel/runtime": "npm:^7.7.2" clsx: "npm:^1.0.4" dom-helpers: "npm:^5.1.3" loose-envify: "npm:^1.4.0" prop-types: "npm:^15.7.2" react-lifecycles-compat: "npm:^3.0.4" peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 checksum: 10c0/b0444b472f317dce61119c07426c5e9ebfe5125d049996678da922717715a1aa83df755aa36877f4b1718aa2e181d22f15ebb807ee356418c56f922f865628c1 languageName: node linkType: hard "react-webcam@npm:7.2.0": version: 7.2.0 resolution: "react-webcam@npm:7.2.0" peerDependencies: react: ">=16.2.0" react-dom: ">=16.2.0" checksum: 10c0/d639a9e4cd545f66a5ecbfdc6c38344f6ae40e6609ba5fb26db730b48723158dedeeecdecba94e4d117517f4db0be828169db270c329b9b71d847e54aba6f7f0 languageName: node linkType: hard "react-window@npm:^1.8.11": version: 1.8.11 resolution: "react-window@npm:1.8.11" dependencies: "@babel/runtime": "npm:^7.0.0" memoize-one: "npm:>=3.1.1 <6" peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 checksum: 10c0/5ae8da1bc5c47d8f0a428b28a600256e2db511975573e52cb65a9b27ed1a0e5b9f7b3bee5a54fb0da93956d782c24010be434be451072f46ba5a89159d2b3944 languageName: node linkType: hard "react-window@npm:^1.8.5": version: 1.8.10 resolution: "react-window@npm:1.8.10" dependencies: "@babel/runtime": "npm:^7.0.0" memoize-one: "npm:>=3.1.1 <6" peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 checksum: 10c0/eda9afb667d9784513dcc2755b65edf3a1412e7877975322993c1382908aaef0c0b948b7e3b2d705e353306556274d90f7ab19ac40aef2184fa39d4c1e2232ea languageName: node linkType: hard "react@npm:^18.2.0": version: 18.3.1 resolution: "react@npm:18.3.1" dependencies: loose-envify: "npm:^1.1.0" checksum: 10c0/283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3 languageName: node linkType: hard "reactcss@npm:^1.2.0": version: 1.2.3 resolution: "reactcss@npm:1.2.3" dependencies: lodash: "npm:^4.0.1" checksum: 10c0/a3aceb0fbfd58312f0c7fadbe92920e6536ec24d17ebee44fd4a14dd831d413fff5c2df0e85579b440667935e57a06876325cbd1368d3131824a8c2ec43b7978 languageName: node linkType: hard "readable-stream@npm:>=1.0.33-1 <1.1.0-0": version: 1.0.34 resolution: "readable-stream@npm:1.0.34" dependencies: core-util-is: "npm:~1.0.0" inherits: "npm:~2.0.1" isarray: "npm:0.0.1" string_decoder: "npm:~0.10.x" checksum: 10c0/02272551396ed8930ddee1a088bdf0379f0f7cc47ac49ed8804e998076cb7daec9fbd2b1fd9c0490ec72e56e8bb3651abeb8080492b8e0a9c3f2158330908ed6 languageName: node linkType: hard "readable-stream@npm:^2.0.0, readable-stream@npm:^2.2.2, readable-stream@npm:^2.3.5, readable-stream@npm:~2.3.6": version: 2.3.8 resolution: "readable-stream@npm:2.3.8" dependencies: core-util-is: "npm:~1.0.0" inherits: "npm:~2.0.3" isarray: "npm:~1.0.0" process-nextick-args: "npm:~2.0.0" safe-buffer: "npm:~5.1.1" string_decoder: "npm:~1.1.1" util-deprecate: "npm:~1.0.1" checksum: 10c0/7efdb01f3853bc35ac62ea25493567bf588773213f5f4a79f9c365e1ad13bab845ac0dae7bc946270dc40c3929483228415e92a3fc600cc7e4548992f41ee3fa languageName: node linkType: hard "readdirp@npm:^4.0.1": version: 4.0.1 resolution: "readdirp@npm:4.0.1" checksum: 10c0/e5a0b547015f68ecc918f115b62b75b2b840611480a9240cb3317090a0ddac01bb9b40315a8fa08acdf52a43eea17b808c89b645263cba3ab64dc557d7f801f1 languageName: node linkType: hard "readdirp@npm:~3.6.0": version: 3.6.0 resolution: "readdirp@npm:3.6.0" dependencies: picomatch: "npm:^2.2.1" checksum: 10c0/6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b languageName: node linkType: hard "redent@npm:^3.0.0": version: 3.0.0 resolution: "redent@npm:3.0.0" dependencies: indent-string: "npm:^4.0.0" strip-indent: "npm:^3.0.0" checksum: 10c0/d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae languageName: node linkType: hard "reflect.getprototypeof@npm:^1.0.6, reflect.getprototypeof@npm:^1.0.9": version: 1.0.10 resolution: "reflect.getprototypeof@npm:1.0.10" dependencies: call-bind: "npm:^1.0.8" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.9" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" get-intrinsic: "npm:^1.2.7" get-proto: "npm:^1.0.1" which-builtin-type: "npm:^1.2.1" checksum: 10c0/7facec28c8008876f8ab98e80b7b9cb4b1e9224353fd4756dda5f2a4ab0d30fa0a5074777c6df24e1e0af463a2697513b0a11e548d99cf52f21f7bc6ba48d3ac languageName: node linkType: hard "refractor@npm:^3.6.0": version: 3.6.0 resolution: "refractor@npm:3.6.0" dependencies: hastscript: "npm:^6.0.0" parse-entities: "npm:^2.0.0" prismjs: "npm:~1.27.0" checksum: 10c0/63ab62393c8c2fd7108c2ea1eff721c0ad2a1a6eee60fdd1b47f4bb25cf298667dc97d041405b3e718b0817da12b37a86ed07ebee5bd2ca6405611f1bae456db languageName: node linkType: hard "regenerator-runtime@npm:^0.14.0": version: 0.14.1 resolution: "regenerator-runtime@npm:0.14.1" checksum: 10c0/1b16eb2c4bceb1665c89de70dcb64126a22bc8eb958feef3cd68fe11ac6d2a4899b5cd1b80b0774c7c03591dc57d16631a7f69d2daa2ec98100e2f29f7ec4cc4 languageName: node linkType: hard "regexp.prototype.flags@npm:^1.5.2": version: 1.5.2 resolution: "regexp.prototype.flags@npm:1.5.2" dependencies: call-bind: "npm:^1.0.6" define-properties: "npm:^1.2.1" es-errors: "npm:^1.3.0" set-function-name: "npm:^2.0.1" checksum: 10c0/0f3fc4f580d9c349f8b560b012725eb9c002f36daa0041b3fbf6f4238cb05932191a4d7d5db3b5e2caa336d5150ad0402ed2be81f711f9308fe7e1a9bf9bd552 languageName: node linkType: hard "regexp.prototype.flags@npm:^1.5.3, regexp.prototype.flags@npm:^1.5.4": version: 1.5.4 resolution: "regexp.prototype.flags@npm:1.5.4" dependencies: call-bind: "npm:^1.0.8" define-properties: "npm:^1.2.1" es-errors: "npm:^1.3.0" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" set-function-name: "npm:^2.0.2" checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77 languageName: node linkType: hard "regl-error2d@npm:^2.0.12": version: 2.0.12 resolution: "regl-error2d@npm:2.0.12" dependencies: array-bounds: "npm:^1.0.1" color-normalize: "npm:^1.5.0" flatten-vertex-data: "npm:^1.0.2" object-assign: "npm:^4.1.1" pick-by-alias: "npm:^1.2.0" to-float32: "npm:^1.1.0" update-diff: "npm:^1.1.0" checksum: 10c0/999bdbb25bf2ab81fe14d9d630db15e81aa590e8b723b8030e7757f4393ff2eb3924e52044a12125804da5fe9d89f5ed1a2bf64340aabaf4cee7ea729ae2398d languageName: node linkType: hard "regl-line2d@npm:^3.1.3": version: 3.1.3 resolution: "regl-line2d@npm:3.1.3" dependencies: array-bounds: "npm:^1.0.1" array-find-index: "npm:^1.0.2" array-normalize: "npm:^1.1.4" color-normalize: "npm:^1.5.0" earcut: "npm:^2.1.5" es6-weak-map: "npm:^2.0.3" flatten-vertex-data: "npm:^1.0.2" object-assign: "npm:^4.1.1" parse-rect: "npm:^1.2.0" pick-by-alias: "npm:^1.2.0" to-float32: "npm:^1.1.0" checksum: 10c0/70673f4b362db65cf878d2008847cb5c6f08c3b0b15c6e4df896f276a6b1b5185aaed2e0248fafe8d2c203d88814f6026060b2656d532d87268151f7c011dabc languageName: node linkType: hard "regl-scatter2d@npm:^3.2.3, regl-scatter2d@npm:^3.3.1": version: 3.3.1 resolution: "regl-scatter2d@npm:3.3.1" dependencies: "@plotly/point-cluster": "npm:^3.1.9" array-range: "npm:^1.0.1" array-rearrange: "npm:^2.2.2" clamp: "npm:^1.0.1" color-id: "npm:^1.1.0" color-normalize: "npm:^1.5.0" color-rgba: "npm:^2.1.1" flatten-vertex-data: "npm:^1.0.2" glslify: "npm:^7.0.0" is-iexplorer: "npm:^1.0.0" object-assign: "npm:^4.1.1" parse-rect: "npm:^1.2.0" pick-by-alias: "npm:^1.2.0" to-float32: "npm:^1.1.0" update-diff: "npm:^1.1.0" checksum: 10c0/9a7f69d2039aeb1cca125d0d101cb122234b9e4ac56e190c9f434198ecd27411d6d4b70e2f2aee5a97471060aef290b74b9cac434398166ac330c47901e99283 languageName: node linkType: hard "regl-splom@npm:^1.0.14": version: 1.0.14 resolution: "regl-splom@npm:1.0.14" dependencies: array-bounds: "npm:^1.0.1" array-range: "npm:^1.0.1" color-alpha: "npm:^1.0.4" flatten-vertex-data: "npm:^1.0.2" parse-rect: "npm:^1.2.0" pick-by-alias: "npm:^1.2.0" raf: "npm:^3.4.1" regl-scatter2d: "npm:^3.2.3" checksum: 10c0/7f7d90c218b13e26fe3745cd8639fca739797908739e7924ea1e728f0e58031508a1f3db65ae7f5da2b2c33b290c36509cfd49db3e5c430ffa54805ac51dd51a languageName: node linkType: hard "regl@npm:^2.0.0": version: 2.1.0 resolution: "regl@npm:2.1.0" checksum: 10c0/14932c484ff3136f35366a1cc3fa42a0a7fb92d20c35590be5334dc84fb305462d0ff5a22a552ffb40c9f7a60b9f0db4e3abeb4f4f6181a5c46db69d6ed24c3f languageName: node linkType: hard "rehype-katex@npm:^7.0.1": version: 7.0.1 resolution: "rehype-katex@npm:7.0.1" dependencies: "@types/hast": "npm:^3.0.0" "@types/katex": "npm:^0.16.0" hast-util-from-html-isomorphic: "npm:^2.0.0" hast-util-to-text: "npm:^4.0.0" katex: "npm:^0.16.0" unist-util-visit-parents: "npm:^6.0.0" vfile: "npm:^6.0.0" checksum: 10c0/73c770319536128b75055d904d06951789d00a0552c11724c0dac2e244dcb21041630552d118a11cc42233fdcd1bfee525e78a0020fde635bd916cceb281dfb1 languageName: node linkType: hard "rehype-raw@npm:^7.0.0": version: 7.0.0 resolution: "rehype-raw@npm:7.0.0" dependencies: "@types/hast": "npm:^3.0.0" hast-util-raw: "npm:^9.0.0" vfile: "npm:^6.0.0" checksum: 10c0/1435b4b6640a5bc3abe3b2133885c4dbff5ef2190ef9cfe09d6a63f74dd7d7ffd0cede70603278560ccf1acbfb9da9faae4b68065a28bc5aa88ad18e40f32d52 languageName: node linkType: hard "remark-directive@npm:^4.0.0": version: 4.0.0 resolution: "remark-directive@npm:4.0.0" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-directive: "npm:^3.0.0" micromark-extension-directive: "npm:^4.0.0" unified: "npm:^11.0.0" checksum: 10c0/ab1f71ae220913f62833464d483f29de7b4af0dcf1ff626d33cdb5dd81eda1c553a11f779de9fd9b641802586c5f070175824d70f14d53e451a484850705d53a languageName: node linkType: hard "remark-emoji@npm:^5.0.2": version: 5.0.2 resolution: "remark-emoji@npm:5.0.2" dependencies: "@types/mdast": "npm:^4.0.4" emoticon: "npm:^4.0.1" mdast-util-find-and-replace: "npm:^3.0.1" node-emoji: "npm:^2.1.3" unified: "npm:^11.0.4" checksum: 10c0/fdf133428c862da510b82e17cb25ce4b9128dafa1a344e61a74aaaab5503b4f668b2cf41b5445b5b06148f5a99f46ab216dc035a68d55e26fabbd1ffb8eb7fd9 languageName: node linkType: hard "remark-gfm@npm:^4.0.1": version: 4.0.1 resolution: "remark-gfm@npm:4.0.1" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-gfm: "npm:^3.0.0" micromark-extension-gfm: "npm:^3.0.0" remark-parse: "npm:^11.0.0" remark-stringify: "npm:^11.0.0" unified: "npm:^11.0.0" checksum: 10c0/427ecc6af3e76222662061a5f670a3e4e33ec5fffe2cabf04034da6a3f9a1bda1fc023e838a636385ba314e66e2bebbf017ca61ebea357eb0f5200fe0625a4b7 languageName: node linkType: hard "remark-math@npm:^6.0.0": version: 6.0.0 resolution: "remark-math@npm:6.0.0" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-math: "npm:^3.0.0" micromark-extension-math: "npm:^3.0.0" unified: "npm:^11.0.0" checksum: 10c0/859613c4db194bb6b3c9c063661dc52b8ceda9c5cf3256b42f73d93eb8f38a6d634eb5f976fe094425f6f1035aaf329eb49ada314feb3b2b1073326b6d3aaa02 languageName: node linkType: hard "remark-parse@npm:^11.0.0": version: 11.0.0 resolution: "remark-parse@npm:11.0.0" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-from-markdown: "npm:^2.0.0" micromark-util-types: "npm:^2.0.0" unified: "npm:^11.0.0" checksum: 10c0/6eed15ddb8680eca93e04fcb2d1b8db65a743dcc0023f5007265dda558b09db595a087f622062ccad2630953cd5cddc1055ce491d25a81f3317c858348a8dd38 languageName: node linkType: hard "remark-rehype@npm:^11.0.0": version: 11.1.2 resolution: "remark-rehype@npm:11.1.2" dependencies: "@types/hast": "npm:^3.0.0" "@types/mdast": "npm:^4.0.0" mdast-util-to-hast: "npm:^13.0.0" unified: "npm:^11.0.0" vfile: "npm:^6.0.0" checksum: 10c0/f9eccacfb596d9605581dc05bfad28635d6ded5dd0a18e88af5fd4df0d3fcf9612e1501d4513bc2164d833cfe9636dab20400080b09e53f155c6e1442a1231fb languageName: node linkType: hard "remark-stringify@npm:^11.0.0": version: 11.0.0 resolution: "remark-stringify@npm:11.0.0" dependencies: "@types/mdast": "npm:^4.0.0" mdast-util-to-markdown: "npm:^2.0.0" unified: "npm:^11.0.0" checksum: 10c0/0cdb37ce1217578f6f847c7ec9f50cbab35df5b9e3903d543e74b405404e67c07defcb23cd260a567b41b769400f6de03c2c3d9cd6ae7a6707d5c8d89ead489f languageName: node linkType: hard "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 languageName: node linkType: hard "require-from-string@npm:^2.0.2": version: 2.0.2 resolution: "require-from-string@npm:2.0.2" checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 languageName: node linkType: hard "require-in-the-middle@npm:^7.1.1": version: 7.5.2 resolution: "require-in-the-middle@npm:7.5.2" dependencies: debug: "npm:^4.3.5" module-details-from-path: "npm:^1.0.3" resolve: "npm:^1.22.8" checksum: 10c0/43a2dac5520e39d13c413650895715e102d6802e6cc6ff322017bd948f12a9657fe28435f7cbbcba437b167f02e192ac7af29fa35cabd5d0c375d071c0605e01 languageName: node linkType: hard "requires-port@npm:^1.0.0": version: 1.0.0 resolution: "requires-port@npm:1.0.0" checksum: 10c0/b2bfdd09db16c082c4326e573a82c0771daaf7b53b9ce8ad60ea46aa6e30aaf475fe9b164800b89f93b748d2c234d8abff945d2551ba47bf5698e04cd7713267 languageName: node linkType: hard "requizzle@npm:^0.2.3": version: 0.2.4 resolution: "requizzle@npm:0.2.4" dependencies: lodash: "npm:^4.17.21" checksum: 10c0/ad138f987943aeda5f96cd1ccba9752c96352a729a7e3c3e2545568703f7fc9b978d9b46715803408ef178b0d61d36a4b1b506b367b7e78fe6d041fa5bfa5e06 languageName: node linkType: hard "resize-observer-polyfill@npm:^1.5.1": version: 1.5.1 resolution: "resize-observer-polyfill@npm:1.5.1" checksum: 10c0/5e882475067f0b97dc07e0f37c3e335ac5bc3520d463f777cec7e894bb273eddbfecb857ae668e6fb6881fd6f6bb7148246967172139302da50fa12ea3a15d95 languageName: node linkType: hard "resolve-from@npm:^4.0.0": version: 4.0.0 resolution: "resolve-from@npm:4.0.0" checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 languageName: node linkType: hard "resolve-pkg-maps@npm:^1.0.0": version: 1.0.0 resolution: "resolve-pkg-maps@npm:1.0.0" checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab languageName: node linkType: hard "resolve-protobuf-schema@npm:^2.1.0": version: 2.1.0 resolution: "resolve-protobuf-schema@npm:2.1.0" dependencies: protocol-buffers-schema: "npm:^3.3.1" checksum: 10c0/8e656b9072b1c001952f851251413bc79d8c771c3015f607b75e1ca3b8bd7c4396068dd19cdbb3019affa03f6457d2c0fd38d981ffd714215cd2e7c2b67221a7 languageName: node linkType: hard "resolve@npm:^0.6.1": version: 0.6.3 resolution: "resolve@npm:0.6.3" checksum: 10c0/57f63aab332a668a1a424747b58851b7dddcfbd9b7a425a6050887858174943e499d1d11e3c10e676e8b0ede15ee6fc3ce919195c12d68082729db93a1517b6d languageName: node linkType: hard "resolve@npm:^1.0.0, resolve@npm:^1.1.10, resolve@npm:^1.1.5, resolve@npm:^1.19.0, resolve@npm:^1.22.4": version: 1.22.8 resolution: "resolve@npm:1.22.8" dependencies: is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/07e179f4375e1fd072cfb72ad66d78547f86e6196c4014b31cb0b8bb1db5f7ca871f922d08da0fbc05b94e9fd42206f819648fa3b5b873ebbc8e1dc68fec433a languageName: node linkType: hard "resolve@npm:^1.22.8, resolve@npm:~1.22.1, resolve@npm:~1.22.2": version: 1.22.10 resolution: "resolve@npm:1.22.10" dependencies: is-core-module: "npm:^2.16.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 languageName: node linkType: hard "resolve@npm:^2.0.0-next.5": version: 2.0.0-next.5 resolution: "resolve@npm:2.0.0-next.5" dependencies: is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/a6c33555e3482ea2ec4c6e3d3bf0d78128abf69dca99ae468e64f1e30acaa318fd267fb66c8836b04d558d3e2d6ed875fe388067e7d8e0de647d3c21af21c43a languageName: node linkType: hard "resolve@patch:resolve@npm%3A^0.6.1#optional!builtin<compat/resolve>": version: 0.6.3 resolution: "resolve@patch:resolve@npm%3A0.6.3#optional!builtin<compat/resolve>::version=0.6.3&hash=3bafbf" checksum: 10c0/a46adc49c7d6828028244cf4d6b9e09d8334f8f175195685c96f5f415986e1587d8a83757ebc4e706be7b8b95911046e0ddc83e9be539050add1806564eff841 languageName: node linkType: hard "resolve@patch:resolve@npm%3A^1.0.0#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.1.10#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.1.5#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin<compat/resolve>": version: 1.22.8 resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin<compat/resolve>::version=1.22.8&hash=c3c19d" dependencies: is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/0446f024439cd2e50c6c8fa8ba77eaa8370b4180f401a96abf3d1ebc770ac51c1955e12764cde449fde3fff480a61f84388e3505ecdbab778f4bef5f8212c729 languageName: node linkType: hard "resolve@patch:resolve@npm%3A^1.22.8#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A~1.22.1#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A~1.22.2#optional!builtin<compat/resolve>": version: 1.22.10 resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin<compat/resolve>::version=1.22.10&hash=c3c19d" dependencies: is-core-module: "npm:^2.16.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 languageName: node linkType: hard "resolve@patch:resolve@npm%3A^2.0.0-next.5#optional!builtin<compat/resolve>": version: 2.0.0-next.5 resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#optional!builtin<compat/resolve>::version=2.0.0-next.5&hash=c3c19d" dependencies: is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve checksum: 10c0/78ad6edb8309a2bfb720c2c1898f7907a37f858866ce11a5974643af1203a6a6e05b2fa9c53d8064a673a447b83d42569260c306d43628bff5bb101969708355 languageName: node linkType: hard "retry@npm:^0.12.0": version: 0.12.0 resolution: "retry@npm:0.12.0" checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe languageName: node linkType: hard "reusify@npm:^1.0.4": version: 1.0.4 resolution: "reusify@npm:1.0.4" checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 languageName: node linkType: hard "right-now@npm:^1.0.0": version: 1.0.0 resolution: "right-now@npm:1.0.0" checksum: 10c0/e7a7e95d490e05816643adb99ce5bcbd726f39abc56f5da6e2d148fcd81803fd1320d80e03f186d8ac02a1b07116a777660897574cfc5c9c08e65e6f7f015a17 languageName: node linkType: hard "rimraf@npm:^5.0.5": version: 5.0.10 resolution: "rimraf@npm:5.0.10" dependencies: glob: "npm:^10.3.7" bin: rimraf: dist/esm/bin.mjs checksum: 10c0/7da4fd0e15118ee05b918359462cfa1e7fe4b1228c7765195a45b55576e8c15b95db513b8466ec89129666f4af45ad978a3057a02139afba1a63512a2d9644cc languageName: node linkType: hard "rimraf@npm:~2.6.2": version: 2.6.3 resolution: "rimraf@npm:2.6.3" dependencies: glob: "npm:^7.1.3" bin: rimraf: ./bin.js checksum: 10c0/f1e646f8c567795f2916aef7aadf685b543da6b9a53e482bb04b07472c7eef2b476045ba1e29f401c301c66b630b22b815ab31fdd60c5e1ae6566ff523debf45 languageName: node linkType: hard "robots-parser@npm:^3.0.1": version: 3.0.1 resolution: "robots-parser@npm:3.0.1" checksum: 10c0/91443b15ab1b39f69ac998a2dae8859ad35c981504e5facbb34d494fd6163877e821ce7ed830d14e9efdd6ed28c347491c3d699738943501dec2b6bedfdd6a81 languageName: node linkType: hard "robust-predicates@npm:^3.0.2": version: 3.0.2 resolution: "robust-predicates@npm:3.0.2" checksum: 10c0/4ecd53649f1c2d49529c85518f2fa69ffb2f7a4453f7fd19c042421c7b4d76c3efb48bc1c740c8f7049346d7cb58cf08ee0c9adaae595cc23564d360adb1fde4 languageName: node linkType: hard "rollup@npm:^4.43.0": version: 4.46.2 resolution: "rollup@npm:4.46.2" dependencies: "@rollup/rollup-android-arm-eabi": "npm:4.46.2" "@rollup/rollup-android-arm64": "npm:4.46.2" "@rollup/rollup-darwin-arm64": "npm:4.46.2" "@rollup/rollup-darwin-x64": "npm:4.46.2" "@rollup/rollup-freebsd-arm64": "npm:4.46.2" "@rollup/rollup-freebsd-x64": "npm:4.46.2" "@rollup/rollup-linux-arm-gnueabihf": "npm:4.46.2" "@rollup/rollup-linux-arm-musleabihf": "npm:4.46.2" "@rollup/rollup-linux-arm64-gnu": "npm:4.46.2" "@rollup/rollup-linux-arm64-musl": "npm:4.46.2" "@rollup/rollup-linux-loongarch64-gnu": "npm:4.46.2" "@rollup/rollup-linux-ppc64-gnu": "npm:4.46.2" "@rollup/rollup-linux-riscv64-gnu": "npm:4.46.2" "@rollup/rollup-linux-riscv64-musl": "npm:4.46.2" "@rollup/rollup-linux-s390x-gnu": "npm:4.46.2" "@rollup/rollup-linux-x64-gnu": "npm:4.46.2" "@rollup/rollup-linux-x64-musl": "npm:4.46.2" "@rollup/rollup-win32-arm64-msvc": "npm:4.46.2" "@rollup/rollup-win32-ia32-msvc": "npm:4.46.2" "@rollup/rollup-win32-x64-msvc": "npm:4.46.2" "@types/estree": "npm:1.0.8" fsevents: "npm:~2.3.2" dependenciesMeta: "@rollup/rollup-android-arm-eabi": optional: true "@rollup/rollup-android-arm64": optional: true "@rollup/rollup-darwin-arm64": optional: true "@rollup/rollup-darwin-x64": optional: true "@rollup/rollup-freebsd-arm64": optional: true "@rollup/rollup-freebsd-x64": optional: true "@rollup/rollup-linux-arm-gnueabihf": optional: true "@rollup/rollup-linux-arm-musleabihf": optional: true "@rollup/rollup-linux-arm64-gnu": optional: true "@rollup/rollup-linux-arm64-musl": optional: true "@rollup/rollup-linux-loongarch64-gnu": optional: true "@rollup/rollup-linux-ppc64-gnu": optional: true "@rollup/rollup-linux-riscv64-gnu": optional: true "@rollup/rollup-linux-riscv64-musl": optional: true "@rollup/rollup-linux-s390x-gnu": optional: true "@rollup/rollup-linux-x64-gnu": optional: true "@rollup/rollup-linux-x64-musl": optional: true "@rollup/rollup-win32-arm64-msvc": optional: true "@rollup/rollup-win32-ia32-msvc": optional: true "@rollup/rollup-win32-x64-msvc": optional: true fsevents: optional: true bin: rollup: dist/bin/rollup checksum: 10c0/f428497fe119fe7c4e34f1020d45ba13e99b94c9aa36958d88823d932b155c9df3d84f53166f3ee913ff68ea6c7599a9ab34861d88562ad9d8420f64ca5dad4c languageName: node linkType: hard "rope-sequence@npm:^1.3.0": version: 1.3.4 resolution: "rope-sequence@npm:1.3.4" checksum: 10c0/caa90be3d7a7cad155fb354a4679a1280dc9819c81bd319542a0d893a64e152284abb9cc1631d4351b328016a8d6c35a48c912234edfaf5173daef44b2e3609b languageName: node linkType: hard "rrweb-cssom@npm:^0.7.1": version: 0.7.1 resolution: "rrweb-cssom@npm:0.7.1" checksum: 10c0/127b8ca6c8aac45e2755abbae6138d4a813b1bedc2caabf79466ae83ab3cfc84b5bfab513b7033f0aa4561c7753edf787d0dd01163ceacdee2e8eb1b6bf7237e languageName: node linkType: hard "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" dependencies: queue-microtask: "npm:^1.2.2" checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 languageName: node linkType: hard "rw@npm:1, rw@npm:^1.3.3": version: 1.3.3 resolution: "rw@npm:1.3.3" checksum: 10c0/b1e1ef37d1e79d9dc7050787866e30b6ddcb2625149276045c262c6b4d53075ddc35f387a856a8e76f0d0df59f4cd58fe24707e40797ebee66e542b840ed6a53 languageName: node linkType: hard "rxjs@npm:7.8.2": version: 7.8.2 resolution: "rxjs@npm:7.8.2" dependencies: tslib: "npm:^2.1.0" checksum: 10c0/1fcd33d2066ada98ba8f21fcbbcaee9f0b271de1d38dc7f4e256bfbc6ffcdde68c8bfb69093de7eeb46f24b1fb820620bf0223706cff26b4ab99a7ff7b2e2c45 languageName: node linkType: hard "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" dependencies: call-bind: "npm:^1.0.7" get-intrinsic: "npm:^1.2.4" has-symbols: "npm:^1.0.3" isarray: "npm:^2.0.5" checksum: 10c0/12f9fdb01c8585e199a347eacc3bae7b5164ae805cdc8c6707199dbad5b9e30001a50a43c4ee24dc9ea32dbb7279397850e9208a7e217f4d8b1cf5d90129dec9 languageName: node linkType: hard "safe-array-concat@npm:^1.1.3": version: 1.1.3 resolution: "safe-array-concat@npm:1.1.3" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.2" get-intrinsic: "npm:^1.2.6" has-symbols: "npm:^1.1.0" isarray: "npm:^2.0.5" checksum: 10c0/43c86ffdddc461fb17ff8a17c5324f392f4868f3c7dd2c6a5d9f5971713bc5fd755667212c80eab9567595f9a7509cc2f83e590ddaebd1bd19b780f9c79f9a8d languageName: node linkType: hard "safe-buffer@npm:^5.1.1": version: 5.2.1 resolution: "safe-buffer@npm:5.2.1" checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 languageName: node linkType: hard "safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": version: 5.1.2 resolution: "safe-buffer@npm:5.1.2" checksum: 10c0/780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21 languageName: node linkType: hard "safe-push-apply@npm:^1.0.0": version: 1.0.0 resolution: "safe-push-apply@npm:1.0.0" dependencies: es-errors: "npm:^1.3.0" isarray: "npm:^2.0.5" checksum: 10c0/831f1c9aae7436429e7862c7e46f847dfe490afac20d0ee61bae06108dbf5c745a0de3568ada30ccdd3eeb0864ca8331b2eef703abd69bfea0745b21fd320750 languageName: node linkType: hard "safe-regex-test@npm:^1.0.3": version: 1.0.3 resolution: "safe-regex-test@npm:1.0.3" dependencies: call-bind: "npm:^1.0.6" es-errors: "npm:^1.3.0" is-regex: "npm:^1.1.4" checksum: 10c0/900bf7c98dc58f08d8523b7012b468e4eb757afa624f198902c0643d7008ba777b0bdc35810ba0b758671ce887617295fb742b3f3968991b178ceca54cb07603 languageName: node linkType: hard "safe-regex-test@npm:^1.1.0": version: 1.1.0 resolution: "safe-regex-test@npm:1.1.0" dependencies: call-bound: "npm:^1.0.2" es-errors: "npm:^1.3.0" is-regex: "npm:^1.2.1" checksum: 10c0/f2c25281bbe5d39cddbbce7f86fca5ea9b3ce3354ea6cd7c81c31b006a5a9fff4286acc5450a3b9122c56c33eba69c56b9131ad751457b2b4a585825e6a10665 languageName: node linkType: hard "safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 languageName: node linkType: hard "sass@npm:^1.58.0": version: 1.79.3 resolution: "sass@npm:1.79.3" dependencies: chokidar: "npm:^4.0.0" immutable: "npm:^4.0.0" source-map-js: "npm:>=0.6.2 <2.0.0" bin: sass: sass.js checksum: 10c0/ad171bbbb2d7a789cc47803a59dcf2d0ac92ede34b538bb3fd683b6391a9ac3dc3eabaac264fc9582c770c4e435b85840e011785b7adfc0ac002b51ba91179c9 languageName: node linkType: hard "sax@npm:^1.2.4": version: 1.4.1 resolution: "sax@npm:1.4.1" checksum: 10c0/6bf86318a254c5d898ede6bd3ded15daf68ae08a5495a2739564eb265cd13bcc64a07ab466fb204f67ce472bb534eb8612dac587435515169593f4fffa11de7c languageName: node linkType: hard "saxes@npm:^6.0.0": version: 6.0.0 resolution: "saxes@npm:6.0.0" dependencies: xmlchars: "npm:^2.2.0" checksum: 10c0/3847b839f060ef3476eb8623d099aa502ad658f5c40fd60c105ebce86d244389b0d76fcae30f4d0c728d7705ceb2f7e9b34bb54717b6a7dbedaf5dad2d9a4b74 languageName: node linkType: hard "scheduler@npm:^0.23.2": version: 0.23.2 resolution: "scheduler@npm:0.23.2" dependencies: loose-envify: "npm:^1.1.0" checksum: 10c0/26383305e249651d4c58e6705d5f8425f153211aef95f15161c151f7b8de885f24751b377e4a0b3dd42cce09aad3f87a61dab7636859c0d89b7daf1a1e2a5c78 languageName: node linkType: hard "semver@npm:^6.3.1": version: 6.3.1 resolution: "semver@npm:6.3.1" bin: semver: bin/semver.js checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d languageName: node linkType: hard "semver@npm:^7.1.2, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.6.0": version: 7.6.3 resolution: "semver@npm:7.6.3" bin: semver: bin/semver.js checksum: 10c0/88f33e148b210c153873cb08cfe1e281d518aaa9a666d4d148add6560db5cd3c582f3a08ccb91f38d5f379ead256da9931234ed122057f40bb5766e65e58adaf languageName: node linkType: hard "semver@npm:^7.5.2, semver@npm:^7.7.2": version: 7.7.2 resolution: "semver@npm:7.7.2" bin: semver: bin/semver.js checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea languageName: node linkType: hard "semver@npm:^7.7.0, semver@npm:^7.7.1": version: 7.7.1 resolution: "semver@npm:7.7.1" bin: semver: bin/semver.js checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958 languageName: node linkType: hard "semver@npm:~7.5.4": version: 7.5.4 resolution: "semver@npm:7.5.4" dependencies: lru-cache: "npm:^6.0.0" bin: semver: bin/semver.js checksum: 10c0/5160b06975a38b11c1ab55950cb5b8a23db78df88275d3d8a42ccf1f29e55112ac995b3a26a522c36e3b5f76b0445f1eef70d696b8c7862a2b4303d7b0e7609e languageName: node linkType: hard "set-function-length@npm:^1.2.1, set-function-length@npm:^1.2.2": version: 1.2.2 resolution: "set-function-length@npm:1.2.2" dependencies: define-data-property: "npm:^1.1.4" es-errors: "npm:^1.3.0" function-bind: "npm:^1.1.2" get-intrinsic: "npm:^1.2.4" gopd: "npm:^1.0.1" has-property-descriptors: "npm:^1.0.2" checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c languageName: node linkType: hard "set-function-name@npm:^2.0.1, set-function-name@npm:^2.0.2": version: 2.0.2 resolution: "set-function-name@npm:2.0.2" dependencies: define-data-property: "npm:^1.1.4" es-errors: "npm:^1.3.0" functions-have-names: "npm:^1.2.3" has-property-descriptors: "npm:^1.0.2" checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 languageName: node linkType: hard "set-proto@npm:^1.0.0": version: 1.0.0 resolution: "set-proto@npm:1.0.0" dependencies: dunder-proto: "npm:^1.0.1" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" checksum: 10c0/ca5c3ccbba479d07c30460e367e66337cec825560b11e8ba9c5ebe13a2a0d6021ae34eddf94ff3dfe17a3104dc1f191519cb6c48378b503e5c3f36393938776a languageName: node linkType: hard "set-value@npm:^2.0.1": version: 2.0.1 resolution: "set-value@npm:2.0.1" dependencies: extend-shallow: "npm:^2.0.1" is-extendable: "npm:^0.1.1" is-plain-object: "npm:^2.0.3" split-string: "npm:^3.0.1" checksum: 10c0/4c40573c4f6540456e4b38b95f570272c4cfbe1d12890ad4057886da8535047cd772dfadf5b58e2e87aa244dfb4c57e3586f6716b976fc47c5144b6b09e1811b languageName: node linkType: hard "setimmediate@npm:^1.0.5": version: 1.0.5 resolution: "setimmediate@npm:1.0.5" checksum: 10c0/5bae81bfdbfbd0ce992893286d49c9693c82b1bcc00dcaaf3a09c8f428fdeacf4190c013598b81875dfac2b08a572422db7df779a99332d0fce186d15a3e4d49 languageName: node linkType: hard "shallow-copy@npm:0.0.1": version: 0.0.1 resolution: "shallow-copy@npm:0.0.1" checksum: 10c0/ab1c762e36fa3a02cec228e111f227be0b46457a82f123c5ef13f3bc970be16b74dbfd0f1b6ffb450a66db856832800c86713ffc1ec5733d61f59f23fe114769 languageName: node linkType: hard "shallowequal@npm:^1.1.0": version: 1.1.0 resolution: "shallowequal@npm:1.1.0" checksum: 10c0/b926efb51cd0f47aa9bc061add788a4a650550bbe50647962113a4579b60af2abe7b62f9b02314acc6f97151d4cf87033a2b15fc20852fae306d1a095215396c languageName: node linkType: hard "shebang-command@npm:^2.0.0": version: 2.0.0 resolution: "shebang-command@npm:2.0.0" dependencies: shebang-regex: "npm:^3.0.0" checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e languageName: node linkType: hard "shebang-regex@npm:^3.0.0": version: 3.0.0 resolution: "shebang-regex@npm:3.0.0" checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 languageName: node linkType: hard "shell-quote@npm:1.8.3": version: 1.8.3 resolution: "shell-quote@npm:1.8.3" checksum: 10c0/bee87c34e1e986cfb4c30846b8e6327d18874f10b535699866f368ade11ea4ee45433d97bf5eada22c4320c27df79c3a6a7eb1bf3ecfc47f2c997d9e5e2672fd languageName: node linkType: hard "shimmer@npm:^1.2.1": version: 1.2.1 resolution: "shimmer@npm:1.2.1" checksum: 10c0/ae8b27c389db2a00acfc8da90240f11577685a8f3e40008f826a3bea8b4f3b3ecd305c26be024b4a0fd3b123d132c1569d6e238097960a9a543b6c60760fb46a languageName: node linkType: hard "side-channel-list@npm:^1.0.0": version: 1.0.0 resolution: "side-channel-list@npm:1.0.0" dependencies: es-errors: "npm:^1.3.0" object-inspect: "npm:^1.13.3" checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d languageName: node linkType: hard "side-channel-map@npm:^1.0.1": version: 1.0.1 resolution: "side-channel-map@npm:1.0.1" dependencies: call-bound: "npm:^1.0.2" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.5" object-inspect: "npm:^1.13.3" checksum: 10c0/010584e6444dd8a20b85bc926d934424bd809e1a3af941cace229f7fdcb751aada0fb7164f60c2e22292b7fa3c0ff0bce237081fd4cdbc80de1dc68e95430672 languageName: node linkType: hard "side-channel-weakmap@npm:^1.0.2": version: 1.0.2 resolution: "side-channel-weakmap@npm:1.0.2" dependencies: call-bound: "npm:^1.0.2" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.5" object-inspect: "npm:^1.13.3" side-channel-map: "npm:^1.0.1" checksum: 10c0/71362709ac233e08807ccd980101c3e2d7efe849edc51455030327b059f6c4d292c237f94dc0685031dd11c07dd17a68afde235d6cf2102d949567f98ab58185 languageName: node linkType: hard "side-channel@npm:^1.0.4": version: 1.0.6 resolution: "side-channel@npm:1.0.6" dependencies: call-bind: "npm:^1.0.7" es-errors: "npm:^1.3.0" get-intrinsic: "npm:^1.2.4" object-inspect: "npm:^1.13.1" checksum: 10c0/d2afd163dc733cc0a39aa6f7e39bf0c436293510dbccbff446733daeaf295857dbccf94297092ec8c53e2503acac30f0b78830876f0485991d62a90e9cad305f languageName: node linkType: hard "side-channel@npm:^1.1.0": version: 1.1.0 resolution: "side-channel@npm:1.1.0" dependencies: es-errors: "npm:^1.3.0" object-inspect: "npm:^1.13.3" side-channel-list: "npm:^1.0.0" side-channel-map: "npm:^1.0.1" side-channel-weakmap: "npm:^1.0.2" checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 languageName: node linkType: hard "siginfo@npm:^2.0.0": version: 2.0.0 resolution: "siginfo@npm:2.0.0" checksum: 10c0/3def8f8e516fbb34cb6ae415b07ccc5d9c018d85b4b8611e3dc6f8be6d1899f693a4382913c9ed51a06babb5201639d76453ab297d1c54a456544acf5c892e34 languageName: node linkType: hard "signal-exit@npm:^4.0.1": version: 4.1.0 resolution: "signal-exit@npm:4.1.0" checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 languageName: node linkType: hard "signum@npm:^1.0.0": version: 1.0.0 resolution: "signum@npm:1.0.0" checksum: 10c0/e29582d673f0e2f3b2345f7e795f2c2be192e353f80371ed79631a0708f0200dd4db7997636b51b818007cd426da156becee3316ff9fa5c63004ce672162c74b languageName: node linkType: hard "skin-tone@npm:^2.0.0": version: 2.0.0 resolution: "skin-tone@npm:2.0.0" dependencies: unicode-emoji-modifier-base: "npm:^1.0.0" checksum: 10c0/82d4c2527864f9cbd6cb7f3c4abb31e2224752234d5013b881d3e34e9ab543545b05206df5a17d14b515459fcb265ce409f9cfe443903176b0360cd20e4e4ba5 languageName: node linkType: hard "slash@npm:^3.0.0": version: 3.0.0 resolution: "slash@npm:3.0.0" checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b languageName: node linkType: hard "smart-buffer@npm:^4.2.0": version: 4.2.0 resolution: "smart-buffer@npm:4.2.0" checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 languageName: node linkType: hard "snake-case@npm:^3.0.4": version: 3.0.4 resolution: "snake-case@npm:3.0.4" dependencies: dot-case: "npm:^3.0.4" tslib: "npm:^2.0.3" checksum: 10c0/ab19a913969f58f4474fe9f6e8a026c8a2142a01f40b52b79368068343177f818cdfef0b0c6b9558f298782441d5ca8ed5932eb57822439fad791d866e62cecd languageName: node linkType: hard "snappyjs@npm:^0.6.1": version: 0.6.1 resolution: "snappyjs@npm:0.6.1" checksum: 10c0/6fa62bb62adfc2bad577db78c58b1c52aba5482f749018ff3000f13bf660f13ec5f16ab80673ce4e8792902a16c30e5fb40a3b67dbca9af525658c9d343c5b1c languageName: node linkType: hard "socks-proxy-agent@npm:^8.0.3, socks-proxy-agent@npm:^8.0.5": version: 8.0.5 resolution: "socks-proxy-agent@npm:8.0.5" dependencies: agent-base: "npm:^7.1.2" debug: "npm:^4.3.4" socks: "npm:^2.8.3" checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 languageName: node linkType: hard "socks@npm:^2.8.3": version: 2.8.3 resolution: "socks@npm:2.8.3" dependencies: ip-address: "npm:^9.0.5" smart-buffer: "npm:^4.2.0" checksum: 10c0/d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7 languageName: node linkType: hard "sort-asc@npm:^0.2.0": version: 0.2.0 resolution: "sort-asc@npm:0.2.0" checksum: 10c0/637d08a3f42d9b20ad489fa50970cc46ff606764ecfc95f00e607151d38a4b9086b74366ef99177783ff2da75ad821dff5d76557caa7206e5b3082e1e743e7cf languageName: node linkType: hard "sort-desc@npm:^0.2.0": version: 0.2.0 resolution: "sort-desc@npm:0.2.0" checksum: 10c0/d9b49e49c8aa1d443ace95a86845f7ad9c9aeb9bb231f43adf7af22109bbd05b11983497f7c449d88ee6c499f43cf0591cde59975f5321c7883c6a395dce8482 languageName: node linkType: hard "sort-object@npm:^3.0.3": version: 3.0.3 resolution: "sort-object@npm:3.0.3" dependencies: bytewise: "npm:^1.1.0" get-value: "npm:^2.0.2" is-extendable: "npm:^0.1.1" sort-asc: "npm:^0.2.0" sort-desc: "npm:^0.2.0" union-value: "npm:^1.0.1" checksum: 10c0/b19518e3659875d0997bfb6e4a2bc681a71b3cc30a39b7ab673fcb5c32e65b2c9d4b66eba6c97c29c78b5fc437306ec0e0a85a381565d54eff8716388535db5d languageName: node linkType: hard "source-map-explorer@npm:^2.5.3": version: 2.5.3 resolution: "source-map-explorer@npm:2.5.3" dependencies: btoa: "npm:^1.2.1" chalk: "npm:^4.1.0" convert-source-map: "npm:^1.7.0" ejs: "npm:^3.1.5" escape-html: "npm:^1.0.3" glob: "npm:^7.1.6" gzip-size: "npm:^6.0.0" lodash: "npm:^4.17.20" open: "npm:^7.3.1" source-map: "npm:^0.7.4" temp: "npm:^0.9.4" yargs: "npm:^16.2.0" bin: sme: bin/cli.js source-map-explorer: bin/cli.js checksum: 10c0/43bbf2dd3384c4bfccbde14f1302d8e325b61a0847d2affb8e40ec1c7467e93af3058a3458525935407e25aa7bc19b9459f1113aba433b9e7f0cc273c30cd07a languageName: node linkType: hard "source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf languageName: node linkType: hard "source-map@npm:^0.5.7": version: 0.5.7 resolution: "source-map@npm:0.5.7" checksum: 10c0/904e767bb9c494929be013017380cbba013637da1b28e5943b566031e29df04fba57edf3f093e0914be094648b577372bd8ad247fa98cfba9c600794cd16b599 languageName: node linkType: hard "source-map@npm:^0.7.4": version: 0.7.4 resolution: "source-map@npm:0.7.4" checksum: 10c0/dc0cf3768fe23c345ea8760487f8c97ef6fca8a73c83cd7c9bf2fde8bc2c34adb9c0824d6feb14bc4f9e37fb522e18af621543f1289038a66ac7586da29aa7dc languageName: node linkType: hard "source-map@npm:~0.6.1": version: 0.6.1 resolution: "source-map@npm:0.6.1" checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 languageName: node linkType: hard "space-separated-tokens@npm:^1.0.0": version: 1.1.5 resolution: "space-separated-tokens@npm:1.1.5" checksum: 10c0/3ee0a6905f89e1ffdfe474124b1ade9fe97276a377a0b01350bc079b6ec566eb5b219e26064cc5b7f3899c05bde51ffbc9154290b96eaf82916a1e2c2c13ead9 languageName: node linkType: hard "space-separated-tokens@npm:^2.0.0": version: 2.0.2 resolution: "space-separated-tokens@npm:2.0.2" checksum: 10c0/6173e1d903dca41dcab6a2deed8b4caf61bd13b6d7af8374713500570aa929ff9414ae09a0519f4f8772df993300305a395d4871f35bc4ca72b6db57e1f30af8 languageName: node linkType: hard "speedline-core@npm:^1.4.3": version: 1.4.3 resolution: "speedline-core@npm:1.4.3" dependencies: "@types/node": "npm:*" image-ssim: "npm:^0.2.0" jpeg-js: "npm:^0.4.1" checksum: 10c0/4fa7bb838ddb83a0d9dbcbae79247b7357d7d00832541bbeca428a19a2530a91fb6487bd6bf67cd9b972156fafa3bd8ee7261092a9e8026695a7ab67e48fedff languageName: node linkType: hard "splaytree-ts@npm:^1.0.2": version: 1.0.2 resolution: "splaytree-ts@npm:1.0.2" checksum: 10c0/4c34573891a749055ffe22381ea841ae03dbf7b55a3ea4a1d7df5013bfbe128e79f6c468579358ec573734cdbdf5f77a97ae7185f155248eb8be58151428c85e languageName: node linkType: hard "split-on-first@npm:^3.0.0": version: 3.0.0 resolution: "split-on-first@npm:3.0.0" checksum: 10c0/a1262eae12b68de235e1a08e011bf5b42c42621985ddf807e6221fb1e2b3304824913ae7019f18436b96b8fab8aef5f1ad80dedd2385317fdc51b521c3882cd0 languageName: node linkType: hard "split-string@npm:^3.0.1": version: 3.1.0 resolution: "split-string@npm:3.1.0" dependencies: extend-shallow: "npm:^3.0.0" checksum: 10c0/72d7cd625445c7af215130e1e2bc183013bb9dd48a074eda1d35741e2b0dcb355e6df5b5558a62543a24dcec37dd1d6eb7a6228ff510d3c9de0f3dc1d1da8a70 languageName: node linkType: hard "sprintf-js@npm:^1.1.3": version: 1.1.3 resolution: "sprintf-js@npm:1.1.3" checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec languageName: node linkType: hard "sprintf-js@npm:~1.0.2": version: 1.0.3 resolution: "sprintf-js@npm:1.0.3" checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb languageName: node linkType: hard "ssri@npm:^12.0.0": version: 12.0.0 resolution: "ssri@npm:12.0.0" dependencies: minipass: "npm:^7.0.3" checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d languageName: node linkType: hard "stable-hash-x@npm:^0.1.1": version: 0.1.1 resolution: "stable-hash-x@npm:0.1.1" checksum: 10c0/38744f4755026f2a2aa842c7d8c92c5a2cd708aac455faf8575cee7ce4218b5ffacf278797fed97d8240b956b687efb31ca92955280d07e7d6e16a8e58497daf languageName: node linkType: hard "stable-hash-x@npm:^0.2.0": version: 0.2.0 resolution: "stable-hash-x@npm:0.2.0" checksum: 10c0/c757df58366ee4bb266a9486b8932eab7c1ba730469eaf4b68d2dee404814e9f84089c44c9b5205f8c7d99a0ab036cce2af69139ce5ed44b635923c011a8aea8 languageName: node linkType: hard "stack-trace@npm:0.0.9": version: 0.0.9 resolution: "stack-trace@npm:0.0.9" checksum: 10c0/dd4fc71b4b5e956550d4aeea35b74893dfa79981237ebcaa071f4a38bba78d7fd553ec402fc5a63018a52dc75c1ebe61847c3b84ef7654b3e85e44b6a5728cfd languageName: node linkType: hard "stackback@npm:0.0.2": version: 0.0.2 resolution: "stackback@npm:0.0.2" checksum: 10c0/89a1416668f950236dd5ac9f9a6b2588e1b9b62b1b6ad8dff1bfc5d1a15dbf0aafc9b52d2226d00c28dffff212da464eaeebfc6b7578b9d180cef3e3782c5983 languageName: node linkType: hard "static-eval@npm:^2.0.5": version: 2.1.1 resolution: "static-eval@npm:2.1.1" dependencies: escodegen: "npm:^2.1.0" checksum: 10c0/ad8ab8f86e6f82e3ff6c80d60a4c0ccfb086082cf594fa71a5c38cb6ed59607660e7a3e0103f3583ca38716744321d487bbe55a5ae2c6a9c965b5cf4d4cf2960 languageName: node linkType: hard "std-env@npm:^3.9.0": version: 3.9.0 resolution: "std-env@npm:3.9.0" checksum: 10c0/4a6f9218aef3f41046c3c7ecf1f98df00b30a07f4f35c6d47b28329bc2531eef820828951c7d7b39a1c5eb19ad8a46e3ddfc7deb28f0a2f3ceebee11bab7ba50 languageName: node linkType: hard "stop-iteration-iterator@npm:^1.1.0": version: 1.1.0 resolution: "stop-iteration-iterator@npm:1.1.0" dependencies: es-errors: "npm:^1.3.0" internal-slot: "npm:^1.1.0" checksum: 10c0/de4e45706bb4c0354a4b1122a2b8cc45a639e86206807ce0baf390ee9218d3ef181923fa4d2b67443367c491aa255c5fbaa64bb74648e3c5b48299928af86c09 languageName: node linkType: hard "stream-parser@npm:~0.3.1": version: 0.3.1 resolution: "stream-parser@npm:0.3.1" dependencies: debug: "npm:2" checksum: 10c0/585508801423bd6c53f6dda9d78e4b743a08ab72e8e2680431fa855ef950e59c849ec2838f2a00c59af655ff8463e90f660f9169a816e63a3ca159cf713bae5c languageName: node linkType: hard "stream-shift@npm:^1.0.0": version: 1.0.3 resolution: "stream-shift@npm:1.0.3" checksum: 10c0/939cd1051ca750d240a0625b106a2b988c45fb5a3be0cebe9a9858cb01bc1955e8c7b9fac17a9462976bea4a7b704e317c5c2200c70f0ca715a3363b9aa4fd3b languageName: node linkType: hard "streamlit@workspace:.": version: 0.0.0-use.local resolution: "streamlit@workspace:." dependencies: "@vitest/coverage-v8": "npm:^3.2.4" concurrently: "npm:^9.2.1" jiti: "npm:^2.5.1" vitest: "npm:^3.2.4" languageName: unknown linkType: soft "streamx@npm:^2.15.0, streamx@npm:^2.20.0": version: 2.20.1 resolution: "streamx@npm:2.20.1" dependencies: bare-events: "npm:^2.2.0" fast-fifo: "npm:^1.3.2" queue-tick: "npm:^1.0.1" text-decoder: "npm:^1.1.0" dependenciesMeta: bare-events: optional: true checksum: 10c0/34ffa2ee9465d70e18c7e2ba70189720c166d150ab83eb7700304620fa23ff42a69cb37d712ea4b5fc6234d8e74346a88bb4baceb873c6b05e52ac420f8abb4d languageName: node linkType: hard "string-argv@npm:~0.3.1": version: 0.3.2 resolution: "string-argv@npm:0.3.2" checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 languageName: node linkType: hard "string-split-by@npm:^1.0.0": version: 1.0.0 resolution: "string-split-by@npm:1.0.0" dependencies: parenthesis: "npm:^3.1.5" checksum: 10c0/7feac22db5eb4fedc418818fe6c9277d2b2bbe8d200877ed4be629eeff6dafb686b04d87f3c49aa0b7ccaedaf5c576e31dd0e756ea82421cc48f362ece48b942 languageName: node linkType: hard "string-ts@npm:^2.2.1": version: 2.2.1 resolution: "string-ts@npm:2.2.1" checksum: 10c0/2db651cd6968ef0d8c3dbed26d38d54a557351412b409bfae15e697b544141efde3789f20df0f7152dc4f4322b1ece8e34ee0654679688dc7081f012444e0710 languageName: node linkType: hard "string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": version: 4.2.3 resolution: "string-width@npm:4.2.3" dependencies: emoji-regex: "npm:^8.0.0" is-fullwidth-code-point: "npm:^3.0.0" strip-ansi: "npm:^6.0.1" checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b languageName: node linkType: hard "string-width@npm:^5.0.1, string-width@npm:^5.1.2": version: 5.1.2 resolution: "string-width@npm:5.1.2" dependencies: eastasianwidth: "npm:^0.2.0" emoji-regex: "npm:^9.2.2" strip-ansi: "npm:^7.0.1" checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca languageName: node linkType: hard "string-width@npm:^7.0.0, string-width@npm:^7.2.0": version: 7.2.0 resolution: "string-width@npm:7.2.0" dependencies: emoji-regex: "npm:^10.3.0" get-east-asian-width: "npm:^1.0.0" strip-ansi: "npm:^7.1.0" checksum: 10c0/eb0430dd43f3199c7a46dcbf7a0b34539c76fe3aa62763d0b0655acdcbdf360b3f66f3d58ca25ba0205f42ea3491fa00f09426d3b7d3040e506878fc7664c9b9 languageName: node linkType: hard "string.prototype.includes@npm:^2.0.1": version: 2.0.1 resolution: "string.prototype.includes@npm:2.0.1" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.3" checksum: 10c0/25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5 languageName: node linkType: hard "string.prototype.matchall@npm:^4.0.12": version: 4.0.12 resolution: "string.prototype.matchall@npm:4.0.12" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.6" es-errors: "npm:^1.3.0" es-object-atoms: "npm:^1.0.0" get-intrinsic: "npm:^1.2.6" gopd: "npm:^1.2.0" has-symbols: "npm:^1.1.0" internal-slot: "npm:^1.1.0" regexp.prototype.flags: "npm:^1.5.3" set-function-name: "npm:^2.0.2" side-channel: "npm:^1.1.0" checksum: 10c0/1a53328ada73f4a77f1fdf1c79414700cf718d0a8ef6672af5603e709d26a24f2181208144aed7e858b1bcc1a0d08567a570abfb45567db4ae47637ed2c2f85c languageName: node linkType: hard "string.prototype.repeat@npm:^1.0.0": version: 1.0.0 resolution: "string.prototype.repeat@npm:1.0.0" dependencies: define-properties: "npm:^1.1.3" es-abstract: "npm:^1.17.5" checksum: 10c0/94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40 languageName: node linkType: hard "string.prototype.trim@npm:^1.2.10": version: 1.2.10 resolution: "string.prototype.trim@npm:1.2.10" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.2" define-data-property: "npm:^1.1.4" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.5" es-object-atoms: "npm:^1.0.0" has-property-descriptors: "npm:^1.0.2" checksum: 10c0/8a8854241c4b54a948e992eb7dd6b8b3a97185112deb0037a134f5ba57541d8248dd610c966311887b6c2fd1181a3877bffb14d873ce937a344535dabcc648f8 languageName: node linkType: hard "string.prototype.trim@npm:^1.2.9": version: 1.2.9 resolution: "string.prototype.trim@npm:1.2.9" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-abstract: "npm:^1.23.0" es-object-atoms: "npm:^1.0.0" checksum: 10c0/dcef1a0fb61d255778155006b372dff8cc6c4394bc39869117e4241f41a2c52899c0d263ffc7738a1f9e61488c490b05c0427faa15151efad721e1a9fb2663c2 languageName: node linkType: hard "string.prototype.trimend@npm:^1.0.8": version: 1.0.8 resolution: "string.prototype.trimend@npm:1.0.8" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/0a0b54c17c070551b38e756ae271865ac6cc5f60dabf2e7e343cceae7d9b02e1a1120a824e090e79da1b041a74464e8477e2da43e2775c85392be30a6f60963c languageName: node linkType: hard "string.prototype.trimend@npm:^1.0.9": version: 1.0.9 resolution: "string.prototype.trimend@npm:1.0.9" dependencies: call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.2" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/59e1a70bf9414cb4c536a6e31bef5553c8ceb0cf44d8b4d0ed65c9653358d1c64dd0ec203b100df83d0413bbcde38b8c5d49e14bc4b86737d74adc593a0d35b6 languageName: node linkType: hard "string.prototype.trimstart@npm:^1.0.8": version: 1.0.8 resolution: "string.prototype.trimstart@npm:1.0.8" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" es-object-atoms: "npm:^1.0.0" checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 languageName: node linkType: hard "string_decoder@npm:~0.10.x": version: 0.10.31 resolution: "string_decoder@npm:0.10.31" checksum: 10c0/1c628d78f974aa7539c496029f48e7019acc32487fc695464f9d6bdfec98edd7d933a06b3216bc2016918f6e75074c611d84430a53cb0e43071597d6c1ac5e25 languageName: node linkType: hard "string_decoder@npm:~1.1.1": version: 1.1.1 resolution: "string_decoder@npm:1.1.1" dependencies: safe-buffer: "npm:~5.1.0" checksum: 10c0/b4f89f3a92fd101b5653ca3c99550e07bdf9e13b35037e9e2a1c7b47cec4e55e06ff3fc468e314a0b5e80bfbaf65c1ca5a84978764884ae9413bec1fc6ca924e languageName: node linkType: hard "stringify-entities@npm:^4.0.0": version: 4.0.4 resolution: "stringify-entities@npm:4.0.4" dependencies: character-entities-html4: "npm:^2.0.0" character-entities-legacy: "npm:^3.0.0" checksum: 10c0/537c7e656354192406bdd08157d759cd615724e9d0873602d2c9b2f6a5c0a8d0b1d73a0a08677848105c5eebac6db037b57c0b3a4ec86331117fa7319ed50448 languageName: node linkType: hard "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" dependencies: ansi-regex: "npm:^5.0.1" checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 languageName: node linkType: hard "strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": version: 7.1.0 resolution: "strip-ansi@npm:7.1.0" dependencies: ansi-regex: "npm:^6.0.1" checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 languageName: node linkType: hard "strip-bom@npm:^3.0.0": version: 3.0.0 resolution: "strip-bom@npm:3.0.0" checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 languageName: node linkType: hard "strip-indent@npm:^3.0.0": version: 3.0.0 resolution: "strip-indent@npm:3.0.0" dependencies: min-indent: "npm:^1.0.0" checksum: 10c0/ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679 languageName: node linkType: hard "strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1, strip-json-comments@npm:~3.1.1": version: 3.1.1 resolution: "strip-json-comments@npm:3.1.1" checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd languageName: node linkType: hard "strip-literal@npm:^3.0.0": version: 3.0.0 resolution: "strip-literal@npm:3.0.0" dependencies: js-tokens: "npm:^9.0.1" checksum: 10c0/d81657f84aba42d4bbaf2a677f7e7f34c1f3de5a6726db8bc1797f9c0b303ba54d4660383a74bde43df401cf37cce1dff2c842c55b077a4ceee11f9e31fba828 languageName: node linkType: hard "strnum@npm:^1.0.5": version: 1.0.5 resolution: "strnum@npm:1.0.5" checksum: 10c0/64fb8cc2effbd585a6821faa73ad97d4b553c8927e49086a162ffd2cc818787643390b89d567460a8e74300148d11ac052e21c921ef2049f2987f4b1b89a7ff1 languageName: node linkType: hard "strongly-connected-components@npm:^1.0.1": version: 1.0.1 resolution: "strongly-connected-components@npm:1.0.1" checksum: 10c0/ab29f29be3f0d659bec3901590e7e52b0fe340e1387234b8609a00740a1afc31c34e54b503954f85ca27a17be3bc36e38db62525dc51cca9126b2b67e5be3e36 languageName: node linkType: hard "stubborn-fs@npm:^1.2.5": version: 1.2.5 resolution: "stubborn-fs@npm:1.2.5" checksum: 10c0/0676befd9901d4dd4e162700fa0396f11d523998589cd6b61b06d1021db811dc4c1e6713869748c6cfa49d58beb9b6f0dc5b6aca6b075811b949e1602ce1e26f languageName: node linkType: hard "style-to-js@npm:^1.0.0": version: 1.1.16 resolution: "style-to-js@npm:1.1.16" dependencies: style-to-object: "npm:1.0.8" checksum: 10c0/578a4dff804539ec7e64d3cc8d327540befb9ad30e3cd0b6b0392f93f793f3a028f90084a9aaff088bffb87818fa2c6c153f0df576f61f9ab0b0938b582bcac7 languageName: node linkType: hard "style-to-object@npm:1.0.8": version: 1.0.8 resolution: "style-to-object@npm:1.0.8" dependencies: inline-style-parser: "npm:0.2.4" checksum: 10c0/daa6646b1ff18258c0ca33ed281fbe73485c8391192db1b56ce89d40c93ea64507a41e8701d0dadfe771bc2f540c46c9b295135f71584c8e5cb23d6a19be9430 languageName: node linkType: hard "styletron-engine-atomic@npm:^1.5.0": version: 1.6.2 resolution: "styletron-engine-atomic@npm:1.6.2" dependencies: inline-style-prefixer: "npm:^5.1.0" styletron-standard: "npm:^3.1.0" checksum: 10c0/14aa56b1d7c5366e6dcc403e1c3e78bba8b9de89869b450faaceeebceb502bd38c8a604cf471c907cd7b68bc5b6b71388f0a3b8e2ed596b3b12b2fd4d71f1b45 languageName: node linkType: hard "styletron-react@npm:^6.1.0": version: 6.1.1 resolution: "styletron-react@npm:6.1.1" dependencies: prop-types: "npm:^15.6.0" styletron-standard: "npm:^3.1.0" peerDependencies: react: ">=16.8.0" checksum: 10c0/066b93628ec9d7635616318bf7d1503a1c90f7516c97a6ec1ec7f6c119ba0ab760196d8248f236faea4c16bdf93880ec1a9b26901ac7b8a9e4099ba5c1645708 languageName: node linkType: hard "styletron-standard@npm:^3.1.0": version: 3.1.0 resolution: "styletron-standard@npm:3.1.0" dependencies: "@rtsao/csstype": "npm:2.6.5-forked.0" csstype: "npm:^3.0.0" inline-style-prefixer: "npm:^5.1.0" checksum: 10c0/1278867bc52c55cc1763826d562e6b024a5c18bb37317c0604f346649b692408ba5e843c159e075bd4163724470eece2243c806a120ff959dfefe7a2994d94e4 languageName: node linkType: hard "stylis@npm:4.2.0": version: 4.2.0 resolution: "stylis@npm:4.2.0" checksum: 10c0/a7128ad5a8ed72652c6eba46bed4f416521bc9745a460ef5741edc725252cebf36ee45e33a8615a7057403c93df0866ab9ee955960792db210bb80abd5ac6543 languageName: node linkType: hard "supercluster@npm:^7.1.0": version: 7.1.5 resolution: "supercluster@npm:7.1.5" dependencies: kdbush: "npm:^3.0.0" checksum: 10c0/bbebf45927d0019831731c94b78d1c9a1f3e2da0be9875d7ea75c6f261487e0f15d3f1822a9a49256e3c1672bdfb9138f9a5e44e2de99edb06cd1e758083e12d languageName: node linkType: hard "supercluster@npm:^8.0.1": version: 8.0.1 resolution: "supercluster@npm:8.0.1" dependencies: kdbush: "npm:^4.0.2" checksum: 10c0/79121e6dbff67b3036ea6651f3baddb942478830ba3ecbc27455715ab5bd269de8381dc04618c0c15963346ea2ed0f81cd5f767c2978a63e2841807c73445d57 languageName: node linkType: hard "superscript-text@npm:^1.0.0": version: 1.0.0 resolution: "superscript-text@npm:1.0.0" checksum: 10c0/0d4dee472ca830234c16fd56cdf7d4bf6e3b7d80aefbb2390a6e8aa9b9e304d67df39e6154f9238e6eaebfe47766aad8de6082781760f0cc16c6ee6b57f547df languageName: node linkType: hard "supports-color@npm:8.1.1, supports-color@npm:~8.1.1": version: 8.1.1 resolution: "supports-color@npm:8.1.1" dependencies: has-flag: "npm:^4.0.0" checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 languageName: node linkType: hard "supports-color@npm:^7.1.0": version: 7.2.0 resolution: "supports-color@npm:7.2.0" dependencies: has-flag: "npm:^4.0.0" checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 languageName: node linkType: hard "supports-preserve-symlinks-flag@npm:^1.0.0": version: 1.0.0 resolution: "supports-preserve-symlinks-flag@npm:1.0.0" checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 languageName: node linkType: hard "svg-arc-to-cubic-bezier@npm:^3.0.0": version: 3.2.0 resolution: "svg-arc-to-cubic-bezier@npm:3.2.0" checksum: 10c0/6dddbaff9defa55a891593b48ba6bd5f1b3c89d747cf818a8342ec4cac10b06de6cd37478dc9483cba5e8d1a7d3dac2d0bbab47858d207a2d1a6a61b5acdd442 languageName: node linkType: hard "svg-parser@npm:^2.0.4": version: 2.0.4 resolution: "svg-parser@npm:2.0.4" checksum: 10c0/02f6cb155dd7b63ebc2f44f36365bc294543bebb81b614b7628f1af3c54ab64f7e1cec20f06e252bf95bdde78441ae295a412c68ad1678f16a6907d924512b7a languageName: node linkType: hard "svg-path-bounds@npm:^1.0.1": version: 1.0.2 resolution: "svg-path-bounds@npm:1.0.2" dependencies: abs-svg-path: "npm:^0.1.1" is-svg-path: "npm:^1.0.1" normalize-svg-path: "npm:^1.0.0" parse-svg-path: "npm:^0.1.2" checksum: 10c0/d24bfe8fd38405956d5ab3c41fe65d8984c2791a878cd3f4d70fe278575f1ce3270c78a07f3d2d32996485e3714f0167514fdfc5a9d7239d7c7535d391d04e1e languageName: node linkType: hard "svg-path-sdf@npm:^1.1.3": version: 1.1.3 resolution: "svg-path-sdf@npm:1.1.3" dependencies: bitmap-sdf: "npm:^1.0.0" draw-svg-path: "npm:^1.0.0" is-svg-path: "npm:^1.0.1" parse-svg-path: "npm:^0.1.2" svg-path-bounds: "npm:^1.0.1" checksum: 10c0/0eb47e0c1946fa8515a9783a682c45c4fbb7fbaf7da76eaee96721bb40560ce97356a10e9cbdf988dc257219160b60842c6cfcdea95a8709a8d2e77657e2abfa languageName: node linkType: hard "symbol-tree@npm:^3.2.4": version: 3.2.4 resolution: "symbol-tree@npm:3.2.4" checksum: 10c0/dfbe201ae09ac6053d163578778c53aa860a784147ecf95705de0cd23f42c851e1be7889241495e95c37cabb058edb1052f141387bef68f705afc8f9dd358509 languageName: node linkType: hard "synckit@npm:^0.11.7": version: 0.11.8 resolution: "synckit@npm:0.11.8" dependencies: "@pkgr/core": "npm:^0.2.4" checksum: 10c0/a1de5131ee527512afcaafceb2399b2f3e63678e56b831e1cb2dc7019c972a8b654703a3b94ef4166868f87eb984ea252b467c9d9e486b018ec2e6a55c24dfd8 languageName: node linkType: hard "table-layout@npm:^4.1.0": version: 4.1.1 resolution: "table-layout@npm:4.1.1" dependencies: array-back: "npm:^6.2.2" wordwrapjs: "npm:^5.1.0" checksum: 10c0/26d8e54a55ddb4de447c8f02a8d7fcbb66a9580375e406a3bc7717ab223a413f6dfbded6710f288b3dfd277991813a0bd5a17419a0dc6db54d9a36d883d868dc languageName: node linkType: hard "tapable@npm:^2.2.0, tapable@npm:^2.2.1": version: 2.2.1 resolution: "tapable@npm:2.2.1" checksum: 10c0/bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9 languageName: node linkType: hard "tar-fs@npm:^3.1.0": version: 3.1.1 resolution: "tar-fs@npm:3.1.1" dependencies: bare-fs: "npm:^4.0.1" bare-path: "npm:^3.0.0" pump: "npm:^3.0.0" tar-stream: "npm:^3.1.5" dependenciesMeta: bare-fs: optional: true bare-path: optional: true checksum: 10c0/0c677d711c4aa41f94e1a712aa647022ba1910ff84430739e5d9e95a615e3ea1b7112dc93164fc8ce30dc715befcf9cfdc64da27d4e7958d73c59bda06aa0d8e languageName: node linkType: hard "tar-stream@npm:^3.1.5": version: 3.1.7 resolution: "tar-stream@npm:3.1.7" dependencies: b4a: "npm:^1.6.4" fast-fifo: "npm:^1.2.0" streamx: "npm:^2.15.0" checksum: 10c0/a09199d21f8714bd729993ac49b6c8efcb808b544b89f23378ad6ffff6d1cb540878614ba9d4cfec11a64ef39e1a6f009a5398371491eb1fda606ffc7f70f718 languageName: node linkType: hard "tar@npm:^7.4.3": version: 7.4.3 resolution: "tar@npm:7.4.3" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" minizlib: "npm:^3.0.1" mkdirp: "npm:^3.0.1" yallist: "npm:^5.0.0" checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d languageName: node linkType: hard "temp@npm:^0.9.4": version: 0.9.4 resolution: "temp@npm:0.9.4" dependencies: mkdirp: "npm:^0.5.1" rimraf: "npm:~2.6.2" checksum: 10c0/7a1cd75efa65b9ca97fc0dfa752673842d23fa41d9c641a447d86ca986eb7662f0d17771e1edf8d0149e76de3c6e7005faf2ccaa3baf64811c86d1d1a951dda7 languageName: node linkType: hard "test-exclude@npm:^7.0.1": version: 7.0.1 resolution: "test-exclude@npm:7.0.1" dependencies: "@istanbuljs/schema": "npm:^0.1.2" glob: "npm:^10.4.1" minimatch: "npm:^9.0.4" checksum: 10c0/6d67b9af4336a2e12b26a68c83308c7863534c65f27ed4ff7068a56f5a58f7ac703e8fc80f698a19bb154fd8f705cdf7ec347d9512b2c522c737269507e7b263 languageName: node linkType: hard "text-decoder@npm:^1.1.0": version: 1.2.1 resolution: "text-decoder@npm:1.2.1" checksum: 10c0/deea9e3f4bde3b8990439e59cd52b2e917a416e29fbaf607052c89117c7148f1831562c099e9dd49abea0839cffdeb75a3c8f1f137f1686afd2808322f8e3f00 languageName: node linkType: hard "texture-compressor@npm:^1.0.2": version: 1.0.2 resolution: "texture-compressor@npm:1.0.2" dependencies: argparse: "npm:^1.0.10" image-size: "npm:^0.7.4" bin: texture-compressor: ./bin/texture-compressor.js checksum: 10c0/ea0bce1cbda3a64f826867e97ee2a1f17a7219d21d97d7625a6370792afddc697e6832a9b3b39bf2eef0978af7bc0d1dcefaf7fd91d719213658b0a010a83c44 languageName: node linkType: hard "third-party-web@npm:^0.27.0": version: 0.27.0 resolution: "third-party-web@npm:0.27.0" checksum: 10c0/908fce5d9904f482eded9bae74d7f79944cfa4b54ae326d1e18c21fcf078e9ed1ff68e8c204009404ed3b5858b514632eb6abb2981d59fcf1da05dfa9ee58c76 languageName: node linkType: hard "third-party-web@npm:latest": version: 0.26.5 resolution: "third-party-web@npm:0.26.5" checksum: 10c0/cbceacb8392a3e3009eee3b2bcaf4795376a64be14d3b53907c2e6acfa37a519900c146c64e0a3c9381aea5f341141f3147d1757ade9c403ec09005c6f16db28 languageName: node linkType: hard "through2@npm:^0.6.3": version: 0.6.5 resolution: "through2@npm:0.6.5" dependencies: readable-stream: "npm:>=1.0.33-1 <1.1.0-0" xtend: "npm:>=4.0.0 <4.1.0-0" checksum: 10c0/3294325d73b120ffbb8cd00e28a649a99e194cef2638bf782b6c2eb0c163b388f7b7bb908003949f58f9f6b8f771defd24b6e4df051eb410fd87931521963b98 languageName: node linkType: hard "through2@npm:^2.0.1": version: 2.0.5 resolution: "through2@npm:2.0.5" dependencies: readable-stream: "npm:~2.3.6" xtend: "npm:~4.0.1" checksum: 10c0/cbfe5b57943fa12b4f8c043658c2a00476216d79c014895cef1ac7a1d9a8b31f6b438d0e53eecbb81054b93128324a82ecd59ec1a4f91f01f7ac113dcb14eade languageName: node linkType: hard "tilebelt@npm:^1.0.1": version: 1.0.1 resolution: "tilebelt@npm:1.0.1" checksum: 10c0/40d05eb7b84eabd5155347cdbfa3cbe459c634fa76a0c442c8c339b4e443e03f5f8576da37e373645305891bb49f6ba993bfe8ceb89093cae1e13053244c66c5 languageName: node linkType: hard "timezone-mock@npm:^1.3.6": version: 1.3.6 resolution: "timezone-mock@npm:1.3.6" checksum: 10c0/7e554f9378531258330ada94bc4101bb4ece6e501f9e210652fb57751cf2e5d4aeab3dd9fd840a6534316db757ac6bb39338730c5d3f72dcbd4cb315ea482101 languageName: node linkType: hard "tinybench@npm:^2.9.0": version: 2.9.0 resolution: "tinybench@npm:2.9.0" checksum: 10c0/c3500b0f60d2eb8db65250afe750b66d51623057ee88720b7f064894a6cb7eb93360ca824a60a31ab16dab30c7b1f06efe0795b352e37914a9d4bad86386a20c languageName: node linkType: hard "tinycolor2@npm:^1.4.1, tinycolor2@npm:^1.4.2": version: 1.6.0 resolution: "tinycolor2@npm:1.6.0" checksum: 10c0/9aa79a36ba2c2a87cb221453465cabacd04b9e35f9694373e846fdc78b1c768110f81e581ea41440106c0f24d9a023891d0887e8075885e790ac40eb0e74a5c1 languageName: node linkType: hard "tinyexec@npm:^0.3.2": version: 0.3.2 resolution: "tinyexec@npm:0.3.2" checksum: 10c0/3efbf791a911be0bf0821eab37a3445c2ba07acc1522b1fa84ae1e55f10425076f1290f680286345ed919549ad67527d07281f1c19d584df3b74326909eb1f90 languageName: node linkType: hard "tinyglobby@npm:^0.2.12": version: 0.2.12 resolution: "tinyglobby@npm:0.2.12" dependencies: fdir: "npm:^6.4.3" picomatch: "npm:^4.0.2" checksum: 10c0/7c9be4fd3625630e262dcb19015302aad3b4ba7fc620f269313e688f2161ea8724d6cb4444baab5ef2826eb6bed72647b169a33ec8eea37501832a2526ff540f languageName: node linkType: hard "tinyglobby@npm:^0.2.14": version: 0.2.14 resolution: "tinyglobby@npm:0.2.14" dependencies: fdir: "npm:^6.4.4" picomatch: "npm:^4.0.2" checksum: 10c0/f789ed6c924287a9b7d3612056ed0cda67306cd2c80c249fd280cf1504742b12583a2089b61f4abbd24605f390809017240e250241f09938054c9b363e51c0a6 languageName: node linkType: hard "tinyglobby@npm:^0.2.15": version: 0.2.15 resolution: "tinyglobby@npm:0.2.15" dependencies: fdir: "npm:^6.5.0" picomatch: "npm:^4.0.3" checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 languageName: node linkType: hard "tinypool@npm:^1.1.1": version: 1.1.1 resolution: "tinypool@npm:1.1.1" checksum: 10c0/bf26727d01443061b04fa863f571016950888ea994ba0cd8cba3a1c51e2458d84574341ab8dbc3664f1c3ab20885c8cf9ff1cc4b18201f04c2cde7d317fff69b languageName: node linkType: hard "tinyqueue@npm:^2.0.3": version: 2.0.3 resolution: "tinyqueue@npm:2.0.3" checksum: 10c0/d7b590088f015a94a17132fa209c2f2a80c45158259af5474901fdf5932e95ea13ff6f034bcc725a6d5f66d3e5b888b048c310229beb25ad5bebb4f0a635abf2 languageName: node linkType: hard "tinyqueue@npm:^3.0.0": version: 3.0.0 resolution: "tinyqueue@npm:3.0.0" checksum: 10c0/edd6f1a6146aa3aa7bc85b44b3aacf44cddfa805b0901019272d7e9235894b4f28b2f9d09c1bce500ae48883b03708b6b871aa33920e895d2943720f7a9ad3ba languageName: node linkType: hard "tinyrainbow@npm:^2.0.0": version: 2.0.0 resolution: "tinyrainbow@npm:2.0.0" checksum: 10c0/c83c52bef4e0ae7fb8ec6a722f70b5b6fa8d8be1c85792e829f56c0e1be94ab70b293c032dc5048d4d37cfe678f1f5babb04bdc65fd123098800148ca989184f languageName: node linkType: hard "tinyspy@npm:^4.0.3": version: 4.0.3 resolution: "tinyspy@npm:4.0.3" checksum: 10c0/0a92a18b5350945cc8a1da3a22c9ad9f4e2945df80aaa0c43e1b3a3cfb64d8501e607ebf0305e048e3c3d3e0e7f8eb10cea27dc17c21effb73e66c4a3be36373 languageName: node linkType: hard "tldts-core@npm:^7.0.12": version: 7.0.12 resolution: "tldts-core@npm:7.0.12" checksum: 10c0/d20daec036be66fb506c395f6c85fa0f99c0fb4d77d0a5d37e9925fbe051d6786a6985a28cc60ab6dbf7e9a599eccd7b152588c5f1facb90da46899eb71664b3 languageName: node linkType: hard "tldts-icann@npm:^7.0.12": version: 7.0.12 resolution: "tldts-icann@npm:7.0.12" dependencies: tldts-core: "npm:^7.0.12" checksum: 10c0/a0172f4939655ef73fdda1063b63833f272d5cd65ccbea3228091c245dd63334706ea39e2d2868f27ff9b9c67beb5c97487019bc42f9cc51ae60d21d31e6a413 languageName: node linkType: hard "tmp@npm:^0.2.1": version: 0.2.5 resolution: "tmp@npm:0.2.5" checksum: 10c0/cee5bb7d674bb4ba3ab3f3841c2ca7e46daeb2109eec395c1ec7329a91d52fcb21032b79ac25161a37b2565c4858fefab927af9735926a113ef7bac9091a6e0e languageName: node linkType: hard "to-float32@npm:^1.1.0": version: 1.1.0 resolution: "to-float32@npm:1.1.0" checksum: 10c0/7fed0ba97b9c6280b5858d2ca60ed005961f5feda7c413c6f7eb2be224ed033244d413ab6c53bd5d603edba2642d15ba4f952ebf1e87dc1fe837182a41b7b811 languageName: node linkType: hard "to-px@npm:1.0.1": version: 1.0.1 resolution: "to-px@npm:1.0.1" dependencies: parse-unit: "npm:^1.0.1" checksum: 10c0/bd6c2a300316700a81b602283365ce6e093ca77ebdca5611578f3fe58d9799f4a328e836ae5a034e5f007ec513712545ca93e61f4db199f9a87a8a29bb34d756 languageName: node linkType: hard "to-px@npm:^1.0.1": version: 1.1.0 resolution: "to-px@npm:1.1.0" dependencies: parse-unit: "npm:^1.0.1" checksum: 10c0/c6bb7132a8dac1ca647f63747362f74cfeacffd3b518d011d0bb9f30b33a6261c3e3d7ec4c32fe723f2ba654344f5777a439636ee0cca8b6cf8258675f83bb7e languageName: node linkType: hard "to-regex-range@npm:^5.0.1": version: 5.0.1 resolution: "to-regex-range@npm:5.0.1" dependencies: is-number: "npm:^7.0.0" checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 languageName: node linkType: hard "topojson-client@npm:^3.1.0": version: 3.1.0 resolution: "topojson-client@npm:3.1.0" dependencies: commander: "npm:2" bin: topo2geo: bin/topo2geo topomerge: bin/topomerge topoquantize: bin/topoquantize checksum: 10c0/da2acba268cbf4d002483d5d81452e0d797b2fff6041fafb1d420e58973fa780a6f42041ce4c2677376ab977e5e1732b89c42a2db3c334a34f6c47f4d94b3eaa languageName: node linkType: hard "tough-cookie@npm:^4.1.4": version: 4.1.4 resolution: "tough-cookie@npm:4.1.4" dependencies: psl: "npm:^1.1.33" punycode: "npm:^2.1.1" universalify: "npm:^0.2.0" url-parse: "npm:^1.5.3" checksum: 10c0/aca7ff96054f367d53d1e813e62ceb7dd2eda25d7752058a74d64b7266fd07be75908f3753a32ccf866a2f997604b414cfb1916d6e7f69bc64d9d9939b0d6c45 languageName: node linkType: hard "tr46@npm:^5.0.0": version: 5.0.0 resolution: "tr46@npm:5.0.0" dependencies: punycode: "npm:^2.3.1" checksum: 10c0/1521b6e7bbc8adc825c4561480f9fe48eb2276c81335eed9fa610aa4c44a48a3221f78b10e5f18b875769eb3413e30efbf209ed556a17a42aa8d690df44b7bee languageName: node linkType: hard "tr46@npm:~0.0.3": version: 0.0.3 resolution: "tr46@npm:0.0.3" checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11 languageName: node linkType: hard "tree-kill@npm:1.2.2, tree-kill@npm:^1.2.2": version: 1.2.2 resolution: "tree-kill@npm:1.2.2" bin: tree-kill: cli.js checksum: 10c0/7b1b7c7f17608a8f8d20a162e7957ac1ef6cd1636db1aba92f4e072dc31818c2ff0efac1e3d91064ede67ed5dc57c565420531a8134090a12ac10cf792ab14d2 languageName: node linkType: hard "trim-lines@npm:^3.0.0": version: 3.0.1 resolution: "trim-lines@npm:3.0.1" checksum: 10c0/3a1611fa9e52aa56a94c69951a9ea15b8aaad760eaa26c56a65330dc8adf99cb282fc07cc9d94968b7d4d88003beba220a7278bbe2063328eb23fb56f9509e94 languageName: node linkType: hard "trough@npm:^2.0.0": version: 2.2.0 resolution: "trough@npm:2.2.0" checksum: 10c0/58b671fc970e7867a48514168894396dd94e6d9d6456aca427cc299c004fe67f35ed7172a36449086b2edde10e78a71a284ec0076809add6834fb8f857ccb9b0 languageName: node linkType: hard "ts-api-utils@npm:^2.0.0, ts-api-utils@npm:^2.1.0": version: 2.1.0 resolution: "ts-api-utils@npm:2.1.0" peerDependencies: typescript: ">=4.8.4" checksum: 10c0/9806a38adea2db0f6aa217ccc6bc9c391ddba338a9fe3080676d0d50ed806d305bb90e8cef0276e793d28c8a929f400abb184ddd7ff83a416959c0f4d2ce754f languageName: node linkType: hard "ts-api-utils@npm:^2.0.1": version: 2.0.1 resolution: "ts-api-utils@npm:2.0.1" peerDependencies: typescript: ">=4.8.4" checksum: 10c0/23fd56a958b332cac00150a652e4c84730df30571bd2faa1ba6d7b511356d1a61656621492bb6c7f15dd6e18847a1408357a0e406671d358115369a17f5bfedd languageName: node linkType: hard "ts-declaration-location@npm:^1.0.4": version: 1.0.7 resolution: "ts-declaration-location@npm:1.0.7" dependencies: picomatch: "npm:^4.0.2" peerDependencies: typescript: ">=4.0.0" checksum: 10c0/b579b7630907052cc174b051dffdb169424824d887d8fb5abdc61e7ab0eede348c2b71c998727b9e4b314c0436f5003a15bb7eedb1c851afe96e12499f159630 languageName: node linkType: hard "ts-invariant@npm:^0.10.3": version: 0.10.3 resolution: "ts-invariant@npm:0.10.3" dependencies: tslib: "npm:^2.1.0" checksum: 10c0/2fbc178d5903d325ee0b87fad38827eac11888b6e86979b06754fd4bcdcf44c2a99b8bcd5d59d149c0464ede55ae810b02a2aee6835ad10efe4dd0e22efd68c0 languageName: node linkType: hard "ts-pattern@npm:^5.9.0": version: 5.9.0 resolution: "ts-pattern@npm:5.9.0" checksum: 10c0/7640db25c39d29b287471b2b82d4f7b4674a02098c6ba4d10fed180adfb07d0e0c71930d9e59dc0d90654145e02fd320af63cf0df3c41e100d4154658a612a0a languageName: node linkType: hard "tsc-alias@npm:^1.8.16": version: 1.8.16 resolution: "tsc-alias@npm:1.8.16" dependencies: chokidar: "npm:^3.5.3" commander: "npm:^9.0.0" get-tsconfig: "npm:^4.10.0" globby: "npm:^11.0.4" mylas: "npm:^2.1.9" normalize-path: "npm:^3.0.0" plimit-lit: "npm:^1.2.6" bin: tsc-alias: dist/bin/index.js checksum: 10c0/5775a6044bd5b6e94efdf1902493aa959270def65e7915edad78023fac7f42f25724842bd98f38a5d00e01f7395dca102a6615933bec3bdd887617d00419f66a languageName: node linkType: hard "tsconfck@npm:^3.0.3": version: 3.1.3 resolution: "tsconfck@npm:3.1.3" peerDependencies: typescript: ^5.0.0 peerDependenciesMeta: typescript: optional: true bin: tsconfck: bin/tsconfck.js checksum: 10c0/64f7a8ed0a6d36b0902dfc0075e791d2242f7634644f124343ec0dec4f3f70092f929c5a9f59496d51883aa81bb1e595deb92a219593575d2e75b849064713d1 languageName: node linkType: hard "tsconfig-paths-webpack-plugin@npm:^4.2.0": version: 4.2.0 resolution: "tsconfig-paths-webpack-plugin@npm:4.2.0" dependencies: chalk: "npm:^4.1.0" enhanced-resolve: "npm:^5.7.0" tapable: "npm:^2.2.1" tsconfig-paths: "npm:^4.1.2" checksum: 10c0/495c5ab7c1cb079217d98fe25d61def01e4bab38047c7ab25ec11876cc8c697ff01f43ea6c9933181875e51e49835407fc71afd92ea6cca1ba1bebf513dfb510 languageName: node linkType: hard "tsconfig-paths@npm:^3.15.0": version: 3.15.0 resolution: "tsconfig-paths@npm:3.15.0" dependencies: "@types/json5": "npm:^0.0.29" json5: "npm:^1.0.2" minimist: "npm:^1.2.6" strip-bom: "npm:^3.0.0" checksum: 10c0/5b4f301a2b7a3766a986baf8fc0e177eb80bdba6e396792ff92dc23b5bca8bb279fc96517dcaaef63a3b49bebc6c4c833653ec58155780bc906bdbcf7dda0ef5 languageName: node linkType: hard "tsconfig-paths@npm:^4.1.2": version: 4.2.0 resolution: "tsconfig-paths@npm:4.2.0" dependencies: json5: "npm:^2.2.2" minimist: "npm:^1.2.6" strip-bom: "npm:^3.0.0" checksum: 10c0/09a5877402d082bb1134930c10249edeebc0211f36150c35e1c542e5b91f1047b1ccf7da1e59babca1ef1f014c525510f4f870de7c9bda470c73bb4e2721b3ea languageName: node linkType: hard "tslib@npm:2, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.7.0, tslib@npm:^2.8.1, tslib@npm:~2.8.1": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 languageName: node linkType: hard "type-check@npm:^0.4.0, type-check@npm:~0.4.0": version: 0.4.0 resolution: "type-check@npm:0.4.0" dependencies: prelude-ls: "npm:^1.2.1" checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 languageName: node linkType: hard "type-check@npm:~0.3.2": version: 0.3.2 resolution: "type-check@npm:0.3.2" dependencies: prelude-ls: "npm:~1.1.2" checksum: 10c0/776217116b2b4e50e368c7ee0c22c0a85e982881c16965b90d52f216bc296d6a52ef74f9202d22158caacc092a7645b0b8d5fe529a96e3fe35d0fb393966c875 languageName: node linkType: hard "type-fest@npm:^4.18.2": version: 4.41.0 resolution: "type-fest@npm:4.41.0" checksum: 10c0/f5ca697797ed5e88d33ac8f1fec21921839871f808dc59345c9cf67345bfb958ce41bd821165dbf3ae591cedec2bf6fe8882098dfdd8dc54320b859711a2c1e4 languageName: node linkType: hard "type@npm:^2.7.2": version: 2.7.3 resolution: "type@npm:2.7.3" checksum: 10c0/dec6902c2c42fcb86e3adf8cdabdf80e5ef9de280872b5fd547351e9cca2fe58dd2aa6d2547626ddff174145db272f62d95c7aa7038e27c11315657d781a688d languageName: node linkType: hard "typed-array-buffer@npm:^1.0.2": version: 1.0.2 resolution: "typed-array-buffer@npm:1.0.2" dependencies: call-bind: "npm:^1.0.7" es-errors: "npm:^1.3.0" is-typed-array: "npm:^1.1.13" checksum: 10c0/9e043eb38e1b4df4ddf9dde1aa64919ae8bb909571c1cc4490ba777d55d23a0c74c7d73afcdd29ec98616d91bb3ae0f705fad4421ea147e1daf9528200b562da languageName: node linkType: hard "typed-array-buffer@npm:^1.0.3": version: 1.0.3 resolution: "typed-array-buffer@npm:1.0.3" dependencies: call-bound: "npm:^1.0.3" es-errors: "npm:^1.3.0" is-typed-array: "npm:^1.1.14" checksum: 10c0/1105071756eb248774bc71646bfe45b682efcad93b55532c6ffa4518969fb6241354e4aa62af679ae83899ec296d69ef88f1f3763657cdb3a4d29321f7b83079 languageName: node linkType: hard "typed-array-byte-length@npm:^1.0.1": version: 1.0.1 resolution: "typed-array-byte-length@npm:1.0.1" dependencies: call-bind: "npm:^1.0.7" for-each: "npm:^0.3.3" gopd: "npm:^1.0.1" has-proto: "npm:^1.0.3" is-typed-array: "npm:^1.1.13" checksum: 10c0/fcebeffb2436c9f355e91bd19e2368273b88c11d1acc0948a2a306792f1ab672bce4cfe524ab9f51a0505c9d7cd1c98eff4235c4f6bfef6a198f6cfc4ff3d4f3 languageName: node linkType: hard "typed-array-byte-length@npm:^1.0.3": version: 1.0.3 resolution: "typed-array-byte-length@npm:1.0.3" dependencies: call-bind: "npm:^1.0.8" for-each: "npm:^0.3.3" gopd: "npm:^1.2.0" has-proto: "npm:^1.2.0" is-typed-array: "npm:^1.1.14" checksum: 10c0/6ae083c6f0354f1fce18b90b243343b9982affd8d839c57bbd2c174a5d5dc71be9eb7019ffd12628a96a4815e7afa85d718d6f1e758615151d5f35df841ffb3e languageName: node linkType: hard "typed-array-byte-offset@npm:^1.0.2": version: 1.0.2 resolution: "typed-array-byte-offset@npm:1.0.2" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.7" for-each: "npm:^0.3.3" gopd: "npm:^1.0.1" has-proto: "npm:^1.0.3" is-typed-array: "npm:^1.1.13" checksum: 10c0/d2628bc739732072e39269389a758025f75339de2ed40c4f91357023c5512d237f255b633e3106c461ced41907c1bf9a533c7e8578066b0163690ca8bc61b22f languageName: node linkType: hard "typed-array-byte-offset@npm:^1.0.4": version: 1.0.4 resolution: "typed-array-byte-offset@npm:1.0.4" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" for-each: "npm:^0.3.3" gopd: "npm:^1.2.0" has-proto: "npm:^1.2.0" is-typed-array: "npm:^1.1.15" reflect.getprototypeof: "npm:^1.0.9" checksum: 10c0/3d805b050c0c33b51719ee52de17c1cd8e6a571abdf0fffb110e45e8dd87a657e8b56eee94b776b13006d3d347a0c18a730b903cf05293ab6d92e99ff8f77e53 languageName: node linkType: hard "typed-array-length@npm:^1.0.6": version: 1.0.6 resolution: "typed-array-length@npm:1.0.6" dependencies: call-bind: "npm:^1.0.7" for-each: "npm:^0.3.3" gopd: "npm:^1.0.1" has-proto: "npm:^1.0.3" is-typed-array: "npm:^1.1.13" possible-typed-array-names: "npm:^1.0.0" checksum: 10c0/74253d7dc488eb28b6b2711cf31f5a9dcefc9c41b0681fd1c178ed0a1681b4468581a3626d39cd4df7aee3d3927ab62be06aa9ca74e5baf81827f61641445b77 languageName: node linkType: hard "typed-array-length@npm:^1.0.7": version: 1.0.7 resolution: "typed-array-length@npm:1.0.7" dependencies: call-bind: "npm:^1.0.7" for-each: "npm:^0.3.3" gopd: "npm:^1.0.1" is-typed-array: "npm:^1.1.13" possible-typed-array-names: "npm:^1.0.0" reflect.getprototypeof: "npm:^1.0.6" checksum: 10c0/e38f2ae3779584c138a2d8adfa8ecf749f494af3cd3cdafe4e688ce51418c7d2c5c88df1bd6be2bbea099c3f7cea58c02ca02ed438119e91f162a9de23f61295 languageName: node linkType: hard "typed-query-selector@npm:^2.12.0": version: 2.12.0 resolution: "typed-query-selector@npm:2.12.0" checksum: 10c0/069509887ecfff824a470f5f93d300cc9223cb059a36c47ac685f2812c4c9470340e07615893765e4264cef1678507532fa78f642fd52f276b589f7f5d791f79 languageName: node linkType: hard "typed-signals@npm:^3.0.0": version: 3.0.0 resolution: "typed-signals@npm:3.0.0" checksum: 10c0/4251c3319de6a466edc3f4a21e271797670eabd24f911069ccf092ab212ea9953dd72872604261f6fedade82c31bb932e40a015b92547bc7708eff60518f3291 languageName: node linkType: hard "typedarray-pool@npm:^1.1.0": version: 1.2.0 resolution: "typedarray-pool@npm:1.2.0" dependencies: bit-twiddle: "npm:^1.0.0" dup: "npm:^1.0.0" checksum: 10c0/1e1050e51470f58bd01a82cc0ab881c148e29863e3eaf7bc115033016214fc8588e6fd21354be8ef449062e5a83bfc85434c788c378b62234aa3d391fffc2957 languageName: node linkType: hard "typedarray@npm:^0.0.6": version: 0.0.6 resolution: "typedarray@npm:0.0.6" checksum: 10c0/6005cb31df50eef8b1f3c780eb71a17925f3038a100d82f9406ac2ad1de5eb59f8e6decbdc145b3a1f8e5836e17b0c0002fb698b9fe2516b8f9f9ff602d36412 languageName: node linkType: hard "typescript-eslint@npm:^8.46.2": version: 8.46.3 resolution: "typescript-eslint@npm:8.46.3" dependencies: "@typescript-eslint/eslint-plugin": "npm:8.46.3" "@typescript-eslint/parser": "npm:8.46.3" "@typescript-eslint/typescript-estree": "npm:8.46.3" "@typescript-eslint/utils": "npm:8.46.3" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" checksum: 10c0/c6d9398b16429b614c96405caae018b7ea74df55abf5ba9248ca9d02327704d6e1c3bdd2e2f52cfb25c9e5465ad93d73e19ee7fc3afbb837a6aeeecdf02c979b languageName: node linkType: hard "typescript@npm:5.7.3": version: 5.7.3 resolution: "typescript@npm:5.7.3" bin: tsc: bin/tsc tsserver: bin/tsserver checksum: 10c0/b7580d716cf1824736cc6e628ab4cd8b51877408ba2be0869d2866da35ef8366dd6ae9eb9d0851470a39be17cbd61df1126f9e211d8799d764ea7431d5435afa languageName: node linkType: hard "typescript@npm:^5.9.2": version: 5.9.2 resolution: "typescript@npm:5.9.2" bin: tsc: bin/tsc tsserver: bin/tsserver checksum: 10c0/cd635d50f02d6cf98ed42de2f76289701c1ec587a363369255f01ed15aaf22be0813226bff3c53e99d971f9b540e0b3cc7583dbe05faded49b1b0bed2f638a18 languageName: node linkType: hard "typescript@patch:typescript@npm%3A5.7.3#optional!builtin<compat/typescript>": version: 5.7.3 resolution: "typescript@patch:typescript@npm%3A5.7.3#optional!builtin<compat/typescript>::version=5.7.3&hash=5786d5" bin: tsc: bin/tsc tsserver: bin/tsserver checksum: 10c0/6fd7e0ed3bf23a81246878c613423730c40e8bdbfec4c6e4d7bf1b847cbb39076e56ad5f50aa9d7ebd89877999abaee216002d3f2818885e41c907caaa192cc4 languageName: node linkType: hard "typescript@patch:typescript@npm%3A^5.9.2#optional!builtin<compat/typescript>": version: 5.9.2 resolution: "typescript@patch:typescript@npm%3A5.9.2#optional!builtin<compat/typescript>::version=5.9.2&hash=5786d5" bin: tsc: bin/tsc tsserver: bin/tsserver checksum: 10c0/34d2a8e23eb8e0d1875072064d5e1d9c102e0bdce56a10a25c0b917b8aa9001a9cf5c225df12497e99da107dc379360bc138163c66b55b95f5b105b50578067e languageName: node linkType: hard "typesync@npm:^0.14.3": version: 0.14.3 resolution: "typesync@npm:0.14.3" dependencies: ansis: "npm:^3.17.0" awilix: "npm:^12.0.5" detect-indent: "npm:^7.0.1" lilconfig: "npm:^3.1.3" npm-registry-fetch: "npm:^18.0.2" picospinner: "npm:^3.0.0" semver: "npm:^7.7.0" tinyglobby: "npm:^0.2.12" yaml: "npm:^2.7.1" bin: typesync: bin/typesync checksum: 10c0/f5c57163e45d651bd50101e9963be60ea7313302fc52e8933007781cb451a14323fc63e0ffcd295cea1861f92ae2a298cc510660d5d6a0ea14a1a6c55a3215d3 languageName: node linkType: hard "typewise-core@npm:^1.2, typewise-core@npm:^1.2.0": version: 1.2.0 resolution: "typewise-core@npm:1.2.0" checksum: 10c0/0c574b036e430ef29a3c71dca1f88c041597734448db50e697ec4b7d03d71af4f8afeec556a2553f7db1cf98f9313b983071f0731d784108b2daf4f2e0c37d9e languageName: node linkType: hard "typewise@npm:^1.0.3": version: 1.0.3 resolution: "typewise@npm:1.0.3" dependencies: typewise-core: "npm:^1.2.0" checksum: 10c0/0e300a963cd344f9f4216343eb1c9714e1aee12c5b928ae3ff4a19b4b1edcd82356b8bd763905bd72528718a3c863612f8259cb047934b59bdd849f305e12e80 languageName: node linkType: hard "typical@npm:^7.1.1": version: 7.2.0 resolution: "typical@npm:7.2.0" checksum: 10c0/aa447e761808c9447c3abde370f2bdd2edd031ff68183aac49ac503905155e66a9f47e1462ac6fa411f76b22920c4d403f948f49d984ebf52d019fa590034963 languageName: node linkType: hard "typical@npm:^7.2.0": version: 7.3.0 resolution: "typical@npm:7.3.0" checksum: 10c0/bee697a88e1dd0447bc1cf7f6e875eaa2b0fb2cccb338b7b261e315f7df84a66402864bfc326d6b3117c50475afd1d49eda03d846a6299ad25f211035bfab3b1 languageName: node linkType: hard "ua-parser-js@npm:^1.0.35": version: 1.0.39 resolution: "ua-parser-js@npm:1.0.39" bin: ua-parser-js: script/cli.js checksum: 10c0/c6452b0c683000f10975cb0a7e74cb1119ea95d4522ae85f396fa53b0b17884358a24ffdd86a66030c6b2981bdc502109a618c79fdaa217ee9032c9e46fcc78a languageName: node linkType: hard "ua-parser-js@npm:^1.0.41": version: 1.0.41 resolution: "ua-parser-js@npm:1.0.41" bin: ua-parser-js: script/cli.js checksum: 10c0/45dc1f7f3ce8248e0e64640d2e29c65c0ea1fc9cb105594de84af80e2a57bba4f718b9376098ca7a5b0ffe240f8995b0fa3714afa9d36861c41370a378f1a274 languageName: node linkType: hard "uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": version: 2.1.0 resolution: "uc.micro@npm:2.1.0" checksum: 10c0/8862eddb412dda76f15db8ad1c640ccc2f47cdf8252a4a30be908d535602c8d33f9855dfcccb8b8837855c1ce1eaa563f7fa7ebe3c98fd0794351aab9b9c55fa languageName: node linkType: hard "ufo@npm:^1.5.4": version: 1.5.4 resolution: "ufo@npm:1.5.4" checksum: 10c0/b5dc4dc435c49c9ef8890f1b280a19ee4d0954d1d6f9ab66ce62ce64dd04c7be476781531f952a07c678d51638d02ad4b98e16237be29149295b0f7c09cda765 languageName: node linkType: hard "uglify-js@npm:^3.7.7": version: 3.19.3 resolution: "uglify-js@npm:3.19.3" bin: uglifyjs: bin/uglifyjs checksum: 10c0/83b0a90eca35f778e07cad9622b80c448b6aad457c9ff8e568afed978212b42930a95f9e1be943a1ffa4258a3340fbb899f41461131c05bb1d0a9c303aed8479 languageName: node linkType: hard "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" dependencies: call-bind: "npm:^1.0.2" has-bigints: "npm:^1.0.2" has-symbols: "npm:^1.0.3" which-boxed-primitive: "npm:^1.0.2" checksum: 10c0/81ca2e81134167cc8f75fa79fbcc8a94379d6c61de67090986a2273850989dd3bae8440c163121b77434b68263e34787a675cbdcb34bb2f764c6b9c843a11b66 languageName: node linkType: hard "unbox-primitive@npm:^1.1.0": version: 1.1.0 resolution: "unbox-primitive@npm:1.1.0" dependencies: call-bound: "npm:^1.0.3" has-bigints: "npm:^1.0.2" has-symbols: "npm:^1.1.0" which-boxed-primitive: "npm:^1.1.1" checksum: 10c0/7dbd35ab02b0e05fe07136c72cb9355091242455473ec15057c11430129bab38b7b3624019b8778d02a881c13de44d63cd02d122ee782fb519e1de7775b5b982 languageName: node linkType: hard "underscore@npm:~1.13.2": version: 1.13.7 resolution: "underscore@npm:1.13.7" checksum: 10c0/fad2b4aac48847674aaf3c30558f383399d4fdafad6dd02dd60e4e1b8103b52c5a9e5937e0cc05dacfd26d6a0132ed0410ab4258241240757e4a4424507471cd languageName: node linkType: hard "undici-types@npm:~6.19.2": version: 6.19.8 resolution: "undici-types@npm:6.19.8" checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344 languageName: node linkType: hard "undici-types@npm:~7.10.0": version: 7.10.0 resolution: "undici-types@npm:7.10.0" checksum: 10c0/8b00ce50e235fe3cc601307f148b5e8fb427092ee3b23e8118ec0a5d7f68eca8cee468c8fc9f15cbb2cf2a3797945ebceb1cbd9732306a1d00e0a9b6afa0f635 languageName: node linkType: hard "undici-types@npm:~7.8.0": version: 7.8.0 resolution: "undici-types@npm:7.8.0" checksum: 10c0/9d9d246d1dc32f318d46116efe3cfca5a72d4f16828febc1918d94e58f6ffcf39c158aa28bf5b4fc52f410446bc7858f35151367bd7a49f21746cab6497b709b languageName: node linkType: hard "unicode-emoji-modifier-base@npm:^1.0.0": version: 1.0.0 resolution: "unicode-emoji-modifier-base@npm:1.0.0" checksum: 10c0/b37623fcf0162186debd20f116483e035a2d5b905b932a2c472459d9143d446ebcbefb2a494e2fe4fa7434355396e2a95ec3fc1f0c29a3bc8f2c827220e79c66 languageName: node linkType: hard "unified@npm:^11.0.0, unified@npm:^11.0.4, unified@npm:^11.0.5": version: 11.0.5 resolution: "unified@npm:11.0.5" dependencies: "@types/unist": "npm:^3.0.0" bail: "npm:^2.0.0" devlop: "npm:^1.0.0" extend: "npm:^3.0.0" is-plain-obj: "npm:^4.0.0" trough: "npm:^2.0.0" vfile: "npm:^6.0.0" checksum: 10c0/53c8e685f56d11d9d458a43e0e74328a4d6386af51c8ac37a3dcabec74ce5026da21250590d4aff6733ccd7dc203116aae2b0769abc18cdf9639a54ae528dfc9 languageName: node linkType: hard "union-value@npm:^1.0.1": version: 1.0.1 resolution: "union-value@npm:1.0.1" dependencies: arr-union: "npm:^3.1.0" get-value: "npm:^2.0.6" is-extendable: "npm:^0.1.1" set-value: "npm:^2.0.1" checksum: 10c0/8758d880cb9545f62ce9cfb9b791b2b7a206e0ff5cc4b9d7cd6581da2c6839837fbb45e639cf1fd8eef3cae08c0201b614b7c06dd9f5f70d9dbe7c5fe2fbf592 languageName: node linkType: hard "unique-filename@npm:^4.0.0": version: 4.0.0 resolution: "unique-filename@npm:4.0.0" dependencies: unique-slug: "npm:^5.0.0" checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc languageName: node linkType: hard "unique-slug@npm:^5.0.0": version: 5.0.0 resolution: "unique-slug@npm:5.0.0" dependencies: imurmurhash: "npm:^0.1.4" checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293 languageName: node linkType: hard "unist-util-find-after@npm:^5.0.0": version: 5.0.0 resolution: "unist-util-find-after@npm:5.0.0" dependencies: "@types/unist": "npm:^3.0.0" unist-util-is: "npm:^6.0.0" checksum: 10c0/a7cea473c4384df8de867c456b797ff1221b20f822e1af673ff5812ed505358b36f47f3b084ac14c3622cb879ed833b71b288e8aa71025352a2aab4c2925a6eb languageName: node linkType: hard "unist-util-is@npm:^6.0.0": version: 6.0.0 resolution: "unist-util-is@npm:6.0.0" dependencies: "@types/unist": "npm:^3.0.0" checksum: 10c0/9419352181eaa1da35eca9490634a6df70d2217815bb5938a04af3a662c12c5607a2f1014197ec9c426fbef18834f6371bfdb6f033040fa8aa3e965300d70e7e languageName: node linkType: hard "unist-util-position@npm:^5.0.0": version: 5.0.0 resolution: "unist-util-position@npm:5.0.0" dependencies: "@types/unist": "npm:^3.0.0" checksum: 10c0/dde3b31e314c98f12b4dc6402f9722b2bf35e96a4f2d463233dd90d7cde2d4928074a7a11eff0a5eb1f4e200f27fc1557e0a64a7e8e4da6558542f251b1b7400 languageName: node linkType: hard "unist-util-remove-position@npm:^5.0.0": version: 5.0.0 resolution: "unist-util-remove-position@npm:5.0.0" dependencies: "@types/unist": "npm:^3.0.0" unist-util-visit: "npm:^5.0.0" checksum: 10c0/e8c76da4399446b3da2d1c84a97c607b37d03d1d92561e14838cbe4fdcb485bfc06c06cfadbb808ccb72105a80643976d0660d1fe222ca372203075be9d71105 languageName: node linkType: hard "unist-util-stringify-position@npm:^4.0.0": version: 4.0.0 resolution: "unist-util-stringify-position@npm:4.0.0" dependencies: "@types/unist": "npm:^3.0.0" checksum: 10c0/dfe1dbe79ba31f589108cb35e523f14029b6675d741a79dea7e5f3d098785045d556d5650ec6a8338af11e9e78d2a30df12b1ee86529cded1098da3f17ee999e languageName: node linkType: hard "unist-util-visit-parents@npm:^6.0.0": version: 6.0.1 resolution: "unist-util-visit-parents@npm:6.0.1" dependencies: "@types/unist": "npm:^3.0.0" unist-util-is: "npm:^6.0.0" checksum: 10c0/51b1a5b0aa23c97d3e03e7288f0cdf136974df2217d0999d3de573c05001ef04cccd246f51d2ebdfb9e8b0ed2704451ad90ba85ae3f3177cf9772cef67f56206 languageName: node linkType: hard "unist-util-visit@npm:^5.0.0": version: 5.0.0 resolution: "unist-util-visit@npm:5.0.0" dependencies: "@types/unist": "npm:^3.0.0" unist-util-is: "npm:^6.0.0" unist-util-visit-parents: "npm:^6.0.0" checksum: 10c0/51434a1d80252c1540cce6271a90fd1a106dbe624997c09ed8879279667fb0b2d3a685e02e92bf66598dcbe6cdffa7a5f5fb363af8fdf90dda6c855449ae39a5 languageName: node linkType: hard "universalify@npm:^0.2.0": version: 0.2.0 resolution: "universalify@npm:0.2.0" checksum: 10c0/cedbe4d4ca3967edf24c0800cfc161c5a15e240dac28e3ce575c689abc11f2c81ccc6532c8752af3b40f9120fb5e454abecd359e164f4f6aa44c29cd37e194fe languageName: node linkType: hard "universalify@npm:^2.0.0": version: 2.0.1 resolution: "universalify@npm:2.0.1" checksum: 10c0/73e8ee3809041ca8b818efb141801a1004e3fc0002727f1531f4de613ea281b494a40909596dae4a042a4fb6cd385af5d4db2e137b1362e0e91384b828effd3a languageName: node linkType: hard "unquote@npm:^1.1.0": version: 1.1.1 resolution: "unquote@npm:1.1.1" checksum: 10c0/de59fb48cbaadc636002c6563dcb6b1bce95c91ebecb92addbc9bb47982cb03e7d8a8371c9617267b9e5746bbcb4403394139bc1310106b9ac4c26790ed57859 languageName: node linkType: hard "unrs-resolver@npm:^1.7.11": version: 1.7.11 resolution: "unrs-resolver@npm:1.7.11" dependencies: "@unrs/resolver-binding-darwin-arm64": "npm:1.7.11" "@unrs/resolver-binding-darwin-x64": "npm:1.7.11" "@unrs/resolver-binding-freebsd-x64": "npm:1.7.11" "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.11" "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.11" "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.11" "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.11" "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.11" "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.11" "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.11" "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.11" "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.11" "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.11" "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.11" "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.11" "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.11" "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.11" napi-postinstall: "npm:^0.2.2" dependenciesMeta: "@unrs/resolver-binding-darwin-arm64": optional: true "@unrs/resolver-binding-darwin-x64": optional: true "@unrs/resolver-binding-freebsd-x64": optional: true "@unrs/resolver-binding-linux-arm-gnueabihf": optional: true "@unrs/resolver-binding-linux-arm-musleabihf": optional: true "@unrs/resolver-binding-linux-arm64-gnu": optional: true "@unrs/resolver-binding-linux-arm64-musl": optional: true "@unrs/resolver-binding-linux-ppc64-gnu": optional: true "@unrs/resolver-binding-linux-riscv64-gnu": optional: true "@unrs/resolver-binding-linux-riscv64-musl": optional: true "@unrs/resolver-binding-linux-s390x-gnu": optional: true "@unrs/resolver-binding-linux-x64-gnu": optional: true "@unrs/resolver-binding-linux-x64-musl": optional: true "@unrs/resolver-binding-wasm32-wasi": optional: true "@unrs/resolver-binding-win32-arm64-msvc": optional: true "@unrs/resolver-binding-win32-ia32-msvc": optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true checksum: 10c0/37e6caf2884b7ce65f77fc5b945997b94523656d477ae0e67fb8df970939930b674091f3fac6beee93b0370fa64a925ad707edc76897aa8cb14866efbe4a6693 languageName: node linkType: hard "update-browserslist-db@npm:^1.1.1": version: 1.1.1 resolution: "update-browserslist-db@npm:1.1.1" dependencies: escalade: "npm:^3.2.0" picocolors: "npm:^1.1.0" peerDependencies: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js checksum: 10c0/536a2979adda2b4be81b07e311bd2f3ad5e978690987956bc5f514130ad50cac87cd22c710b686d79731e00fbee8ef43efe5fcd72baa241045209195d43dcc80 languageName: node linkType: hard "update-diff@npm:^1.1.0": version: 1.1.0 resolution: "update-diff@npm:1.1.0" checksum: 10c0/d517eb23c04d15b6bbef108b622ec8fd6f57ac19b339b1598efe8ad551005c7ab1addb03eac5d247804ed981772ff5c8538d14d2b06da69c73029aeb2bb673e8 languageName: node linkType: hard "uri-js@npm:^4.2.2, uri-js@npm:^4.4.1": version: 4.4.1 resolution: "uri-js@npm:4.4.1" dependencies: punycode: "npm:^2.1.0" checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c languageName: node linkType: hard "url-parse@npm:^1.5.3": version: 1.5.10 resolution: "url-parse@npm:1.5.10" dependencies: querystringify: "npm:^2.1.1" requires-port: "npm:^1.0.0" checksum: 10c0/bd5aa9389f896974beb851c112f63b466505a04b4807cea2e5a3b7092f6fbb75316f0491ea84e44f66fed55f1b440df5195d7e3a8203f64fcefa19d182f5be87 languageName: node linkType: hard "urlpattern-polyfill@npm:^10.1.0": version: 10.1.0 resolution: "urlpattern-polyfill@npm:10.1.0" checksum: 10c0/5b124fd8d0ae920aa2a48b49a7a3b9ad1643b5ce7217b808fb6877826e751cabc01897fd4c85cd1989c4e729072b63aad5c3ba1c1325e4433e0d2f6329156bf1 languageName: node linkType: hard "use-callback-ref@npm:^1.3.2": version: 1.3.2 resolution: "use-callback-ref@npm:1.3.2" dependencies: tslib: "npm:^2.0.0" peerDependencies: "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/d232c37160fe3970c99255da19b5fb5299fb5926a5d6141d928a87feb47732c323d29be2f8137d3b1e5499c70d284cd1d9cfad703cc58179db8be24d7dd8f1f2 languageName: node linkType: hard "use-composed-ref@npm:^1.3.0": version: 1.3.0 resolution: "use-composed-ref@npm:1.3.0" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 checksum: 10c0/e64ce52f4b18c020407636784192726807404a2552609acf7497b66a2b7070674fb5d2b950d426c4aa85f353e2bbecb02ebf9c5b865cd06797938c70bcbf5d26 languageName: node linkType: hard "use-isomorphic-layout-effect@npm:^1.1.1": version: 1.1.2 resolution: "use-isomorphic-layout-effect@npm:1.1.2" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/d8deea8b85e55ac6daba237a889630bfdbf0ebf60e9e22b6a78a78c26fabe6025e04ada7abef1e444e6786227d921e648b2707db8b3564daf757264a148a6e23 languageName: node linkType: hard "use-isomorphic-layout-effect@npm:^1.2.0": version: 1.2.1 resolution: "use-isomorphic-layout-effect@npm:1.2.1" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/4d3c1124d630fbe09c1d2a16af0cd78ac2fe1d22eb24a178363e3d84a897659cc04e8e8cd71f66ff78ff75ef8287fa72e746cb213b96c1097e70e4b4ed69f63f languageName: node linkType: hard "use-latest@npm:^1.2.1": version: 1.2.1 resolution: "use-latest@npm:1.2.1" dependencies: use-isomorphic-layout-effect: "npm:^1.1.1" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/1958886fc35262d973f5cd4ce16acd6ce3a66707a72761c93abd1b5ae64e1a11efa83f68e6c8c9bf1647628037980ce59df64cba50adb36bd4071851e70527d2 languageName: node linkType: hard "use-sidecar@npm:^1.1.2": version: 1.1.2 resolution: "use-sidecar@npm:1.1.2" dependencies: detect-node-es: "npm:^1.1.0" tslib: "npm:^2.0.0" peerDependencies: "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: "@types/react": optional: true checksum: 10c0/89f0018fd9aee1fc17c85ac18c4bf8944d460d453d0d0e04ddbc8eaddf3fa591e9c74a1f8a438a1bff368a7a2417fab380bdb3df899d2194c4375b0982736de0 languageName: node linkType: hard "util-deprecate@npm:~1.0.1": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 languageName: node linkType: hard "util@npm:^0.12.5": version: 0.12.5 resolution: "util@npm:0.12.5" dependencies: inherits: "npm:^2.0.3" is-arguments: "npm:^1.0.4" is-generator-function: "npm:^1.0.7" is-typed-array: "npm:^1.1.3" which-typed-array: "npm:^1.1.2" checksum: 10c0/c27054de2cea2229a66c09522d0fa1415fb12d861d08523a8846bf2e4cbf0079d4c3f725f09dcb87493549bcbf05f5798dce1688b53c6c17201a45759e7253f3 languageName: node linkType: hard "uuid@npm:^13.0.0": version: 13.0.0 resolution: "uuid@npm:13.0.0" bin: uuid: dist-node/bin/uuid checksum: 10c0/950e4c18d57fef6c69675344f5700a08af21e26b9eff2bf2180427564297368c538ea11ac9fb2e6528b17fc3966a9fd2c5049361b0b63c7d654f3c550c9b3d67 languageName: node linkType: hard "validate-npm-package-name@npm:^6.0.0": version: 6.0.0 resolution: "validate-npm-package-name@npm:6.0.0" checksum: 10c0/35d1896d90a4f00291cfc17077b553910d45018b3562841acc6471731794eeebe39b409f678e8c1fee8ef1786e087cac8dea19abdd43649c30fd0b9c752afa2f languageName: node linkType: hard "vega-canvas@npm:^2.0.0": version: 2.0.0 resolution: "vega-canvas@npm:2.0.0" checksum: 10c0/ae4020317238ac0014b4accf2e651f08b7381c1c063b9bdff4d7821d501cb3ed18e5ab37ba105c8cda92ac14b4f0ba9bce8d0525ca738bf0f945914c7d94a35b languageName: node linkType: hard "vega-crossfilter@npm:~5.1.0": version: 5.1.0 resolution: "vega-crossfilter@npm:5.1.0" dependencies: d3-array: "npm:^3.2.4" vega-dataflow: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/cab8426eb3f814256d777408caeeffd3f5885b1cb696d376533295acd98772c31f297cffae62384af07184b1162955b3589f6fa73ffaecaf207cc1ef8d3e1af4 languageName: node linkType: hard "vega-dataflow@npm:^6.1.0, vega-dataflow@npm:~6.1.0": version: 6.1.0 resolution: "vega-dataflow@npm:6.1.0" dependencies: vega-format: "npm:^2.1.0" vega-loader: "npm:^5.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/d7f17c64e4967099340297ba159c35df3e9f6fa93dcb907f4e9c108e27c38984f15f4133830e67bcb2444f51899d33fa51dea8a27a11a530a2e24aa6f25f8454 languageName: node linkType: hard "vega-embed@npm:^7.0.2": version: 7.0.2 resolution: "vega-embed@npm:7.0.2" dependencies: fast-json-patch: "npm:^3.1.1" json-stringify-pretty-compact: "npm:^4.0.0" semver: "npm:^7.7.1" tslib: "npm:^2.8.1" vega-interpreter: "npm:^2.0.0" vega-schema-url-parser: "npm:^3.0.2" vega-themes: "npm:3.0.0" vega-tooltip: "npm:1.0.0" peerDependencies: vega: "*" vega-lite: "*" checksum: 10c0/a3310db9609d13f7302440cf3037a4f600afb3f94171be9d4fd28a6f662aa8aa92cf96a8792ad625a7acec8170db13e0333707f8d712ec89e1ffca176bf51c59 languageName: node linkType: hard "vega-encode@npm:~5.1.0": version: 5.1.0 resolution: "vega-encode@npm:5.1.0" dependencies: d3-array: "npm:^3.2.4" d3-interpolate: "npm:^3.0.1" vega-dataflow: "npm:^6.1.0" vega-scale: "npm:^8.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/6a2d75f6a9f21cab0be36a5001df09461f3f6e3194160b8e4bda72ef58e46e0e919422cf5733a41c395c135a58cea6903f4327dad007cb0c89dbb8557252ca2a languageName: node linkType: hard "vega-event-selector@npm:^4.0.0, vega-event-selector@npm:~4.0.0": version: 4.0.0 resolution: "vega-event-selector@npm:4.0.0" checksum: 10c0/80506c19d0ed9e4e267dd2631e1db062faa87f5983b6d236957988e66c63d2cdff06ac727fcc7f3adb4491f03c2d7049cd471da687592ce3c1f31a8fea285cbb languageName: node linkType: hard "vega-expression@npm:^6.1.0, vega-expression@npm:~6.1.0": version: 6.1.0 resolution: "vega-expression@npm:6.1.0" dependencies: "@types/estree": "npm:^1.0.8" vega-util: "npm:^2.1.0" checksum: 10c0/985ffcbc884a460c4d825de8b68c0bab167a6c7a42ac7b2642a29c04420ab239e78d8ec6527948db75c40e0700890ce270479e1b00fab919424a4b4ab915225a languageName: node linkType: hard "vega-expression@npm:~6.0.0": version: 6.0.0 resolution: "vega-expression@npm:6.0.0" dependencies: "@types/estree": "npm:^1.0.6" vega-util: "npm:^2.0.0" checksum: 10c0/ccf6cc99a74f595bd96d7742cec81fce183a92824cf72377ddbecc189863459e5525d66ee2cdade89b12258116f0a149cabbddd92fd2e8501ccb59716b84c827 languageName: node linkType: hard "vega-force@npm:~5.1.0": version: 5.1.0 resolution: "vega-force@npm:5.1.0" dependencies: d3-force: "npm:^3.0.0" vega-dataflow: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/3068abe2d0d5a33fe6dc96bc14c2452f99333d141d48cf44c7e8159a448a50d07380dc48f80ada910b822055584419e3b8a53486b11a85ae33e080e95265cb55 languageName: node linkType: hard "vega-format@npm:^2.1.0, vega-format@npm:~2.1.0": version: 2.1.0 resolution: "vega-format@npm:2.1.0" dependencies: d3-array: "npm:^3.2.4" d3-format: "npm:^3.1.0" d3-time-format: "npm:^4.1.0" vega-time: "npm:^3.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/917aea596f1746628248a71ceff145964e24ff922e049cdc6c9f31b37cd31129ccb67974e822721136b6be825b12b686d7d746e992ef48d8bb03567107bc1a27 languageName: node linkType: hard "vega-functions@npm:^6.1.0, vega-functions@npm:~6.1.0": version: 6.1.0 resolution: "vega-functions@npm:6.1.0" dependencies: d3-array: "npm:^3.2.4" d3-color: "npm:^3.1.0" d3-geo: "npm:^3.1.1" vega-dataflow: "npm:^6.1.0" vega-expression: "npm:^6.1.0" vega-scale: "npm:^8.1.0" vega-scenegraph: "npm:^5.1.0" vega-selections: "npm:^6.1.0" vega-statistics: "npm:^2.0.0" vega-time: "npm:^3.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/1b89be853ffd986c679e9dbe1198625989524e90916088a06ed17b8b3de132f17574abcc03a9f6d65717cc8129e52d485eeaf6c15fc4efb5843ed1f15155e15e languageName: node linkType: hard "vega-geo@npm:~5.1.0": version: 5.1.0 resolution: "vega-geo@npm:5.1.0" dependencies: d3-array: "npm:^3.2.4" d3-color: "npm:^3.1.0" d3-geo: "npm:^3.1.1" vega-canvas: "npm:^2.0.0" vega-dataflow: "npm:^6.1.0" vega-projection: "npm:^2.1.0" vega-statistics: "npm:^2.0.0" vega-util: "npm:^2.1.0" checksum: 10c0/e19304764a8bd203cb5ea91f24042b004f0a2ed7d590008d9837d978f01db0d93f64e24467768bf744a6403c6364bdea02372da239a8ccb9067bb5927d6c4da2 languageName: node linkType: hard "vega-hierarchy@npm:~5.1.0": version: 5.1.0 resolution: "vega-hierarchy@npm:5.1.0" dependencies: d3-hierarchy: "npm:^3.1.2" vega-dataflow: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/26c3b306e3bd05a3865693fb93b641594855092581cb5b1a822689a05c27af6b85a53603591b9ee83d7cc42b35edb30aa9e6d9c7fb6fe857ba2578a7e3d2a337 languageName: node linkType: hard "vega-interpreter@npm:^2.0.0, vega-interpreter@npm:^2.2.1": version: 2.2.1 resolution: "vega-interpreter@npm:2.2.1" dependencies: vega-util: "npm:^2.1.0" checksum: 10c0/91da8c4df70fbf54caea5bf30b45726a14d04016bf4eac76460b7c665435e33f86a5ecca9d40478afefa2e630571b0eee13bb184793da5cbcb43f82186749b9d languageName: node linkType: hard "vega-label@npm:~2.1.0": version: 2.1.0 resolution: "vega-label@npm:2.1.0" dependencies: vega-canvas: "npm:^2.0.0" vega-dataflow: "npm:^6.1.0" vega-scenegraph: "npm:^5.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/92ab3ebbbe142aca73be134d1c24262738e743b49612ca42d3e9fbd65102bbe1ab2063ffccdd48a3afa113ed1e9b1364130031dbb89a55f4ea87d21cb0ee2588 languageName: node linkType: hard "vega-lite@npm:6.3.1": version: 6.3.1 resolution: "vega-lite@npm:6.3.1" dependencies: json-stringify-pretty-compact: "npm:~4.0.0" tslib: "npm:~2.8.1" vega-event-selector: "npm:~4.0.0" vega-expression: "npm:~6.0.0" vega-util: "npm:~2.0.0" yargs: "npm:~18.0.0" peerDependencies: vega: ^6.0.0 bin: vl2pdf: bin/vl2pdf vl2png: bin/vl2png vl2svg: bin/vl2svg vl2vg: bin/vl2vg checksum: 10c0/b802a646d6bfd5af0dc37830cc685e270180055f6887c6191776fb56c8529e15c049206a57c97fd58138e9affe37069e261af4662417a545dd4413652d4fcaba languageName: node linkType: hard "vega-loader@npm:^5.1.0, vega-loader@npm:~5.1.0": version: 5.1.0 resolution: "vega-loader@npm:5.1.0" dependencies: d3-dsv: "npm:^3.0.1" topojson-client: "npm:^3.1.0" vega-format: "npm:^2.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/2bdc1f92e6b6e45240b3343982d5dcf82d13d454c69f4ee4ccc2ea798fedc119fa1039b10932e97c9704d1dc9a7994ef019ad90d14131ac1730396f2c8c53bef languageName: node linkType: hard "vega-parser@npm:~7.1.0": version: 7.1.0 resolution: "vega-parser@npm:7.1.0" dependencies: vega-dataflow: "npm:^6.1.0" vega-event-selector: "npm:^4.0.0" vega-functions: "npm:^6.1.0" vega-scale: "npm:^8.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/f738edef5ae25dfc899767a6128f5ae599cdc665e8a281c4b62123712184f8a6921c9c16fb8273e275045db7fa302bfcfb899c05c2ecf6144505aabd5941bdfe languageName: node linkType: hard "vega-projection@npm:^2.1.0, vega-projection@npm:~2.1.0": version: 2.1.0 resolution: "vega-projection@npm:2.1.0" dependencies: d3-geo: "npm:^3.1.1" d3-geo-projection: "npm:^4.0.0" vega-scale: "npm:^8.1.0" checksum: 10c0/f654e90f40367cfa212702420dedbf0b5ee415d1eda5417de3b274cb93e5d7019faadf54b75cb4e46e2d34a257bef3c84894700a68124028ac7babffcaf9b1aa languageName: node linkType: hard "vega-regression@npm:~2.1.0": version: 2.1.0 resolution: "vega-regression@npm:2.1.0" dependencies: d3-array: "npm:^3.2.4" vega-dataflow: "npm:^6.1.0" vega-statistics: "npm:^2.0.0" vega-util: "npm:^2.1.0" checksum: 10c0/49c172c093b7c780b0435d0ce616b9b8358d3f5650d57564cb4cef1d40bed84a82608bd7563f39dcf7a6738d9c328c64b8aa659794dd68f8cb70c0cda80ab3bf languageName: node linkType: hard "vega-runtime@npm:^7.1.0, vega-runtime@npm:~7.1.0": version: 7.1.0 resolution: "vega-runtime@npm:7.1.0" dependencies: vega-dataflow: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/091832822b762deab2339a5cacf3918be784be014f38778bdb67ace349bec946af551c98e3098420183c3d50b1035a9746a680d1e8032849bf16f30b2219673d languageName: node linkType: hard "vega-scale@npm:^8.1.0, vega-scale@npm:~8.1.0": version: 8.1.0 resolution: "vega-scale@npm:8.1.0" dependencies: d3-array: "npm:^3.2.4" d3-interpolate: "npm:^3.0.1" d3-scale: "npm:^4.0.2" d3-scale-chromatic: "npm:^3.1.0" vega-time: "npm:^3.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/992c3fb284f8e1d46ba9cec3f164c7a2417344cbe2d52252d87b8409bf89b7d82852899fe0dc15aa37d99ddb298cf326f6273cfd30eb87f255d3e09a55331dab languageName: node linkType: hard "vega-scenegraph@npm:^5.1.0, vega-scenegraph@npm:~5.1.0": version: 5.1.0 resolution: "vega-scenegraph@npm:5.1.0" dependencies: d3-path: "npm:^3.1.0" d3-shape: "npm:^3.2.0" vega-canvas: "npm:^2.0.0" vega-loader: "npm:^5.1.0" vega-scale: "npm:^8.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/1e70a980f451de3e3661b9edf2dd7e1746a5009af62a132ae1b6b10c577af292021958c148d23c81dc14f42ce640679b5dbed5f8ba05dafee5c65fe28b797d69 languageName: node linkType: hard "vega-schema-url-parser@npm:^3.0.2": version: 3.0.2 resolution: "vega-schema-url-parser@npm:3.0.2" checksum: 10c0/d3b3bc3225e00f220fb7f7350451926572202a804c141d4f94e608ec7186acf8d4e7f578d010c0cecfdecd16f2fc42c5aa0dbdf5dec030dd19509b7c4e0d4dbf languageName: node linkType: hard "vega-selections@npm:^6.1.0": version: 6.1.0 resolution: "vega-selections@npm:6.1.0" dependencies: d3-array: "npm:3.2.4" vega-expression: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/72ef4a3dfb1718b744d657ec3a15a5544db6b95a49990012433e10293125e5217fbe023efc7c91eb65a52e64a3c2c8ccc407aa610d69cd42216f7c562f049ee7 languageName: node linkType: hard "vega-statistics@npm:^2.0.0, vega-statistics@npm:~2.0.0": version: 2.0.0 resolution: "vega-statistics@npm:2.0.0" dependencies: d3-array: "npm:^3.2.4" checksum: 10c0/848cf73f17514be70d56ee2bda6a33f86029daf83bce7e07300642c02102551e27546573a3ee9104a445820992bf530d0efd41cb23ba1ce9c66df555df1a843c languageName: node linkType: hard "vega-themes@npm:3.0.0": version: 3.0.0 resolution: "vega-themes@npm:3.0.0" peerDependencies: vega: "*" vega-lite: "*" checksum: 10c0/9592bb044b33abf54e1d56ff3d1d507f87d9f90b316bfc0aded3bcac9e0913dd5292c558aa7fa2a7aa01826fc9ee96e4c98f1a6220b7e713b59089a76d0781e3 languageName: node linkType: hard "vega-time@npm:^3.1.0, vega-time@npm:~3.1.0": version: 3.1.0 resolution: "vega-time@npm:3.1.0" dependencies: d3-array: "npm:^3.2.4" d3-time: "npm:^3.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/ea4b34594b8c3b8e8f6998a2a4024aab895d855af7c97346de1f6b4fa4c0a0067f625539a023a0cac1ec88107772f280c204e7788dd0ef81918272b2f9fbfd55 languageName: node linkType: hard "vega-tooltip@npm:1.0.0": version: 1.0.0 resolution: "vega-tooltip@npm:1.0.0" dependencies: vega-util: "npm:^2.0.0" checksum: 10c0/f96c908f3981d35257c2577e68b2ed2989b7a075cb3375ff003673035f9f67cbc1bd18fe7a788aca3c51ff65534cd2c3355efff227454d29cd1e84ecca361948 languageName: node linkType: hard "vega-transforms@npm:~5.1.0": version: 5.1.0 resolution: "vega-transforms@npm:5.1.0" dependencies: d3-array: "npm:^3.2.4" vega-dataflow: "npm:^6.1.0" vega-statistics: "npm:^2.0.0" vega-time: "npm:^3.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/6afcac396a5e23cbe3c0574e9cb72ec7cc7a3f17713dcdddebdf9e727d8fe82938a71539a57abeeaf869bb9092016562e1dd903b5420fd943e72038bdc89c8de languageName: node linkType: hard "vega-typings@npm:~2.1.0": version: 2.1.0 resolution: "vega-typings@npm:2.1.0" dependencies: "@types/geojson": "npm:7946.0.16" vega-event-selector: "npm:^4.0.0" vega-expression: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/99ab95e04259f642665b4308672e2c3d3b773e08ca6138518afeaa20d57ea0d44b484cb6b4d310817d1769e9c87e288208a7e572a213efe40af205dcc7bbeea8 languageName: node linkType: hard "vega-util@npm:^2.0.0, vega-util@npm:~2.0.0": version: 2.0.0 resolution: "vega-util@npm:2.0.0" checksum: 10c0/462a3ce6d89783b50d29e4aa0784976bd55bbf10bc0d3fa8add341ebe2b053a01c3d3048321702a566dd6c08bed2cc8a0f5d6022b68d1b2daa3bacce292c5b2a languageName: node linkType: hard "vega-util@npm:^2.1.0, vega-util@npm:~2.1.0": version: 2.1.0 resolution: "vega-util@npm:2.1.0" checksum: 10c0/a5242bb8ac3f08e98a08f4bebe6a3421a9c8e026dfc73d436720b505d12f76212899235bcbf5dea399395b01af96f4f1e29269d63a513c2a6b115397f9076639 languageName: node linkType: hard "vega-view-transforms@npm:~5.1.0": version: 5.1.0 resolution: "vega-view-transforms@npm:5.1.0" dependencies: vega-dataflow: "npm:^6.1.0" vega-scenegraph: "npm:^5.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/9a4215df3be23b2df20b161666e391cf37776e0bad9d7b20bd04818ef1a69a5026b99be76771209b4c0b5c3da3f32ba0a20057d7a614316bb03796a1dc0a9935 languageName: node linkType: hard "vega-view@npm:~6.1.0": version: 6.1.0 resolution: "vega-view@npm:6.1.0" dependencies: d3-array: "npm:^3.2.4" d3-timer: "npm:^3.0.1" vega-dataflow: "npm:^6.1.0" vega-format: "npm:^2.1.0" vega-functions: "npm:^6.1.0" vega-runtime: "npm:^7.1.0" vega-scenegraph: "npm:^5.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/739498e0a3a99f41032b245f9a6bc520395a91c99dd8ad187ae6dc53a3302895cfaf8131156b3bb65863d350349c189b4a2fe204edf27dc8d7c22bcfd9b690d6 languageName: node linkType: hard "vega-voronoi@npm:~5.1.0": version: 5.1.0 resolution: "vega-voronoi@npm:5.1.0" dependencies: d3-delaunay: "npm:^6.0.4" vega-dataflow: "npm:^6.1.0" vega-util: "npm:^2.1.0" checksum: 10c0/8db3d4375ee89524c1ac6d046d6d48af79960f8f5b018f19aff0e6c706978a10ff78dea617eecb67eeb27928cb0e922baf76c7246d308c4c37b0cbc6fcb6476a languageName: node linkType: hard "vega-wordcloud@npm:~5.1.0": version: 5.1.0 resolution: "vega-wordcloud@npm:5.1.0" dependencies: vega-canvas: "npm:^2.0.0" vega-dataflow: "npm:^6.1.0" vega-scale: "npm:^8.1.0" vega-statistics: "npm:^2.0.0" vega-util: "npm:^2.1.0" checksum: 10c0/5f28e494da1cde36a36a8cca42b1084853afc825e2b3a5dfb998049f04b56f445170c7320c0381c79812b49e65ef30d51e445620610cb5b8e252a01b3e3a44ff languageName: node linkType: hard "vega@npm:^6.2.0": version: 6.2.0 resolution: "vega@npm:6.2.0" dependencies: vega-crossfilter: "npm:~5.1.0" vega-dataflow: "npm:~6.1.0" vega-encode: "npm:~5.1.0" vega-event-selector: "npm:~4.0.0" vega-expression: "npm:~6.1.0" vega-force: "npm:~5.1.0" vega-format: "npm:~2.1.0" vega-functions: "npm:~6.1.0" vega-geo: "npm:~5.1.0" vega-hierarchy: "npm:~5.1.0" vega-label: "npm:~2.1.0" vega-loader: "npm:~5.1.0" vega-parser: "npm:~7.1.0" vega-projection: "npm:~2.1.0" vega-regression: "npm:~2.1.0" vega-runtime: "npm:~7.1.0" vega-scale: "npm:~8.1.0" vega-scenegraph: "npm:~5.1.0" vega-statistics: "npm:~2.0.0" vega-time: "npm:~3.1.0" vega-transforms: "npm:~5.1.0" vega-typings: "npm:~2.1.0" vega-util: "npm:~2.1.0" vega-view: "npm:~6.1.0" vega-view-transforms: "npm:~5.1.0" vega-voronoi: "npm:~5.1.0" vega-wordcloud: "npm:~5.1.0" checksum: 10c0/210abdd40d45e2be8dcc496c45f3594de0b7d867955c84e23d21f44c1c3aa8ef692e5eaa8cdb720f543cbb9f0503cd533d21cc519454e2acc0eb74bf01e4600d languageName: node linkType: hard "vfile-location@npm:^5.0.0": version: 5.0.3 resolution: "vfile-location@npm:5.0.3" dependencies: "@types/unist": "npm:^3.0.0" vfile: "npm:^6.0.0" checksum: 10c0/1711f67802a5bc175ea69750d59863343ed43d1b1bb25c0a9063e4c70595e673e53e2ed5cdbb6dcdc370059b31605144d95e8c061b9361bcc2b036b8f63a4966 languageName: node linkType: hard "vfile-message@npm:^4.0.0": version: 4.0.2 resolution: "vfile-message@npm:4.0.2" dependencies: "@types/unist": "npm:^3.0.0" unist-util-stringify-position: "npm:^4.0.0" checksum: 10c0/07671d239a075f888b78f318bc1d54de02799db4e9dce322474e67c35d75ac4a5ac0aaf37b18801d91c9f8152974ea39678aa72d7198758b07f3ba04fb7d7514 languageName: node linkType: hard "vfile@npm:^6.0.0": version: 6.0.3 resolution: "vfile@npm:6.0.3" dependencies: "@types/unist": "npm:^3.0.0" vfile-message: "npm:^4.0.0" checksum: 10c0/e5d9eb4810623f23758cfc2205323e33552fb5972e5c2e6587babe08fe4d24859866277404fb9e2a20afb71013860d96ec806cb257536ae463c87d70022ab9ef languageName: node linkType: hard "viewport-mercator-project@npm:^7.0.4": version: 7.0.4 resolution: "viewport-mercator-project@npm:7.0.4" dependencies: "@math.gl/web-mercator": "npm:^3.5.5" checksum: 10c0/9a8a12f4bd68355a8162a23d4b161133b45aee71b2453fd8d57f54c55466007428cf502d0c02f58620d4c92ba934c29608613bc3176dd8c1d348f8a9deb34e32 languageName: node linkType: hard "vite-bundle-analyzer@npm:^1.2.3": version: 1.2.3 resolution: "vite-bundle-analyzer@npm:1.2.3" bin: analyze: dist/bin.js checksum: 10c0/e99c49cde7ec57ca6f70f02faa4bd96f0ed43da7a98b86b9e129b99e65c29eba7fec9fefa2bb3d8fd24db5bd0988258ae213cd70978cf3894905118b9eedb495 languageName: node linkType: hard "vite-node@npm:3.2.4": version: 3.2.4 resolution: "vite-node@npm:3.2.4" dependencies: cac: "npm:^6.7.14" debug: "npm:^4.4.1" es-module-lexer: "npm:^1.7.0" pathe: "npm:^2.0.3" vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0" bin: vite-node: vite-node.mjs checksum: 10c0/6ceca67c002f8ef6397d58b9539f80f2b5d79e103a18367288b3f00a8ab55affa3d711d86d9112fce5a7fa658a212a087a005a045eb8f4758947dd99af2a6c6b languageName: node linkType: hard "vite-plugin-dts@npm:^4.5.4": version: 4.5.4 resolution: "vite-plugin-dts@npm:4.5.4" dependencies: "@microsoft/api-extractor": "npm:^7.50.1" "@rollup/pluginutils": "npm:^5.1.4" "@volar/typescript": "npm:^2.4.11" "@vue/language-core": "npm:2.2.0" compare-versions: "npm:^6.1.1" debug: "npm:^4.4.0" kolorist: "npm:^1.8.0" local-pkg: "npm:^1.0.0" magic-string: "npm:^0.30.17" peerDependencies: typescript: "*" vite: "*" peerDependenciesMeta: vite: optional: true checksum: 10c0/5fcb7f3739d115f36195a692c0e9f9fca4e504bbbbabe29e71ee06630dd05ea2920169371e80e548eb4779d2eca14107277497838d7df588d53e1fadf84be861 languageName: node linkType: hard "vite-plugin-svgr@npm:^4.5.0": version: 4.5.0 resolution: "vite-plugin-svgr@npm:4.5.0" dependencies: "@rollup/pluginutils": "npm:^5.2.0" "@svgr/core": "npm:^8.1.0" "@svgr/plugin-jsx": "npm:^8.1.0" peerDependencies: vite: ">=2.6.0" checksum: 10c0/3e1959fec626bb4f5a8ec13ff15bc40ffbc1c0ff38149bebe3f37dc2d67ed1f276f129ff7983e06946cf712e19996affd9d6868aa7d20d8921d1fe4449109b55 languageName: node linkType: hard "vite-tsconfig-paths@npm:^5.1.4": version: 5.1.4 resolution: "vite-tsconfig-paths@npm:5.1.4" dependencies: debug: "npm:^4.1.1" globrex: "npm:^0.1.2" tsconfck: "npm:^3.0.3" peerDependencies: vite: "*" peerDependenciesMeta: vite: optional: true checksum: 10c0/6228f23155ea25d92b1e1702284cf8dc52ad3c683c5ca691edd5a4c82d2913e7326d00708cef1cbfde9bb226261df0e0a12e03ef1d43b6a92d8f02b483ef37e3 languageName: node linkType: hard "vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0, vite@npm:^7.1.11": version: 7.2.2 resolution: "vite@npm:7.2.2" dependencies: esbuild: "npm:^0.25.0" fdir: "npm:^6.5.0" fsevents: "npm:~2.3.3" picomatch: "npm:^4.0.3" postcss: "npm:^8.5.6" rollup: "npm:^4.43.0" tinyglobby: "npm:^0.2.15" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 jiti: ">=1.21.0" less: ^4.0.0 lightningcss: ^1.21.0 sass: ^1.70.0 sass-embedded: ^1.70.0 stylus: ">=0.54.8" sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 dependenciesMeta: fsevents: optional: true peerDependenciesMeta: "@types/node": optional: true jiti: optional: true less: optional: true lightningcss: optional: true sass: optional: true sass-embedded: optional: true stylus: optional: true sugarss: optional: true terser: optional: true tsx: optional: true yaml: optional: true bin: vite: bin/vite.js checksum: 10c0/9c76ee441f8dbec645ddaecc28d1f9cf35670ffa91cff69af7b1d5081545331603f0b1289d437b2fa8dc43cdc77b4d96b5bd9c9aed66310f490cb1a06f9c814c languageName: node linkType: hard "vitest-canvas-mock@npm:^0.3.3": version: 0.3.3 resolution: "vitest-canvas-mock@npm:0.3.3" dependencies: jest-canvas-mock: "npm:~2.5.2" peerDependencies: vitest: "*" checksum: 10c0/c14eec888d06e0a91706c2902cba115c6563de132d1b4c0f87897c550345674849cac3f62b36c4b3c1180ed352d25dd53525ccd2267d164ac1926557f58708b9 languageName: node linkType: hard "vitest-fetch-mock@npm:^0.4.5": version: 0.4.5 resolution: "vitest-fetch-mock@npm:0.4.5" peerDependencies: vitest: ">=2.0.0" checksum: 10c0/c877ae9e1769481dd0c955ce311651030b6eee0bb1d8f9c9388f33a0d8f7f2b6e451268e0ed171d5a26b4390dd887656caa366d2152b1d552bc09b27c2dd8792 languageName: node linkType: hard "vitest-websocket-mock@npm:^0.5.0": version: 0.5.0 resolution: "vitest-websocket-mock@npm:0.5.0" dependencies: "@vitest/utils": "npm:^3.0.0" mock-socket: "npm:^9.2.1" peerDependencies: vitest: ">=3" checksum: 10c0/d55061d41344b4c922ef3caca72fbaa3c090949c89d496d59ecba4cc12c67daca07c06875a0103af057ad8550da1f3255273baafbc5fd7f1a0166cd00a52fa31 languageName: node linkType: hard "vitest@npm:^3.2.4": version: 3.2.4 resolution: "vitest@npm:3.2.4" dependencies: "@types/chai": "npm:^5.2.2" "@vitest/expect": "npm:3.2.4" "@vitest/mocker": "npm:3.2.4" "@vitest/pretty-format": "npm:^3.2.4" "@vitest/runner": "npm:3.2.4" "@vitest/snapshot": "npm:3.2.4" "@vitest/spy": "npm:3.2.4" "@vitest/utils": "npm:3.2.4" chai: "npm:^5.2.0" debug: "npm:^4.4.1" expect-type: "npm:^1.2.1" magic-string: "npm:^0.30.17" pathe: "npm:^2.0.3" picomatch: "npm:^4.0.2" std-env: "npm:^3.9.0" tinybench: "npm:^2.9.0" tinyexec: "npm:^0.3.2" tinyglobby: "npm:^0.2.14" tinypool: "npm:^1.1.1" tinyrainbow: "npm:^2.0.0" vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0" vite-node: "npm:3.2.4" why-is-node-running: "npm:^2.3.0" peerDependencies: "@edge-runtime/vm": "*" "@types/debug": ^4.1.12 "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 "@vitest/browser": 3.2.4 "@vitest/ui": 3.2.4 happy-dom: "*" jsdom: "*" peerDependenciesMeta: "@edge-runtime/vm": optional: true "@types/debug": optional: true "@types/node": optional: true "@vitest/browser": optional: true "@vitest/ui": optional: true happy-dom: optional: true jsdom: optional: true bin: vitest: vitest.mjs checksum: 10c0/5bf53ede3ae6a0e08956d72dab279ae90503f6b5a05298a6a5e6ef47d2fd1ab386aaf48fafa61ed07a0ebfe9e371772f1ccbe5c258dd765206a8218bf2eb79eb languageName: node linkType: hard "vscode-uri@npm:^3.0.8": version: 3.0.8 resolution: "vscode-uri@npm:3.0.8" checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9 languageName: node linkType: hard "vt-pbf@npm:^3.1.1, vt-pbf@npm:^3.1.3": version: 3.1.3 resolution: "vt-pbf@npm:3.1.3" dependencies: "@mapbox/point-geometry": "npm:0.1.0" "@mapbox/vector-tile": "npm:^1.3.1" pbf: "npm:^3.2.1" checksum: 10c0/a568801ae25f0ffe65ef697bf520c996c8a4067f73f355c0d5815238de90322c8ca207c61220206141cfe6f5b525de875b7eb26e22979a1b768b96d03b93dca7 languageName: node linkType: hard "w3c-keyname@npm:^2.2.0": version: 2.2.8 resolution: "w3c-keyname@npm:2.2.8" checksum: 10c0/37cf335c90efff31672ebb345577d681e2177f7ff9006a9ad47c68c5a9d265ba4a7b39d6c2599ceea639ca9315584ce4bd9c9fbf7a7217bfb7a599e71943c4c4 languageName: node linkType: hard "w3c-xmlserializer@npm:^5.0.0": version: 5.0.0 resolution: "w3c-xmlserializer@npm:5.0.0" dependencies: xml-name-validator: "npm:^5.0.0" checksum: 10c0/8712774c1aeb62dec22928bf1cdfd11426c2c9383a1a63f2bcae18db87ca574165a0fbe96b312b73652149167ac6c7f4cf5409f2eb101d9c805efe0e4bae798b languageName: node linkType: hard "warning@npm:^4.0.0, warning@npm:^4.0.2": version: 4.0.3 resolution: "warning@npm:4.0.3" dependencies: loose-envify: "npm:^1.0.0" checksum: 10c0/aebab445129f3e104c271f1637fa38e55eb25f968593e3825bd2f7a12bd58dc3738bb70dc8ec85826621d80b4acfed5a29ebc9da17397c6125864d72301b937e languageName: node linkType: hard "wavesurfer.js@npm:^7.10.1": version: 7.10.1 resolution: "wavesurfer.js@npm:7.10.1" checksum: 10c0/1508373830bbfaaf89638cd38d8d8cb96bfdf2360ddaa74f397079b792624ccc6bc5f7c4914ba26d889b60a544eb1f8a5bef114500ff8fdeb0f1b16691e67cee languageName: node linkType: hard "weak-map@npm:^1.0.5": version: 1.0.8 resolution: "weak-map@npm:1.0.8" checksum: 10c0/56c3c044f41a3f096db55d5dec86bb57e042fa21081491be5fa406608669089c09153de66c14cc8b93c4979fe977c92316e83cba25c2f0305c870065deff042f languageName: node linkType: hard "web-namespaces@npm:^2.0.0": version: 2.0.1 resolution: "web-namespaces@npm:2.0.1" checksum: 10c0/df245f466ad83bd5cd80bfffc1674c7f64b7b84d1de0e4d2c0934fb0782e0a599164e7197a4bce310ee3342fd61817b8047ff04f076a1ce12dd470584142a4bd languageName: node linkType: hard "web-streams-polyfill@npm:^3.0.3": version: 3.3.3 resolution: "web-streams-polyfill@npm:3.3.3" checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f languageName: node linkType: hard "webgl-context@npm:^2.2.0": version: 2.2.0 resolution: "webgl-context@npm:2.2.0" dependencies: get-canvas-context: "npm:^1.0.1" checksum: 10c0/4a2f677657e340a3b48153d36a7b7487d41e745214f114dd97a357372da7cd3fc051c85ceb5024410b431251bfdaeb028eb54fb22b46290f1178d7cb0eba70ba languageName: node linkType: hard "webidl-conversions@npm:^3.0.0": version: 3.0.1 resolution: "webidl-conversions@npm:3.0.1" checksum: 10c0/5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db languageName: node linkType: hard "webidl-conversions@npm:^7.0.0": version: 7.0.0 resolution: "webidl-conversions@npm:7.0.0" checksum: 10c0/228d8cb6d270c23b0720cb2d95c579202db3aaf8f633b4e9dd94ec2000a04e7e6e43b76a94509cdb30479bd00ae253ab2371a2da9f81446cc313f89a4213a2c4 languageName: node linkType: hard "wgsl_reflect@npm:^1.2.0": version: 1.2.3 resolution: "wgsl_reflect@npm:1.2.3" checksum: 10c0/0ac66a98607a606ea0d9c419de9be63137ab0cbe05a9024f65fe3d606de1ab40d5b6a50a8fc30b8ad5b06dc7d676e7e5f6c4218ce0061f2b4a17d3722ca363b4 languageName: node linkType: hard "whatwg-encoding@npm:^3.1.1": version: 3.1.1 resolution: "whatwg-encoding@npm:3.1.1" dependencies: iconv-lite: "npm:0.6.3" checksum: 10c0/273b5f441c2f7fda3368a496c3009edbaa5e43b71b09728f90425e7f487e5cef9eb2b846a31bd760dd8077739c26faf6b5ca43a5f24033172b003b72cf61a93e languageName: node linkType: hard "whatwg-mimetype@npm:^4.0.0": version: 4.0.0 resolution: "whatwg-mimetype@npm:4.0.0" checksum: 10c0/a773cdc8126b514d790bdae7052e8bf242970cebd84af62fb2f35a33411e78e981f6c0ab9ed1fe6ec5071b09d5340ac9178e05b52d35a9c4bcf558ba1b1551df languageName: node linkType: hard "whatwg-url@npm:^14.0.0": version: 14.0.0 resolution: "whatwg-url@npm:14.0.0" dependencies: tr46: "npm:^5.0.0" webidl-conversions: "npm:^7.0.0" checksum: 10c0/ac32e9ba9d08744605519bbe9e1371174d36229689ecc099157b6ba102d4251a95e81d81f3d80271eb8da182eccfa65653f07f0ab43ea66a6934e643fd091ba9 languageName: node linkType: hard "whatwg-url@npm:^5.0.0": version: 5.0.0 resolution: "whatwg-url@npm:5.0.0" dependencies: tr46: "npm:~0.0.3" webidl-conversions: "npm:^3.0.0" checksum: 10c0/1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5 languageName: node linkType: hard "when-exit@npm:^2.1.1": version: 2.1.4 resolution: "when-exit@npm:2.1.4" checksum: 10c0/d8ffba54afca880de6f366ab06a32e8fab99fa298a3f79b2d5304bab19d290f55c5f081336cdaa65d0b6e9a842b46a46bab0800e94e755ea599a2082224a8cc0 languageName: node linkType: hard "which-boxed-primitive@npm:^1.0.2": version: 1.0.2 resolution: "which-boxed-primitive@npm:1.0.2" dependencies: is-bigint: "npm:^1.0.1" is-boolean-object: "npm:^1.1.0" is-number-object: "npm:^1.0.4" is-string: "npm:^1.0.5" is-symbol: "npm:^1.0.3" checksum: 10c0/0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e languageName: node linkType: hard "which-boxed-primitive@npm:^1.1.0, which-boxed-primitive@npm:^1.1.1": version: 1.1.1 resolution: "which-boxed-primitive@npm:1.1.1" dependencies: is-bigint: "npm:^1.1.0" is-boolean-object: "npm:^1.2.1" is-number-object: "npm:^1.1.1" is-string: "npm:^1.1.1" is-symbol: "npm:^1.1.1" checksum: 10c0/aceea8ede3b08dede7dce168f3883323f7c62272b49801716e8332ff750e7ae59a511ae088840bc6874f16c1b7fd296c05c949b0e5b357bfe3c431b98c417abe languageName: node linkType: hard "which-builtin-type@npm:^1.2.1": version: 1.2.1 resolution: "which-builtin-type@npm:1.2.1" dependencies: call-bound: "npm:^1.0.2" function.prototype.name: "npm:^1.1.6" has-tostringtag: "npm:^1.0.2" is-async-function: "npm:^2.0.0" is-date-object: "npm:^1.1.0" is-finalizationregistry: "npm:^1.1.0" is-generator-function: "npm:^1.0.10" is-regex: "npm:^1.2.1" is-weakref: "npm:^1.0.2" isarray: "npm:^2.0.5" which-boxed-primitive: "npm:^1.1.0" which-collection: "npm:^1.0.2" which-typed-array: "npm:^1.1.16" checksum: 10c0/8dcf323c45e5c27887800df42fbe0431d0b66b1163849bb7d46b5a730ad6a96ee8bfe827d078303f825537844ebf20c02459de41239a0a9805e2fcb3cae0d471 languageName: node linkType: hard "which-collection@npm:^1.0.2": version: 1.0.2 resolution: "which-collection@npm:1.0.2" dependencies: is-map: "npm:^2.0.3" is-set: "npm:^2.0.3" is-weakmap: "npm:^2.0.2" is-weakset: "npm:^2.0.3" checksum: 10c0/3345fde20964525a04cdf7c4a96821f85f0cc198f1b2ecb4576e08096746d129eb133571998fe121c77782ac8f21cbd67745a3d35ce100d26d4e684c142ea1f2 languageName: node linkType: hard "which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15, which-typed-array@npm:^1.1.2": version: 1.1.15 resolution: "which-typed-array@npm:1.1.15" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.7" for-each: "npm:^0.3.3" gopd: "npm:^1.0.1" has-tostringtag: "npm:^1.0.2" checksum: 10c0/4465d5348c044032032251be54d8988270e69c6b7154f8fcb2a47ff706fe36f7624b3a24246b8d9089435a8f4ec48c1c1025c5d6b499456b9e5eff4f48212983 languageName: node linkType: hard "which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18": version: 1.1.18 resolution: "which-typed-array@npm:1.1.18" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.3" for-each: "npm:^0.3.3" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" checksum: 10c0/0412f4a91880ca1a2a63056187c2e3de6b129b2b5b6c17bc3729f0f7041047ae48fb7424813e51506addb2c97320003ee18b8c57469d2cde37983ef62126143c languageName: node linkType: hard "which-typed-array@npm:^1.1.19": version: 1.1.19 resolution: "which-typed-array@npm:1.1.19" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" call-bound: "npm:^1.0.4" for-each: "npm:^0.3.5" get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f languageName: node linkType: hard "which@npm:^2.0.1": version: 2.0.2 resolution: "which@npm:2.0.2" dependencies: isexe: "npm:^2.0.0" bin: node-which: ./bin/node-which checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f languageName: node linkType: hard "which@npm:^4.0.0": version: 4.0.0 resolution: "which@npm:4.0.0" dependencies: isexe: "npm:^3.1.1" bin: node-which: bin/which.js checksum: 10c0/449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a languageName: node linkType: hard "which@npm:^5.0.0": version: 5.0.0 resolution: "which@npm:5.0.0" dependencies: isexe: "npm:^3.1.1" bin: node-which: bin/which.js checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b languageName: node linkType: hard "why-is-node-running@npm:^2.3.0": version: 2.3.0 resolution: "why-is-node-running@npm:2.3.0" dependencies: siginfo: "npm:^2.0.0" stackback: "npm:0.0.2" bin: why-is-node-running: cli.js checksum: 10c0/1cde0b01b827d2cf4cb11db962f3958b9175d5d9e7ac7361d1a7b0e2dc6069a263e69118bd974c4f6d0a890ef4eedfe34cf3d5167ec14203dbc9a18620537054 languageName: node linkType: hard "word-wrap@npm:^1.2.5, word-wrap@npm:~1.2.3": version: 1.2.5 resolution: "word-wrap@npm:1.2.5" checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 languageName: node linkType: hard "wordwrapjs@npm:^5.1.0": version: 5.1.0 resolution: "wordwrapjs@npm:5.1.0" checksum: 10c0/e147162f139eb8c05257729fde586f5422a2d242aa8f027b5fa5adead1b571b455d0690a15c73aeaa31c93ba96864caa06d84ebdb2c32a0890602ab86a7568d1 languageName: node linkType: hard "world-calendars@npm:^1.0.4": version: 1.0.4 resolution: "world-calendars@npm:1.0.4" dependencies: object-assign: "npm:^4.1.0" checksum: 10c0/8f89412868180dd56e12bcce2d0c0f965c6f7cc0f1c9b26e21d2ced8da6f3f1ac34b648e66da63d148136479f1916776a554352ecccc815b5b14c5396aafc328 languageName: node linkType: hard "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": version: 7.0.0 resolution: "wrap-ansi@npm:7.0.0" dependencies: ansi-styles: "npm:^4.0.0" string-width: "npm:^4.1.0" strip-ansi: "npm:^6.0.0" checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da languageName: node linkType: hard "wrap-ansi@npm:^8.1.0": version: 8.1.0 resolution: "wrap-ansi@npm:8.1.0" dependencies: ansi-styles: "npm:^6.1.0" string-width: "npm:^5.0.1" strip-ansi: "npm:^7.0.1" checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 languageName: node linkType: hard "wrap-ansi@npm:^9.0.0": version: 9.0.0 resolution: "wrap-ansi@npm:9.0.0" dependencies: ansi-styles: "npm:^6.2.1" string-width: "npm:^7.0.0" strip-ansi: "npm:^7.1.0" checksum: 10c0/a139b818da9573677548dd463bd626a5a5286271211eb6e4e82f34a4f643191d74e6d4a9bb0a3c26ec90e6f904f679e0569674ac099ea12378a8b98e20706066 languageName: node linkType: hard "wrappy@npm:1": version: 1.0.2 resolution: "wrappy@npm:1.0.2" checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 languageName: node linkType: hard "ws@npm:^7.0.0": version: 7.5.10 resolution: "ws@npm:7.5.10" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true checksum: 10c0/bd7d5f4aaf04fae7960c23dcb6c6375d525e00f795dd20b9385902bd008c40a94d3db3ce97d878acc7573df852056ca546328b27b39f47609f80fb22a0a9b61d languageName: node linkType: hard "ws@npm:^8.18.0": version: 8.18.0 resolution: "ws@npm:8.18.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true checksum: 10c0/25eb33aff17edcb90721ed6b0eb250976328533ad3cd1a28a274bd263682e7296a6591ff1436d6cbc50fa67463158b062f9d1122013b361cec99a05f84680e06 languageName: node linkType: hard "ws@npm:^8.18.3": version: 8.18.3 resolution: "ws@npm:8.18.3" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true checksum: 10c0/eac918213de265ef7cb3d4ca348b891a51a520d839aa51cdb8ca93d4fa7ff9f6ccb339ccee89e4075324097f0a55157c89fa3f7147bde9d8d7e90335dc087b53 languageName: node linkType: hard "xdg-basedir@npm:^5.1.0": version: 5.1.0 resolution: "xdg-basedir@npm:5.1.0" checksum: 10c0/c88efabc71ffd996ba9ad8923a8cc1c7c020a03e2c59f0ffa72e06be9e724ad2a0fccef488757bc6ed3d8849d753dd25082d1035d95cb179e79eae4d034d0b80 languageName: node linkType: hard "xml-name-validator@npm:^5.0.0": version: 5.0.0 resolution: "xml-name-validator@npm:5.0.0" checksum: 10c0/3fcf44e7b73fb18be917fdd4ccffff3639373c7cb83f8fc35df6001fecba7942f1dbead29d91ebb8315e2f2ff786b508f0c9dc0215b6353f9983c6b7d62cb1f5 languageName: node linkType: hard "xmlchars@npm:^2.2.0": version: 2.2.0 resolution: "xmlchars@npm:2.2.0" checksum: 10c0/b64b535861a6f310c5d9bfa10834cf49127c71922c297da9d4d1b45eeaae40bf9b4363275876088fbe2667e5db028d2cd4f8ee72eed9bede840a67d57dab7593 languageName: node linkType: hard "xmlcreate@npm:^2.0.4": version: 2.0.4 resolution: "xmlcreate@npm:2.0.4" checksum: 10c0/fc4234e2d1942877d761d4f3d64410b54633d2ec60b13a5d56a6a06545aba39a0df8ed7ded10785a302f632eb4f0a4fedbf4bf10e17892e11d5075244b9e5705 languageName: node linkType: hard "xtend@npm:>=4.0.0 <4.1.0-0, xtend@npm:^4.0.0, xtend@npm:~4.0.1": version: 4.0.2 resolution: "xtend@npm:4.0.2" checksum: 10c0/366ae4783eec6100f8a02dff02ac907bf29f9a00b82ac0264b4d8b832ead18306797e283cf19de776538babfdcb2101375ec5646b59f08c52128ac4ab812ed0e languageName: node linkType: hard "xtend@npm:^2.1.2": version: 2.2.0 resolution: "xtend@npm:2.2.0" checksum: 10c0/396c724b8ea54c7346d7ca304116dc9aa0327b4cee4782c0a42707e6022d9a6b1c1d61b056357b1ee24102d6a366a90a313cc38e79bf70452d4d205b64a1575f languageName: node linkType: hard "xxhashjs@npm:^0.2.2": version: 0.2.2 resolution: "xxhashjs@npm:0.2.2" dependencies: cuint: "npm:^0.2.2" checksum: 10c0/78f3a5e10c7ba026bfc52f07ab02acb972c9c681dd53c283b386042822bae15577667103efe843725e9b0914f7bc53d70fe2f24a3e85d15aac13378fdf2db50e languageName: node linkType: hard "y18n@npm:^5.0.5": version: 5.0.8 resolution: "y18n@npm:5.0.8" checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 languageName: node linkType: hard "yallist@npm:^3.0.2": version: 3.1.1 resolution: "yallist@npm:3.1.1" checksum: 10c0/c66a5c46bc89af1625476f7f0f2ec3653c1a1791d2f9407cfb4c2ba812a1e1c9941416d71ba9719876530e3340a99925f697142989371b72d93b9ee628afd8c1 languageName: node linkType: hard "yallist@npm:^4.0.0": version: 4.0.0 resolution: "yallist@npm:4.0.0" checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a languageName: node linkType: hard "yallist@npm:^5.0.0": version: 5.0.0 resolution: "yallist@npm:5.0.0" checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 languageName: node linkType: hard "yaml@npm:^1.10.0": version: 1.10.2 resolution: "yaml@npm:1.10.2" checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f languageName: node linkType: hard "yaml@npm:^2.7.1": version: 2.7.1 resolution: "yaml@npm:2.7.1" bin: yaml: bin.mjs checksum: 10c0/ee2126398ab7d1fdde566b4013b68e36930b9e6d8e68b6db356875c99614c10d678b6f45597a145ff6d63814961221fc305bf9242af8bf7450177f8a68537590 languageName: node linkType: hard "yargs-parser@npm:^20.2.2": version: 20.2.9 resolution: "yargs-parser@npm:20.2.9" checksum: 10c0/0685a8e58bbfb57fab6aefe03c6da904a59769bd803a722bb098bd5b0f29d274a1357762c7258fb487512811b8063fb5d2824a3415a0a4540598335b3b086c72 languageName: node linkType: hard "yargs-parser@npm:^21.0.0, yargs-parser@npm:^21.1.1": version: 21.1.1 resolution: "yargs-parser@npm:21.1.1" checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 languageName: node linkType: hard "yargs-parser@npm:^22.0.0": version: 22.0.0 resolution: "yargs-parser@npm:22.0.0" checksum: 10c0/cb7ef81759c4271cb1d96b9351dbbc9a9ce35d3e1122d2b739bf6c432603824fa02c67cc12dcef6ea80283379d63495686e8f41cc7b06c6576e792aba4d33e1c languageName: node linkType: hard "yargs@npm:17.7.2, yargs@npm:^17.3.1, yargs@npm:^17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: cliui: "npm:^8.0.1" escalade: "npm:^3.1.1" get-caller-file: "npm:^2.0.5" require-directory: "npm:^2.1.1" string-width: "npm:^4.2.3" y18n: "npm:^5.0.5" yargs-parser: "npm:^21.1.1" checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 languageName: node linkType: hard "yargs@npm:^16.2.0": version: 16.2.0 resolution: "yargs@npm:16.2.0" dependencies: cliui: "npm:^7.0.2" escalade: "npm:^3.1.1" get-caller-file: "npm:^2.0.5" require-directory: "npm:^2.1.1" string-width: "npm:^4.2.0" y18n: "npm:^5.0.5" yargs-parser: "npm:^20.2.2" checksum: 10c0/b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 languageName: node linkType: hard "yargs@npm:~18.0.0": version: 18.0.0 resolution: "yargs@npm:18.0.0" dependencies: cliui: "npm:^9.0.1" escalade: "npm:^3.1.1" get-caller-file: "npm:^2.0.5" string-width: "npm:^7.2.0" y18n: "npm:^5.0.5" yargs-parser: "npm:^22.0.0" checksum: 10c0/bf290e4723876ea9c638c786a5c42ac28e03c9ca2325e1424bf43b94e5876456292d3ed905b853ebbba6daf43ed29e772ac2a6b3c5fb1b16533245d6211778f3 languageName: node linkType: hard "yauzl@npm:^2.10.0": version: 2.10.0 resolution: "yauzl@npm:2.10.0" dependencies: buffer-crc32: "npm:~0.2.3" fd-slicer: "npm:~1.1.0" checksum: 10c0/f265002af7541b9ec3589a27f5fb8f11cf348b53cc15e2751272e3c062cd73f3e715bc72d43257de71bbaecae446c3f1b14af7559e8ab0261625375541816422 languageName: node linkType: hard "yocto-queue@npm:^0.1.0": version: 0.1.0 resolution: "yocto-queue@npm:0.1.0" checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f languageName: node linkType: hard "zod-validation-error@npm:^3.5.0 || ^4.0.0": version: 4.0.2 resolution: "zod-validation-error@npm:4.0.2" peerDependencies: zod: ^3.25.0 || ^4.0.0 checksum: 10c0/0ccfec48c46de1be440b719cd02044d4abb89ed0e14c13e637cd55bf29102f67ccdba373f25def0fc7130e5f15025be4d557a7edcc95d5a3811599aade689e1b languageName: node linkType: hard "zod@npm:^3.24.1": version: 3.24.2 resolution: "zod@npm:3.24.2" checksum: 10c0/c638c7220150847f13ad90635b3e7d0321b36cce36f3fc6050ed960689594c949c326dfe2c6fa87c14b126ee5d370ccdebd6efb304f41ef5557a4aaca2824565 languageName: node linkType: hard "zod@npm:^3.25.0 || ^4.0.0, zod@npm:^4.1.12": version: 4.1.12 resolution: "zod@npm:4.1.12" checksum: 10c0/b64c1feb19e99d77075261eaf613e0b2be4dfcd3551eff65ad8b4f2a079b61e379854d066f7d447491fcf193f45babd8095551a9d47973d30b46b6d8e2c46774 languageName: node linkType: hard "zstd-codec@npm:^0.1": version: 0.1.5 resolution: "zstd-codec@npm:0.1.5" checksum: 10c0/8b7e6d9ce86f00fc4ea16c949aab5538505a1f3f1a9c7c095b2a7308b4ed894deec7bdb2c614e1486a337abdce09a6e56282dc0e39fe9f880953b094f8c7810b languageName: node linkType: hard "zwitch@npm:^2.0.0": version: 2.0.4 resolution: "zwitch@npm:2.0.4" checksum: 10c0/3c7830cdd3378667e058ffdb4cf2bb78ac5711214e2725900873accb23f3dfe5f9e7e5a06dcdc5f29605da976fc45c26d9a13ca334d6eea2245a15e77b8fc06e languageName: node linkType: hard
23
streamlit
/content/streamlit_public_repos/streamlit/frontend/.prettierrc
{ "semi": false, "trailingComma": "es5", "arrowParens": "avoid" }
24
streamlit
/content/streamlit_public_repos/streamlit/frontend/vitest.config.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { coverageConfigDefaults, defineConfig } from "vitest/config" export default defineConfig({ test: { // Include all packages that have a vite.config.ts file projects: ["*/vite.config.ts"], // Global coverage configuration coverage: { provider: "v8", reporter: ["text-summary", "json-summary", "html"], include: ["*/src/**/*"], exclude: [ "lib/src/vendor/**", "**/*.interface.ts", ...coverageConfigDefaults.exclude, ], }, }, })
25
streamlit
/content/streamlit_public_repos/streamlit/frontend/eslint.config.mjs
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import path from "path" import { fileURLToPath } from "url" import { createJiti } from "jiti" // Core ESLint and plugins import eslint from "@eslint/js" import tseslint from "typescript-eslint" import react from "eslint-plugin-react" import reactHooks from "eslint-plugin-react-hooks" import eslintReact from "@eslint-react/eslint-plugin" import importPlugin from "eslint-plugin-import" import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended" import lodash from "eslint-plugin-lodash" import vitest from "@vitest/eslint-plugin" import testingLibrary from "eslint-plugin-testing-library" import noRelativeImportPaths from "eslint-plugin-no-relative-import-paths" import globals from "globals" import { defineConfig, globalIgnores } from "eslint/config" import jsxA11y from "eslint-plugin-jsx-a11y" // Import other configs // Note: Some configs may need to be applied differently in flat config const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(__filename) // This is to support our custom rules, which are written in TypeScript, // but need to be imported as JS to work in ESLint. const jiti = createJiti(import.meta.url) const streamlitCustom = await jiti.import( path.resolve(__dirname, "./eslint-plugin-streamlit-custom/src/index.ts"), { default: true } ) /** * Helper to create the no-restricted-imports rule config. * * @param {Object[]} additionalPatterns - Extra "patterns" to restrict (merged with the base rules). * @param {boolean} isTestFile - Whether to apply the relaxed rules for test files. */ export const getNoRestrictedImports = ( additionalPatterns = [], isTestFile = false ) => { const restrictedImportPaths = [ { name: "timezone-mock", message: "Please use the withTimezones test harness instead", }, { name: "@emotion/react", message: "Please use the useEmotionTheme hook instead of useTheme for type-safety", importNames: ["useTheme"], }, { name: "axios", importNames: ["CancelToken"], message: "Please use the `AbortController` API instead of `CancelToken`", }, ] const basePaths = isTestFile ? restrictedImportPaths : [ ...restrictedImportPaths, { name: "@streamlit/lib/testing", message: "Test utilities must stay in test files.", }, ] return [ "error", { paths: [...basePaths], patterns: [...additionalPatterns], }, ] } export default defineConfig([ // Base recommended configs eslint.configs.recommended, tseslint.configs.recommendedTypeChecked, reactHooks.configs.flat.recommended, eslintReact.configs["recommended-type-checked"], importPlugin.flatConfigs.recommended, eslintPluginPrettierRecommended, // Global configuration for all files { languageOptions: { ecmaVersion: 2018, sourceType: "module", parser: tseslint.parser, parserOptions: { projectService: true, tsconfigRootDir: __dirname, ecmaFeatures: { jsx: true, }, }, globals: { ...globals.browser, // Node.js globals for config files process: "readonly", Buffer: "readonly", __dirname: "readonly", __filename: "readonly", }, }, linterOptions: { reportUnusedDisableDirectives: true, }, }, // TypeScript files configuration { files: ["**/*.ts", "**/*.tsx"], plugins: { ...jsxA11y.flatConfigs.recommended.plugins, react, lodash, "no-relative-import-paths": noRelativeImportPaths, "streamlit-custom": streamlitCustom, }, rules: { "no-proto": "error", // Use `const` or `let` instead of `var` "no-var": "error", // Prevent unintentional use of `console.log` "no-console": "error", // Prevent unintentional use of `debugger` "no-debugger": "error", // We don't use PropTypes "react/prop-types": "off", // We don't escape entities "react/no-unescaped-entities": "off", // We do want to discourage the usage of flushSync "@eslint-react/dom/no-flush-sync": "error", // This was giving false positives "@eslint-react/no-unused-class-component-members": "off", // This was giving false positives "@eslint-react/naming-convention/use-state": "off", // Turning off for now until we have clearer guidance on how to fix existing usages "@eslint-react/hooks-extra/no-direct-set-state-in-use-effect": "off", // We don't want to warn about empty fragments "@eslint-react/no-useless-fragment": "off", // We want to enforce display names for context providers for better debugging "@eslint-react/no-missing-context-display-name": "error", // TypeScript rules with type-checking // We want to use these, but we have far too many instances of these rules // for it to be realistic right now. Over time, we should fix these. "@typescript-eslint/no-unsafe-argument": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/unbound-method": "off", // Some of these are being caught erroneously "@typescript-eslint/camelcase": "off", // Empty interfaces are ok "@typescript-eslint/no-empty-interface": "off", // Empty functions are ok "@typescript-eslint/no-empty-function": "off", // We prefer not using `any`, but don't disallow it "@typescript-eslint/explicit-module-boundary-types": "off", // Don't warn about unused function params "@typescript-eslint/no-unused-vars": [ "error", { vars: "all", args: "all", ignoreRestSiblings: false, argsIgnorePattern: "^_", }, ], // It's safe to use functions before they're defined "@typescript-eslint/no-use-before-define": [ "warn", { functions: false }, ], // Functions must have return types, but we allow inline function expressions to omit them "@typescript-eslint/explicit-function-return-type": [ "warn", { allowExpressions: true }, ], // Disallow the @ts-ignore directive in favor of the more strict @ts-expect-error. "@typescript-eslint/ban-ts-comment": [ "error", { "ts-expect-error": false, "ts-nocheck": false, "ts-check": false, "ts-ignore": true, }, ], // We want this on "@typescript-eslint/no-non-null-assertion": "error", // Prefer optional chaining over && chains "@typescript-eslint/prefer-optional-chain": "error", // Permit for-of loops "no-restricted-syntax": [ "error", "ForInStatement", "LabeledStatement", "WithStatement", { selector: "CallExpression[callee.name='withTheme']", message: "The use of withTheme HOC is not allowed for functional components. " + "Please use the useEmotionTheme hook instead.", }, ], "no-restricted-globals": [ "error", { name: "localStorage", message: "Please use window.localStorage instead since localStorage is not " + "supported in some browsers (e.g. Android WebView).", }, { name: "innerWidth", message: "Please use the `useWindowDimensionsContext` hook instead.", }, { name: "innerHeight", message: "Please use the `useWindowDimensionsContext` hook instead.", }, ], "no-restricted-properties": [ "error", { object: "window", property: "innerWidth", message: "Please use the `useWindowDimensionsContext` hook instead.", }, { object: "window", property: "innerHeight", message: "Please use the `useWindowDimensionsContext` hook instead.", }, { object: "navigator", property: "clipboard", message: "Please use the `useCopyToClipboard` hook instead.", }, ], // Imports should be `import "./FooModule"`, not `import "./FooModule.js"` // We need to configure this to check our .tsx files, see: // https://github.com/benmosher/eslint-plugin-import/issues/1615#issuecomment-577500405 "import/extensions": [ "error", "ignorePackages", { js: "never", jsx: "never", ts: "never", tsx: "never", }, ], "import/prefer-default-export": "off", "max-classes-per-file": "off", "no-shadow": "off", "no-param-reassign": "off", "no-plusplus": "off", "no-relative-import-paths/no-relative-import-paths": [ "error", { allowSameFolder: true, rootDir: "src", prefix: "src" }, ], "no-else-return": ["error", { allowElseIf: true }], "lodash/prefer-noop": "off", "lodash/prefer-constant": "off", "lodash/prefer-lodash-method": "off", "lodash/prefer-lodash-typecheck": "off", "lodash/prefer-get": "off", "lodash/prefer-includes": "off", "lodash/prefer-is-nil": "off", "lodash/prefer-matches": "off", "lodash/path-style": "off", "sort-imports": [ "error", { ignoreCase: true, ignoreDeclarationSort: true, }, ], "import/order": [ "error", { pathGroups: [ { pattern: "react", group: "external", position: "before", }, { pattern: "@streamlit/**", group: "internal", position: "before", }, { pattern: "~lib/**", group: "internal", position: "before", }, ], pathGroupsExcludedImportTypes: ["react"], groups: [ "external", "builtin", "internal", "parent", "sibling", "index", ], "newlines-between": "always", alphabetize: { order: "asc", caseInsensitive: true, }, }, ], "streamlit-custom/no-hardcoded-theme-values": "error", "streamlit-custom/use-strict-null-equality-checks": "error", // We only turn this rule on for certain directories "streamlit-custom/enforce-memo": "off", "streamlit-custom/no-force-reflow-access": "error", "no-restricted-imports": getNoRestrictedImports(), // React configuration "react/jsx-uses-react": "off", "react/react-in-jsx-scope": "off", // React hooks rules ...reactHooks.configs.flat.recommended.rules, // jsx-a11y rules ...jsxA11y.flatConfigs.recommended.rules, // prohibit autoFocus prop // https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules/no-autofocus.md "jsx-a11y/no-autofocus": ["error", { ignoreNonDOM: true }], }, settings: { react: { version: "detect", }, "import/resolver": { typescript: { // Use project service for import resolution as well project: path.resolve(__dirname, "./tsconfig.json"), }, }, }, }, // Test files specific configuration { files: ["**/*.test.ts", "**/*.test.tsx"], ...testingLibrary.configs["flat/react"], plugins: { ...testingLibrary.configs["flat/react"].plugins, "testing-library": testingLibrary, vitest, }, rules: { // Recommended vitest configuration to enforce good testing practices ...vitest.configs.recommended.rules, // Allow hardcoded styles in test files "streamlit-custom/no-hardcoded-theme-values": "off", // Allow force reflow access in test files "streamlit-custom/no-force-reflow-access": "off", // Testing library rules "testing-library/prefer-user-event": "error", "no-restricted-imports": getNoRestrictedImports([], true), }, }, // Theme files specific configuration { files: ["lib/src/theme/**/*"], rules: { // Allow hardcoded styles in theme definitions "streamlit-custom/no-hardcoded-theme-values": "off", }, }, // Elements and widgets components { files: ["**/components/elements/**/*", "**/components/widgets/**/*"], rules: { "streamlit-custom/enforce-memo": "error", }, }, // Styled components files { files: ["**/styled-components.ts", "**/styled-components.tsx"], rules: { // It is okay for Emotion to use template expressions with complex stringified types "@typescript-eslint/restrict-template-expressions": "off", }, }, // Globally ignored file/directory patterns globalIgnores([ "eslint.config.mjs", "app/eslint.config.mjs", "lib/src/proto.js", "lib/src/proto.d.ts", "**/vendor/*", "**/node_modules/*", "**/dist/*", "**/build/*", ]), ])
26
streamlit
/content/streamlit_public_repos/streamlit/frontend/AGENTS.md
# TypeScript Development Guide - TypeScript: v5 - Linter: eslint v9 - Formatter: prettier v3 - Framework: React v18 - Styling: @emotion/styled v11 - Build tool: vite v7 - Testing: vitest v3 & react testing library v16 - Package manager: yarn v4 with workspaces ## Key TypeScript Principles - Prefer functional, declarative programming. - Prefer iteration and modularization over duplication. - Use descriptive variable names with auxiliary verbs (e.g., isLoading). - Use the Receive an Object, Return an Object (RORO) pattern. - Ensure functions have explicit return types. - **Prefer optional chaining**: Use optional chaining (`?.`) instead of `&&` chains for property access. This is enforced by the `@typescript-eslint/prefer-optional-chain` rule. ## Key Frontend Principles - Leverage all of best practices of React 18. - Write performant frontend code. - Ensure referential stability by leveraging React Hooks. - Prefix event handlers with "handle" (e.g., handleClick, handleSubmit). - Favor leveraging @emotion/styled instead of inline styles. - Leverage object style notation in Emotion. - All styled components begin with the word `Styled` to indicate it's a styled component. - Utilize props in styled components to display elements that may have some interactivity. - Avoid the need to target other components. - When using BaseWeb, be sure to import our theme via `useEmotionTheme` and use those values in overrides. - Use the following pattern for naming custom CSS classes and test IDs: `stComponentSubcomponent`, for example: `stTextInputIcon`. - Avoid using pixel sizes for styling, always use rem, em, percentage, or other relative units. ## Static Data Structures - Extract static lookup maps and constants to module-level scope outside functions/components - Static data recreated on every call/render wastes memory and CPU - Exception: Keep inside function only if data depends on parameters, props, or state <good-example> ```tsx // ✅ Module-level - created once const ALIGNMENT_MAP: Record<Alignment, CSSProperties["textAlign"]> = { [Alignment.LEFT]: "left", [Alignment.CENTER]: "center", // ... } as const function getAlignment(config: AlignmentConfig) { return ALIGNMENT_MAP[config.alignment] } ``` </good-example> <bad-example> ```tsx // ❌ Recreated every call function getAlignment(config: AlignmentConfig) { const alignmentMap = { /* same data */ } return alignmentMap[config.alignment] } ``` </bad-example> ## Yarn Workspaces - Project Structure: Monorepo managed with Yarn Workspaces. - Packages: - `app` - Main application UI. - `connection` - WebSocket handling - `lib` - Shared UI components. - `utils` - Shared TypeScript utilities. - `protobuf` - Generated Protocol definitions. - `typescript-config` - Configuration for TypeScript. - `eslint-plugin-streamlit-custom` - ESLint plugin with custom rules. - Package-specific scripts are executed within their respective directories. ## Relevant `make` commands Run from the repo root: - `make frontend-fast`: Build the frontend (vite). - `make frontend-dev`: Start the frontend development server (hot-reload). - `make frontend-lint`: Lint and check formatting of frontend files (eslint). - `make frontend-types`: Run the TypeScript type checker (tsc). - `make frontend-format`: Format frontend files (eslint). - `make frontend-tests`: Run all frontend unit tests (vitest). ## TypeScript Test Guide - Test Framework: Vitest - UI Testing Library: React Testing Library (RTL) ### Key Principles - Coverage: Implement both unit and integration tests (using RTL where applicable). - Robustness: Test edge cases and error handling scenarios. - Accessibility: Validate component accessibility compliance. - Parameterized Tests: Use `it.each` for repeated tests with varying inputs. - Framework Exclusivity: Only use Vitest syntax; do not use Jest. ### Running Tests - Yarn test commands must be run from the `<GIT_ROOT>/frontend` directory. - Run All Tests: `yarn test` - Run Specific File: `yarn test lib/src/components/path/component.test.tsx` - Run Specific Test: `yarn test -t "the test name" lib/src/components/path/component.test.tsx` ### React Testing Library best practices Cheat sheet for queries from RTL: | | No Match | 1 Match | 1+ Match | Await? | | ---------- | -------- | ------- | -------- | ------ | | getBy | throw | return | throw | No | | findBy | throw | return | throw | Yes | | queryBy | null | return | throw | No | | getAllBy | throw | array | array | No | | findAllBy | throw | array | array | Yes | | queryAllBy | [] | array | array | No | - Utilizing any query that throws if not found AND asserting using `toBeInTheDocument` is redundant and must be avoided. Prefer `toBeVisible` instead. - User interactions should utilize the `userEvent` library. - Tests should be written in a way that asserts user behavior, not implementation details. #### Query Priority Order Based on the Guiding Principles, your test should resemble how users interact with your code (component, page, etc.) as much as possible. With this in mind, we recommend this order of priority: 1. Queries Accessible to Everyone Queries that reflect the experience of visual/mouse users as well as those that use assistive technology. - getByRole, getByLabelText, getByPlaceholderText, getByText, getByDisplayValue 2. Semantic Queries HTML5 and ARIA compliant selectors. Note that the user experience of interacting with these attributes varies greatly across browsers and assistive technology. - getByAltText, getByTitle 3. Test IDs - getByTestId - The user cannot see (or hear) these, so this is only recommended for cases where you can't match by role or text or it doesn't make sense (e.g. the text is dynamic). ## You Might Not Need an Effect Authoritative rules for deciding when to use or remove `useEffect` in React components. Based on React docs: [You Might Not Need an Effect](https://react.dev/learn/you-might-not-need-an-effect). ### Purpose - Write React that is simpler, faster, and less error‑prone by avoiding unnecessary Effects. - Prefer deriving values during render and handling actions in event handlers. - Only use Effects to synchronize with external systems. ### Core Principles (enforce by default) - Derive during render: If a value can be computed from props/state, compute it inline. Do NOT mirror it in state or set it in an Effect. - Events, not Effects: Handle user interactions in event handlers. Do NOT move event-driven logic into Effects. - Memoize expensive pure work: Use `useMemo` for heavy pure computations, not `useEffect` + state. - One responsibility per Effect: Each Effect should sync exactly one external concern. - Clean up or don’t ship: Any Effect that subscribes, starts timers, or allocates resources must return a cleanup. - Stable refs over re-subscribes: Keep subscriptions stable; avoid recreating on every render. ### When an Effect IS appropriate Use an Effect only to synchronize the component with an external system: - Subscriptions: event listeners, WebSocket, ResizeObserver, etc. Ensure cleanup. - Imperative APIs: integrating non-React widgets or DOM APIs. - Network sync: Keep local UI in sync with remote data for given parameters (with race handling and cleanup). - Scheduling/out-of-React side effects: analytics pings, imperative focus when tied to visibility. If no external system is involved, you likely don’t need an Effect. ### Anti-patterns to reject (rewrite required) - Setting derived state in an Effect (e.g., `setFullName(firstName + ' ' + lastName)`). Compute during render instead. - Filtering/sorting data via Effect + state. Compute during render; use `useMemo` only if the computation is expensive. - Using Effects to respond to user actions that can be handled in the event handler. - Chains of Effects where each triggers the next via `setState`. Compute the final value directly during render or perform the action in the initiating handler. - Missing cleanup for listeners, intervals, timeouts, blob URLs, or object URLs. - Data fetching without race protection (stale response can overwrite newer data). ### Rewrite patterns (preferred code) - Derived value during render: ```tsx // ❌ Avoid // const [fullName, setFullName] = useState("") // useEffect(() => setFullName(`${firstName} ${lastName}`), [firstName, lastName]) // ✅ Do const fullName = `${firstName} ${lastName}` ``` - Expensive pure computation: ```tsx // ❌ Effect + state // const [visibleTodos, setVisibleTodos] = useState<Todo[]>([]) // useEffect(() => setVisibleTodos(filterTodos(todos, filter)), [todos, filter]) // ✅ Render-time compute (useMemo only if slow) const visibleTodos = useMemo(() => filterTodos(todos, filter), [todos, filter]) ``` - Handle user action in the handler: ```tsx // ❌ useEffect that watches flag and then performs action // useEffect(() => { if (shouldBuy) buy() }, [shouldBuy]) // ✅ Directly do the work in response to the event function handleBuyClick() { void buy() } ``` - Data fetching with race protection and cleanup: ```tsx useEffect(() => { const abort = new AbortController() let ignore = false fetch(makeUrl(query, page), { signal: abort.signal }) .then(r => r.json()) .then(data => { if (!ignore) setResults(data) }) .catch(err => { if (!ignore && (err as any)?.name !== "AbortError") setError(err) }) return () => { ignore = true abort.abort() } }, [query, page]) ``` - Reset state without Effects: ```tsx // ✅ Keyed reset when parent prop changes ;<Child key={userId} userId={userId} /> // ✅ Set initial controlled values from props during render const initialTab = props.defaultTab ?? "overview" ``` ### Effect checklist (must pass all) 1. External sync: Does this Effect synchronize with an external system? If no, remove it. 2. Single responsibility: Exactly one external concern in this Effect. 3. Complete deps: Dependency array is complete and correct; avoid stale closures. 4. Cleanup: All listeners, timers, object URLs, and subscriptions are cleaned in the return function. 5. Race safety: For network requests, ignore/cancel stale responses (AbortController or an `ignore` flag). 6. Referential stability: Use `useCallback`/`useMemo` to prevent unnecessary effect re-runs caused by unstable references. 7. Error handling: Async paths have error handling; no silent failures. ### Decision guide - Can it be computed from existing state/props? Compute during render. - Is the logic triggered by a user event? Put it in the event handler. - Is it an expensive pure calculation? Use `useMemo` (not Effect) to cache. - Are you integrating with something outside React? Use an Effect with cleanup. - Are you fetching data tied to inputs/visibility? Use an Effect with race handling and cleanup. ### Review heuristics (quick scans) - Search for `useEffect` followed by immediate `setState` of values derivable from render inputs. - Effects that only read props/state and don’t touch external systems are candidates for removal. - Multiple Effects updating each other’s state in a chain indicate a missing render-time computation or misplaced event logic. - Effects creating event listeners/timers without `return` cleanup are bugs. ### Performance notes - Prefer render-time computation; add `useMemo` only for provably expensive pure work. - Avoid creating new objects/arrays inline in JSX props each render; memoize when it affects memoized children. - Keep dependency arrays minimal but complete. Split Effects if different concerns require different deps. ### Testing guidance (see [TypeScript Test Guide](#typescript-test-guide)) - Unit test render-time derivations directly (no Effects involved). - For Effects that fetch or subscribe, test cleanup and race handling (use fake timers/abort signals). - RTL: assert behavior and results, not internal hook usage. ### References - React docs: You Might Not Need an Effect — https://react.dev/learn/you-might-not-need-an-effect
27
streamlit
/content/streamlit_public_repos/streamlit/frontend/vitest.setup.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import * as polyfill from "polyfill-pseudoclass-has" import "vitest-canvas-mock" import { vi } from "vitest" import "@testing-library/jest-dom/vitest" // In the event a sub-library uses the jest global, we need to make sure it's // aliased to the vi global. An example is timers using dom testing library // which is used by the react testing library and waitFor. // (See https://github.com/testing-library/dom-testing-library/issues/987) global.jest = vi if (typeof window.URL.createObjectURL === "undefined") { window.URL.createObjectURL = vi.fn() } const originalConsoleWarn = console.warn console.warn = (...args) => { if (/`LayersManager` was not found./.test(args[0])) { // If the warning message matches, don't call the original console.warn return } // For all other warnings, call the original console.warn originalConsoleWarn(...args) } // Add fake animate method to Elements Element.prototype.animate = vi .fn() .mockImplementation(() => ({ addEventListener: vi.fn() })) global.ResizeObserver = vi.fn().mockImplementation(() => ({ observe: vi.fn(), unobserve: vi.fn(), disconnect: vi.fn(), })) process.env.TZ = "UTC"
28
streamlit
/content/streamlit_public_repos/streamlit/frontend/.prettierignore
vendor lib/src/proto.d.ts lib/src/proto.js
29
.yarn
/content/streamlit_public_repos/streamlit/frontend/.yarn/patches/@protobufjs-inquire-npm-1.1.0-3c7759e9ce.patch
diff --git a/index.js b/index.js index 33778b5539b7fcd7a1e99474a4ecb1745fdfe508..eb0d85bc854ffc3e228520d9be85341192f44f82 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,10 @@ module.exports = inquire; * @returns {?Object} Required module if available and not empty, otherwise `null` */ function inquire(moduleName) { + // This check ensures that the code below is only run in a non-browser environment. + if (typeof process === "undefined" && typeof document !== "undefined") { + return null; + } try { var mod = eval("quire".replace(/^/,"re"))(moduleName); // eslint-disable-line no-eval if (mod && (mod.length || Object.keys(mod).length))
30
plugins
/content/streamlit_public_repos/streamlit/frontend/.yarn/plugins/@yarnpkg/plugin-licenses.cjs
/* eslint-disable */ //prettier-ignore module.exports = { name: "@yarnpkg/plugin-licenses", factory: function (require) { "use strict";var plugin=(()=>{var ct=Object.create;var re=Object.defineProperty;var lt=Object.getOwnPropertyDescriptor;var ht=Object.getOwnPropertyNames;var dt=Object.getPrototypeOf,ft=Object.prototype.hasOwnProperty;var $=(i=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(i,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):i)(function(i){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+i+'" is not supported')});var te=(i,e)=>()=>(e||i((e={exports:{}}).exports,e),e.exports),oe=(i,e)=>{for(var t in e)re(i,t,{get:e[t],enumerable:!0})},Ee=(i,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of ht(e))!ft.call(i,n)&&n!==t&&re(i,n,{get:()=>e[n],enumerable:!(s=lt(e,n))||s.enumerable});return i};var pt=(i,e,t)=>(t=i!=null?ct(dt(i)):{},Ee(e||!i||!i.__esModule?re(t,"default",{value:i,enumerable:!0}):t,i)),ut=i=>Ee(re({},"__esModule",{value:!0}),i);var Ie=(i,e,t)=>{if(!e.has(i))throw TypeError("Cannot "+t)};var C=(i,e,t)=>(Ie(i,e,"read from private field"),t?t.call(i):e.get(i)),ae=(i,e,t)=>{if(e.has(i))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(i):e.set(i,t)};var x=(i,e,t)=>(Ie(i,e,"access private method"),t);var je=te((Yt,We)=>{var ie=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,mt=typeof AbortController=="function",ce=mt?AbortController:class{constructor(){this.signal=new Ce}abort(e=new Error("This operation was aborted")){this.signal.reason=this.signal.reason||e,this.signal.aborted=!0,this.signal.dispatchEvent({type:"abort",target:this.signal})}},gt=typeof AbortSignal=="function",wt=typeof ce.AbortSignal=="function",Ce=gt?AbortSignal:wt?ce.AbortController:class{constructor(){this.reason=void 0,this.aborted=!1,this._listeners=[]}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,this.onabort(e),this._listeners.forEach(t=>t(e),this))}onabort(){}addEventListener(e,t){e==="abort"&&this._listeners.push(t)}removeEventListener(e,t){e==="abort"&&(this._listeners=this._listeners.filter(s=>s!==t))}},ke=new Set,ye=(i,e)=>{let t=`LRU_CACHE_OPTION_${i}`;le(t)&&ve(t,`${i} option`,`options.${e}`,z)},be=(i,e)=>{let t=`LRU_CACHE_METHOD_${i}`;if(le(t)){let{prototype:s}=z,{get:n}=Object.getOwnPropertyDescriptor(s,i);ve(t,`${i} method`,`cache.${e}()`,n)}},yt=(i,e)=>{let t=`LRU_CACHE_PROPERTY_${i}`;if(le(t)){let{prototype:s}=z,{get:n}=Object.getOwnPropertyDescriptor(s,i);ve(t,`${i} property`,`cache.${e}`,n)}},Me=(...i)=>{typeof process=="object"&&process&&typeof process.emitWarning=="function"?process.emitWarning(...i):console.error(...i)},le=i=>!ke.has(i),ve=(i,e,t,s)=>{ke.add(i);let n=`The ${e} is deprecated. Please use ${t} instead.`;Me(n,"DeprecationWarning",i,s)},M=i=>i&&i===Math.floor(i)&&i>0&&isFinite(i),Ue=i=>M(i)?i<=Math.pow(2,8)?Uint8Array:i<=Math.pow(2,16)?Uint16Array:i<=Math.pow(2,32)?Uint32Array:i<=Number.MAX_SAFE_INTEGER?V:null:null,V=class extends Array{constructor(e){super(e),this.fill(0)}},$e=class{constructor(e){if(e===0)return[];let t=Ue(e);this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},z=class{constructor(e={}){let{max:t=0,ttl:s,ttlResolution:n=1,ttlAutopurge:r,updateAgeOnGet:o,updateAgeOnHas:a,allowStale:f,dispose:c,disposeAfter:l,noDisposeOnSet:g,noUpdateTTL:h,maxSize:p=0,maxEntrySize:y=0,sizeCalculation:d,fetchMethod:u,fetchContext:P,noDeleteOnFetchRejection:F,noDeleteOnStaleGet:k,allowStaleOnFetchRejection:b,allowStaleOnFetchAbort:D,ignoreFetchAbort:E}=e,{length:I,maxAge:R,stale:ee}=e instanceof z?{}:e;if(t!==0&&!M(t))throw new TypeError("max option must be a nonnegative integer");let ge=t?Ue(t):Array;if(!ge)throw new Error("invalid max value: "+t);if(this.max=t,this.maxSize=p,this.maxEntrySize=y||this.maxSize,this.sizeCalculation=d||I,this.sizeCalculation){if(!this.maxSize&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(this.fetchMethod=u||null,this.fetchMethod&&typeof this.fetchMethod!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.fetchContext=P,!this.fetchMethod&&P!==void 0)throw new TypeError("cannot set fetchContext without fetchMethod");if(this.keyMap=new Map,this.keyList=new Array(t).fill(null),this.valList=new Array(t).fill(null),this.next=new ge(t),this.prev=new ge(t),this.head=0,this.tail=0,this.free=new $e(t),this.initialFill=1,this.size=0,typeof c=="function"&&(this.dispose=c),typeof l=="function"?(this.disposeAfter=l,this.disposed=[]):(this.disposeAfter=null,this.disposed=null),this.noDisposeOnSet=!!g,this.noUpdateTTL=!!h,this.noDeleteOnFetchRejection=!!F,this.allowStaleOnFetchRejection=!!b,this.allowStaleOnFetchAbort=!!D,this.ignoreFetchAbort=!!E,this.maxEntrySize!==0){if(this.maxSize!==0&&!M(this.maxSize))throw new TypeError("maxSize must be a positive integer if specified");if(!M(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.initializeSizeTracking()}if(this.allowStale=!!f||!!ee,this.noDeleteOnStaleGet=!!k,this.updateAgeOnGet=!!o,this.updateAgeOnHas=!!a,this.ttlResolution=M(n)||n===0?n:1,this.ttlAutopurge=!!r,this.ttl=s||R||0,this.ttl){if(!M(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.initializeTTLTracking()}if(this.max===0&&this.ttl===0&&this.maxSize===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.max&&!this.maxSize){let we="LRU_CACHE_UNBOUNDED";le(we)&&(ke.add(we),Me("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",we,z))}ee&&ye("stale","allowStale"),R&&ye("maxAge","ttl"),I&&ye("length","sizeCalculation")}getRemainingTTL(e){return this.has(e,{updateAgeOnHas:!1})?1/0:0}initializeTTLTracking(){this.ttls=new V(this.max),this.starts=new V(this.max),this.setItemTTL=(s,n,r=ie.now())=>{if(this.starts[s]=n!==0?r:0,this.ttls[s]=n,n!==0&&this.ttlAutopurge){let o=setTimeout(()=>{this.isStale(s)&&this.delete(this.keyList[s])},n+1);o.unref&&o.unref()}},this.updateItemAge=s=>{this.starts[s]=this.ttls[s]!==0?ie.now():0},this.statusTTL=(s,n)=>{s&&(s.ttl=this.ttls[n],s.start=this.starts[n],s.now=e||t(),s.remainingTTL=s.now+s.ttl-s.start)};let e=0,t=()=>{let s=ie.now();if(this.ttlResolution>0){e=s;let n=setTimeout(()=>e=0,this.ttlResolution);n.unref&&n.unref()}return s};this.getRemainingTTL=s=>{let n=this.keyMap.get(s);return n===void 0?0:this.ttls[n]===0||this.starts[n]===0?1/0:this.starts[n]+this.ttls[n]-(e||t())},this.isStale=s=>this.ttls[s]!==0&&this.starts[s]!==0&&(e||t())-this.starts[s]>this.ttls[s]}updateItemAge(e){}statusTTL(e,t){}setItemTTL(e,t,s){}isStale(e){return!1}initializeSizeTracking(){this.calculatedSize=0,this.sizes=new V(this.max),this.removeItemSize=e=>{this.calculatedSize-=this.sizes[e],this.sizes[e]=0},this.requireSize=(e,t,s,n)=>{if(this.isBackgroundFetch(t))return 0;if(!M(s))if(n){if(typeof n!="function")throw new TypeError("sizeCalculation must be a function");if(s=n(t,e),!M(s))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return s},this.addItemSize=(e,t,s)=>{if(this.sizes[e]=t,this.maxSize){let n=this.maxSize-this.sizes[e];for(;this.calculatedSize>n;)this.evict(!0)}this.calculatedSize+=this.sizes[e],s&&(s.entrySize=t,s.totalCalculatedSize=this.calculatedSize)}}removeItemSize(e){}addItemSize(e,t){}requireSize(e,t,s,n){if(s||n)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache")}*indexes({allowStale:e=this.allowStale}={}){if(this.size)for(let t=this.tail;!(!this.isValidIndex(t)||((e||!this.isStale(t))&&(yield t),t===this.head));)t=this.prev[t]}*rindexes({allowStale:e=this.allowStale}={}){if(this.size)for(let t=this.head;!(!this.isValidIndex(t)||((e||!this.isStale(t))&&(yield t),t===this.tail));)t=this.next[t]}isValidIndex(e){return e!==void 0&&this.keyMap.get(this.keyList[e])===e}*entries(){for(let e of this.indexes())this.valList[e]!==void 0&&this.keyList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield[this.keyList[e],this.valList[e]])}*rentries(){for(let e of this.rindexes())this.valList[e]!==void 0&&this.keyList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield[this.keyList[e],this.valList[e]])}*keys(){for(let e of this.indexes())this.keyList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield this.keyList[e])}*rkeys(){for(let e of this.rindexes())this.keyList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield this.keyList[e])}*values(){for(let e of this.indexes())this.valList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield this.valList[e])}*rvalues(){for(let e of this.rindexes())this.valList[e]!==void 0&&!this.isBackgroundFetch(this.valList[e])&&(yield this.valList[e])}[Symbol.iterator](){return this.entries()}find(e,t){for(let s of this.indexes()){let n=this.valList[s],r=this.isBackgroundFetch(n)?n.__staleWhileFetching:n;if(r!==void 0&&e(r,this.keyList[s],this))return this.get(this.keyList[s],t)}}forEach(e,t=this){for(let s of this.indexes()){let n=this.valList[s],r=this.isBackgroundFetch(n)?n.__staleWhileFetching:n;r!==void 0&&e.call(t,r,this.keyList[s],this)}}rforEach(e,t=this){for(let s of this.rindexes()){let n=this.valList[s],r=this.isBackgroundFetch(n)?n.__staleWhileFetching:n;r!==void 0&&e.call(t,r,this.keyList[s],this)}}get prune(){return be("prune","purgeStale"),this.purgeStale}purgeStale(){let e=!1;for(let t of this.rindexes({allowStale:!0}))this.isStale(t)&&(this.delete(this.keyList[t]),e=!0);return e}dump(){let e=[];for(let t of this.indexes({allowStale:!0})){let s=this.keyList[t],n=this.valList[t],r=this.isBackgroundFetch(n)?n.__staleWhileFetching:n;if(r===void 0)continue;let o={value:r};if(this.ttls){o.ttl=this.ttls[t];let a=ie.now()-this.starts[t];o.start=Math.floor(Date.now()-a)}this.sizes&&(o.size=this.sizes[t]),e.unshift([s,o])}return e}load(e){this.clear();for(let[t,s]of e){if(s.start){let n=Date.now()-s.start;s.start=ie.now()-n}this.set(t,s.value,s)}}dispose(e,t,s){}set(e,t,{ttl:s=this.ttl,start:n,noDisposeOnSet:r=this.noDisposeOnSet,size:o=0,sizeCalculation:a=this.sizeCalculation,noUpdateTTL:f=this.noUpdateTTL,status:c}={}){if(o=this.requireSize(e,t,o,a),this.maxEntrySize&&o>this.maxEntrySize)return c&&(c.set="miss",c.maxEntrySizeExceeded=!0),this.delete(e),this;let l=this.size===0?void 0:this.keyMap.get(e);if(l===void 0)l=this.newIndex(),this.keyList[l]=e,this.valList[l]=t,this.keyMap.set(e,l),this.next[this.tail]=l,this.prev[l]=this.tail,this.tail=l,this.size++,this.addItemSize(l,o,c),c&&(c.set="add"),f=!1;else{this.moveToTail(l);let g=this.valList[l];if(t!==g){if(this.isBackgroundFetch(g)?g.__abortController.abort(new Error("replaced")):r||(this.dispose(g,e,"set"),this.disposeAfter&&this.disposed.push([g,e,"set"])),this.removeItemSize(l),this.valList[l]=t,this.addItemSize(l,o,c),c){c.set="replace";let h=g&&this.isBackgroundFetch(g)?g.__staleWhileFetching:g;h!==void 0&&(c.oldValue=h)}}else c&&(c.set="update")}if(s!==0&&this.ttl===0&&!this.ttls&&this.initializeTTLTracking(),f||this.setItemTTL(l,s,n),this.statusTTL(c,l),this.disposeAfter)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift());return this}newIndex(){return this.size===0?this.tail:this.size===this.max&&this.max!==0?this.evict(!1):this.free.length!==0?this.free.pop():this.initialFill++}pop(){if(this.size){let e=this.valList[this.head];return this.evict(!0),e}}evict(e){let t=this.head,s=this.keyList[t],n=this.valList[t];return this.isBackgroundFetch(n)?n.__abortController.abort(new Error("evicted")):(this.dispose(n,s,"evict"),this.disposeAfter&&this.disposed.push([n,s,"evict"])),this.removeItemSize(t),e&&(this.keyList[t]=null,this.valList[t]=null,this.free.push(t)),this.head=this.next[t],this.keyMap.delete(s),this.size--,t}has(e,{updateAgeOnHas:t=this.updateAgeOnHas,status:s}={}){let n=this.keyMap.get(e);if(n!==void 0)if(this.isStale(n))s&&(s.has="stale",this.statusTTL(s,n));else return t&&this.updateItemAge(n),s&&(s.has="hit"),this.statusTTL(s,n),!0;else s&&(s.has="miss");return!1}peek(e,{allowStale:t=this.allowStale}={}){let s=this.keyMap.get(e);if(s!==void 0&&(t||!this.isStale(s))){let n=this.valList[s];return this.isBackgroundFetch(n)?n.__staleWhileFetching:n}}backgroundFetch(e,t,s,n){let r=t===void 0?void 0:this.valList[t];if(this.isBackgroundFetch(r))return r;let o=new ce;s.signal&&s.signal.addEventListener("abort",()=>o.abort(s.signal.reason));let a={signal:o.signal,options:s,context:n},f=(p,y=!1)=>{let{aborted:d}=o.signal,u=s.ignoreFetchAbort&&p!==void 0;return s.status&&(d&&!y?(s.status.fetchAborted=!0,s.status.fetchError=o.signal.reason,u&&(s.status.fetchAbortIgnored=!0)):s.status.fetchResolved=!0),d&&!u&&!y?l(o.signal.reason):(this.valList[t]===h&&(p===void 0?h.__staleWhileFetching?this.valList[t]=h.__staleWhileFetching:this.delete(e):(s.status&&(s.status.fetchUpdated=!0),this.set(e,p,a.options))),p)},c=p=>(s.status&&(s.status.fetchRejected=!0,s.status.fetchError=p),l(p)),l=p=>{let{aborted:y}=o.signal,d=y&&s.allowStaleOnFetchAbort,u=d||s.allowStaleOnFetchRejection,P=u||s.noDeleteOnFetchRejection;if(this.valList[t]===h&&(!P||h.__staleWhileFetching===void 0?this.delete(e):d||(this.valList[t]=h.__staleWhileFetching)),u)return s.status&&h.__staleWhileFetching!==void 0&&(s.status.returnedStale=!0),h.__staleWhileFetching;if(h.__returned===h)throw p},g=(p,y)=>{this.fetchMethod(e,r,a).then(d=>p(d),y),o.signal.addEventListener("abort",()=>{(!s.ignoreFetchAbort||s.allowStaleOnFetchAbort)&&(p(),s.allowStaleOnFetchAbort&&(p=d=>f(d,!0)))})};s.status&&(s.status.fetchDispatched=!0);let h=new Promise(g).then(f,c);return h.__abortController=o,h.__staleWhileFetching=r,h.__returned=null,t===void 0?(this.set(e,h,{...a.options,status:void 0}),t=this.keyMap.get(e)):this.valList[t]=h,h}isBackgroundFetch(e){return e&&typeof e=="object"&&typeof e.then=="function"&&Object.prototype.hasOwnProperty.call(e,"__staleWhileFetching")&&Object.prototype.hasOwnProperty.call(e,"__returned")&&(e.__returned===e||e.__returned===null)}async fetch(e,{allowStale:t=this.allowStale,updateAgeOnGet:s=this.updateAgeOnGet,noDeleteOnStaleGet:n=this.noDeleteOnStaleGet,ttl:r=this.ttl,noDisposeOnSet:o=this.noDisposeOnSet,size:a=0,sizeCalculation:f=this.sizeCalculation,noUpdateTTL:c=this.noUpdateTTL,noDeleteOnFetchRejection:l=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:g=this.allowStaleOnFetchRejection,ignoreFetchAbort:h=this.ignoreFetchAbort,allowStaleOnFetchAbort:p=this.allowStaleOnFetchAbort,fetchContext:y=this.fetchContext,forceRefresh:d=!1,status:u,signal:P}={}){if(!this.fetchMethod)return u&&(u.fetch="get"),this.get(e,{allowStale:t,updateAgeOnGet:s,noDeleteOnStaleGet:n,status:u});let F={allowStale:t,updateAgeOnGet:s,noDeleteOnStaleGet:n,ttl:r,noDisposeOnSet:o,size:a,sizeCalculation:f,noUpdateTTL:c,noDeleteOnFetchRejection:l,allowStaleOnFetchRejection:g,allowStaleOnFetchAbort:p,ignoreFetchAbort:h,status:u,signal:P},k=this.keyMap.get(e);if(k===void 0){u&&(u.fetch="miss");let b=this.backgroundFetch(e,k,F,y);return b.__returned=b}else{let b=this.valList[k];if(this.isBackgroundFetch(b)){let ee=t&&b.__staleWhileFetching!==void 0;return u&&(u.fetch="inflight",ee&&(u.returnedStale=!0)),ee?b.__staleWhileFetching:b.__returned=b}let D=this.isStale(k);if(!d&&!D)return u&&(u.fetch="hit"),this.moveToTail(k),s&&this.updateItemAge(k),this.statusTTL(u,k),b;let E=this.backgroundFetch(e,k,F,y),I=E.__staleWhileFetching!==void 0,R=I&&t;return u&&(u.fetch=I&&D?"stale":"refresh",R&&D&&(u.returnedStale=!0)),R?E.__staleWhileFetching:E.__returned=E}}get(e,{allowStale:t=this.allowStale,updateAgeOnGet:s=this.updateAgeOnGet,noDeleteOnStaleGet:n=this.noDeleteOnStaleGet,status:r}={}){let o=this.keyMap.get(e);if(o!==void 0){let a=this.valList[o],f=this.isBackgroundFetch(a);return this.statusTTL(r,o),this.isStale(o)?(r&&(r.get="stale"),f?(r&&(r.returnedStale=t&&a.__staleWhileFetching!==void 0),t?a.__staleWhileFetching:void 0):(n||this.delete(e),r&&(r.returnedStale=t),t?a:void 0)):(r&&(r.get="hit"),f?a.__staleWhileFetching:(this.moveToTail(o),s&&this.updateItemAge(o),a))}else r&&(r.get="miss")}connect(e,t){this.prev[t]=e,this.next[e]=t}moveToTail(e){e!==this.tail&&(e===this.head?this.head=this.next[e]:this.connect(this.prev[e],this.next[e]),this.connect(this.tail,e),this.tail=e)}get del(){return be("del","delete"),this.delete}delete(e){let t=!1;if(this.size!==0){let s=this.keyMap.get(e);if(s!==void 0)if(t=!0,this.size===1)this.clear();else{this.removeItemSize(s);let n=this.valList[s];this.isBackgroundFetch(n)?n.__abortController.abort(new Error("deleted")):(this.dispose(n,e,"delete"),this.disposeAfter&&this.disposed.push([n,e,"delete"])),this.keyMap.delete(e),this.keyList[s]=null,this.valList[s]=null,s===this.tail?this.tail=this.prev[s]:s===this.head?this.head=this.next[s]:(this.next[this.prev[s]]=this.next[s],this.prev[this.next[s]]=this.prev[s]),this.size--,this.free.push(s)}}if(this.disposed)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift());return t}clear(){for(let e of this.rindexes({allowStale:!0})){let t=this.valList[e];if(this.isBackgroundFetch(t))t.__abortController.abort(new Error("deleted"));else{let s=this.keyList[e];this.dispose(t,s,"delete"),this.disposeAfter&&this.disposed.push([t,s,"delete"])}}if(this.keyMap.clear(),this.valList.fill(null),this.keyList.fill(null),this.ttls&&(this.ttls.fill(0),this.starts.fill(0)),this.sizes&&this.sizes.fill(0),this.head=0,this.tail=0,this.initialFill=1,this.free.length=0,this.calculatedSize=0,this.size=0,this.disposed)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift())}get reset(){return be("reset","clear"),this.clear}get length(){return yt("length","size"),this.size}static get AbortController(){return ce}static get AbortSignal(){return Ce}};We.exports=z});var Ne=te((Gt,Re)=>{"use strict";var m=(...i)=>i.every(e=>e)?i.join(""):"",v=i=>i?encodeURIComponent(i):"",De=i=>i.toLowerCase().replace(/^\W+|\/|\W+$/g,"").replace(/\W+/g,"-"),bt={sshtemplate:({domain:i,user:e,project:t,committish:s})=>`git@${i}:${e}/${t}.git${m("#",s)}`,sshurltemplate:({domain:i,user:e,project:t,committish:s})=>`git+ssh://git@${i}/${e}/${t}.git${m("#",s)}`,edittemplate:({domain:i,user:e,project:t,committish:s,editpath:n,path:r})=>`https://${i}/${e}/${t}${m("/",n,"/",v(s||"HEAD"),"/",r)}`,browsetemplate:({domain:i,user:e,project:t,committish:s,treepath:n})=>`https://${i}/${e}/${t}${m("/",n,"/",v(s))}`,browsetreetemplate:({domain:i,user:e,project:t,committish:s,treepath:n,path:r,fragment:o,hashformat:a})=>`https://${i}/${e}/${t}/${n}/${v(s||"HEAD")}/${r}${m("#",a(o||""))}`,browseblobtemplate:({domain:i,user:e,project:t,committish:s,blobpath:n,path:r,fragment:o,hashformat:a})=>`https://${i}/${e}/${t}/${n}/${v(s||"HEAD")}/${r}${m("#",a(o||""))}`,docstemplate:({domain:i,user:e,project:t,treepath:s,committish:n})=>`https://${i}/${e}/${t}${m("/",s,"/",v(n))}#readme`,httpstemplate:({auth:i,domain:e,user:t,project:s,committish:n})=>`git+https://${m(i,"@")}${e}/${t}/${s}.git${m("#",n)}`,filetemplate:({domain:i,user:e,project:t,committish:s,path:n})=>`https://${i}/${e}/${t}/raw/${v(s||"HEAD")}/${n}`,shortcuttemplate:({type:i,user:e,project:t,committish:s})=>`${i}:${e}/${t}${m("#",s)}`,pathtemplate:({user:i,project:e,committish:t})=>`${i}/${e}${m("#",t)}`,bugstemplate:({domain:i,user:e,project:t})=>`https://${i}/${e}/${t}/issues`,hashformat:De},U={};U.github={protocols:["git:","http:","git+ssh:","git+https:","ssh:","https:"],domain:"github.com",treepath:"tree",blobpath:"blob",editpath:"edit",filetemplate:({auth:i,user:e,project:t,committish:s,path:n})=>`https://${m(i,"@")}raw.githubusercontent.com/${e}/${t}/${v(s||"HEAD")}/${n}`,gittemplate:({auth:i,domain:e,user:t,project:s,committish:n})=>`git://${m(i,"@")}${e}/${t}/${s}.git${m("#",n)}`,tarballtemplate:({domain:i,user:e,project:t,committish:s})=>`https://codeload.${i}/${e}/${t}/tar.gz/${v(s||"HEAD")}`,extract:i=>{let[,e,t,s,n]=i.pathname.split("/",5);if(!(s&&s!=="tree")&&(s||(n=i.hash.slice(1)),t&&t.endsWith(".git")&&(t=t.slice(0,-4)),!(!e||!t)))return{user:e,project:t,committish:n}}};U.bitbucket={protocols:["git+ssh:","git+https:","ssh:","https:"],domain:"bitbucket.org",treepath:"src",blobpath:"src",editpath:"?mode=edit",edittemplate:({domain:i,user:e,project:t,committish:s,treepath:n,path:r,editpath:o})=>`https://${i}/${e}/${t}${m("/",n,"/",v(s||"HEAD"),"/",r,o)}`,tarballtemplate:({domain:i,user:e,project:t,committish:s})=>`https://${i}/${e}/${t}/get/${v(s||"HEAD")}.tar.gz`,extract:i=>{let[,e,t,s]=i.pathname.split("/",4);if(!["get"].includes(s)&&(t&&t.endsWith(".git")&&(t=t.slice(0,-4)),!(!e||!t)))return{user:e,project:t,committish:i.hash.slice(1)}}};U.gitlab={protocols:["git+ssh:","git+https:","ssh:","https:"],domain:"gitlab.com",treepath:"tree",blobpath:"tree",editpath:"-/edit",httpstemplate:({auth:i,domain:e,user:t,project:s,committish:n})=>`git+https://${m(i,"@")}${e}/${t}/${s}.git${m("#",n)}`,tarballtemplate:({domain:i,user:e,project:t,committish:s})=>`https://${i}/${e}/${t}/repository/archive.tar.gz?ref=${v(s||"HEAD")}`,extract:i=>{let e=i.pathname.slice(1);if(e.includes("/-/")||e.includes("/archive.tar.gz"))return;let t=e.split("/"),s=t.pop();s.endsWith(".git")&&(s=s.slice(0,-4));let n=t.join("/");if(!(!n||!s))return{user:n,project:s,committish:i.hash.slice(1)}}};U.gist={protocols:["git:","git+ssh:","git+https:","ssh:","https:"],domain:"gist.github.com",editpath:"edit",sshtemplate:({domain:i,project:e,committish:t})=>`git@${i}:${e}.git${m("#",t)}`,sshurltemplate:({domain:i,project:e,committish:t})=>`git+ssh://git@${i}/${e}.git${m("#",t)}`,edittemplate:({domain:i,user:e,project:t,committish:s,editpath:n})=>`https://${i}/${e}/${t}${m("/",v(s))}/${n}`,browsetemplate:({domain:i,project:e,committish:t})=>`https://${i}/${e}${m("/",v(t))}`,browsetreetemplate:({domain:i,project:e,committish:t,path:s,hashformat:n})=>`https://${i}/${e}${m("/",v(t))}${m("#",n(s))}`,browseblobtemplate:({domain:i,project:e,committish:t,path:s,hashformat:n})=>`https://${i}/${e}${m("/",v(t))}${m("#",n(s))}`,docstemplate:({domain:i,project:e,committish:t})=>`https://${i}/${e}${m("/",v(t))}`,httpstemplate:({domain:i,project:e,committish:t})=>`git+https://${i}/${e}.git${m("#",t)}`,filetemplate:({user:i,project:e,committish:t,path:s})=>`https://gist.githubusercontent.com/${i}/${e}/raw${m("/",v(t))}/${s}`,shortcuttemplate:({type:i,project:e,committish:t})=>`${i}:${e}${m("#",t)}`,pathtemplate:({project:i,committish:e})=>`${i}${m("#",e)}`,bugstemplate:({domain:i,project:e})=>`https://${i}/${e}`,gittemplate:({domain:i,project:e,committish:t})=>`git://${i}/${e}.git${m("#",t)}`,tarballtemplate:({project:i,committish:e})=>`https://codeload.github.com/gist/${i}/tar.gz/${v(e||"HEAD")}`,extract:i=>{let[,e,t,s]=i.pathname.split("/",4);if(s!=="raw"){if(!t){if(!e)return;t=e,e=null}return t.endsWith(".git")&&(t=t.slice(0,-4)),{user:e,project:t,committish:i.hash.slice(1)}}},hashformat:function(i){return i&&"file-"+De(i)}};U.sourcehut={protocols:["git+ssh:","https:"],domain:"git.sr.ht",treepath:"tree",blobpath:"tree",filetemplate:({domain:i,user:e,project:t,committish:s,path:n})=>`https://${i}/${e}/${t}/blob/${v(s)||"HEAD"}/${n}`,httpstemplate:({domain:i,user:e,project:t,committish:s})=>`https://${i}/${e}/${t}.git${m("#",s)}`,tarballtemplate:({domain:i,user:e,project:t,committish:s})=>`https://${i}/${e}/${t}/archive/${v(s)||"HEAD"}.tar.gz`,bugstemplate:({user:i,project:e})=>`https://todo.sr.ht/${i}/${e}`,extract:i=>{let[,e,t,s]=i.pathname.split("/",4);if(!["archive"].includes(s)&&(t&&t.endsWith(".git")&&(t=t.slice(0,-4)),!(!e||!t)))return{user:e,project:t,committish:i.hash.slice(1)}}};for(let[i,e]of Object.entries(U))U[i]=Object.assign({},bt,e);Re.exports=U});var xe=te((Jt,Be)=>{var $t=$("url"),Se=(i,e,t)=>{let s=i.indexOf(t);return i.lastIndexOf(e,s>-1?s:1/0)},He=i=>{try{return new $t.URL(i)}catch{}},kt=(i,e)=>{let t=i.indexOf(":"),s=i.slice(0,t+1);if(Object.prototype.hasOwnProperty.call(e,s))return i;let n=i.indexOf("@");return n>-1?n>t?`git+ssh://${i}`:i:i.indexOf("//")===t+1?i:`${i.slice(0,t+1)}//${i.slice(t+1)}`},vt=i=>{let e=Se(i,"@","#"),t=Se(i,":","#");return t>e&&(i=i.slice(0,t)+"/"+i.slice(t+1)),Se(i,":","#")===-1&&i.indexOf("//")===-1&&(i=`git+ssh://${i}`),i};Be.exports=(i,e)=>{let t=e?kt(i,e):i;return He(t)||He(vt(t))}});var qe=te((Kt,Ve)=>{"use strict";var St=xe(),xt=i=>{let e=i.indexOf("#"),t=i.indexOf("/"),s=i.indexOf("/",t+1),n=i.indexOf(":"),r=/\s/.exec(i),o=i.indexOf("@"),a=!r||e>-1&&r.index>e,f=o===-1||e>-1&&o>e,c=n===-1||e>-1&&n>e,l=s===-1||e>-1&&s>e,g=t>0,h=e>-1?i[e-1]!=="/":!i.endsWith("/"),p=!i.startsWith(".");return a&&g&&h&&p&&f&&c&&l};Ve.exports=(i,e,{gitHosts:t,protocols:s})=>{if(!i)return;let n=xt(i)?`github:${i}`:i,r=St(n,s);if(!r)return;let o=t.byShortcut[r.protocol],a=t.byDomain[r.hostname.startsWith("www.")?r.hostname.slice(4):r.hostname],f=o||a;if(!f)return;let c=t[o||a],l=null;s[r.protocol]?.auth&&(r.username||r.password)&&(l=`${r.username}${r.password?":"+r.password:""}`);let g=null,h=null,p=null,y=null;try{if(o){let d=r.pathname.startsWith("/")?r.pathname.slice(1):r.pathname,u=d.indexOf("@");u>-1&&(d=d.slice(u+1));let P=d.lastIndexOf("/");P>-1?(h=decodeURIComponent(d.slice(0,P)),h||(h=null),p=decodeURIComponent(d.slice(P+1))):p=decodeURIComponent(d),p.endsWith(".git")&&(p=p.slice(0,-4)),r.hash&&(g=decodeURIComponent(r.hash.slice(1))),y="shortcut"}else{if(!c.protocols.includes(r.protocol))return;let d=c.extract(r);if(!d)return;h=d.user&&decodeURIComponent(d.user),p=decodeURIComponent(d.project),g=decodeURIComponent(d.committish),y=s[r.protocol]?.name||r.protocol.slice(0,-1)}}catch(d){if(d instanceof URIError)return;throw d}return[f,h,l,p,g,y,e]}});var Ge=te((Xt,Ye)=>{"use strict";var Lt=je(),Pt=Ne(),Tt=qe(),At=xe(),Le=new Lt({max:1e3}),W,se,S,L,_=class{constructor(e,t,s,n,r,o,a={}){ae(this,S);Object.assign(this,C(_,W)[e],{type:e,user:t,auth:s,project:n,committish:r,default:o,opts:a})}static addHost(e,t){C(_,W)[e]=t,C(_,W).byDomain[t.domain]=e,C(_,W).byShortcut[`${e}:`]=e,C(_,se)[`${e}:`]={name:e}}static fromUrl(e,t){if(typeof e!="string")return;let s=e+JSON.stringify(t||{});if(!Le.has(s)){let n=Tt(e,t,{gitHosts:C(_,W),protocols:C(_,se)});Le.set(s,n?new _(...n):void 0)}return Le.get(s)}static parseUrl(e){return At(e)}hash(){return this.committish?`#${this.committish}`:""}ssh(e){return x(this,S,L).call(this,this.sshtemplate,e)}sshurl(e){return x(this,S,L).call(this,this.sshurltemplate,e)}browse(e,...t){return typeof e!="string"?x(this,S,L).call(this,this.browsetemplate,e):typeof t[0]!="string"?x(this,S,L).call(this,this.browsetreetemplate,{...t[0],path:e}):x(this,S,L).call(this,this.browsetreetemplate,{...t[1],fragment:t[0],path:e})}browseFile(e,...t){return typeof t[0]!="string"?x(this,S,L).call(this,this.browseblobtemplate,{...t[0],path:e}):x(this,S,L).call(this,this.browseblobtemplate,{...t[1],fragment:t[0],path:e})}docs(e){return x(this,S,L).call(this,this.docstemplate,e)}bugs(e){return x(this,S,L).call(this,this.bugstemplate,e)}https(e){return x(this,S,L).call(this,this.httpstemplate,e)}git(e){return x(this,S,L).call(this,this.gittemplate,e)}shortcut(e){return x(this,S,L).call(this,this.shortcuttemplate,e)}path(e){return x(this,S,L).call(this,this.pathtemplate,e)}tarball(e){return x(this,S,L).call(this,this.tarballtemplate,{...e,noCommittish:!1})}file(e,t){return x(this,S,L).call(this,this.filetemplate,{...t,path:e})}edit(e,t){return x(this,S,L).call(this,this.edittemplate,{...t,path:e})}getDefaultRepresentation(){return this.default}toString(e){return this.default&&typeof this[this.default]=="function"?this[this.default](e):this.sshurl(e)}},q=_;W=new WeakMap,se=new WeakMap,S=new WeakSet,L=function(e,t){if(typeof e!="function")return null;let s={...this,...this.opts,...t};s.path||(s.path=""),s.path.startsWith("/")&&(s.path=s.path.slice(1)),s.noCommittish&&(s.committish=null);let n=e(s);return s.noGitPlus&&n.startsWith("git+")?n.slice(4):n},ae(q,W,{byShortcut:{},byDomain:{}}),ae(q,se,{"git+ssh:":{name:"sshurl"},"ssh:":{name:"sshurl"},"git+https:":{name:"https",auth:!0},"git:":{auth:!0},"http:":{auth:!0},"https:":{auth:!0},"git+http:":{auth:!0}});for(let[i,e]of Object.entries(Pt))q.addHost(i,e);Ye.exports=q});var Nt={};oe(Nt,{default:()=>Rt});var rt=$("@yarnpkg/cli"),K=$("@yarnpkg/core"),O=$("clipanion");var w=$("@yarnpkg/core"),T=$("@yarnpkg/fslib"),et=pt(Ge());var Ae={};oe(Ae,{getFs:()=>zt,getPackagePath:()=>Ft});var Je=$("@yarnpkg/plugin-pnp"),he=$("@yarnpkg/core"),Ke=$("@yarnpkg/fslib"),de=$("@yarnpkg/libzip");var Y=()=>({os:[process.platform],cpu:[process.arch],libc:[]});var Ft=async(i,e)=>{if(_t(i),!he.structUtils.isPackageCompatible(e,Y()))return null;let t=he.structUtils.convertPackageToLocator(e),s={name:he.structUtils.stringifyIdent(t),reference:t.reference},n=Pe.getPackageInformation(s);if(!n)return null;let{packageLocation:r}=n;return r},Pe,_t=i=>{Pe||(Pe=module.require((0,Je.getPnpPath)(i).cjs))},zt=()=>(Ot(),Te),Te,Ot=()=>{Te||(Te=new Ke.VirtualFS({baseFs:new de.ZipOpenFS({libzip:(0,de.getLibzipSync)(),readOnlyArchives:!0})}))};var Fe={};oe(Fe,{_getYarnStateAliases:()=>Ze,getFs:()=>Ct,getPackagePath:()=>Et});var N=$("@yarnpkg/core"),Xe=$("@yarnpkg/parsers"),j=$("@yarnpkg/fslib");var Et=async(i,e)=>{if(await It(i),!N.structUtils.isPackageCompatible(e,Y()))return null;let t=N.structUtils.convertPackageToLocator(e),s=N.structUtils.stringifyLocator(t),n=fe[s]||Qe[s];if(!n)return null;let r=n.locations[0];return r?j.ppath.join(i.cwd,r):i.cwd},fe,Qe,It=async i=>{if(!fe){let e=j.ppath.join(i.configuration.projectCwd,j.Filename.nodeModules,".yarn-state.yml");fe=(0,Xe.parseSyml)(await j.xfs.readFilePromise(e,"utf8")),Qe=Ze(fe)}},Ct=()=>j.xfs,Ze=i=>Object.entries(i).reduce((e,[t,s])=>{if(!s.aliases)return e;let n=N.structUtils.parseLocator(t);for(let r of s.aliases){let o=N.structUtils.makeLocator(n,r),a=N.structUtils.stringifyLocator(o);e[a]=s}return e},{});var _e={};oe(_e,{getFs:()=>Ut,getPackagePath:()=>Mt});var ne=$("@yarnpkg/core"),H=$("@yarnpkg/fslib");var Mt=async(i,e)=>{if(!ne.structUtils.isPackageCompatible(e,Y()))return null;let t=ne.structUtils.convertPackageToLocator(e),s=ne.structUtils.slugifyLocator(t),n=ne.structUtils.stringifyIdent(t),r=i.tryWorkspaceByLocator(t);return r?r.cwd:H.ppath.join(i.configuration.projectCwd,H.Filename.nodeModules,".store",s,H.Filename.nodeModules,n)},Ut=()=>H.xfs;var ze=i=>{switch(i){case"pnp":return Ae;case"node-modules":return Fe;case"pnpm":return _e;default:throw new Error("Unsupported linker")}};var ki=T.npath.basename(__dirname)==="@yarnpkg"?T.ppath.join(T.npath.toPortablePath(__dirname),"../.."):T.ppath.join(T.npath.toPortablePath(__dirname),".."),ue=async(i,e,t,s,n)=>{let r={},o={children:r},a=await tt(i,t,s),f=ze(i.configuration.get("nodeLinker")),c=f.getFs();for(let[l,g]of a.entries()){let h=await f.getPackagePath(i,g);if(h===null)continue;let p=JSON.parse(await c.readFilePromise(T.ppath.join(h,T.Filename.manifest),"utf8")),{license:y,url:d,vendorName:u,vendorUrl:P}=jt(p);r[y]||(r[y]={value:w.formatUtils.tuple(w.formatUtils.Type.NO_HINT,y),children:{}});let F=w.structUtils.convertPackageToLocator(g),k=w.formatUtils.tuple(w.formatUtils.Type.DEPENDENT,{locator:F,descriptor:l}),b=n?{}:{...d?{url:{value:w.formatUtils.tuple(w.formatUtils.Type.NO_HINT,Oe("URL",d,e))}}:{},...u?{vendorName:{value:w.formatUtils.tuple(w.formatUtils.Type.NO_HINT,Oe("VendorName",u,e))}}:{},...P?{vendorUrl:{value:w.formatUtils.tuple(w.formatUtils.Type.NO_HINT,Oe("VendorUrl",P,e))}}:{}},D={value:k,children:b},E=w.structUtils.stringifyLocator(F),I=r[y];if(I){let R=I.children;R[E]=D}}return o},tt=async(i,e,t)=>{let s=new Map,n;if(e){if(t){for(let f of i.workspaces)f.manifest.devDependencies.clear();let a=await w.Cache.find(i.configuration);await i.resolveEverything({report:new w.ThrowReport,cache:a})}n=i.storedDescriptors.values()}else n=i.workspaces.flatMap(a=>{let f=[a.anchoredDescriptor];for(let[c,l]of a.anchoredPackage.dependencies.entries())t&&a.manifest.devDependencies.has(c)||f.push(l);return f});let r=w.miscUtils.sortMap(n,[a=>w.structUtils.stringifyIdent(a),a=>w.structUtils.isVirtualDescriptor(a)?"0":"1",a=>a.range]),o=new Set;for(let a of r.values()){let f=i.storedResolutions.get(a.descriptorHash);if(!f)continue;let c=i.storedPackages.get(f);if(!c)continue;let{descriptorHash:l}=w.structUtils.isVirtualDescriptor(a)?w.structUtils.devirtualizeDescriptor(a):a;o.has(l)||(o.add(l),s.set(a,c))}return s},G=async(i,e,t,s)=>{if(!e.length)return;let n=new Set(e.map(o=>i.getWorkspaceByIdent(w.structUtils.parseIdent(o))));if(t)for(let o of n)for(let a of s?["dependencies"]:w.Manifest.hardDependencies)for(let f of o.manifest.getForScope(a).values()){let c=i.tryWorkspaceByDescriptor(f);c!==null&&n.add(c)}for(let o of i.workspaces)n.has(o)||(o.manifest.installConfig=o.manifest.installConfig||{},o.manifest.installConfig.selfReferences=!1,o.manifest.dependencies.clear(),o.manifest.devDependencies.clear(),o.manifest.peerDependencies.clear());i.workspaces=[...n];let r=await w.Cache.find(i.configuration);await i.resolveEverything({report:new w.ThrowReport,cache:r})};function Wt(i){let e={},t=i.match(/^([^(<]+)/);if(t){let r=t[0].trim();r&&(e.name=r)}let s=i.match(/<([^>]+)>/);s&&(e.email=s[1]);let n=i.match(/\(([^)]+)\)/);return n&&(e.url=n[1]),e}var jt=i=>{let{license:e,licenses:t,repository:s,homepage:n,author:r}=i,o=typeof r=="string"?Wt(r):r;return{license:(()=>{if(e)return pe(e);if(t){if(!Array.isArray(t))return pe(t);if(t.length===1)return pe(t[0]);if(t.length>1)return`(${t.map(pe).join(" OR ")})`}return it})(),url:st(s)||n,vendorName:o?.name,vendorUrl:n||o?.url}},it="UNKNOWN",pe=i=>(typeof i!="string"?i.type:i)||it,st=i=>{let e=typeof i=="string"?i:i?.url;if(!e)return e;let t=et.fromUrl(e);return!t||t.getDefaultRepresentation()!=="shortcut"?e:t.https()},Oe=(i,e,t)=>t?e:`${i}: ${e}`,nt=async(i,e,t)=>{let s=await tt(i,e,t),n=ze(i.configuration.get("nodeLinker")),r=n.getFs(),o=new Map;for(let f of s.values()){let c=await n.getPackagePath(i,f);if(c===null)continue;let l=JSON.parse(await r.readFilePromise(T.ppath.join(c,T.Filename.manifest),"utf8")),h=(await r.readdirPromise(c,{withFileTypes:!0})).filter(k=>k.isFile()).map(({name:k})=>k),p=h.find(k=>{let b=k.toLowerCase();return b==="license"||b.startsWith("license.")||b==="unlicense"||b.startsWith("unlicense.")});if(!p)continue;let y=await r.readFilePromise(T.ppath.join(c,p),"utf8"),d=h.find(k=>{let b=k.toLowerCase();return b==="notice"||b.startsWith("notice.")}),u;d&&(u=await r.readFilePromise(T.ppath.join(c,d),"utf8"));let P=u?`${y} NOTICE ${u}`:y,F=o.get(P);F?F.set(l.name,l):o.set(P,new Map([[l.name,l]]))}let a=`THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE ${String(i.topLevelWorkspace.manifest.raw.name).toUpperCase().replace(/-/g," ")} PRODUCT. `;for(let[f,c]of o.entries()){a+=`----- `;let l=[],g=[];for(let{name:p,repository:y}of c.values()){l.push(p);let d=st(y);d&&g.push(c.size===1?d:`${d} (${p})`)}let h=[];h.push(`The following software may be included in this product: ${l.join(", ")}.`),g.length>0&&h.push(`A copy of the source code may be downloaded from ${g.join(", ")}.`),h.push("This software contains the following license and notice below:"),a+=`${h.join(" ")} `,a+=`${f.trim()} `}return a};var J=class extends O.Command{constructor(){super(...arguments);this.recursive=O.Option.Boolean("-R,--recursive",!1,{description:"Include transitive dependencies (dependencies of direct dependencies)"});this.production=O.Option.Boolean("--production",!1,{description:"Exclude development dependencies"});this.json=O.Option.Boolean("--json",!1,{description:"Format output as JSON"});this.excludeMetadata=O.Option.Boolean("--exclude-metadata",!1,{description:"Exclude dependency metadata from output"});this.focus=O.Option.Array("--focus",[],{description:"Focus on one or more workspaces"})}async execute(){let t=await K.Configuration.find(this.context.cwd,this.context.plugins),{project:s,workspace:n}=await K.Project.find(t,this.context.cwd);if(!n)throw new rt.WorkspaceRequiredError(s.cwd,this.context.cwd);await s.restoreInstallState(),await G(s,this.focus,this.recursive,this.production);let r=await ue(s,this.json,this.recursive,this.production,this.excludeMetadata);K.treeUtils.emitTree(r,{configuration:t,stdout:this.context.stdout,json:this.json,separators:1})}};J.paths=[["licenses","list"]],J.usage=O.Command.Usage({description:"display the licenses for all packages in the project",details:` This command prints the license information for packages in the project. By default, only direct dependencies are listed. If \`-R,--recursive\` is set, the listing will include transitive dependencies (dependencies of direct dependencies). If \`--production\` is set, the listing will exclude development dependencies. If \`--focus\` is passed, the listing will only include dependencies of the specified workspaces. `,examples:[["List all licenses of direct dependencies","$0 licenses list"],["List all licenses of direct and transitive dependencies","$0 licenses list --recursive"],["List all licenses of production dependencies only","$0 licenses list --production"],["List all licenses for specified workspaces only","$0 licenses list --focus <workspace-a> --focus <workspace-b>"]]});var ot=$("@yarnpkg/cli"),me=$("@yarnpkg/core"),B=$("clipanion");var X=class extends B.Command{constructor(){super(...arguments);this.recursive=B.Option.Boolean("-R,--recursive",!1,{description:"Include transitive dependencies (dependencies of direct dependencies)"});this.production=B.Option.Boolean("--production",!1,{description:"Exclude development dependencies"});this.focus=B.Option.Array("--focus",[],{description:"Focus on one or more workspaces"})}async execute(){let t=await me.Configuration.find(this.context.cwd,this.context.plugins),{project:s,workspace:n}=await me.Project.find(t,this.context.cwd);if(!n)throw new ot.WorkspaceRequiredError(s.cwd,this.context.cwd);await s.restoreInstallState(),await G(s,this.focus,this.recursive,this.production);let r=await nt(s,this.recursive,this.production);this.context.stdout.write(r)}};X.paths=[["licenses","generate-disclaimer"]],X.usage=B.Command.Usage({description:"display the license disclaimer including all packages in the project",details:` This command prints the license disclaimer for packages in the project. By default, only direct dependencies are listed. If \`-R,--recursive\` is set, the disclaimer will include transitive dependencies (dependencies of direct dependencies). If \`--production\` is set, the disclaimer will exclude development dependencies. If \`--focus\` is passed, the disclaimer will only include dependencies of the specified workspaces. `,examples:[["Include licenses of direct dependencies","$0 licenses generate-disclaimer"],["Include licenses of direct and transitive dependencies","$0 licenses generate-disclaimer --recursive"],["Include licenses of production dependencies only","$0 licenses generate-disclaimer --production"],["Include licenses for specified workspaces only","$0 licenses generate-disclaimer --focus <workspace-a> --focus <workspace-b>"]]});var at=$("@yarnpkg/cli"),Z=$("@yarnpkg/core"),A=$("clipanion");var Q=class extends A.Command{constructor(){super(...arguments);this.recursive=A.Option.Boolean("-R,--recursive",!1,{description:"Include transitive dependencies (dependencies of direct dependencies)"});this.production=A.Option.Boolean("--production",!1,{description:"Exclude development dependencies"});this.json=A.Option.Boolean("--json",!1,{description:"Format output as JSON"});this.excludeMetadata=A.Option.Boolean("--exclude-metadata",!1,{description:"Exclude dependency metadata from output"});this.focus=A.Option.Array("--focus",[],{description:"Focus on one or more workspaces"});this.allowedLicenses=A.Option.Array("--allowed",[],{description:"List of allowed licenses"});this.blockedLicenses=A.Option.Array("--blocked",[],{description:"List of blocked licenses"})}async execute(){if(this.allowedLicenses.length===0==(this.blockedLicenses.length===0))throw new A.UsageError("You must provide at least one of --allowed or --blocked, but not both");let t=await Z.Configuration.find(this.context.cwd,this.context.plugins),{project:s,workspace:n}=await Z.Project.find(t,this.context.cwd);if(!n)throw new at.WorkspaceRequiredError(s.cwd,this.context.cwd);await s.restoreInstallState(),await G(s,this.focus,this.recursive,this.production);let r=await ue(s,this.json,this.recursive,this.production,this.excludeMetadata),o=[];for(let[a,f]of Object.entries(r.children)){if(!f)continue;let c=this.allowedLicenses.length===0||this.allowedLicenses.includes(a),l=this.blockedLicenses.length!==0&&this.blockedLicenses.includes(a);(!c||l)&&o.push(f)}return Z.treeUtils.emitTree({children:o},{configuration:t,stdout:this.context.stdout,json:this.json,separators:1}),o.length>0?1:0}};Q.paths=[["licenses","audit"]],Q.usage=A.Command.Usage({description:"audits the licenses for all packages in the project",details:` This command audits and prints the license information for packages in the project that violate the rules set. By default, only direct dependencies are audited. If \`-R,--recursive\` is set, the auditing will include transitive dependencies (dependencies of direct dependencies). If \`--production\` is set, the auditing will exclude development dependencies. If \`--focus\` is passed, the auditing will only include dependencies of the specified workspaces. If \`--allowed\` is passed, the auditing will accept dependencies with the specified allowed licenses. If \`--blocked\` is passed, the auditing will reject dependencies with the specified blocked licenses. `,examples:[["Audit all licenses of direct dependencies","$0 licenses audit --blocked GPL-3.0"],["Audit all licenses of direct and transitive dependencies","$0 licenses audit --blocked GPL-3.0 --recursive"],["Audit all licenses of production dependencies only","$0 licenses audit --blocked GPL-3.0 --production"],["Audit all licenses for specified workspaces only","$0 licenses audit --blocked GPL-3.0 --focus <workspace-a> --focus <workspace-b>"]]});var Dt={commands:[J,X,Q]},Rt=Dt;return ut(Nt);})(); return plugin; } };
31
frontend
/content/streamlit_public_repos/streamlit/frontend/utils/tsconfig.json
{ "root": true, "extends": "@streamlit/typescript-config/base.tsconfig.json", "include": ["src/**/*"] }
32
frontend
/content/streamlit_public_repos/streamlit/frontend/utils/package.json
{ "name": "@streamlit/utils", "version": "1.51.0", "license": "Apache-2.0", "private": true, "type": "module", "main": "./dist/streamlit-utils.cjs.js", "module": "./dist/streamlit-utils.es.js", "browser": "./dist/streamlit-utils.umd.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/streamlit-utils.es.js", "require": "./dist/streamlit-utils.cjs.js", "default": "./dist/streamlit-utils.umd.js" } }, "scripts": { "build": "vite build", "buildWatch": "env DEV_WATCH=1 vite build --watch", "test": "vitest run", "testWatch": "vitest", "lint": "eslint --max-warnings 0 src", "lint:fix": "eslint --max-warnings 0 --fix src", "typecheck": "yarn run typecheck:all", "format": "prettier --write --config ../.prettierrc --ignore-path ../.prettierignore './src/**/*.{js,ts,jsx,tsx}'", "formatCheck": "prettier --check --config ../.prettierrc --ignore-path ../.prettierignore './src/**/*.{js,ts,jsx,tsx}'", "typesync": "typesync", "typesync:ci": "typesync --dry=fail" }, "devDependencies": { "@types/eslint": "^9.6.1", "eslint": "^9.39.0", "prettier": "^3.6.2", "typesync": "^0.14.3", "vite": "^7.1.11", "vite-plugin-dts": "^4.5.4", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] }
33
frontend
/content/streamlit_public_repos/streamlit/frontend/utils/vite.config.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { defineConfig } from "vite" import dts from "vite-plugin-dts" import viteTsconfigPaths from "vite-tsconfig-paths" import path from "path" // We do not explicitly set the DEV_BUILD in any of our processes // This is a convenience for developers for debugging purposes const DEV_BUILD = Boolean(process.env.DEV_BUILD) // DEV_WATCH is used to simplify development of the library // to speed up rebuilds for development of Streamlit const DEV_WATCH = Boolean(process.env.DEV_WATCH) // https://vitejs.dev/config/ export default defineConfig({ base: "./", plugins: [ viteTsconfigPaths(), dts({ insertTypesEntry: true, }), ], build: { outDir: "dist", sourcemap: DEV_BUILD || DEV_WATCH, lib: { entry: path.resolve(__dirname, "src/index.ts"), name: "@streamlit/utils", fileName: format => `streamlit-utils.${format}.js`, // For development, only build es format since that is what Streamlit uses formats: DEV_WATCH ? ["es"] : ["es", "umd", "cjs"], }, }, test: { globals: true, environment: "jsdom", css: true, reporters: ["verbose"], setupFiles: ["../vitest.setup.ts"], }, })
34
utils
/content/streamlit_public_repos/streamlit/frontend/utils/src/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import "./polyfills" export * from "./browser" export * from "./types" export * from "./uri"
35
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/types/index.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { isNullOrUndefined, notNullOrUndefined } from "." describe("types", () => { describe("isNullOrUndefined", () => { it("should return true for null", () => { expect(isNullOrUndefined(null)).toBe(true) }) it("should return true for undefined", () => { expect(isNullOrUndefined(undefined)).toBe(true) }) it("should return false for a value", () => { expect(isNullOrUndefined(1)).toBe(false) }) }) describe("notNullOrUndefined", () => { it("should return false for null", () => { expect(notNullOrUndefined(null)).toBe(false) }) it("should return false for undefined", () => { expect(notNullOrUndefined(undefined)).toBe(false) }) it("should return true for a value", () => { expect(notNullOrUndefined(1)).toBe(true) }) }) })
36
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/types/index.ts
import { ICustomThemeConfig } from "@streamlit/protobuf" /** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * A type predicate that is true if the given value is neither undefined * nor null. */ export function notNullOrUndefined<T>( value: T | null | undefined ): value is T { return <T>value !== null && <T>value !== undefined } /** * A type predicate that is true if the given value is either undefined * or null. */ export function isNullOrUndefined<T>( value: T | null | undefined ): value is null | undefined { return <T>value === null || <T>value === undefined } export interface StreamlitWindowObject { // URL pointing to where the Streamlit server is running. This is useful in // deployments of Streamlit where the server is running on a different origin // from where index.html is served. BACKEND_BASE_URL?: string // URL pointing to where the _stcore/host-config endpoint is being served. HOST_CONFIG_BASE_URL?: string // URL pointing to where the /media assets are being served from for download only. DOWNLOAD_ASSETS_BASE_URL?: string // URL pointing to the main page of this Streamlit app. Setting this is needed // when setting BACKEND_BASE_URL so that handling page URLs in multipage apps // works. MAIN_PAGE_BASE_URL?: string // When our Streamlit app is embedded in an iframe, this can be set by the // parent frame of the app so that the Streamlit app is aware of its own // Service Worker clientId. This has to be done when using Custom Components // in an app deployed in a context where we use a Service Worker as `fetch` // requests sent from the component iframe set `resultingClientId` but not // `replacesClientId`, which means that without this we would be unable to // associate a `fetch` request from a custom component iframe with its parent // frame. CUSTOM_COMPONENT_CLIENT_ID?: string // Theme related settings. LIGHT_THEME?: ICustomThemeConfig DARK_THEME?: ICustomThemeConfig // Other options. ENABLE_RELOAD_BASED_ON_HARDCODED_STREAMLIT_VERSION?: boolean }
37
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/uri/index.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { MockInstance } from "vitest" import { buildHttpUri, isLocalhost, makePath } from "." describe("uri", () => { let originalLocation: Location let windowSpy: MockInstance beforeEach(() => { originalLocation = window.location windowSpy = vi.spyOn(window, "location", "get") }) afterEach(() => { windowSpy.mockRestore() }) describe("buildHttpUri", () => { it("builds HTTP URI correctly", () => { const uri = buildHttpUri( { protocol: "http:", hostname: "the_host", port: "9988", pathname: "foo/bar", } as URL, "baz" ) expect(uri).toBe("http://the_host:9988/foo/bar/baz") }) it("builds HTTPS URI correctly", () => { const uri = buildHttpUri( { protocol: "https:", hostname: "the_host", port: "9988", pathname: "foo/bar", } as URL, "baz" ) expect(uri).toBe("https://the_host:9988/foo/bar/baz") }) it("builds HTTP URI with no base path", () => { const uri = buildHttpUri( { protocol: "http:", hostname: "the_host", port: "9988", pathname: "", } as URL, "baz" ) expect(uri).toBe("http://the_host:9988/baz") }) }) describe("makePath", () => { it("makes path correctly", () => { const path = makePath("foo/bar", "baz") expect(path).toBe("foo/bar/baz") }) it("makes path with no base path", () => { const path = makePath("", "baz") expect(path).toBe("baz") }) }) describe("isLocalhost", () => { it("returns true given localhost", () => { windowSpy.mockReturnValue({ ...originalLocation, hostname: "localhost" }) expect(isLocalhost()).toBe(true) }) it("returns true given 127.0.0.1", () => { windowSpy.mockReturnValue({ ...originalLocation, hostname: "127.0.0.1" }) expect(isLocalhost()).toBe(true) }) it("returns false given other", () => { windowSpy.mockReturnValue({ ...originalLocation, hostname: "190.1.1.1" }) expect(isLocalhost()).toBe(false) }) it("returns false given null", () => { windowSpy.mockReturnValue({ ...originalLocation, hostname: null }) expect(isLocalhost()).toBe(false) }) it("returns false given undefined", () => { windowSpy.mockReturnValue({ ...originalLocation, hostname: undefined }) expect(isLocalhost()).toBe(false) }) }) })
38
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/uri/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ const FINAL_SLASH_RE = /\/+$/ const INITIAL_SLASH_RE = /^\/+/ /** * Create an HTTP URI for the given path. */ export function buildHttpUri( { hostname, port, pathname, protocol }: URL, path: string ): string { const fullPath = makePath(pathname, path) return `${protocol}//${hostname}${port ? `:${port}` : ""}/${fullPath}` } export function makePath(basePath: string, subPath: string): string { basePath = basePath.replace(FINAL_SLASH_RE, "").replace(INITIAL_SLASH_RE, "") subPath = subPath.replace(FINAL_SLASH_RE, "").replace(INITIAL_SLASH_RE, "") if (basePath.length === 0) { return subPath } return `${basePath}/${subPath}` } export const isLocalhost = (): boolean => { return ( window.location.hostname === "localhost" || window.location.hostname === "127.0.0.1" ) }
39
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/browser/index.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { getCookie, localStorageAvailable } from "." describe("browser", () => { describe("localStorageAvailable", () => { // NOTE: localStorage is weird, and calling .spyOn(window.localStorage, "setItem") // doesn't work. Accessing .__proto__ here isn't too bad of a crime since // it's test code. const breakLocalStorage = (): void => { vi // eslint-disable-next-line no-proto .spyOn(window.localStorage.__proto__, "setItem") .mockImplementation(() => { throw new Error("boom") }) } afterEach(() => { vi.restoreAllMocks() window.localStorage.clear() }) it("returns false if a localStorage function explodes", () => { breakLocalStorage() expect(localStorageAvailable()).toBe(false) }) it("returns true if all localStorage functions work", () => { expect(localStorageAvailable()).toBe(true) }) }) describe("getCookie", () => { afterEach(() => { document.cookie.split(";").forEach(cookie => { const eqPos = cookie.indexOf("=") const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie document.cookie = `${name}=;expires=Thu, 01 Jan 1970 00:00:00 GMT` }) }) it("get existing cookie", () => { document.cookie = "flavor=chocolatechip" const cookie = getCookie("flavor") expect(cookie).toEqual("chocolatechip") }) it("get missing cookie", () => { document.cookie = "sweetness=medium;" document.cookie = "flavor=chocolatechip;" document.cookie = "type=darkchocolate;" const cookie = getCookie("recipe") expect(cookie).toEqual(undefined) }) it("find cookie in the front", () => { document.cookie = "flavor=chocolatechip;" document.cookie = "sweetness=medium;" document.cookie = "type=darkchocolate;" const cookie = getCookie("flavor") expect(cookie).toEqual("chocolatechip") }) it("find cookie in the middle", () => { document.cookie = "sweetness=medium;" document.cookie = "flavor=chocolatechip;" document.cookie = "type=darkchocolate;" const cookie = getCookie("flavor") expect(cookie).toEqual("chocolatechip") }) it("find cookie in the end", () => { document.cookie = "sweetness=medium;" document.cookie = "type=darkchocolate;" document.cookie = "flavor=chocolatechip;" const cookie = getCookie("flavor") expect(cookie).toEqual("chocolatechip") }) }) })
40
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/browser/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Returns cookie value */ export function getCookie(name: string): string | undefined { const r = document.cookie.match(`\\b${name}=([^;]*)\\b`) return r ? r[1] : undefined } // Method taken from // https://stackoverflow.com/questions/16427636/check-if-localstorage-is-available export function localStorageAvailable(): boolean { const testData = "testData" try { const { localStorage } = window localStorage.setItem(testData, testData) localStorage.getItem(testData) localStorage.removeItem(testData) // eslint-disable-next-line @typescript-eslint/no-unused-vars } catch (e) { return false } return true }
41
src
/content/streamlit_public_repos/streamlit/frontend/utils/src/polyfills/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ if (typeof Promise.withResolvers === "undefined") { Promise.withResolvers = <T>() => { let promiseResolve: PromiseWithResolvers<T>["resolve"] let promiseReject: PromiseWithResolvers<T>["reject"] const promise = new Promise<T>((resolve, reject) => { promiseResolve = resolve promiseReject = reject }) // eslint-disable-next-line @typescript-eslint/no-non-null-assertion return { resolve: promiseResolve!, reject: promiseReject!, promise } } } declare global { interface PromiseWithResolvers<T> { promise: Promise<T> resolve: (value: T | PromiseLike<T>) => void // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. reject: (reason?: any) => void } interface PromiseConstructor { withResolvers<T>(): PromiseWithResolvers<T> } } export {}
42
frontend
/content/streamlit_public_repos/streamlit/frontend/typescript-config/react.tsconfig.json
{ "$schema": "https://json.schemastore.org/tsconfig", "display": "React Library", "extends": "./base.tsconfig.json", "compilerOptions": { "jsx": "react-jsx" } }
43
frontend
/content/streamlit_public_repos/streamlit/frontend/typescript-config/package.json
{ "name": "@streamlit/typescript-config", "version": "1.51.0", "license": "Apache-2.0", "private": true, "files": [ "base.tsconfig.json", "react.tsconfig.json" ], "type": "module", "scripts": { "typecheck:all": "cd $INIT_CWD && tsc" }, "devDependencies": { "typescript": "^5.9.2" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] }
44
frontend
/content/streamlit_public_repos/streamlit/frontend/typescript-config/base.tsconfig.json
{ "$schema": "https://json.schemastore.org/tsconfig", "display": "Default", "compilerOptions": { "allowJs": true, "allowSyntheticDefaultImports": true, "baseUrl": ".", "esModuleInterop": true, "experimentalDecorators": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, "jsx": "react-jsx", "lib": ["dom", "dom.iterable", "esnext"], "module": "esnext", "moduleResolution": "bundler", "noEmit": true, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "es6", "types": ["vite/client", "vitest/globals", "@testing-library/jest-dom"] } }
45
frontend
/content/streamlit_public_repos/streamlit/frontend/lib/tsconfig.json
{ "extends": "@streamlit/typescript-config/react.tsconfig.json", "compilerOptions": { "checkJs": false, "baseUrl": ".", "noEmit": false, "emitDeclarationOnly": true, "declaration": true, "outDir": "dist", "paths": { "~lib/*": ["src/*"], "@streamlit/component-v2-lib": ["../component-v2-lib/src"], "@streamlit/lib": ["../lib/src"], "@streamlit/lib/testing": ["src/testing.ts"], "@streamlit/app": ["./src"], "@streamlit/connection": ["../connection/src"], "@streamlit/protobuf": ["../protobuf/src"], "@streamlit/utils": ["../utils/src"] } }, "include": ["src/**/*", "declarations.d.ts", "emotion.d.ts"], "exclude": ["**/proto.js"] }
46
frontend
/content/streamlit_public_repos/streamlit/frontend/lib/package.json
{ "name": "@streamlit/lib", "version": "1.51.0", "private": true, "license": "Apache-2.0", "type": "module", "main": "./dist/streamlit-lib.cjs.js", "module": "./dist/streamlit-lib.es.js", "browser": "./dist/streamlit-lib.umd.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/streamlit-lib.es.js", "require": "./dist/streamlit-lib.cjs.js", "default": "./dist/streamlit-lib.umd.js" } }, "files": [ "dist" ], "scripts": { "build": "env NODE_OPTIONS=--max_old_space_size=8192 vite build", "typecheck": "yarn run typecheck:all", "test": "vitest run", "testWatch": "vitest", "lint": "eslint --max-warnings 0 src", "lint:fix": "eslint --max-warnings 0 --fix src", "format": "prettier --write --config ../.prettierrc --ignore-path ../.prettierignore './src/**/*.{js,ts,jsx,tsx}'", "formatCheck": "prettier --check --config ../.prettierrc --ignore-path ../.prettierignore './src/**/*.{js,ts,jsx,tsx}'", "typesync": "typesync", "typesync:ci": "typesync --dry=fail" }, "dependencies": { "@deck.gl/aggregation-layers": "^9.1.14", "@deck.gl/carto": "^9.1.14", "@deck.gl/core": "^9.1.14", "@deck.gl/geo-layers": "^9.1.14", "@deck.gl/json": "^9.1.14", "@deck.gl/layers": "^9.1.14", "@deck.gl/mesh-layers": "^9.1.14", "@deck.gl/react": "^9.1.14", "@emotion-icons/emotion-icon": "^4.1.0", "@emotion-icons/material-outlined": "^3.14.0", "@emotion-icons/material-rounded": "^3.14.0", "@emotion-icons/open-iconic": "^3.14.0", "@emotion/cache": "^11.13.5", "@emotion/is-prop-valid": "^1.4.0", "@emotion/react": "^11.13.5", "@emotion/styled": "^11.14.1", "@glideapps/glide-data-grid": "6.0.4-alpha24", "@glideapps/glide-data-grid-cells": "6.0.4-alpha24", "@glideapps/glide-data-grid-source": "6.0.4-alpha24", "@loaders.gl/core": "^4.3.4", "@loaders.gl/csv": "^4.3.4", "@loaders.gl/gltf": "^4.3.4", "@sindresorhus/slugify": "^3.0.0", "@streamlit/component-v2-lib": "workspace:^", "@streamlit/protobuf": "workspace:^", "@streamlit/utils": "workspace:^", "apache-arrow": "^21.0.0", "axios": "^1.12.1", "baseui": "12.2.0", "classnames": "^2.3.2", "color2k": "^2.0.2", "d3": "^7.9.0", "d3-graphviz": "^5.6.0", "date-fns": "^4.1.0", "decamelize": "^6.0.1", "deck.gl": "^9.1.14", "dompurify": "^3.2.7", "hoist-non-react-statics": "^3.3.2", "immer": "^10.1.3", "json5": "^2.2.3", "katex": "^0.16.22", "lodash": "^4.17.21", "loglevel": "^1.9.2", "mapbox-gl": "^1.13.2", "mdast-util-find-and-replace": "^3.0.2", "moment": "^2.30.1", "moment-duration-format": "^2.3.2", "moment-timezone": "^0.6.0", "native-file-system-adapter": "^3.0.1", "node-emoji": "^2.2.0", "numbro": "^2.5.0", "plotly.js": "^3.1.0", "protobufjs": "^7.5.4", "query-string": "^9.3.1", "re-resizable": "^6.11.2", "react-color": "^2.18.1", "react-dropzone": "^14.3.8", "react-feather": "^2.0.10", "react-json-view": "^1.19.1", "react-map-gl": "^5.3.21", "react-markdown": "^10.1.0", "react-plotly.js": "^2.6.0", "react-responsive-carousel": "^3.2.23", "react-syntax-highlighter": "^15.6.3", "react-webcam": "7.2.0", "react-window": "^1.8.11", "rehype-katex": "^7.0.1", "rehype-raw": "^7.0.0", "remark-directive": "^4.0.0", "remark-emoji": "^5.0.2", "remark-gfm": "^4.0.1", "remark-math": "^6.0.0", "sprintf-js": "^1.1.3", "styletron-react": "^6.1.0", "typed-signals": "^3.0.0", "ua-parser-js": "^1.0.41", "unified": "^11.0.5", "unist-util-visit": "^5.0.0", "urlpattern-polyfill": "^10.1.0", "uuid": "^13.0.0", "vega": "^6.2.0", "vega-embed": "^7.0.2", "vega-interpreter": "^2.2.1", "vega-lite": "6.3.1", "wavesurfer.js": "^7.10.1", "xxhashjs": "^0.2.2" }, "peerDependencies": { "react": "^17.0.0 || ^18.0.0", "react-dom": "^17.0.0 || ^18.0.0" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ], "devDependencies": { "@swc/plugin-emotion": "^11.1.0", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.8.0", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/d3": "^7.4.3", "@types/d3-graphviz": "^2.6.10", "@types/eslint": "^9.6.1", "@types/hoist-non-react-statics": "~3.3.7", "@types/katex": "~0.16.7", "@types/lodash": "~4.17.20", "@types/mapbox-gl": "~1.13.10", "@types/moment-duration-format": "~2.2.6", "@types/plotly.js": "^3.0.5", "@types/react": "^18.2.0", "@types/react-color": "^3.0.13", "@types/react-dom": "^18.2.0", "@types/react-plotly.js": "^2.6.3", "@types/react-syntax-highlighter": "^15.5.5", "@types/react-window": "~1.8.8", "@types/sprintf-js": "^1.1.4", "@types/ua-parser-js": "^0.7.39", "@types/uuid": "^10.0.0", "@types/wavesurfer.js": "^6.0.12", "@types/xxhashjs": "^0.2.2", "@vitejs/plugin-react-swc": "^4.1.0", "axios-mock-adapter": "^2.1.0", "eslint": "^9.39.0", "eslint-plugin-streamlit-custom": "workspace:^", "node-fetch": "3.3.2", "postinstall-postinstall": "^2.1.0", "prettier": "^3.6.2", "timezone-mock": "^1.3.6", "tsc-alias": "^1.8.16", "typesync": "^0.14.3", "vite": "^7.1.11", "vite-plugin-dts": "^4.5.4", "vite-plugin-svgr": "^4.5.0", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4", "vitest-canvas-mock": "^0.3.3", "vitest-fetch-mock": "^0.4.5" }, "resolutions": { "ua-parser-js": "^1.0.40" } }
47
frontend
/content/streamlit_public_repos/streamlit/frontend/lib/declarations.d.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /// <reference types="vite/client" /> /// <reference types="vitest/globals" /> declare module "@loaders.gl/core" declare module "@loaders.gl/csv" declare module "@loaders.gl/gltf" declare module "native-file-system-adapter" // Type definition for an internal component in react-color. We need to override // some of it to fix a bug in the color picker that triggers a security error when // the color picker is closed in a cross-origin iframe, see `BaseColorPicker.tsx`. declare module "react-color/es/components/common/Saturation" { import React from "react" export default class Saturation extends React.Component<any, any> { container: HTMLElement getContainerRenderWindow(): Window & typeof globalThis } }
48
frontend
/content/streamlit_public_repos/streamlit/frontend/lib/emotion.d.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { EmotionTheme as StreamlitTheme } from "~lib/theme/index" // Outside imports make declarations not ambient, so we separate out from // the ambient declarations.d.ts // // This declaration allows us to extend our type declarations for emotion's // theme (an empty object) to be our type declare module "@emotion/react" { export interface Theme extends StreamlitTheme {} }
49
frontend
/content/streamlit_public_repos/streamlit/frontend/lib/vite.config.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import react from "@vitejs/plugin-react-swc" import { defineConfig } from "vite" import dts from "vite-plugin-dts" import viteTsconfigPaths from "vite-tsconfig-paths" import path from "path" // We do not explicitly set the DEV_BUILD in any of our processes // This is a convenience for developers for debugging purposes const DEV_BUILD = Boolean(process.env.DEV_BUILD) // https://vitejs.dev/config/ export default defineConfig({ base: "./", plugins: [ react({ jsxImportSource: "@emotion/react", plugins: [["@swc/plugin-emotion", {}]], }), viteTsconfigPaths(), dts({ insertTypesEntry: true, }), ], build: { outDir: "dist", sourcemap: DEV_BUILD, lib: { // Specify the entry point of your library entry: path.resolve(__dirname, "src/index.ts"), name: "@streamlit/lib", // Replace with your library's name fileName: format => `streamlit-lib.${format}.js`, formats: ["es", "umd", "cjs"], // Output formats }, rollupOptions: { input: "src/index.ts", // Externalize dependencies that shouldn't be bundled into your library external: ["react", "react-dom"], output: { globals: { react: "React", "react-dom": "ReactDOM", }, }, }, }, resolve: { alias: { "~lib": path.resolve(__dirname, "../lib/src"), }, }, test: { globals: true, environment: "jsdom", css: true, reporters: ["verbose"], setupFiles: ["../vitest.setup.ts"], deps: { optimizer: { web: { include: ["vitest-canvas-mock"], }, }, }, }, })
50
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/WidgetStateManager.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Draft, produce } from "immer" import { getLogger } from "loglevel" import { Long, util } from "protobufjs" import { Signal, SignalConnection } from "typed-signals" import { ChatInputValue, DoubleArray, IArrowTable, IChatInputValue, IFileUploaderState, SInt64Array, StringArray, Button as SubmitButtonProto, WidgetState, WidgetStates, } from "@streamlit/protobuf" import { isNullOrUndefined, isValidFormId, notNullOrUndefined, } from "~lib/util/utils" export interface Source { fromUi: boolean } /** Common widget protobuf fields that are used by the WidgetStateManager. */ export interface WidgetInfo { id: string formId?: string } /** * Immutable structure that exposes public data about all the forms in the app. * WidgetStateManager produces new instances of this type when forms data * changes. */ export interface FormsData { /** Forms that have unsubmitted changes. */ readonly formsWithPendingChanges: Set<string> /** Forms that have in-progress file uploads. */ readonly formsWithUploads: Set<string> /** * Mapping of formID:numberOfSubmitButtons. (Most forms will have only one, * but it's not an error to have multiple.) */ readonly submitButtons: Map<string, Array<SubmitButtonProto>> } /** Create an empty FormsData instance. */ export function createFormsData(): FormsData { return { formsWithPendingChanges: new Set(), formsWithUploads: new Set(), submitButtons: new Map(), } } const LOG = getLogger("WidgetStateManager") /** * A Dictionary that maps widgetID -> WidgetState, and provides some utility * functions. */ export class WidgetStateDict { private readonly widgetStates = new Map<string, WidgetState>() /** * Create a new WidgetState proto for the widget with the given ID, * overwriting any that currently exists. */ public createState(widgetId: string): WidgetState { const state = new WidgetState({ id: widgetId }) this.widgetStates.set(widgetId, state) return state } /** Return the WidgetState for the given widgetID if it exists. */ public getState(widgetId: string): WidgetState | undefined { return this.widgetStates.get(widgetId) } /** Remove the WidgetState proto with the given id, if it exists. */ public deleteState(widgetId: string): void { this.widgetStates.delete(widgetId) } /** Remove the state of widgets that are not contained in `activeIds`. */ public removeInactive(activeIds: Set<string>): void { this.widgetStates.forEach((_value, key) => { if (!activeIds.has(key)) { this.widgetStates.delete(key) } }) } /** Remove all widget states. */ public clear(): void { this.widgetStates.clear() } public get isEmpty(): boolean { return this.widgetStates.size === 0 } public createWidgetStatesMsg(): WidgetStates { const msg = new WidgetStates() this.widgetStates.forEach(value => msg.widgets.push(value)) return msg } /** * Copy the contents of another WidgetStateDict into this one, overwriting * any values with duplicate keys. */ public copyFrom(other: WidgetStateDict): void { other.widgetStates.forEach((state, widgetId) => { this.widgetStates.set(widgetId, state) }) } /** Call a function for each value in the dict. */ public forEach(callbackfn: (value: WidgetState) => void): void { this.widgetStates.forEach(callbackfn) } } /** Stores private data about a single form. */ class FormState { public readonly widgetStates = new WidgetStateDict() /** True if the form was created with the clear_on_submit flag. */ public clearOnSubmit = false /** True if the form was created with the enter_to_submit flag. */ public enterToSubmit = true /** Signal emitted when the form is cleared. */ public readonly formCleared = new Signal() /** True if the form has a non-empty WidgetStateDict. */ public get hasPendingChanges(): boolean { return !this.widgetStates.isEmpty } } interface Props { /** Callback to deliver a message to the server */ sendRerunBackMsg: ( widgetStates: WidgetStates, fragmentId: string | undefined, pageScriptHash: string | undefined, isAutoRerun: boolean | undefined ) => void /** * Callback invoked whenever our FormsData changed. (Because FormsData * is immutable, any changes to it result in a new instance being created.) */ formsDataChanged: (formsData: FormsData) => void } /** * Manages widget values, and sends widget update messages back to the server. */ export class WidgetStateManager { private readonly props: Props // Top-level widget state dictionary. private readonly widgetStates = new WidgetStateDict() // Internal state for each form we're managing. private readonly forms = new Map<string, FormState>() // External data about all forms. private formsData: FormsData // A dictionary that maps elementId -> element state keys -> element state values. // This is used to store frontend-only state for elements. // This state is not never sent to the server. // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. private readonly elementStates = new Map<string, Map<string, any>>() /** * Debouncing helpers for trigger widgets. * * Multiple calls to `setTriggerValue` that happen within the same * JavaScript macrotask (for example, when a single click handler invokes * `setTriggerValue` several times for different trigger names) should be * batched into a single `updateWidgets` message. Otherwise, each call would * schedule its own `setTimeout(…, 0)` which results in multiple * `updateWidgets` messages being sent in quick succession. The Streamlit * backend only handles the *latest* message before rerunning the script, * which means earlier triggers can be lost. We fix this by batching. */ private pendingTriggerIds = new Set<string>() /** Promise resolvers that should run once the pending trigger batch has * been flushed to the backend. */ private triggerFlushResolvers: Array<() => void> = [] /** Indicates whether we already scheduled a macrotask-level flush. */ private flushScheduled = false /** The fragmentId associated with the currently scheduled flush (if any). */ private scheduledFragmentId: string | undefined /** * Tracks whether we've already logged a mixed-fragmentId warning for the * currently scheduled batch. This prevents spamming the console if multiple * conflicting calls happen in the same macrotask. */ private hasFragmentIdConflict = false constructor(props: Props) { this.props = props this.formsData = createFormsData() } /** * Register a function that will be called when the given form is cleared. * Returns an object that can be used to de-register the listener. */ public addFormClearedListener( formId: string, listener: () => void ): SignalConnection { return this.getOrCreateFormState(formId).formCleared.connect(listener) } /** * Register a Form, and assign its clearOnSubmit & enterToSubmit values. * The `Form` element calls this when it's first mounted. */ public setFormSubmitBehaviors( formId: string, clearOnSubmit: boolean, enterToSubmit = true ): void { const form = this.getOrCreateFormState(formId) form.clearOnSubmit = clearOnSubmit form.enterToSubmit = enterToSubmit } /** * Commit pending changes for widgets that belong to the given form, * and send a rerunBackMsg to the server. */ public submitForm( formId: string, fragmentId: string | undefined, actualSubmitButton?: WidgetInfo ): void { if (!isValidFormId(formId)) { // This should never get thrown - only FormSubmitButton calls this // function. // eslint-disable-next-line @typescript-eslint/restrict-template-expressions throw new Error(`invalid formID '${formId}'`) } const form = this.getOrCreateFormState(formId) const submitButtons = this.formsData.submitButtons.get(formId) let selectedSubmitButton if (actualSubmitButton !== undefined) { selectedSubmitButton = actualSubmitButton } // can have an empty list of submitButtons else if (submitButtons !== undefined && submitButtons.length > 0) { // click the first submit button. We can choose any so we just choose first. selectedSubmitButton = submitButtons[0] } if (selectedSubmitButton) { this.createWidgetState(selectedSubmitButton, { fromUi: true, }).triggerValue = true } // Copy the form's values into widgetStates, delete the form's pending // changes, and send our widgetStates back to the server. this.widgetStates.copyFrom(form.widgetStates) form.widgetStates.clear() this.sendUpdateWidgetsMessage(fragmentId) this.syncFormsWithPendingChanges() if (selectedSubmitButton) { this.deleteWidgetState(selectedSubmitButton.id) } // If the form has the clearOnSubmit flag, we emit a signal to all widgets // in the form. Each widget that handles this signal will reset to their // default values, and submit those new default values to the WidgetStateManager // in their signal handlers. (Because all of these widgets are in a form, // none of these value submissions will trigger re-run requests.) if (form.clearOnSubmit) { form.formCleared.emit() } } public setChatInputValue( widget: WidgetInfo, value: IChatInputValue, source: Source, fragmentId: string | undefined ): void { // ------------------------------------------------------------------ // ChatInput behaves like a trigger widget: its value should be sent to // the backend exactly once and then be cleared so that subsequent // reruns receive an "empty" value. With the introduction of batched // trigger handling, we align ChatInput with the same mechanism used by // `setTriggerValue` to avoid race conditions when multiple updates are // emitted within the same macrotask. // ------------------------------------------------------------------ // 1. Store the value in a temporary WidgetState proto. this.createWidgetState(widget, source).chatInputValue = new ChatInputValue( value ) // 2. Mark this widget ID so that it is cleaned-up after the pending // batch flush. The `scheduleFlush` helper already takes care of // deleting all IDs present in `pendingTriggerIds` once the update // message has been sent. this.pendingTriggerIds.add(widget.id) // 3. Schedule (or reuse) a macrotask-level flush so that ChatInput // updates are coalesced with other trigger/value updates that happen // during the same event loop tick. this.scheduleFlush(fragmentId) } /** * 1. Boolean trigger * setTriggerValue(widgetInfo, { fromUi: true }, fragmentId) * * 2. Payload (JSON-encoded) trigger * setTriggerValue(widgetInfo, { fromUi: true }, fragmentId, payload) * * `payload` can be any JSON-serialisable value. For Bidi Component v2 * we always transport payloads via the protobuf `json_trigger_value` * field as a JSON-stringified array of payload objects. Multiple calls * within the same macrotask are batched into that array. If `payload` * is omitted (or `undefined`) we fall back to the boolean * `trigger_value=true` behaviour. */ public setTriggerValue<T extends Record<string, unknown>>( widget: WidgetInfo, source: Source, fragmentId: string | undefined, value?: T ): Promise<void> { // If we already have a pending trigger for this widget in the current // macrotask, append to it instead of overwriting so multiple triggers are // delivered in a single backend message. let widgetState = this.getWidgetState(widget) if (widgetState === undefined) { widgetState = this.createWidgetState(widget, source) } if (value === undefined) { // Simple boolean trigger. widgetState.triggerValue = true } else { // Custom Components v2: always encode payloads as a JSON array. // To batch multiple trigger events in the same macrotask, we store // payloads as a JSON-stringified array. On each call, we parse // the existing string, append the new payload, and re-stringify. const nextPayloadObject = value try { if (isNullOrUndefined(widgetState.jsonTriggerValue)) { // First payload -> start an array. widgetState.jsonTriggerValue = JSON.stringify([nextPayloadObject]) } else { // Subsequent payloads -> append to existing array const prevRaw = widgetState.jsonTriggerValue const prevParsed = JSON.parse(prevRaw) const prevArray = Array.isArray(prevParsed) ? prevParsed : [prevParsed] prevArray.push(nextPayloadObject) widgetState.jsonTriggerValue = JSON.stringify(prevArray) } } catch (error) { // In the unlikely event prior state was not valid JSON, fall back to a 2-item array. LOG.error( "Failed to parse or stringify widgetState.jsonTriggerValue:", error ) widgetState.jsonTriggerValue = JSON.stringify([ widgetState.jsonTriggerValue, nextPayloadObject, ]) } } // -------------------------------------------------------------- // Batch trigger updates fired during the same JavaScript macrotask. // -------------------------------------------------------------- this.pendingTriggerIds.add(widget.id) return new Promise(resolve => { // Queue resolver so callers still get the same promise-based API. this.triggerFlushResolvers.push(resolve) // Schedule (or reuse) a macrotask-level flush. this.scheduleFlush(fragmentId) }) } public getBoolValue(widget: WidgetInfo): boolean | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "boolValue") { return state.boolValue as boolean } return undefined } public setBoolValue( widget: WidgetInfo, value: boolean, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).boolValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getIntValue(widget: WidgetInfo): number | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "intValue") { return requireNumberInt(state.intValue as number) } return undefined } public setIntValue( widget: WidgetInfo, value: number | null, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).intValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getDoubleValue(widget: WidgetInfo): number | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "doubleValue") { return state.doubleValue as number } return undefined } public setDoubleValue( widget: WidgetInfo, value: number | null, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).doubleValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getStringValue(widget: WidgetInfo): string | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "stringValue") { return state.stringValue as string } return undefined } public setStringValue( widget: WidgetInfo, value: string | null, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).stringValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public setStringArrayValue( widget: WidgetInfo, value: string[], source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).stringArrayValue = new StringArray({ data: value, }) this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getStringArrayValue(widget: WidgetInfo): string[] | undefined { const state = this.getWidgetState(widget) if ( notNullOrUndefined(state) && state.value === "stringArrayValue" && notNullOrUndefined(state.stringArrayValue) && notNullOrUndefined(state.stringArrayValue.data) ) { return state.stringArrayValue.data } return undefined } public getDoubleArrayValue(widget: WidgetInfo): number[] | undefined { const state = this.getWidgetState(widget) if ( notNullOrUndefined(state) && state.value === "doubleArrayValue" && notNullOrUndefined(state.doubleArrayValue) && notNullOrUndefined(state.doubleArrayValue.data) ) { return state.doubleArrayValue.data } return undefined } public setDoubleArrayValue( widget: WidgetInfo, value: number[], source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).doubleArrayValue = new DoubleArray({ data: value, }) this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getIntArrayValue(widget: WidgetInfo): number[] | undefined { const state = this.getWidgetState(widget) if ( notNullOrUndefined(state) && state.value === "intArrayValue" && notNullOrUndefined(state.intArrayValue) && notNullOrUndefined(state.intArrayValue.data) ) { return state.intArrayValue.data.map(requireNumberInt) } return undefined } public setIntArrayValue( widget: WidgetInfo, value: number[], source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).intArrayValue = new SInt64Array({ data: value, }) this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getJsonValue(widget: WidgetInfo): string | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "jsonValue") { return state.jsonValue as string } return undefined } public setJsonValue( widget: WidgetInfo, // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. value: any, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).jsonValue = JSON.stringify(value) this.onWidgetValueChanged(widget.formId, source, fragmentId) } public setArrowValue( widget: WidgetInfo, value: IArrowTable, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).arrowValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getArrowValue(widget: WidgetInfo): IArrowTable | undefined { const state = this.getWidgetState(widget) if ( notNullOrUndefined(state) && state.value === "arrowValue" && notNullOrUndefined(state.arrowValue) ) { return state.arrowValue } return undefined } public setBytesValue( widget: WidgetInfo, value: Uint8Array, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).bytesValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getBytesValue(widget: WidgetInfo): Uint8Array | undefined { const state = this.getWidgetState(widget) if (notNullOrUndefined(state) && state.value === "bytesValue") { return state.bytesValue as Uint8Array } return undefined } public setFileUploaderStateValue( widget: WidgetInfo, value: IFileUploaderState, source: Source, fragmentId: string | undefined ): void { this.createWidgetState(widget, source).fileUploaderStateValue = value this.onWidgetValueChanged(widget.formId, source, fragmentId) } public getFileUploaderStateValue( widget: WidgetInfo ): IFileUploaderState | undefined { const state = this.getWidgetState(widget) if ( notNullOrUndefined(state) && state.value === "fileUploaderStateValue" ) { return state.fileUploaderStateValue as IFileUploaderState } return undefined } /** * Perform housekeeping every time a widget value changes. * - If the widget does not belong to a form, and the value update came from * a user action, send the "updateWidgets" message * - If the widget belongs to a form, dispatch the "pendingFormsChanged" * callback if needed. * * Called by every "setValue" function. */ private onWidgetValueChanged( formId: string | undefined, source: Source, fragmentId: string | undefined ): void { if (isValidFormId(formId)) { this.syncFormsWithPendingChanges() } else if (source.fromUi) { // Batch value changes that occur within the same JavaScript macrotask. this.scheduleFlush(fragmentId) } } /** * Update FormsData.formsWithPendingChanges with the current set of forms * that have pending changes. This is called after widget values are updated. */ private syncFormsWithPendingChanges(): void { const pendingFormIds = new Set<string>() this.forms.forEach((form, formId) => { if (form.hasPendingChanges) { pendingFormIds.add(formId) } }) this.updateFormsData(draft => { draft.formsWithPendingChanges = pendingFormIds }) } public sendUpdateWidgetsMessage( fragmentId: string | undefined, isAutoRerun: boolean | undefined = undefined ): void { this.props.sendRerunBackMsg( this.widgetStates.createWidgetStatesMsg(), fragmentId, undefined, isAutoRerun ) } public getActiveWidgetStates(activeIds: Set<string>): WidgetStates { const msg = new WidgetStates() this.widgetStates.forEach(widgetState => { if (activeIds.has(widgetState.id)) { msg.widgets.push(widgetState) } }) return msg } /** * Remove the state of widgets that are not contained in `activeIds`. * This is called when a script finishes running, so that we don't retain * data for widgets that have been removed from the app. */ public removeInactive(activeIds: Set<string>): void { this.widgetStates.removeInactive(activeIds) this.forms.forEach(form => form.widgetStates.removeInactive(activeIds)) this.elementStates.forEach((_, elementId) => { if (!activeIds.has(elementId)) { this.deleteElementState(elementId) } }) } /** * Create and return a new WidgetState proto for the given widget ID, * overwriting any that currently exists. If the widget belongs to a form, * the WidgetState will be created inside the form's WidgetStateDict. */ private createWidgetState(widget: WidgetInfo, source: Source): WidgetState { const addToForm = isValidFormId(widget.formId) && source.fromUi const widgetStateDict = addToForm ? this.getOrCreateFormState(widget.formId as string).widgetStates : this.widgetStates return widgetStateDict.createState(widget.id) } /** * Get the WidgetState proto for the given widget ID, if it exists. */ private getWidgetState(widget: WidgetInfo): WidgetState | undefined { // If the widget belongs to a form, try its form value first. if (isValidFormId(widget.formId)) { const formState = this.forms .get(widget.formId) ?.widgetStates.getState(widget.id) if (notNullOrUndefined(formState)) { return formState } } return this.widgetStates.getState(widget.id) } /** * Remove the WidgetState proto with the given id, if it exists */ private deleteWidgetState(widgetId: string): void { this.widgetStates.deleteState(widgetId) } /** Return the FormState for the given form. Create it if it doesn't exist. */ private getOrCreateFormState(formId: string): FormState { let form = this.forms.get(formId) if (notNullOrUndefined(form)) { return form } form = new FormState() this.forms.set(formId, form) return form } /** Store the IDs of all forms with in-progress uploads. */ public setFormsWithUploadsInProgress(formsWithUploads: Set<string>): void { this.updateFormsData(draft => { draft.formsWithUploads = formsWithUploads }) } /** * Helper function to determine whether a form allows enter to submit * for input elements (st.number_input, st.text_input, etc.) * If in form, checks form's enterToSubmit paramf first, otherwise default * behavior: Must have 1st submit button enabled to allow */ public allowFormEnterToSubmit(formId: string): boolean { // Don't allow if not in form if (!isValidFormId(formId)) return false // Check if user-set enterToSubmit param is false (in FormState) const form = this.forms.get(formId) if (form && !form.enterToSubmit) return false // Otherwise, use default behavior const submitButtons = this.formsData.submitButtons.get(formId) const firstSubmitButton = submitButtons?.[0] // If no submit buttons for the formId, invalid form if (!firstSubmitButton) return false // Allow form submit on enter as long as 1st submit button is not disabled return !firstSubmitButton.disabled } /** * Called by FormSubmitButton on creation. Add the SubmitButtonProto for * the given form and update FormsData. */ public addSubmitButton( formId: string, submitButtonProto: SubmitButtonProto ): void { const submitButtons = this.formsData.submitButtons.get(formId) if (submitButtons === undefined) { this.setSubmitButtons(formId, [submitButtonProto]) } else { const copySubmitButtons = Object.assign([], submitButtons) copySubmitButtons.push(submitButtonProto) this.setSubmitButtons(formId, copySubmitButtons) } } /** * Called by FormSubmitButton on creation. Remove the SubmitButtonProto for * the given form, and update FormsData. */ public removeSubmitButton( formId: string, submitButtonProto: SubmitButtonProto ): void { const submitButtons = this.formsData.submitButtons.get(formId) if (submitButtons !== undefined) { const copySubmitButtons = Object.assign([], submitButtons) const index = copySubmitButtons.indexOf(submitButtonProto, 0) if (index > -1) { copySubmitButtons.splice(index, 1) } this.setSubmitButtons(formId, copySubmitButtons) } } private setSubmitButtons( formId: string, submitButtons: Array<SubmitButtonProto> ): void { if (submitButtons.length < 0) { throw new Error( `Bad submitButtons length ${submitButtons.length} (must be >= 0)` ) } this.updateFormsData(draft => { draft.submitButtons.set(formId, submitButtons) }) } /** * Produce a new FormsData with the given recipe, and fire off the * formsDataChanged callback with that new data. */ private updateFormsData(recipe: (draft: Draft<FormsData>) => void): void { const newData = produce(this.formsData, recipe) if (this.formsData !== newData) { this.formsData = newData this.props.formsDataChanged(this.formsData) } } /** * Get the element state value for the given element ID and key, if it exists. * This is a frontend-only state that is never sent to the server. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. public getElementState(elementId: string, key: string): any { return this.elementStates.get(elementId)?.get(key) } /** * Sets the state of an element identified by its ID and its key. * This is a frontend-only state that is never sent to the server. * It can be used to store element state to restore the state * of an element in situations where an element is removed and re-added. * * @param {string} elementId - The unique identifier of the element. * @param {string} key - The key to set * @param {any} value - The value to set for the element's state. * @returns {void} */ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. public setElementState(elementId: string, key: string, value: any): void { if (!this.elementStates.has(elementId)) { // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. this.elementStates.set(elementId, new Map<string, any>()) } // It's expected here that there is always an initialized map for an elementId // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. ;(this.elementStates.get(elementId) as Map<string, any>).set(key, value) } /** * Deletes the state associated with a specific element by ID. If a key is provided, * only the state corresponding to that key is removed. If no key is specified, all states * associated with the element ID are removed. */ public deleteElementState(elementId: string, key?: string): void { if (notNullOrUndefined(key)) { this.elementStates.get(elementId)?.delete(key) } else { this.elementStates.delete(elementId) } } /** * Schedule a macrotask-level flush of pending widget updates (triggers and * regular value changes). Multiple calls within the same macrotask will be * coalesced into a single `updateWidgets` message. */ private scheduleFlush(fragmentId: string | undefined): void { // Update the stored fragmentId if we don't have one yet. If multiple calls // happen and at least one of them specifies a fragmentId, we keep the // first non-undefined value. if (this.scheduledFragmentId === undefined) { this.scheduledFragmentId = fragmentId } // If we already have a scheduled fragmentId and a new (different) one is // provided in the same macrotask, log a warning and proceed with the first // one. This acknowledges a rare edge case where multiple components could // trigger updates tied to different fragments in one batch. We've decided // to prefer to warn rather than throw; this leaves us exposed to potential // bugs in very unusual setups. We can tighten this in the future if // real-world issues arise. if ( this.scheduledFragmentId !== undefined && fragmentId !== undefined && fragmentId !== this.scheduledFragmentId && !this.hasFragmentIdConflict ) { LOG.warn( "Unexpected state: Multiple different fragmentIds detected in a single batch of widget updates. Proceeding with flushing updates using fragmentId '%s' for this batch.", this.scheduledFragmentId ) this.hasFragmentIdConflict = true } if (this.flushScheduled) { return } this.flushScheduled = true setTimeout(() => { // Send a *single* widgets update containing **all** pending updates. this.sendUpdateWidgetsMessage(this.scheduledFragmentId) // Clean-up temporary trigger widget states so they don't leak into future updates. this.pendingTriggerIds.forEach(id => this.deleteWidgetState(id)) this.pendingTriggerIds.clear() // Resolve all promises that were waiting for this flush. this.triggerFlushResolvers.forEach(r => r()) this.triggerFlushResolvers = [] // Reset scheduling flags. this.flushScheduled = false this.scheduledFragmentId = undefined this.hasFragmentIdConflict = false }, 0) } } /** * Coerce a `number | Long` to a `number`. * * Our "intValue" and "intArrayValue" widget protobuf fields represent their * values with sint64, because sint32 is too small to represent the full range * of JavaScript int values. Protobufjs uses `number | Long` to represent * sint64. However, we're never putting Longs *into* int and intArrays - * because none of our widgets use Longs - so we'll never get a Long back out. * * If the given value cannot be converted to `number` without a loss of * precision (which should not be possible!), throw an error instead. */ function requireNumberInt(value: number | Long): number { if (typeof value === "number") { return value } const longNumber = util.LongBits.from(value).toNumber() if (Number.isSafeInteger(longNumber)) { return longNumber } throw new Error( // eslint-disable-next-line @typescript-eslint/no-base-to-string, @typescript-eslint/restrict-template-expressions -- TODO: Fix this `value ${value} cannot be converted to number without a loss of precision!` ) }
51
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/StreamlitEndpoints.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { IAppPage } from "@streamlit/protobuf" export type FileUploadClientConfig = { prefix: string headers: Record<string, string> } /** Exposes non-websocket endpoints used by the frontend. */ export interface StreamlitEndpoints { /** * Set the static config url for static connection media assets. * * @param url The URL to set. */ setStaticConfigUrl(url: string): void /** * Send postMessage to host with client errors * @param component component causing the error * @param error error status code or message * @param message additional error info * @param source component src (url) * @param customComponentName If custom component, the component's name causing the error. */ sendClientErrorToHost( component: string, error: string | number, message: string, source: string, customComponentName?: string ): void /** * Checks if the component src has successful response. * If not, sends CLIENT_ERROR message with error info. * @param sourceUrl The source to check. * @param componentName The component for which the source is being checked. * @param customComponentName If custom component, the component's name for which the source is being checked. */ checkSourceUrlResponse( sourceUrl: string, componentName: string, customComponentName?: string ): Promise<void> /** * Return a URL to fetch data for the given custom component. * @param componentName The registered name of the component. * @param path The path of the component resource to fetch, e.g. "index.html". */ buildComponentURL(componentName: string, path: string): string /** * Return a URL to fetch data for the given bidirectional component. * @param componentName The registered name of the component. * @param path The path of the component resource to fetch, e.g. "script.js". */ buildBidiComponentURL(componentName: string, path: string): string /** * Construct a URL for a media file. * @param url a relative or absolute URL. If `url` is absolute, it will be * returned unchanged. Otherwise, the return value will be a URL for fetching * the media file from the connected Streamlit instance. */ buildMediaURL(url: string): string /** * Construct a URL for a download file. * @param url a relative or absolute URL. If `url` is absolute, it will be * returned unchanged. Otherwise, the return value will be a URL for fetching * the media file from the connected Streamlit instance. */ buildDownloadUrl(url: string): string /** * Construct a URL for uploading a file. * @param url a relative or absolute URL. If `url` is absolute, it will be * returned unchanged. Otherwise, the return value will be a URL for fetching * the media file from the connected Streamlit instance. */ buildFileUploadURL?(url: string): string /** * Construct a URL for an app page in a multi-page app. * @param pageLinkBaseURL the optional pageLinkBaseURL set by the host communication layer. * @param page the page's AppPage protobuf properties * @param pageIndex the page's zero-based index */ buildAppPageURL(pageLinkBaseURL: string | undefined, page: IAppPage): string /** * Upload a file to the FileUploader endpoint. * * @param fileUploadUrl The URL to upload the file to. * @param file The file to upload. * @param sessionId the current sessionID. The file will be associated with this ID. * @param onUploadProgress optional function that will be called repeatedly with progress events during the upload. * @param signal optional AbortSignal that can be used to cancel the in-progress upload. * * @return a Promise<number> that resolves with the file's unique ID, as assigned by the server. */ uploadFileUploaderFile( fileUploadUrl: string, file: File, sessionId: string, // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. onUploadProgress?: (progressEvent: any) => void, signal?: AbortSignal ): Promise<void> /** * Request that the file at the given URL be deleted. * * @param fileUrl: The URL of the file to delete. * @param sessionId the current sessionID. */ deleteFileAtURL?(fileUrl: string, sessionId: string): Promise<void> /** * setFileUploadClientConfig. * @param config the object that contains prefix and headers object */ setFileUploadClientConfig?(config: FileUploadClientConfig): void }
52
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/test_util.tsx
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import React, { FC, PropsWithChildren, ReactElement } from "react" import { render as reactTestingLibraryRender, RenderOptions, RenderResult, } from "@testing-library/react" import { Vector } from "apache-arrow" import { PageConfig } from "@streamlit/protobuf" import { DownloadContext, DownloadContextProps, } from "./components/core/DownloadContext" import { FormsContext, FormsContextProps, } from "./components/core/FormsContext" import { FlexContext } from "./components/core/Layout/FlexContext" import { Direction } from "./components/core/Layout/utils" import { LibConfigContext, LibConfigContextProps, } from "./components/core/LibConfigContext" import { NavigationContext, NavigationContextProps, } from "./components/core/NavigationContext" import { ScriptRunContext, ScriptRunContextProps, } from "./components/core/ScriptRunContext" import { SidebarConfigContext, SidebarConfigContextProps, } from "./components/core/SidebarConfigContext" import { ThemeContext, ThemeContextProps, } from "./components/core/ThemeContext" import ThemeProvider from "./components/core/ThemeProvider" import { ViewStateContext, ViewStateContextProps, } from "./components/core/ViewStateContext" import { WindowDimensionsProvider } from "./components/shared/WindowDimensions/Provider" import { mockTheme } from "./mocks/mockTheme" import { ScriptRunState } from "./ScriptRunState" import { createFormsData } from "./WidgetStateManager" const flexContextValue = { direction: Direction.VERTICAL, isInHorizontalLayout: false, isInRoot: false, isInContentWidthContainer: false, } const defaultLibConfigContextValue = { locale: "en-US", mapboxToken: undefined, enforceDownloadInNewTab: undefined, resourceCrossOriginMode: undefined, } const defaultSidebarConfigContextValue = { initialSidebarState: PageConfig.SidebarState.AUTO, appLogo: null, sidebarChevronDownshift: 0, expandSidebarNav: false, hideSidebarNav: false, } const defaultThemeContextValue = { activeTheme: mockTheme, setTheme: () => {}, availableThemes: [], } const defaultNavigationContextValue = { pageLinkBaseUrl: "", currentPageScriptHash: "", onPageChange: () => {}, navSections: [], appPages: [], } const defaultViewStateContextValue = { isFullScreen: false, setFullScreen: () => {}, } const defaultScriptRunContextValue = { scriptRunState: ScriptRunState.NOT_RUNNING, scriptRunId: "script run 123", fragmentIdsThisRun: [], } export const TestAppWrapper: FC<PropsWithChildren> = ({ children }) => { return ( <ThemeProvider theme={mockTheme.emotion}> <WindowDimensionsProvider> <FlexContext.Provider value={flexContextValue}> <LibConfigContext.Provider value={defaultLibConfigContextValue}> <SidebarConfigContext.Provider value={defaultSidebarConfigContextValue} > <ThemeContext.Provider value={defaultThemeContextValue}> <ViewStateContext.Provider value={defaultViewStateContextValue} > <NavigationContext.Provider value={defaultNavigationContextValue} > <ScriptRunContext.Provider value={defaultScriptRunContextValue} > {children} </ScriptRunContext.Provider> </NavigationContext.Provider> </ViewStateContext.Provider> </ThemeContext.Provider> </SidebarConfigContext.Provider> </LibConfigContext.Provider> </FlexContext.Provider> </WindowDimensionsProvider> </ThemeProvider> ) } /** * Use react-testing-library to render a ReactElement. The element will be * wrapped in our ThemeProvider. */ export function render( ui: ReactElement, options?: Omit<RenderOptions, "queries"> ): RenderResult { return reactTestingLibraryRender(ui, { wrapper: ({ children }) => <TestAppWrapper>{children}</TestAppWrapper>, ...options, }) } export function mockWindowLocation(hostname: string): void { // Mock window.location by creating a new object // Source: https://www.benmvp.com/blog/mocking-window-location-methods-jest-jsdom/ // @ts-expect-error delete window.location // @ts-expect-error window.location = { assign: vi.fn(), hostname: hostname, } } /** * Options for overriding context values in renderWithContexts. * All properties are optional - only provide the contexts you need to override. */ export interface RenderWithContextsOptions { viewStateContext?: Partial<ViewStateContextProps> libConfigContext?: Partial<LibConfigContextProps> sidebarConfigContext?: Partial<SidebarConfigContextProps> themeContext?: Partial<ThemeContextProps> navigationContext?: Partial<NavigationContextProps> formsContext?: Partial<FormsContextProps> scriptRunContext?: Partial<ScriptRunContextProps> downloadContext?: Partial<DownloadContextProps> } /** * Extended RenderResult that includes a rerender function supporting context updates */ export interface RenderWithContextsResult extends RenderResult { /** * Re-render the component with updated context values. * Merges new context props with existing ones (shallow merge). * * @param component The component to render (usually the same component with updated props) * @param options Context overrides to merge with existing values */ rerenderWithContexts: ( component: ReactElement, options?: RenderWithContextsOptions ) => void } /** * Use react-testing-library to render a ReactElement. The element will be * wrapped in Providers for ViewStateContext, LibConfigContext, SidebarConfigContext, * ThemeContext, NavigationContext, FormsContext, and ScriptRunContext. * * Returns an extended RenderResult with a `rerenderWithContexts` method that * allows updating context values during re-renders. * * @param component The React component to render * @param options Context overrides (all optional) * @returns Extended render result with rerenderWithContexts method * * @example * renderWithContexts(<MyComponent />, { * navigationContext: { appPages: [...] }, * themeContext: { activeTheme: customTheme }, * viewStateContext: { isFullScreen: true } * }) */ export const renderWithContexts = ( component: ReactElement, options: RenderWithContextsOptions = {} ): RenderWithContextsResult => { // Track current context values across rerenders. // The Wrapper component below reads these on each render, // so updating them in rerenderWithContexts will affect subsequent renders. // Use let to allow reassignment in rerenderWithContexts let currentLibConfigContextProps: LibConfigContextProps = { locale: "en-US", // Flattened libConfig properties: mapboxToken: undefined, enforceDownloadInNewTab: undefined, resourceCrossOriginMode: undefined, ...options.libConfigContext, } let currentSidebarConfigContextProps: SidebarConfigContextProps = { initialSidebarState: PageConfig.SidebarState.AUTO, appLogo: null, sidebarChevronDownshift: 0, expandSidebarNav: false, hideSidebarNav: false, ...options.sidebarConfigContext, } let currentThemeContextProps: ThemeContextProps = { activeTheme: mockTheme, setTheme: vi.fn(), availableThemes: [], ...options.themeContext, } let currentNavigationContextProps: NavigationContextProps = { pageLinkBaseUrl: "", currentPageScriptHash: "", onPageChange: vi.fn(), navSections: [], appPages: [], ...options.navigationContext, } let currentViewStateContextProps: ViewStateContextProps = { isFullScreen: false, setFullScreen: vi.fn(), ...options.viewStateContext, } let currentScriptRunContextProps: ScriptRunContextProps = { scriptRunState: ScriptRunState.NOT_RUNNING, scriptRunId: "script run 123", fragmentIdsThisRun: [], ...options.scriptRunContext, } let currentFormsContextProps: FormsContextProps = { formsData: createFormsData(), ...options.formsContext, } let currentDownloadContextProps: DownloadContextProps = { requestDeferredFile: undefined, ...options.downloadContext, } const Wrapper: FC<PropsWithChildren> = ({ children }) => ( <ThemeProvider theme={mockTheme.emotion}> <WindowDimensionsProvider> <FlexContext.Provider value={flexContextValue}> <LibConfigContext.Provider value={currentLibConfigContextProps}> <SidebarConfigContext.Provider value={currentSidebarConfigContextProps} > <ThemeContext.Provider value={currentThemeContextProps}> <NavigationContext.Provider value={currentNavigationContextProps} > <ViewStateContext.Provider value={currentViewStateContextProps} > <ScriptRunContext.Provider value={currentScriptRunContextProps} > <DownloadContext.Provider value={currentDownloadContextProps} > <FormsContext.Provider value={currentFormsContextProps} > {children} </FormsContext.Provider> </DownloadContext.Provider> </ScriptRunContext.Provider> </ViewStateContext.Provider> </NavigationContext.Provider> </ThemeContext.Provider> </SidebarConfigContext.Provider> </LibConfigContext.Provider> </FlexContext.Provider> </WindowDimensionsProvider> </ThemeProvider> ) const result = reactTestingLibraryRender(component, { wrapper: Wrapper, }) return { ...result, rerenderWithContexts: ( newComponent: ReactElement, newOptions?: RenderWithContextsOptions ): void => { // Update context values if provided if (newOptions?.viewStateContext) { currentViewStateContextProps = { ...currentViewStateContextProps, ...newOptions.viewStateContext, } } if (newOptions?.libConfigContext) { currentLibConfigContextProps = { ...currentLibConfigContextProps, ...newOptions.libConfigContext, } } if (newOptions?.sidebarConfigContext) { currentSidebarConfigContextProps = { ...currentSidebarConfigContextProps, ...newOptions.sidebarConfigContext, } } if (newOptions?.themeContext) { currentThemeContextProps = { ...currentThemeContextProps, ...newOptions.themeContext, } } if (newOptions?.navigationContext) { currentNavigationContextProps = { ...currentNavigationContextProps, ...newOptions.navigationContext, } } if (newOptions?.formsContext) { currentFormsContextProps = { ...currentFormsContextProps, ...newOptions.formsContext, } } if (newOptions?.downloadContext) { currentDownloadContextProps = { ...currentDownloadContextProps, ...newOptions.downloadContext, } } if (newOptions?.scriptRunContext) { currentScriptRunContextProps = { ...currentScriptRunContextProps, ...newOptions.scriptRunContext, } } // Use the original rerender with the wrapper result.rerender(newComponent) }, } } // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. export function arrayFromVector(vector: any): any { if (Array.isArray(vector)) { return vector.map(arrayFromVector) } if (vector instanceof Vector) { return Array.from(vector) } return vector } /** * Helper function to create a simple test File object. */ export function createTestFile( fileName: string, content: string | ArrayBuffer = "content", mimeType?: string ): File { // Auto-detect mime type from extension if not provided if (!mimeType) { const ext = fileName.split(".").pop()?.toLowerCase() const mimeTypes: Record<string, string> = { txt: "text/plain", pdf: "application/pdf", exe: "application/exe", jpg: "image/jpeg", jpeg: "image/jpeg", png: "image/png", html: "text/html", js: "application/javascript", json: "application/json", } mimeType = mimeTypes[ext || ""] || "application/octet-stream" } return new File([content], fileName, { type: mimeType }) } /** * Helper function to create a File object with webkitRelativePath for testing directory uploads. * This simulates how browsers provide files when a directory is selected. */ export function createFileWithPath( content: string | ArrayBuffer, fileName: string, relativePath: string, mimeType: string = "text/plain" ): File { const file = new File([content], fileName, { type: mimeType }) Object.assign(file, { webkitRelativePath: relativePath }) return file } /** * Helper function to create multiple files representing a directory structure. * Each file will have the appropriate webkitRelativePath set. */ export function createDirectoryFiles( files: Array<{ content: string | ArrayBuffer path: string mimeType?: string }> ): File[] { return files.map(({ content, path, mimeType = "text/plain" }) => { const fileName = path.split("/").pop() || "file" return createFileWithPath(content, fileName, path, mimeType) }) }
53
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/testing.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Test-only utilities for @streamlit/lib. * * These helpers intentionally live outside the main public entry point so we * can keep heavy testing dependencies (like @testing-library) out of production * bundles. Import them from "@streamlit/lib/testing" when you need to render * components in tests. */ export { mockWindowLocation, render, renderWithContexts, TestAppWrapper, } from "./test_util" export type { RenderWithContextsOptions, RenderWithContextsResult, } from "./test_util"
54
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/styled-components.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import styled from "@emotion/styled" import { hasLightBackgroundColor } from "@streamlit/lib" export const StyledApp = styled.div(({ theme }) => ({ position: "absolute", background: theme.colors.bgColor, color: theme.colors.bodyText, top: theme.spacing.none, left: theme.spacing.none, right: theme.spacing.none, bottom: theme.spacing.none, overflow: "hidden", "@media print": { float: "none", height: theme.sizes.full, position: "static", overflow: "visible", }, })) /** * The glide-data-grid requires one root level portal element for rendering the cell overlays: * https://github.com/glideapps/glide-data-grid/blob/main/packages/core/API.md#htmlcss-prerequisites * This is added to the body in ThemedApp. */ export const StyledDataFrameOverlay = styled.div(({ theme }) => ({ position: "fixed", top: 0, left: 0, zIndex: theme.zIndices.tablePortal, lineHeight: "100%", ...(!hasLightBackgroundColor(theme) && { "& input[type='date'], & input[type='time'], & input[type='datetime-local']": { "&::-webkit-calendar-picker-indicator": { filter: "brightness(0) invert(1)", opacity: 1, }, }, }), })) export const StyledErrorMessage = styled.small(({ theme }) => ({ color: theme.colors.redTextColor, fontSize: theme.fontSizes.sm, marginTop: theme.spacing.twoXS, display: "block", }))
55
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/SessionInfo.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Config, EnvironmentInfo, Initialize, NewSession, UserInfo, } from "@streamlit/protobuf" import { hashString, notNullOrUndefined } from "./util/utils" /** * SessionInfo properties. These don't change during the lifetime of a session. */ export interface Props { readonly appId: string readonly sessionId: string readonly streamlitVersion: string readonly pythonVersion: string readonly serverOS: string readonly hasDisplay: boolean readonly installationId: string readonly installationIdV3: string readonly installationIdV4: string readonly maxCachedMessageAge: number readonly commandLine?: string // Unused, but kept around for compatibility readonly isHello: boolean readonly isConnected: boolean } export class SessionInfo { /** Our current SessionInfo properties.*/ private _current?: Props /** * Our last SessionInfo props if there is no currently active session, or * undefined if there is one. */ private _last?: Props /** Return the current SessionInfo props. Throw an error if the props are undefined. */ public get current(): Props { if (!this._current) { throw new Error("Tried to use SessionInfo before it was initialized") } return this._current } /** Return the previous SessionInfo props. They may be undefined! */ public get last(): Props | undefined { return this._last } /** * Initialize `SessionInfo.current` with the given props and copy its * previous props to `SessionInfo.last`. */ public setCurrent(props?: Props): void { this._last = notNullOrUndefined(this._current) ? { ...this._current } : undefined this._current = notNullOrUndefined(props) ? { ...props } : undefined } /** Marks `SessionInfo.current` as not connected and copy its previous props to `SessionInfo.last`. */ public disconnect(): void { if (this._current) { this.setCurrent({ ...this._current, isConnected: false, }) } } /** True if `SessionInfo.current` exists. */ public get isSet(): boolean { return notNullOrUndefined(this._current) } /** True if `SessionInfo.current` refers to a "streamlit hello" session. */ public get isHello(): boolean { return notNullOrUndefined(this._current) && this._current.isHello } /** Create SessionInfo Props from the relevant bits of an initialize message. */ public static propsFromNewSessionMessage(newSession: NewSession): Props { const initialize = newSession.initialize as Initialize const config = newSession.config as Config const userInfo = initialize.userInfo as UserInfo const environmentInfo = initialize.environmentInfo as EnvironmentInfo return { appId: hashString(userInfo.installationIdV3 + newSession.mainScriptPath), sessionId: initialize.sessionId, streamlitVersion: environmentInfo.streamlitVersion, pythonVersion: environmentInfo.pythonVersion, serverOS: environmentInfo.serverOs, hasDisplay: environmentInfo.hasDisplay, installationId: userInfo.installationId, installationIdV3: userInfo.installationIdV3, installationIdV4: userInfo.installationIdV4, maxCachedMessageAge: config.maxCachedMessageAge, isHello: initialize.isHello, // We assume we are always connected because the message came directly from the server. isConnected: true, } } }
56
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/urls.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const STREAMLIT_HOME_URL = "https://streamlit.io" export const DEPLOY_URL = "https://share.streamlit.io/deploy" export const STREAMLIT_CLOUD_URL = "https://streamlit.io/cloud" export const ONLINE_DOCS_URL = "https://docs.streamlit.io" export const COMMUNITY_URL = "https://discuss.streamlit.io" /** The URL customers are directed to for troubleshooting components. */ export const COMPONENT_DEVELOPER_URL = "https://docs.streamlit.io/develop/concepts/custom-components" /** The URL customers are directed to for troubleshooting camera permissions. */ export const CAMERA_PERMISSION_URL = "https://docs.streamlit.io/knowledge-base/using-streamlit/enable-camera" export const STREAMLIT_COMMUNITY_CLOUD_DOCS_URL = "https://docs.streamlit.io/deploy/streamlit-community-cloud/get-started" export const STREAMLIT_DEPLOY_TUTORIAL_URL = "https://docs.streamlit.io/deploy/tutorials" export const ENABLE_PERIPHERALS_DOCS_URL = "https://docs.streamlit.io/end-users/enable-peripherals"
57
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/react-app-env.d.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /// <reference types="react-scripts" />
58
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/AppNode.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export type { AppNode } from "./render-tree/AppNode.interface" export { AppRoot } from "./render-tree/AppRoot" export { BlockNode } from "./render-tree/BlockNode" export { ElementNode } from "./render-tree/ElementNode"
59
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/FileUploadClient.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Mock } from "vitest" import { FileUploadClient } from "./FileUploadClient" import { mockSessionInfo } from "./mocks/mocks" const MOCK_FILE_ID = -111 const MOCK_FILE = new File(["file1"], "file1.txt") describe("FileUploadClient Upload", () => { let formsWithPendingRequestsChanged: Mock let requestFileURLs: Mock let uploadFileUploaderFile: Mock let uploader: FileUploadClient beforeEach(() => { formsWithPendingRequestsChanged = vi.fn() uploadFileUploaderFile = vi.fn() requestFileURLs = vi.fn() uploader = new FileUploadClient({ sessionInfo: mockSessionInfo(), endpoints: { setStaticConfigUrl: vi.fn(), sendClientErrorToHost: vi.fn(), checkSourceUrlResponse: vi.fn(), buildComponentURL: vi.fn(), buildBidiComponentURL: vi.fn(), buildMediaURL: vi.fn(), buildDownloadUrl: vi.fn(), buildFileUploadURL: vi.fn(), buildAppPageURL: vi.fn(), uploadFileUploaderFile: uploadFileUploaderFile, deleteFileAtURL: vi.fn(), }, formsWithPendingRequestsChanged, requestFileURLs, }) }) it("uploads files outside a form", async () => { uploadFileUploaderFile.mockResolvedValue(MOCK_FILE_ID) await expect( uploader.uploadFile( { id: "widgetId", formId: "" }, "/_stcore/upload_file/file_1", MOCK_FILE ) ).resolves.toBe(MOCK_FILE_ID) expect(formsWithPendingRequestsChanged).not.toHaveBeenCalled() }) it("uploads files inside a form", async () => { uploadFileUploaderFile.mockResolvedValue(MOCK_FILE_ID) // Upload a file with an attached form ID. const uploadFilePromise = uploader.uploadFile( { id: "widgetId", formId: "mockFormId" }, "/_stcore/upload_file/file_1", MOCK_FILE ) // `formsWithPendingRequestsChanged` should be called with our mockFormId // when the upload kicks off. expect(formsWithPendingRequestsChanged).toHaveBeenCalledTimes(1) expect(formsWithPendingRequestsChanged).toHaveBeenLastCalledWith( new Set(["mockFormId"]) ) // Wait for the upload to complete await expect(uploadFilePromise).resolves.toBeDefined() // `formsWithPendingRequestsChanged` should be called a second time, with // an empty set expect(formsWithPendingRequestsChanged).toHaveBeenCalledTimes(2) expect(formsWithPendingRequestsChanged).toHaveBeenLastCalledWith(new Set()) }) it("handles errors outside a form", async () => { uploadFileUploaderFile.mockRejectedValue(new Error("oh no!")) await expect( uploader.uploadFile( { id: "widgetId", formId: "" }, "/_stcore/upload_file/file_1", MOCK_FILE ) ).rejects.toEqual(new Error("oh no!")) expect(formsWithPendingRequestsChanged).not.toHaveBeenCalled() }) it("handles errors inside a form", async () => { uploadFileUploaderFile.mockRejectedValue(new Error("oh no!")) // Upload a file with an attached form ID. const uploadFilePromise = uploader.uploadFile( { id: "widgetId", formId: "mockFormId" }, "/_stcore/upload_file/file_1", MOCK_FILE ) // `formsWithPendingRequestsChanged` should be called with our mockFormId // when the upload kicks off. expect(formsWithPendingRequestsChanged).toHaveBeenCalledTimes(1) expect(formsWithPendingRequestsChanged).toHaveBeenLastCalledWith( new Set(["mockFormId"]) ) // Wait for the upload to error await expect(uploadFilePromise).rejects.toBeDefined() // `formsWithPendingRequestsChanged` should be called a second time, with // an empty set expect(formsWithPendingRequestsChanged).toHaveBeenCalledTimes(2) expect(formsWithPendingRequestsChanged).toHaveBeenLastCalledWith(new Set()) }) it("fetchFileURLs calls requestFileURLs and returns a promise", () => { const fileURLsPromise = uploader.fetchFileURLs([]) expect(requestFileURLs).toHaveBeenCalledTimes(1) // @ts-expect-error const pendingReqs = uploader.pendingFileURLsRequests expect(pendingReqs.size).toBe(1) const reqId = pendingReqs.keys().next().value as string expect(pendingReqs.get(reqId)?.promise).toBe(fileURLsPromise) }) it("onFileURLsResponse rejects promise on errorMsg", async () => { void uploader.fetchFileURLs([]) // @ts-expect-error const pendingReqs = uploader.pendingFileURLsRequests const reqId = pendingReqs.keys().next().value as string const promise = pendingReqs.get(reqId)?.promise uploader.onFileURLsResponse({ responseId: reqId, errorMsg: "kaboom", }) await expect(promise).rejects.toBe("kaboom") }) it("onFileURLsResponse resolves promise on success", async () => { void uploader.fetchFileURLs([]) // @ts-expect-error const pendingReqs = uploader.pendingFileURLsRequests const reqId = pendingReqs.keys().next().value as string const promise = pendingReqs.get(reqId)?.promise uploader.onFileURLsResponse({ responseId: reqId, fileUrls: [], }) await expect(promise).resolves.toEqual([]) }) it("onFileURLsResponse does not error when given an invalid responseId", () => { // No need to do anything other than check that no error is thrown. expect(() => { uploader.onFileURLsResponse({ responseId: "noCorrespondingId", fileUrls: [], }) }).not.toThrow() }) })
60
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/RootStyleProvider.tsx
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import React, { ReactElement } from "react" import createCache from "@emotion/cache" import { CacheProvider, ThemeProvider as EmotionThemeProvider, Global, } from "@emotion/react" import { BaseProvider } from "baseui" import { globalStyles, ThemeConfig } from "./theme" export interface RootStyleProviderProps { theme: ThemeConfig children: React.ReactNode } const nonce = document.currentScript?.nonce || "" const cache = createCache({ // The key field is required but only matters if there's more than one // emotion cache in use. This will probably never be true for us, so we just // set it arbitrarily. key: "st-emotion-cache", ...(nonce && { nonce }), }) export function RootStyleProvider( props: RootStyleProviderProps ): ReactElement { const { children, theme } = props return ( <BaseProvider theme={theme.basewebTheme} // This zIndex is required for modals/dialog. However, // it would be good to do some investigation // and find a better way to configure the zIndex // for the modals/dialogs. zIndex={theme.emotion.zIndices.popup} > <CacheProvider value={cache}> <EmotionThemeProvider theme={theme.emotion}> <Global styles={globalStyles} /> {children} </EmotionThemeProvider> </CacheProvider> </BaseProvider> ) }
61
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // We add some polyfills in order to support older browsers for the exports below import "@streamlit/utils" // These imports are each exported specifically in order to minimize public apis. export type { LibConfig } from "@streamlit/connection" export { AppRoot, BlockNode, ElementNode } from "./AppNode" export { ContainerContentsWrapper, VerticalBlock, } from "./components/core/Block" export type { BlockPropsWithoutWidth } from "./components/core/Block" export { default as ElementNodeRenderer } from "./components/core/Block/ElementNodeRenderer" export type { ElementNodeRendererProps } from "./components/core/Block/ElementNodeRenderer" export { DownloadContext } from "./components/core/DownloadContext" export type { DownloadContextProps } from "./components/core/DownloadContext" export { FormsContext } from "./components/core/FormsContext" export type { FormsContextProps } from "./components/core/FormsContext" export { default as IsDialogContext } from "./components/core/IsDialogContext" export { default as IsSidebarContext } from "./components/core/IsSidebarContext" export { LibConfigContext } from "./components/core/LibConfigContext" export type { LibConfigContextProps } from "./components/core/LibConfigContext" export { NavigationContext } from "./components/core/NavigationContext" export type { NavigationContextProps } from "./components/core/NavigationContext" export { PortalProvider } from "./components/core/Portal/PortalProvider" export { ScriptRunContext } from "./components/core/ScriptRunContext" export type { ScriptRunContextProps } from "./components/core/ScriptRunContext" export { SidebarConfigContext } from "./components/core/SidebarConfigContext" export type { SidebarConfigContextProps } from "./components/core/SidebarConfigContext" export { ThemeContext } from "./components/core/ThemeContext" export type { ThemeContextProps } from "./components/core/ThemeContext" export { default as ThemeProvider } from "./components/core/ThemeProvider" export { ViewStateContext } from "./components/core/ViewStateContext" export type { ViewStateContextProps } from "./components/core/ViewStateContext" export { default as AlertElement } from "./components/elements/AlertElement" export { default as StreamlitErrorCodeBlock } from "./components/elements/CodeBlock/StreamlitErrorCodeBlock" export { handleFavicon } from "./components/elements/Favicon" export { default as TextElement } from "./components/elements/TextElement" export { default as BaseButton, BaseButtonKind, } from "./components/shared/BaseButton" export { default as BaseColorPicker } from "./components/shared/BaseColorPicker" export { default as UISelectbox } from "./components/shared/Dropdown/Selectbox" export { DynamicIcon, EmojiIcon, default as Icon, isMaterialIcon, } from "./components/shared/Icon" export { default as Modal, ModalBody, ModalButton, ModalFooter, ModalHeader, } from "./components/shared/Modal" export { CircularBuffer, Profiler } from "./components/shared/Profiler" export { default as StreamlitMarkdown } from "./components/shared/StreamlitMarkdown" export { Placement, default as Tooltip } from "./components/shared/Tooltip" export { WindowDimensionsContext } from "./components/shared/WindowDimensions" export { WindowDimensionsProvider } from "./components/shared/WindowDimensions/Provider" export type { WindowDimensions } from "./components/shared/WindowDimensions/useWindowDimensions" export { useWindowDimensionsContext } from "./components/shared/WindowDimensions/useWindowDimensionsContext" export { ComponentRegistry } from "./components/widgets/CustomComponent" export { Quiver } from "./dataframes/Quiver" export { FileUploadClient } from "./FileUploadClient" export { useCopyToClipboard } from "./hooks/useCopyToClipboard" export { useCrossOriginAttribute } from "./hooks/useCrossOriginAttribute" export { useEmotionTheme } from "./hooks/useEmotionTheme" export { useExecuteWhenChanged } from "./hooks/useExecuteWhenChanged" export { ensureHotkeysFilterConfigured } from "./hooks/useRegisterShortcut" export { useRequiredContext } from "./hooks/useRequiredContext" export { measureScrollbarGutterSize, useScrollbarGutterSize, } from "./hooks/useScrollbarGutterSize" export { default as useScrollToBottom } from "./hooks/useScrollToBottom" export { default as HostCommunicationManager } from "./hostComm" export { HOST_COMM_VERSION } from "./hostComm/HostCommunicationManager" export type { AppConfig, DeployedAppMetadata, IGuestToHostMessage, IMenuItem, IToolbarItem, } from "./hostComm/types" export { mockEndpoints, mockSessionInfo, mockSessionInfoProps, } from "./mocks/mocks" export { mockTheme } from "./mocks/mockTheme" export { RootStyleProvider } from "./RootStyleProvider" export { ScriptRunState } from "./ScriptRunState" export { SessionInfo } from "./SessionInfo" export { AUTO_THEME_NAME, baseTheme, convertRemToPx, createAutoTheme, createCustomThemes, createPresetThemes, createSidebarTheme, createTheme, CUSTOM_THEME_AUTO_NAME, CUSTOM_THEME_DARK_NAME, CUSTOM_THEME_LIGHT_NAME, CUSTOM_THEME_NAME, customTheme, darkTheme, getCachedTheme, getDefaultTheme, getHostSpecifiedTheme, getSystemThemePreference, globalStyles, hasLightBackgroundColor, isPresetTheme, lightTheme, removeCachedTheme, setCachedTheme, toExportedTheme, toThemeInput, } from "./theme" export type { EmotionTheme, PresetThemeName, ThemeConfig } from "./theme" export { default as emotionLightTheme } from "./theme/emotionLightTheme" export { fonts, spacing } from "./theme/primitives" export { ensureError } from "./util/ErrorHandling" export { useIsOverflowing } from "./util/Hooks" export { isMobile } from "./util/isMobile" export { mark, measure, type StPerformanceMark, type StPerformanceMetric, } from "./util/performance" export { LocalStore } from "./util/storageUtils" export { Timer } from "./util/Timer" export { getCrossOriginAttribute } from "./util/UriUtil" export { extractPageNameFromPathName, generateUID, getElementId, getEmbeddingIdClassName, getIFrameEnclosingApp, getLocaleLanguage, getScreencastTimestamp, getTimezone, getTimezoneOffset, getUrl, hashString, isDarkThemeInQueryParams, isEmbed, isInChildFrame, isLightThemeInQueryParams, isPaddingDisplayed, isScrollingHidden, isToolbarDisplayed, makeElementWithInfoText, notUndefined, preserveEmbedQueryParams, setCookie, } from "./util/utils" export { createFormsData, WidgetStateManager } from "./WidgetStateManager" export type { FormsData } from "./WidgetStateManager"
62
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/FileUploadClient.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import isEqual from "lodash/isEqual" import { getLogger } from "loglevel" import { v4 as uuidv4 } from "uuid" import { IFileURLs, IFileURLsResponse } from "@streamlit/protobuf" import { SessionInfo } from "./SessionInfo" import { StreamlitEndpoints } from "./StreamlitEndpoints" import { isValidFormId } from "./util/utils" /** Common widget protobuf fields that are used by the FileUploadClient. */ interface WidgetInfo { id: string formId: string } interface Props { /** The app's SessionInfo instance. */ sessionInfo: SessionInfo endpoints: StreamlitEndpoints formsWithPendingRequestsChanged: (formIds: Set<string>) => void requestFileURLs?: (requestId: string, files: File[]) => void } const LOG = getLogger("FileUploadClient") /** * Handles operations related to the widgets that require file uploading. */ export class FileUploadClient { private readonly sessionInfo: SessionInfo private readonly endpoints: StreamlitEndpoints /** * Map of <formId: number of outstanding requests>. Updated whenever * a widget in a form creates are completes a request. */ private readonly formsWithPendingRequests = new Map<string, number>() /** * Called when the set of forms that have pending file requests changes. */ private readonly pendingFormUploadsChanged: (formIds: Set<string>) => void /** * Function to ask the app to request file URLs for getting/uploading/deleting * files. Currently, this is only done by App.tsx via a BackMsg sent over the * browser tab's websocket connection, but the FileUploadClient is * indifferent to the exact mechanism used. * * Upon receiving the requested file URLs, the app should call this class' * onFileURLsResponse method. */ private readonly requestFileURLs?: (requestId: string, files: File[]) => void /** * A map from request ID (a uuidv4) to the Resolver that should resolve once * the requested file URLs are received. */ private readonly pendingFileURLsRequests = new Map< string, PromiseWithResolvers<IFileURLs[]> >() public constructor(props: Props) { this.sessionInfo = props.sessionInfo this.endpoints = props.endpoints this.pendingFormUploadsChanged = props.formsWithPendingRequestsChanged this.requestFileURLs = props.requestFileURLs } /** * Upload a file to the given URL. It will be associated with this browser's * sessionID. * * @param widget: the FileUploader widget that's doing the upload. * @param fileUploadUrl: the URL to upload the file to. * @param file: the files to upload. * @param onUploadProgress: an optional function that will be called repeatedly with progress events during the upload. * @param signal: an optional AbortSignal that can be used to cancel the in-progress upload. * * @return a Promise<void> that resolves with a void promise when the upload is complete. */ public async uploadFile( widget: WidgetInfo, fileUploadUrl: string, file: File, // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. onUploadProgress?: (progressEvent: any) => void, signal?: AbortSignal ): Promise<void> { this.offsetPendingRequestCount(widget.formId, 1) return this.endpoints .uploadFileUploaderFile( fileUploadUrl, file, this.sessionInfo.current.sessionId, onUploadProgress, signal ) .finally(() => this.offsetPendingRequestCount(widget.formId, -1)) } /** * Request that the file at the given URL is deleted. * @param fileUrl: the URL of the file to delete. */ public deleteFile(fileUrl: string): Promise<void> { return this.endpoints.deleteFileAtURL ? this.endpoints.deleteFileAtURL( fileUrl, this.sessionInfo.current.sessionId ) : Promise.resolve() } /** * Request that the app fetch URLs to upload/delete/get the given files. Once * this is done, the app should call this class' onFileURLsResponse to * signify completion. * * @param files: An array of files. * * @return a Promise<FileURLsResponse.IFileURLs[]> resolving to a list of * URLs for uploading and deleting the given files. */ public fetchFileURLs(files: File[]): Promise<IFileURLs[]> { if (!this.requestFileURLs) { return Promise.resolve([]) } const resolver = Promise.withResolvers<IFileURLs[]>() const requestId = uuidv4() this.pendingFileURLsRequests.set(requestId, resolver) this.requestFileURLs(requestId, files) return resolver.promise } /** * Callback to be called by the app once the file URLs corresponding to a * call to this.requestFileURLs has been received. * * @param resp: the FileURLsResponse corresponding to a call to * this.requestFileURLs. */ public onFileURLsResponse(resp: IFileURLsResponse): void { const id = resp.responseId as string const resolver = this.pendingFileURLsRequests.get(id) if (resolver) { if (resp.errorMsg) { resolver.reject(resp.errorMsg) } else { resolver.resolve(resp.fileUrls || []) } this.pendingFileURLsRequests.delete(id) } else { LOG.warn("fileURLsResponse received for nonexistent request, ignoring.") } } private getFormIdSet(): Set<string> { return new Set(this.formsWithPendingRequests.keys()) } private offsetPendingRequestCount(formId: string, offset: number): void { if (offset === 0) { return } if (!isValidFormId(formId)) { return } const curCount = this.formsWithPendingRequests.get(formId) ?? 0 const newCount = curCount + offset if (newCount < 0) { throw new Error( `Can't offset pendingRequestCount below 0 (formId=${formId}, curCount=${curCount}, offset=${offset})` ) } const prevWidgetIds = this.getFormIdSet() if (newCount === 0) { this.formsWithPendingRequests.delete(formId) } else { this.formsWithPendingRequests.set(formId, newCount) } const newWidgetIds = this.getFormIdSet() if (!isEqual(newWidgetIds, prevWidgetIds)) { this.pendingFormUploadsChanged(newWidgetIds) } } }
63
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/ScriptRunState.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export enum ScriptRunState { // TODO: Add INITIAL state here and clean up data-test-script-state in App.tsx. // But before we do this, we need to make sure Snowflake hosts that use this // state will not break. And that's a bigger project... //INITIAL = "initial", NOT_RUNNING = "notRunning", RUNNING = "running", RERUN_REQUESTED = "rerunRequested", // script *not* running, but user requested it be re-run STOP_REQUESTED = "stopRequested", // script *is* running, but user requested it be stopped COMPILATION_ERROR = "compilationError", // script failed with a compilation error }
64
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/SessionInfo.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { NewSession } from "@streamlit/protobuf" import { mockSessionInfoProps } from "./mocks/mocks" import { SessionInfo } from "./SessionInfo" test("Throws an error when used before initialization", () => { const sessionInfo = new SessionInfo() expect(() => sessionInfo.current).toThrow() }) describe("SessionInfo.setCurrent", () => { test("copies props to `current`", () => { const sessionInfo = new SessionInfo() sessionInfo.setCurrent(mockSessionInfoProps()) expect(sessionInfo.isSet).toBe(true) expect(sessionInfo.current).toEqual(mockSessionInfoProps()) }) test("copies previous props to `last`", () => { const sessionInfo = new SessionInfo() sessionInfo.setCurrent(mockSessionInfoProps()) expect(sessionInfo.last).toBeUndefined() sessionInfo.setCurrent(mockSessionInfoProps({ appId: "newValue" })) expect(sessionInfo.current).toEqual( mockSessionInfoProps({ appId: "newValue" }) ) expect(sessionInfo.last).toEqual(mockSessionInfoProps()) }) }) describe("SessionInfo.isHello", () => { test("is true only when `isHello` is true in current SessionInfo", () => { const sessionInfo = new SessionInfo() expect(sessionInfo.isHello).toBe(false) sessionInfo.setCurrent(mockSessionInfoProps({ isHello: true })) expect(sessionInfo.isHello).toBe(true) sessionInfo.setCurrent(mockSessionInfoProps({ isHello: false })) expect(sessionInfo.isHello).toBe(false) }) }) test("Props can be initialized from a protobuf", () => { const MESSAGE = new NewSession({ config: { gatherUsageStats: false, maxCachedMessageAge: 31, mapboxToken: "mapboxToken", allowRunOnSave: false, }, initialize: { userInfo: { installationId: "installationId", installationIdV3: "installationIdV3", installationIdV4: "mockInstallationIdV4", }, environmentInfo: { streamlitVersion: "streamlitVersion", pythonVersion: "pythonVersion", serverOs: "mockServerOS", hasDisplay: true, }, sessionStatus: { runOnSave: false, scriptIsRunning: false, }, sessionId: "sessionId", isHello: false, }, }) const props = SessionInfo.propsFromNewSessionMessage(MESSAGE) expect(props.sessionId).toEqual("sessionId") expect(props.streamlitVersion).toEqual("streamlitVersion") expect(props.pythonVersion).toEqual("pythonVersion") expect(props.serverOS).toEqual("mockServerOS") expect(props.hasDisplay).toBeTruthy() expect(props.installationId).toEqual("installationId") expect(props.installationIdV3).toEqual("installationIdV3") expect(props.installationIdV4).toEqual("mockInstallationIdV4") expect(props.maxCachedMessageAge).toEqual(31) expect(props.commandLine).toBeUndefined() expect(props.isHello).toBeFalsy() })
65
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/WidgetStateManager.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { waitFor } from "@testing-library/dom" import { enableMapSet, enablePatches } from "immer" import { getLogger } from "loglevel" import { Mock } from "vitest" import { ArrowTable as ArrowTableProto, Button as ButtonProto, FileUploaderState as FileUploaderStateProto, UploadedFileInfo as UploadedFileInfoProto, } from "@streamlit/protobuf" import { createFormsData, FormsData, WidgetInfo, WidgetStateDict, WidgetStateManager, } from "./WidgetStateManager" const MOCK_ARROW_TABLE = new ArrowTableProto({ data: new Uint8Array(), index: new Uint8Array(), columns: new Uint8Array(), }) const MOCK_BYTES = new Uint8Array([0, 1, 2, 3]) const MOCK_JSON = { foo: "bar", baz: "qux" } const MOCK_WIDGET = { id: "mockWidgetId", formId: "", } const MOCK_CHAT_INPUT_VALUE = { data: "mockChatInputValue", fileUploaderState: null, } const MOCK_FORM_WIDGET = { id: "mockFormWidgetId", formId: "mockFormId", } const MOCK_FILE_UPLOADER_STATE = new FileUploaderStateProto({ maxFileId: 42, uploadedFileInfo: [ new UploadedFileInfoProto({ id: 4, name: "bob", size: 5, }), new UploadedFileInfoProto({ id: 42, name: "linus", size: 9001, }), ], }) // Required by ImmerJS enablePatches() enableMapSet() describe("Widget State Manager", () => { let sendBackMsg: Mock let widgetMgr: WidgetStateManager let formsData: FormsData let onFormsDataChanged: Mock beforeEach(() => { formsData = createFormsData() sendBackMsg = vi.fn() onFormsDataChanged = vi.fn(newData => { formsData = newData }) widgetMgr = new WidgetStateManager({ sendRerunBackMsg: sendBackMsg, formsDataChanged: onFormsDataChanged, }) }) /** Select the mock WidgetInfo to use for a test. */ const getWidget = ({ insideForm }: { insideForm: boolean }): WidgetInfo => { return insideForm ? MOCK_FORM_WIDGET : MOCK_WIDGET } /** Assert calls of our callback functions. */ const assertCallbacks = async ({ insideForm, }: { insideForm: boolean }): Promise<void> => { if (insideForm) { expect(sendBackMsg).not.toHaveBeenCalled() } else { await waitFor(() => { expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( expect.anything(), undefined, // fragmentId undefined, undefined ) }) } } it.each([false, true])( "sets string value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setStringValue( widget, "mockStringValue", { fromUi: true }, undefined ) expect(widgetMgr.getStringValue(widget)).toBe("mockStringValue") await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets boolean value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setBoolValue(widget, true, { fromUi: true }, undefined) expect(widgetMgr.getBoolValue(widget)).toBe(true) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets int value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setIntValue(widget, 100, { fromUi: true }, undefined) expect(widgetMgr.getIntValue(widget)).toBe(100) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets double value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setDoubleValue(widget, 3.14, { fromUi: true }, undefined) expect(widgetMgr.getDoubleValue(widget)).toBe(3.14) await assertCallbacks({ insideForm }) } ) /** * Buttons (which set trigger values) can't be used within forms, so this test * is not parameterized on insideForm. */ it("sets trigger value correctly", async () => { const widget = getWidget({ insideForm: false }) await widgetMgr.setTriggerValue(widget, { fromUi: true }, undefined) // @ts-expect-error expect(widgetMgr.getWidgetState(widget)).toBe(undefined) await assertCallbacks({ insideForm: false }) }) it.each([false, true])( "sets string array value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setStringArrayValue( widget, ["foo", "bar", "baz"], { fromUi: true, }, undefined ) expect(widgetMgr.getStringArrayValue(widget)).toEqual([ "foo", "bar", "baz", ]) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets int array value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setIntArrayValue( widget, [4, 5, 6], { fromUi: true }, undefined ) expect(widgetMgr.getIntArrayValue(widget)).toEqual([4, 5, 6]) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets double array value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setDoubleArrayValue( widget, [1.1, 2.2, 3.3], { fromUi: true, }, undefined ) expect(widgetMgr.getDoubleArrayValue(widget)).toEqual([1.1, 2.2, 3.3]) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets ArrowTable value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setArrowValue( widget, MOCK_ARROW_TABLE, { fromUi: true }, undefined ) expect(widgetMgr.getArrowValue(widget)).toEqual(MOCK_ARROW_TABLE) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets JSON value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setJsonValue( widget, MOCK_JSON, { fromUi: true, }, undefined ) expect(widgetMgr.getJsonValue(widget)).toBe(JSON.stringify(MOCK_JSON)) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets bytes value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setBytesValue(widget, MOCK_BYTES, { fromUi: true }, undefined) expect(widgetMgr.getBytesValue(widget)).toEqual(MOCK_BYTES) await assertCallbacks({ insideForm }) } ) it.each([false, true])( "sets FileUploaderState value correctly (insideForm=%s)", async insideForm => { const widget = getWidget({ insideForm }) widgetMgr.setFileUploaderStateValue( widget, MOCK_FILE_UPLOADER_STATE, { fromUi: true, }, undefined ) expect(widgetMgr.getFileUploaderStateValue(widget)).toEqual( MOCK_FILE_UPLOADER_STATE ) await assertCallbacks({ insideForm }) } ) it("setIntValue can handle MIN_ and MAX_SAFE_INTEGER", () => { widgetMgr.setIntValue( MOCK_WIDGET, Number.MAX_SAFE_INTEGER, { fromUi: true, }, undefined ) expect(widgetMgr.getIntValue(MOCK_WIDGET)).toBe(Number.MAX_SAFE_INTEGER) widgetMgr.setIntValue( MOCK_WIDGET, Number.MIN_SAFE_INTEGER, { fromUi: true, }, undefined ) expect(widgetMgr.getIntValue(MOCK_WIDGET)).toBe(Number.MIN_SAFE_INTEGER) }) it("setIntArrayValue can handle MIN_ and MAX_SAFE_INTEGER", () => { const values = [Number.MAX_SAFE_INTEGER, Number.MIN_SAFE_INTEGER] widgetMgr.setIntArrayValue( MOCK_WIDGET, values, { fromUi: true, }, undefined ) expect(widgetMgr.getIntArrayValue(MOCK_WIDGET)).toStrictEqual(values) }) describe("can set fragmentId in setter methods", () => { it.each([ { setterMethod: "setChatInputValue", value: MOCK_CHAT_INPUT_VALUE, }, { setterMethod: "setBoolValue", value: true, }, { setterMethod: "setIntValue", value: 42, }, { setterMethod: "setDoubleValue", value: 42.0, }, { setterMethod: "setStringValue", value: "Hello world", }, { setterMethod: "setStringArrayValue", value: ["Hello", "world"], }, { setterMethod: "setDoubleArrayValue", value: [40.0, 2.0], }, { setterMethod: "setIntArrayValue", value: [40, 2], }, { setterMethod: "setJsonValue", value: MOCK_JSON, }, { setterMethod: "setArrowValue", value: MOCK_ARROW_TABLE, }, { setterMethod: "setBytesValue", value: MOCK_BYTES, }, { setterMethod: "setFileUploaderStateValue", value: MOCK_FILE_UPLOADER_STATE, }, ])("%s", async ({ setterMethod, value }) => { // @ts-expect-error await widgetMgr[setterMethod]( MOCK_WIDGET, value, { fromUi: true, }, "myFragmentId" ) await waitFor(() => { expect(sendBackMsg).toHaveBeenCalledWith( expect.anything(), "myFragmentId", undefined, undefined ) }) }) // This test isn't parameterized like the ones above because setTriggerValue // has a slightly different signature from the other setter methods. it("can set fragmentId in setTriggerValue", async () => { await widgetMgr.setTriggerValue( MOCK_WIDGET, { fromUi: true, }, "myFragmentId" ) expect(sendBackMsg).toHaveBeenCalledWith( expect.anything(), "myFragmentId", undefined, undefined ) }) }) describe("Primitive types as JSON values", () => { it("sets string value as JSON correctly", () => { widgetMgr.setJsonValue( MOCK_WIDGET, "mockStringValue", { fromUi: true }, undefined ) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe( JSON.stringify("mockStringValue") ) }) it("sets int value as JSON correctly", () => { widgetMgr.setJsonValue(MOCK_WIDGET, 45, { fromUi: true }, undefined) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe(JSON.stringify(45)) }) it("sets double value as JSON correctly", () => { widgetMgr.setJsonValue(MOCK_WIDGET, 3.14, { fromUi: true }, undefined) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe(JSON.stringify(3.14)) }) it("sets string array value as JSON correctly", () => { widgetMgr.setJsonValue( MOCK_WIDGET, ["foo", "bar", "baz"], { fromUi: true, }, undefined ) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe( JSON.stringify(["foo", "bar", "baz"]) ) }) it("sets int array value as JSON correctly", () => { widgetMgr.setJsonValue( MOCK_WIDGET, [5, 6, 7], { fromUi: true }, undefined ) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe( JSON.stringify([5, 6, 7]) ) }) it("sets double array value as JSON correctly", () => { widgetMgr.setJsonValue( MOCK_WIDGET, [1.1, 2.2, 3.3], { fromUi: true }, undefined ) expect(widgetMgr.getJsonValue(MOCK_WIDGET)).toBe( JSON.stringify([1.1, 2.2, 3.3]) ) }) }) // Other FormsData-related tests describe("formsData", () => { it("updates submitButtons Array", () => { const newButtonMock = new ButtonProto() const secondButtonMock = new ButtonProto({ id: "newId" }) expect(formsData.submitButtons.get("form")).not.toBeDefined() widgetMgr.addSubmitButton("form", newButtonMock) expect(formsData.submitButtons.get("form")?.length).toEqual(1) widgetMgr.addSubmitButton("form", secondButtonMock) expect(formsData.submitButtons.get("form")?.length).toEqual(2) widgetMgr.removeSubmitButton("form", newButtonMock) expect(formsData.submitButtons.get("form")?.length).toEqual(1) widgetMgr.removeSubmitButton("form", secondButtonMock) expect(formsData.submitButtons.get("form")?.length).toEqual(0) }) it("updates formsWithUploads", () => { widgetMgr.setFormsWithUploadsInProgress(new Set(["three", "four"])) expect(onFormsDataChanged).toHaveBeenCalledTimes(1) expect(formsData.formsWithUploads.has("one")).toBe(false) expect(formsData.formsWithUploads.has("two")).toBe(false) expect(formsData.formsWithUploads.has("three")).toBe(true) expect(formsData.formsWithUploads.has("four")).toBe(true) }) it("creates frozen FormsData instances", () => { // Our sets are readonly, but that doesn't prevent mutating functions // from being called on them. Immer will detect these calls at runtime // and throw errors. // It's sufficient to check just a single FormsData member for this test; // Immer imposes this immutability guarantee on all of an object's // sets, maps, and arrays. widgetMgr.setFormsWithUploadsInProgress(new Set(["one", "two"])) expect(Object.isFrozen(formsData.formsWithUploads)).toBe(true) }) }) describe("submitForm", () => { it("calls sendBackMsg with expected data", () => { const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) // Populate a form widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) widgetMgr.setStringValue( { id: "widget2", formId }, "bar", { fromUi: true, }, undefined ) // We have a single pending form. expect(formsData.formsWithPendingChanges).toEqual(new Set([formId])) widgetMgr.submitForm(formId, undefined) // Our backMsg should be populated with our two widget values, // plus the submitButton's value. expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "submitButton", triggerValue: true }, { id: "widget1", stringValue: "foo" }, { id: "widget2", stringValue: "bar" }, ], }, undefined, // fragmentId undefined, undefined ) // We have no more pending form. expect(formsData.formsWithPendingChanges).toEqual(new Set()) }) it("calls sendBackMsg with fragmentId", () => { const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) // Populate a form widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) widgetMgr.submitForm(formId, "myFragmentId", undefined) // Our backMsg should be populated with our two widget values, // plus the submitButton's value. expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "submitButton", triggerValue: true }, { id: "widget1", stringValue: "foo" }, ], }, "myFragmentId", undefined, undefined ) // We have no more pending form. expect(formsData.formsWithPendingChanges).toEqual(new Set()) }) it("throws on invalid formId", () => { expect(() => widgetMgr.submitForm(MOCK_WIDGET.formId, undefined) ).toThrow(`invalid formID ${MOCK_WIDGET.formId}`) }) it("submits the form for the first submitButton if an actualSubmitButton proto is not passed", () => { const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "firstSubmitButton" }) ) widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "secondSubmitButton" }) ) widgetMgr.submitForm(formId, undefined) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [{ id: "firstSubmitButton", triggerValue: true }], }, undefined, undefined, undefined ) }) it("submits the form for the actualSubmitButton when passed", () => { const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "firstSubmitButton" }) ) const actualSubmitButton = new ButtonProto({ id: "secondSubmitButton", isFormSubmitter: true, }) widgetMgr.addSubmitButton(formId, actualSubmitButton) widgetMgr.submitForm(formId, undefined, actualSubmitButton) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [{ id: "secondSubmitButton", triggerValue: true }], }, undefined, undefined, undefined ) }) }) describe("allowFormEnterToSubmit", () => { it("returns true for a valid formId with 1st submit button enabled", () => { // Create form with a submit button const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // Form should exist & allow submission on Enter // @ts-expect-error - checking that form exists via internal state expect(widgetMgr.forms.get(formId)).toBeTruthy() expect(widgetMgr.allowFormEnterToSubmit(formId)).toBe(true) }) it("returns false for an invalid formId", () => { // Create form with a submit button const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // @ts-expect-error - Created form should exist expect(widgetMgr.forms.get(formId)).toBeTruthy() // @ts-expect-error - Other form should NOT exist & should not allow submit on Enter expect(widgetMgr.forms.get("INVALID_FORM_ID")).toBeFalsy() expect(widgetMgr.allowFormEnterToSubmit("INVALID_FORM_ID")).toBe(false) }) it("returns false for a valid formId with no submit buttons", () => { // Create form with a submit button const formId = "mockFormId" widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // @ts-expect-error - Created form should exist, but no allow submit on Enter expect(widgetMgr.forms.get(formId)).toBeTruthy() expect(widgetMgr.allowFormEnterToSubmit(formId)).toBe(false) }) it("returns false if the 1st submit button disabled", () => { // Create form with a submit button const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton", disabled: true }) ) widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // @ts-expect-error - Created form should exist, but no allow submit on Enter expect(widgetMgr.forms.get(formId)).toBeTruthy() expect(widgetMgr.allowFormEnterToSubmit(formId)).toBe(false) }) it("returns true if the 1st submit button enabled, others disabled", () => { // Create form with a submit button const formId = "mockFormId" widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton2", disabled: true }) ) widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // @ts-expect-error - Created form should exist and allow submit on Enter expect(widgetMgr.forms.get(formId)).toBeTruthy() expect(widgetMgr.allowFormEnterToSubmit(formId)).toBe(true) }) it("returns false if form created with enter_to_submit=False", () => { // Create form with a submit button const formId = "mockFormId" // Create form with enter_to_submit=False widgetMgr.setFormSubmitBehaviors(formId, false, false) widgetMgr.addSubmitButton( formId, new ButtonProto({ id: "submitButton" }) ) widgetMgr.setStringValue( { id: "widget1", formId }, "foo", { fromUi: true, }, undefined ) // @ts-expect-error - Created form should exist, but no allow submit on Enter expect(widgetMgr.forms.get(formId)).toBeTruthy() expect(widgetMgr.allowFormEnterToSubmit(formId)).toBe(false) }) }) describe("Forms don't interfere with each other", () => { const FORM_1 = { id: "NOT_A_REAL_WIDGET_ID_1", formId: "NOT_A_REAL_FORM_ID_1", } const FORM_2 = { id: "NOT_A_REAL_WIDGET_ID_2", formId: "NOT_A_REAL_FORM_ID_2", } beforeEach(() => { // Set widget value for the first form. widgetMgr.setStringValue( FORM_1, "foo", { fromUi: true, }, undefined ) // Set widget value for the second form. widgetMgr.setStringValue( FORM_2, "bar", { fromUi: true, }, undefined ) }) it("checks that there are two pending forms", () => { expect(formsData.formsWithPendingChanges).toEqual( new Set([FORM_1.formId, FORM_2.formId]) ) }) it("calls sendBackMsg with the first form data", () => { widgetMgr.addSubmitButton( FORM_1.formId, new ButtonProto({ id: "submitButton" }) ) // Submit the first form. widgetMgr.submitForm(FORM_1.formId, undefined) // Our backMsg should be populated with the first form widget value, // plus the first submitButton's triggerValue. expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "submitButton", triggerValue: true }, { id: FORM_1.id, stringValue: "foo" }, ], }, undefined, undefined, undefined ) }) it("checks that only the second form is pending after the first is submitted", () => { widgetMgr.submitForm(FORM_1.formId, undefined) expect(formsData.formsWithPendingChanges).toEqual( new Set([FORM_2.formId]) ) }) it("calls sendBackMsg with data from both forms", () => { // Submit the first form and then the second form. widgetMgr.submitForm(FORM_1.formId, undefined) widgetMgr.submitForm( FORM_2.formId, undefined, new ButtonProto({ id: "submitButton2" }) ) // Our most recent backMsg should be populated with the both forms' widget values, // plus the second submitButton's fromSubmitValue. expect(sendBackMsg).toHaveBeenLastCalledWith( { widgets: [ { id: FORM_1.id, stringValue: "foo" }, { id: "submitButton2", triggerValue: true }, { id: FORM_2.id, stringValue: "bar" }, ], }, undefined, undefined, undefined ) }) it("checks that no more pending forms exist after both are submitted", () => { widgetMgr.submitForm(FORM_1.formId, undefined) widgetMgr.submitForm(FORM_2.formId, undefined) expect(formsData.formsWithPendingChanges).toEqual(new Set()) }) it("supports two submit buttons and can submitForm on the second one", () => { widgetMgr.addSubmitButton( FORM_1.formId, new ButtonProto({ id: "submitButton" }) ) widgetMgr.addSubmitButton( FORM_2.formId, new ButtonProto({ id: "submitButton2" }) ) // Submit the second form. widgetMgr.submitForm( FORM_2.formId, undefined, new ButtonProto({ id: "submitButton2" }) ) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "submitButton2", triggerValue: true }, { id: FORM_2.id, stringValue: "bar" }, ], }, undefined, undefined, undefined ) }) }) describe("manages element state values", () => { it("sets extra widget information properly", () => { widgetMgr.setElementState("id", "color", "red") // @ts-expect-error expect(widgetMgr.elementStates.get("id")?.get("color")).toEqual("red") }) it("returns extra widget information when id exists and key exists", () => { // @ts-expect-error widgetMgr.elementStates.set("id", new Map([["color", "red"]])) expect(widgetMgr.getElementState("id", "color")).toEqual("red") }) it("returns undefined when when id does not exist", () => { expect(widgetMgr.getElementState("id", "color")).toEqual(undefined) }) it("returns undefined when when id exists and key does not exist", () => { // @ts-expect-error widgetMgr.elementStates.set("id", new Map([["text", "red"]])) expect(widgetMgr.getElementState("id", "color")).toEqual(undefined) }) it("deletes a value for the key if set", () => { // @ts-expect-error widgetMgr.elementStates.set("id", new Map([["text", "red"]])) widgetMgr.deleteElementState("id", "color") expect(widgetMgr.getElementState("id", "color")).toEqual(undefined) }) it("does not error when deleting for the key if not set", () => { widgetMgr.deleteElementState("id", "color") expect(widgetMgr.getElementState("id", "color")).toEqual(undefined) }) }) it("cleans up widget & element states on removeInactive", () => { const widgetId1 = "TEST_ID_1" const widgetId2 = "TEST_ID_2" const widgetId3 = "TEST_ID_3" const widgetId4 = "TEST_ID_4" const elementId1 = "TEST_ID_5" const elementId2 = "TEST_ID_6" widgetMgr.setStringValue( { id: widgetId1 }, "widgetState1", { fromUi: false, }, undefined ) widgetMgr.setStringValue( { id: widgetId2 }, "widgetState2", { fromUi: false, }, undefined ) widgetMgr.setStringValue( { id: widgetId3 }, "widgetState3", { fromUi: false, }, undefined ) widgetMgr.setStringValue( { id: widgetId4 }, "widgetState4", { fromUi: false, }, undefined ) widgetMgr.setElementState(elementId1, "key1", "elementState1") widgetMgr.setElementState(elementId2, "key2", "elementState2") const activeIds = new Set([widgetId3, widgetId4, elementId2]) widgetMgr.removeInactive(activeIds) expect(widgetMgr.getStringValue({ id: widgetId1 })).toBeUndefined() expect(widgetMgr.getStringValue({ id: widgetId2 })).toBeUndefined() expect(widgetMgr.getStringValue({ id: widgetId3 })).toEqual("widgetState3") expect(widgetMgr.getStringValue({ id: widgetId4 })).toEqual("widgetState4") expect(widgetMgr.getElementState(elementId1, "key1")).toBeUndefined() expect(widgetMgr.getElementState(elementId2, "key2")).toEqual( "elementState2" ) }) }) describe("WidgetStateDict", () => { let widgetStateDict: WidgetStateDict const widgetId = "TEST_ID" beforeEach(() => { widgetStateDict = new WidgetStateDict() }) it("creates a new state with the given widget id", () => { widgetStateDict.createState(widgetId) expect(widgetStateDict.getState(widgetId)).toEqual({ id: widgetId }) }) it("deletes a state with the given widget id", () => { widgetStateDict.createState(widgetId) widgetStateDict.deleteState(widgetId) expect(widgetStateDict.getState(widgetId)).toBeUndefined() }) it("checks that widget state dict is empty after creation", () => { expect(widgetStateDict.isEmpty).toBeTruthy() }) it("checks that widget state dict is not empty if there is at least one element in it", () => { widgetStateDict.createState(widgetId) expect(widgetStateDict.isEmpty).toBeFalsy() }) it("checks that widget state dict is empty if all elements have been deleted", () => { widgetStateDict.createState(widgetId) widgetStateDict.deleteState(widgetId) expect(widgetStateDict.isEmpty).toBeTruthy() }) it("cleans states of widgets that are not contained in `activeIds`", () => { const widgetId1 = "TEST_ID_1" const widgetId2 = "TEST_ID_2" const widgetId3 = "TEST_ID_3" const widgetId4 = "TEST_ID_4" widgetStateDict.createState(widgetId1) widgetStateDict.createState(widgetId2) widgetStateDict.createState(widgetId3) widgetStateDict.createState(widgetId4) const activeIds = new Set([widgetId3, widgetId4]) widgetStateDict.removeInactive(activeIds) expect(widgetStateDict.getState(widgetId1)).toBeUndefined() expect(widgetStateDict.getState(widgetId2)).toBeUndefined() expect(widgetStateDict.getState(widgetId3)).toEqual({ id: widgetId3 }) expect(widgetStateDict.getState(widgetId4)).toEqual({ id: widgetId4 }) }) it("creates widget state message", () => { widgetStateDict.createState(widgetId) const msg = widgetStateDict.createWidgetStatesMsg() expect(msg.widgets).toEqual([{ id: widgetId }]) }) it("copies the contents of another WidgetStateDict into the given one, overwriting any values with duplicate keys", () => { const widgetId1 = "TEST_ID_1" const widgetId2 = "TEST_ID_2" const widgetId3 = "TEST_ID_3" widgetStateDict.createState(widgetId1) widgetStateDict.createState(widgetId2) // NOTE: `widgetId2` is used in both dicts. const newWidgetDict = new WidgetStateDict() newWidgetDict.createState(widgetId2) newWidgetDict.createState(widgetId3) widgetStateDict.copyFrom(newWidgetDict) expect(widgetStateDict.getState(widgetId1)).toEqual({ id: widgetId1 }) expect(widgetStateDict.getState(widgetId2)).toEqual({ id: widgetId2 }) expect(widgetStateDict.getState(widgetId3)).toEqual({ id: widgetId3 }) }) it("supplies WidgetStates with for active widgets based on input", () => { const widgetStateManager = new WidgetStateManager({ sendRerunBackMsg: vi.fn(), formsDataChanged: vi.fn(), }) widgetStateManager.setStringValue( { id: "widget1" }, "foo", { fromUi: false, }, undefined ) widgetStateManager.setStringValue( { id: "widget2" }, "bar", { fromUi: false, }, undefined ) const activeIds = new Set(["widget2"]) const widgetStates = widgetStateManager.getActiveWidgetStates(activeIds) expect(widgetStates).toEqual({ widgets: [ { id: "widget2", stringValue: "bar", }, ], }) }) }) // New tests for isolated batched JSON APIs describe("Trigger JSON payloads (aggregated)", () => { let sendBackMsg: Mock let widgetMgr: WidgetStateManager beforeEach(() => { sendBackMsg = vi.fn() widgetMgr = new WidgetStateManager({ sendRerunBackMsg: sendBackMsg, formsDataChanged: vi.fn(), }) }) it("setTriggerValue(payload): uses jsonTriggerValue field", async () => { const widget = { id: "batchedTriggerWidget", formId: "" } await widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragT", { t: 1, }) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedTriggerWidget", jsonTriggerValue: JSON.stringify([{ t: 1 }]), }, ], }, "fragT", undefined, undefined ) }) it("setJsonValue and setTriggerValue(payload): coalesce to one back message", async () => { const widget = { id: "jsonAndTriggerCoalesce", formId: "" } const jsonValue = { foo: "bar" } const triggerPayload = { baz: 42 } widgetMgr.setJsonValue(widget, jsonValue, { fromUi: true }, "fragJT") const triggerPromise = widgetMgr.setTriggerValue( widget, { fromUi: true }, "fragJT", triggerPayload ) await triggerPromise expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "jsonAndTriggerCoalesce", jsonValue: JSON.stringify(jsonValue), jsonTriggerValue: JSON.stringify([triggerPayload]), }, ], }, "fragJT", undefined, undefined ) }) it("setTriggerValue(payload): aggregates multiple payloads into a JSON array in one macrotask", async () => { const widget = { id: "batchedTriggerAgg", formId: "" } const p1 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragAgg", { a: 1, }) const p2 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragAgg", { b: 2, }) await Promise.all([p1, p2]) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedTriggerAgg", jsonTriggerValue: JSON.stringify([{ a: 1 }, { b: 2 }]), }, ], }, "fragAgg", undefined, undefined ) }) it("setTriggerValue(payload): aggregates three payloads and sends once", async () => { const widget = { id: "batchedTriple", formId: "" } const p1 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "frag3", { x: 1, }) const p2 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "frag3", { y: 2, }) const p3 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "frag3", { z: 3, }) await Promise.all([p1, p2, p3]) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedTriple", jsonTriggerValue: JSON.stringify([{ x: 1 }, { y: 2 }, { z: 3 }]), }, ], }, "frag3", undefined, undefined ) }) it("setTriggerValue(payload): batches even when fragments differ, using the first fragment id", async () => { // Note that this flow shouldn't actually happen in practice. We shouldn't // be updating multiple fragments in the same macrotask. This test is // written now to test the behavior of the code, but it can change in the // future if we decide to change the behavior. const widget = { id: "batchedFragment", formId: "" } const p1 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "f1", { a: 1, }) const p2 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "f2", { b: 2, }) await Promise.all([p1, p2]) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedFragment", jsonTriggerValue: JSON.stringify([{ a: 1 }, { b: 2 }]), }, ], }, "f1", undefined, undefined ) }) it("logs a warning and uses the first fragmentId when batch contains mixed fragmentIds", async () => { const logger = getLogger("WidgetStateManager") const warnSpy = vi.spyOn(logger, "warn") const widget = { id: "warnMixedFragments", formId: "" } const p1 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragA", { a: true, }) const p2 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragB", { b: true, }) await Promise.all([p1, p2]) // Uses the first fragment id expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( expect.anything(), "fragA", undefined, undefined ) // Logs exactly one warning for the batch expect(warnSpy).toHaveBeenCalledTimes(1) const [msg, usedFragment] = warnSpy.mock.calls[0] expect(String(msg)).toContain("Multiple different fragmentIds") expect(usedFragment).toBe("fragA") warnSpy.mockRestore() }) it("setTriggerValue(payload): retains existing fragment id if subsequent calls omit it", async () => { const widget = { id: "batchedFragmentFallback", formId: "" } const p1 = widgetMgr.setTriggerValue(widget, { fromUi: true }, "fKeep", { first: true, }) const p2 = widgetMgr.setTriggerValue(widget, { fromUi: true }, undefined, { second: true, }) await Promise.all([p1, p2]) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedFragmentFallback", jsonTriggerValue: JSON.stringify([ { first: true }, { second: true }, ]), }, ], }, "fKeep", undefined, undefined ) }) it("setTriggerValue(payload): merges with existing scalar jsonTriggerValue", async () => { const widget = { id: "batchedScalarPrev", formId: "" } // Pre-seed an existing scalar jsonTriggerValue ;( widgetMgr as unknown as { widgetStates: { createState: (id: string) => { jsonTriggerValue?: string } } } ).widgetStates.createState(widget.id).jsonTriggerValue = JSON.stringify({ prev: 1, }) await widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragS", { next: 2, }) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedScalarPrev", jsonTriggerValue: JSON.stringify([{ prev: 1 }, { next: 2 }]), }, ], }, "fragS", undefined, undefined ) }) it("setTriggerValue(payload): parse failure falls back to [prevString, payload]", async () => { const widget = { id: "batchedParseFail", formId: "" } // Pre-seed an invalid JSON string as previous value ;( widgetMgr as unknown as { widgetStates: { createState: (id: string) => { jsonTriggerValue?: string } } } ).widgetStates.createState(widget.id).jsonTriggerValue = "NOT JSON" await widgetMgr.setTriggerValue(widget, { fromUi: true }, "fragPF", { ok: true, }) expect(sendBackMsg).toHaveBeenCalledTimes(1) expect(sendBackMsg).toHaveBeenCalledWith( { widgets: [ { id: "batchedParseFail", jsonTriggerValue: JSON.stringify(["NOT JSON", { ok: true }]), }, ], }, "fragPF", undefined, undefined ) }) })
66
lib
/content/streamlit_public_repos/streamlit/frontend/lib/src/baseconsts.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Parameters for our fetch() requests. */ export const FETCH_PARAMS: RequestInit = { redirect: "follow", credentials: "same-origin", mode: "cors", }
67
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/vendor/dom-helpers.ts
/* eslint-disable */ // We only need a single function from https://github.com/react-bootstrap/dom-helpers, // so we copy it here instead of adding a new dependency. const canUseDOM = !!( typeof window !== "undefined" && window.document && window.document.createElement ) let size: number // https://github.com/react-bootstrap/dom-helpers/blob/3f509a03c5e330faa93bcf8acf30976b5a7bacac/src/scrollbarSize.ts#L5 export function scrollbarSize(recalc?: boolean) { if ((!size && size !== 0) || recalc) { if (canUseDOM) { const scrollDiv = document.createElement("div") scrollDiv.style.position = "absolute" scrollDiv.style.top = "-9999px" scrollDiv.style.width = "50px" scrollDiv.style.height = "50px" scrollDiv.style.overflow = "scroll" document.body.appendChild(scrollDiv) size = scrollDiv.offsetWidth - scrollDiv.clientWidth document.body.removeChild(scrollDiv) } } return size }
68
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/vendor/react-bootstrap-LICENSE.txt
The MIT License (MIT) Copyright (c) 2014-present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69
vendor
/content/streamlit_public_repos/streamlit/frontend/lib/src/vendor/fzy.js/fzyjs-LICENSE.txt
The MIT License (MIT) Copyright (c) 2014 John Hawthorn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
70
vendor
/content/streamlit_public_repos/streamlit/frontend/lib/src/vendor/fzy.js/fuzzySearch.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Thank you to fzy.js for the original implementation // https://github.com/jhawthorn/fzy.js (MIT License) import * as fzy from "./fuzzySearch" const score = fzy.score const positions = fzy.positions const SCORE_MIN = fzy.SCORE_MIN const SCORE_MAX = fzy.SCORE_MAX const SCORE_GAP_LEADING = fzy.SCORE_GAP_LEADING const SCORE_GAP_TRAILING = fzy.SCORE_GAP_TRAILING const SCORE_GAP_INNER = fzy.SCORE_GAP_INNER const SCORE_MATCH_CONSECUTIVE = fzy.SCORE_MATCH_CONSECUTIVE const SCORE_MATCH_SLASH = fzy.SCORE_MATCH_SLASH const SCORE_MATCH_CAPITAL = fzy.SCORE_MATCH_CAPITAL const SCORE_MATCH_DOT = fzy.SCORE_MATCH_DOT /* score(needle, haystack) */ describe("score", () => { it("should prefer starts of words", function () { /* app/models/order is better than app/models/zrder * because 'o' in order comes before 'z' in zrder */ expect(score("amor", "app/models/order")).toBeGreaterThan( score("amor", "app/models/zrder") ) }) it("should prefer consecutive letters", function () { /* app/models/foo is better than app/m/foo */ expect(score("amo", "app/m/foo")).toBeLessThan( score("amo", "app/models/foo") ) }) it("should prefer contiguous over letter following period", function () { /* GEMFIle.Lock < GEMFILe */ expect(score("gemfil", "Gemfile.lock")).toBeLessThan( score("gemfil", "Gemfile") ) }) it("should prefer shorter matches", function () { expect(score("abce", "abcdef")).toBeGreaterThan(score("abce", "abc de")) expect(score("abc", " a b c ")).toBeGreaterThan( score("abc", " a b c ") ) expect(score("abc", " a b c ")).toBeGreaterThan( score("abc", " a b c ") ) }) it("should prefer shorter candidates", function () { expect(score("test", "tests")).toBeGreaterThan(score("test", "testing")) }) it("should prefer start of candidate", function () { /* Scores first letter highly */ expect(score("test", "testing")).toBeGreaterThan(score("test", "/testing")) }) it("score exact score", function () { /* Exact match is SCORE_MAX */ expect(score("abc", "abc")).toBe(SCORE_MAX) }) it("scores case insensitive the same", () => { expect(score("abc", "abc", false)).toBe(SCORE_MAX) expect(score("aBc", "abC", false)).toBe(SCORE_MAX) }) it("scores case sensitive differently", () => { expect(score("abc", "abc", true)).toBeGreaterThan( score("aBc", "abC", true) ) }) it("score empty query", function () { /* Empty query always results in SCORE_MIN */ expect(score("", "")).toBe(SCORE_MIN) expect(score("", "a")).toBe(SCORE_MIN) expect(score("", "bb")).toBe(SCORE_MIN) }) it("score gaps", function () { expect(score("a", "*a")).toBe(SCORE_GAP_LEADING) expect(score("a", "*ba")).toBe(SCORE_GAP_LEADING * 2) expect(score("a", "**a*")).toBe(SCORE_GAP_LEADING * 2 + SCORE_GAP_TRAILING) expect(score("a", "**a**")).toBe( SCORE_GAP_LEADING * 2 + SCORE_GAP_TRAILING * 2 ) expect(score("aa", "**aa**")).toBe( SCORE_GAP_LEADING * 2 + SCORE_MATCH_CONSECUTIVE + SCORE_GAP_TRAILING * 2 ) expect(score("aa", "**a*a**")).toBe( SCORE_GAP_LEADING + SCORE_GAP_LEADING + SCORE_GAP_INNER + SCORE_GAP_TRAILING + SCORE_GAP_TRAILING ) }) it("score consecutive", function () { expect(score("aa", "*aa")).toBe( SCORE_GAP_LEADING + SCORE_MATCH_CONSECUTIVE ) expect(score("aaa", "*aaa")).toBe( SCORE_GAP_LEADING + SCORE_MATCH_CONSECUTIVE * 2 ) expect(score("aaa", "*a*aa")).toBe( SCORE_GAP_LEADING + SCORE_GAP_INNER + SCORE_MATCH_CONSECUTIVE ) }) it("score slash", function () { expect(score("a", "/a")).toBe(SCORE_GAP_LEADING + SCORE_MATCH_SLASH) expect(score("a", "*/a")).toBe(SCORE_GAP_LEADING * 2 + SCORE_MATCH_SLASH) expect(score("aa", "a/aa")).toBe( SCORE_GAP_LEADING * 2 + SCORE_MATCH_SLASH + SCORE_MATCH_CONSECUTIVE ) }) it("score capital", function () { expect(score("a", "bA")).toBe(SCORE_GAP_LEADING + SCORE_MATCH_CAPITAL) expect(score("a", "baA")).toBe(SCORE_GAP_LEADING * 2 + SCORE_MATCH_CAPITAL) expect(score("aa", "baAa")).toBe( SCORE_GAP_LEADING * 2 + SCORE_MATCH_CAPITAL + SCORE_MATCH_CONSECUTIVE ) }) it("score dot", function () { expect(score("a", ".a")).toBe(SCORE_GAP_LEADING + SCORE_MATCH_DOT) expect(score("a", "*a.a")).toBe(SCORE_GAP_LEADING * 3 + SCORE_MATCH_DOT) expect(score("a", "*a.a")).toBe( SCORE_GAP_LEADING + SCORE_GAP_INNER + SCORE_MATCH_DOT ) }) it("should return SCORE_MIN for empty haystack", () => { expect(score("abc", "")).toBe(SCORE_MIN) }) it("should handle case-sensitive matching correctly", () => { expect(score("abc", "ABC", true)).toBe(SCORE_MIN) expect(score("ABC", "ABC", true)).toBe(SCORE_MAX) }) it("should return SCORE_MIN for non-matching needle", () => { expect(score("xyz", "abcdef")).toBe(SCORE_MIN) }) it("should handle special characters in needle and haystack", () => { expect(score("a*c", "a*b*c")).toBeGreaterThan(SCORE_MIN) expect(score("a*c", "abc")).toBe(SCORE_MAX) }) }) describe("positions", () => { it("positions consecutive", function () { const p = positions("amo", "app/models/foo") expect(p).toEqual([0, 4, 5]) }) it("positions start of word", function () { /* * We should prefer matching the 'o' in order, since it's the beginning * of a word. */ const p = positions("amor", "app/models/order") expect(p).toEqual([0, 4, 11, 12]) }) it("positions no bonuses", function () { let p = positions("as", "tags") expect(p).toEqual([1, 3]) p = positions("as", "examples.txt") expect(p).toEqual([2, 7]) }) it("positions multiple candidates start of words", function () { const p = positions("abc", "a/a/b/c/c") expect(p).toEqual([2, 4, 6]) }) it("positions exact match", function () { const p = positions("foo", "foo") expect(p).toEqual([0, 1, 2]) }) }) describe("hasMatch", () => { it("should return true for matching needle and haystack", () => { expect(fzy.hasMatch("abc", "abcdef")).toBe(true) }) it("should return false for non-matching needle and haystack", () => { expect(fzy.hasMatch("xyz", "abcdef")).toBe(false) }) it("should handle case-insensitive matching", () => { expect(fzy.hasMatch("ABC", "abcdef")).toBe(true) }) it("should handle special characters in needle and haystack", () => { expect(fzy.hasMatch("a*c", "a*b*c")).toBe(true) expect(fzy.hasMatch("a*c", "abc")).toBe(false) }) it("should return true for empty needle", () => { expect(fzy.hasMatch("", "abcdef")).toBe(true) }) it("should return false for empty haystack", () => { expect(fzy.hasMatch("abc", "")).toBe(false) }) })
71
vendor
/content/streamlit_public_repos/streamlit/frontend/lib/src/vendor/fzy.js/fuzzySearch.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Thank you to fzy.js for the original implementation // https://github.com/jhawthorn/fzy.js (MIT License) const SCORE_MIN = -Infinity const SCORE_MAX = Infinity const SCORE_GAP_LEADING = -0.005 const SCORE_GAP_TRAILING = -0.005 const SCORE_GAP_INNER = -0.01 const SCORE_MATCH_CONSECUTIVE = 1.0 const SCORE_MATCH_SLASH = 0.9 const SCORE_MATCH_WORD = 0.8 const SCORE_MATCH_CAPITAL = 0.7 const SCORE_MATCH_DOT = 0.6 function islower(s: string): boolean { return s.toLowerCase() === s } function isupper(s: string): boolean { return s.toUpperCase() === s } function precomputeBonus(haystack: string): number[] { /* Which positions are beginning of words */ const m = haystack.length const matchBonus = new Array(m) as number[] let lastChar = "/" for (let i = 0; i < m; i++) { const ch = haystack[i] if (lastChar === "/") { matchBonus[i] = SCORE_MATCH_SLASH } else if (lastChar === "-" || lastChar === "_" || lastChar === " ") { matchBonus[i] = SCORE_MATCH_WORD } else if (lastChar === ".") { matchBonus[i] = SCORE_MATCH_DOT } else if (islower(lastChar) && isupper(ch)) { matchBonus[i] = SCORE_MATCH_CAPITAL } else { matchBonus[i] = 0 } lastChar = ch } return matchBonus } function compute( needle: string, haystack: string, D: number[][], M: number[][], caseSensitive = false ): void { const n = needle.length const m = haystack.length const lowerNeedle = caseSensitive ? needle : needle.toLowerCase() const lowerHaystack = caseSensitive ? haystack : haystack.toLowerCase() const matchBonus = precomputeBonus(haystack) /* * D[][] Stores the best score for this position ending with a match. * M[][] Stores the best possible score at this position. */ for (let i = 0; i < n; i++) { D[i] = new Array(m) M[i] = new Array(m) let prevScore = SCORE_MIN const gapScore = i === n - 1 ? SCORE_GAP_TRAILING : SCORE_GAP_INNER for (let j = 0; j < m; j++) { if (lowerNeedle[i] === lowerHaystack[j]) { let score = SCORE_MIN if (!i) { score = j * SCORE_GAP_LEADING + matchBonus[j] } else if (j) { /* i > 0 && j > 0*/ score = Math.max( M[i - 1][j - 1] + matchBonus[j], /* consecutive match, doesn't stack with matchBonus */ D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE ) } D[i][j] = score M[i][j] = prevScore = Math.max(score, prevScore + gapScore) } else { D[i][j] = SCORE_MIN M[i][j] = prevScore = prevScore + gapScore } } } } function score( needle: string, haystack: string, caseSensitive: boolean = false ): number { const n = needle.length const m = haystack.length if (!n || !m) return SCORE_MIN if (needle === haystack || (!caseSensitive && m === n)) { /* Since this method can only be called with a haystack which * matches needle. If the lengths of the strings are equal the * strings themselves must also be equal (ignoring case). */ return SCORE_MAX } if (m > 1024) { /* * Unreasonably large candidate: return no score * If it is a valid match it will still be returned, it will * just be ranked below any reasonably sized candidates */ return SCORE_MIN } const D = new Array(n) const M = new Array(n) compute(needle, haystack, D, M, caseSensitive) return M[n - 1][m - 1] } function positions(needle: string, haystack: string): number[] { const n = needle.length const m = haystack.length const positions = new Array(n) if (!n || !m) return positions if (n === m) { for (let i = 0; i < n; i++) positions[i] = i return positions } if (m > 1024) { return positions } const D = new Array(n) const M = new Array(n) compute(needle, haystack, D, M) /* backtrack to find the positions of optimal matching */ let matchRequired = false for (let i = n - 1, j = m - 1; i >= 0; i--) { for (; j >= 0; j--) { /* * There may be multiple paths which result in * the optimal weight. * * For simplicity, we will pick the first one * we encounter, the latest in the candidate * string. */ if (D[i][j] !== SCORE_MIN && (matchRequired || D[i][j] === M[i][j])) { /* If this score was determined using * SCORE_MATCH_CONSECUTIVE, the * previous character MUST be a match */ matchRequired = Boolean( i && j && M[i][j] === D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE ) positions[i] = j-- break } } } return positions } function hasMatch(needle: string, haystack: string): boolean { needle = needle.toLowerCase() haystack = haystack.toLowerCase() const l = needle.length for (let i = 0, j = 0; i < l; i += 1) { j = haystack.indexOf(needle[i], j) + 1 if (j === 0) return false } return true } export { /* constants */ SCORE_MIN, SCORE_MAX, SCORE_GAP_LEADING, SCORE_GAP_TRAILING, SCORE_GAP_INNER, SCORE_MATCH_CONSECUTIVE, SCORE_MATCH_SLASH, SCORE_MATCH_WORD, SCORE_MATCH_CAPITAL, SCORE_MATCH_DOT, /* functions */ score, positions, hasMatch, }
72
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/getColors.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { darken, getLuminance, lighten, mix, transparentize } from "color2k" import { Metric as MetricProto } from "@streamlit/protobuf" import { DerivedColors, EmotionTheme, EmotionThemeColors, GenericColors, } from "./types" export const computeDerivedColors = ( genericColors: GenericColors ): DerivedColors => { const { bodyText, secondaryBg, bgColor } = genericColors const hasLightBg = getLuminance(bgColor) > 0.5 const fadedText05 = transparentize(bodyText, 0.9) // Mostly used for very faint 1px lines. const fadedText10 = transparentize(bodyText, 0.8) // Mostly used for 1px lines. const fadedText20 = transparentize(bodyText, 0.7) // Used for 1px lines. const fadedText40 = transparentize(bodyText, 0.6) // Backgrounds. const fadedText60 = transparentize(bodyText, 0.4) // Secondary text. const bgMix = mix(bgColor, secondaryBg, 0.5) const darkenedBgMix100 = hasLightBg ? darken(bgMix, 0.3) : lighten(bgMix, 0.6) // Icons. // TODO(tvst): Rename to darkenedBgMix25 (number = opacity) const darkenedBgMix25 = transparentize(darkenedBgMix100, 0.75) const darkenedBgMix15 = transparentize(darkenedBgMix100, 0.85) // Hovered menu/nav items. const lightenedBg05 = lighten(bgColor, 0.025) // Button, checkbox, radio background. return { fadedText05, fadedText10, fadedText20, fadedText40, fadedText60, bgMix, darkenedBgMix100, darkenedBgMix25, darkenedBgMix15, lightenedBg05, } } function _isLightBackground(bgColor: string): boolean { return getLuminance(bgColor) > 0.5 } export function hasLightBackgroundColor(theme: EmotionTheme): boolean { return _isLightBackground(theme.colors.bgColor) } export const createEmotionColors = ( genericColors: GenericColors ): EmotionThemeColors => { const derivedColors = computeDerivedColors(genericColors) const defaultCategoricalColors = defaultCategoricalColorsArray(genericColors) const defaultSequentialColors = defaultSequentialColorsArray(genericColors) return { ...genericColors, ...derivedColors, link: genericColors.blueTextColor, codeTextColor: genericColors.greenTextColor, codeBackgroundColor: derivedColors.bgMix, borderColor: derivedColors.fadedText10, borderColorLight: derivedColors.fadedText05, dataframeBorderColor: derivedColors.fadedText05, dataframeHeaderBackgroundColor: derivedColors.bgMix, headingColor: genericColors.bodyText, chartCategoricalColors: defaultCategoricalColors, chartSequentialColors: defaultSequentialColors, } } type DividerColors = { red: string orange: string yellow: string blue: string green: string violet: string gray: string grey: string rainbow: string } export function getDividerColors(theme: EmotionTheme): DividerColors { // Handling of defaults based on light/dark theme in emotionBaseTheme/emotionDarkTheme const { redColor, orangeColor, yellowColor, blueColor, greenColor, violetColor, grayColor, } = theme.colors return { red: redColor, orange: orangeColor, yellow: yellowColor, blue: blueColor, green: greenColor, violet: violetColor, gray: grayColor, grey: grayColor, rainbow: `linear-gradient(to right, ${redColor}, ${orangeColor}, ${yellowColor}, ${greenColor}, ${blueColor}, ${violetColor})`, } } export function getMetricColor( theme: EmotionTheme, color: MetricProto.MetricColor ): string { switch (color) { case MetricProto.MetricColor.RED: return theme.colors.redColor case MetricProto.MetricColor.GREEN: return theme.colors.greenColor // this must be grey default: return theme.colors.grayColor } } type MarkdownBgColors = { redbg: string orangebg: string yellowbg: string bluebg: string greenbg: string violetbg: string purplebg: string graybg: string primarybg: string } export function getMarkdownBgColors(theme: EmotionTheme): MarkdownBgColors { const lightTheme = hasLightBackgroundColor(theme) const colors = theme.colors return { redbg: colors.redBackgroundColor, orangebg: colors.orangeBackgroundColor, yellowbg: colors.yellowBackgroundColor, bluebg: colors.blueBackgroundColor, greenbg: colors.greenBackgroundColor, violetbg: colors.violetBackgroundColor, purplebg: transparentize( colors[lightTheme ? "purple90" : "purple80"], lightTheme ? 0.9 : 0.7 ), graybg: colors.grayBackgroundColor, primarybg: transparentize(colors.primary, lightTheme ? 0.9 : 0.7), } } // Metric delta uses the same background colors as Markdown bg colors. export function getMetricBackgroundColor( theme: EmotionTheme, color: MetricProto.MetricColor ): string { switch (color) { case MetricProto.MetricColor.RED: return theme.colors.redBackgroundColor case MetricProto.MetricColor.GREEN: return theme.colors.greenBackgroundColor // this must be grey default: return theme.colors.grayBackgroundColor } } type MarkdownTextColors = { red: string orange: string yellow: string blue: string green: string violet: string purple: string gray: string primary: string } export function getMarkdownTextColors( theme: EmotionTheme ): MarkdownTextColors { const lightTheme = hasLightBackgroundColor(theme) const colors = theme.colors const primary = colors.primary const red = colors.redTextColor const orange = colors.orangeTextColor const yellow = colors.yellowTextColor const blue = colors.blueTextColor const green = colors.greenTextColor const violet = colors.violetTextColor const purple = lightTheme ? colors.purple100 : colors.purple80 const gray = colors.grayTextColor return { red: red, orange: orange, yellow: yellow, green: green, blue: blue, violet: violet, purple: purple, gray: gray, primary: primary, } } // Metric delta text uses the same text colors as Markdown. export function getMetricTextColor( theme: EmotionTheme, color: MetricProto.MetricColor ): string { switch (color) { case MetricProto.MetricColor.RED: return theme.colors.redTextColor case MetricProto.MetricColor.GREEN: return theme.colors.greenTextColor // this must be grey default: return theme.colors.grayTextColor } } export function getGray70(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.gray70 : theme.colors.gray30 } export function getGray30(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.gray30 : theme.colors.gray85 } export function getGray90(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.gray90 : theme.colors.gray10 } export function getBlue80(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.blue80 : theme.colors.blue40 } function getBlueArrayAsc(colors: GenericColors): string[] { return [ colors.blue10, colors.blue20, colors.blue30, colors.blue40, colors.blue50, colors.blue60, colors.blue70, colors.blue80, colors.blue90, colors.blue100, ] } function getBlueArrayDesc(colors: GenericColors): string[] { return [ colors.blue100, colors.blue90, colors.blue80, colors.blue70, colors.blue60, colors.blue50, colors.blue40, colors.blue30, colors.blue20, colors.blue10, ] } export function getDivergingColorsArray(theme: EmotionTheme): string[] { const { colors } = theme return [ colors.red100, colors.red90, colors.red70, colors.red50, colors.red30, colors.blue30, colors.blue50, colors.blue70, colors.blue90, colors.blue100, ] } function defaultSequentialColorsArray(genericColors: GenericColors): string[] { return _isLightBackground(genericColors.bgColor) ? getBlueArrayAsc(genericColors) : getBlueArrayDesc(genericColors) } function defaultCategoricalColorsArray( genericColors: GenericColors ): string[] { return _isLightBackground(genericColors.bgColor) ? [ genericColors.blue80, genericColors.blue40, genericColors.red80, genericColors.red40, genericColors.blueGreen80, genericColors.green40, genericColors.orange80, genericColors.orange50, genericColors.purple80, genericColors.gray40, ] : [ genericColors.blue40, genericColors.blue80, genericColors.red40, genericColors.red80, genericColors.green40, genericColors.blueGreen80, genericColors.orange50, genericColors.orange80, genericColors.purple80, genericColors.gray40, ] } export function getDecreasingRed(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.red80 : theme.colors.red40 } export function getIncreasingGreen(theme: EmotionTheme): string { return hasLightBackgroundColor(theme) ? theme.colors.blueGreen80 : theme.colors.green40 }
73
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/createBaseUiTheme.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { createTheme as createBaseTheme, lightThemePrimitives as lightBaseThemePrimitives, Primitives as ThemePrimitives, } from "baseui" import { Theme as BaseTheme } from "baseui/theme" import { transparentize } from "color2k" import { EmotionTheme } from "./types" /** * Creates theme primitives for the BaseUI theme. * * See lightThemePrimitives for what's available. These are used to create a * large JSON-style structure with theme values for all widgets. * - See node_modules/baseui/themes/light-theme-primitives.js for an example * of primitives we can use here. * * - See node_modules/baseui/themes/creator.js for the mapping of values from * this file to output values. * * @param baseTheme: The base theme primitives. * @param theme: The emotion theme to use. * @returns the theme primitives */ const createBaseUiThemePrimitives = ( baseTheme: ThemePrimitives, theme: EmotionTheme ): ThemePrimitives => { const { colors, genericFonts } = theme return { ...baseTheme, primaryFontFamily: genericFonts.bodyFont, primary100: colors.primary, primary200: colors.primary, primary300: colors.primary, primary400: colors.primary, primary500: colors.primary, primary600: colors.primary, primary700: colors.primary, // Override gray values based on what is actually used in BaseWeb, and the // way we want it to match our theme originating from Bootstrap. mono100: colors.bgColor, // Popup menu mono200: colors.secondaryBg, // Text input, text area, selectbox mono300: colors.gray30, // Disabled widget background mono400: colors.gray30, // Slider track mono500: colors.gray60, // Clicked checkbox and radio mono600: colors.fadedText40, // Disabled widget text mono700: colors.gray60, // Unselected checkbox and radio mono800: colors.bodyText, // Selectbox text mono900: colors.bodyText, // Not used, but just in case. mono1000: colors.black, } } /** * Creates theme overrides for the BaseUI theme. * * NOTE: A lot of the properties we can override here don't seem to actually * be used anywhere in BaseWeb's source. * * @param theme: The emotion theme to use. * @returns the theme overrides */ const createBaseUiThemeOverrides = ( theme: EmotionTheme // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. ): Record<string, any> => { const { inSidebar, colors, genericFonts, fontSizes, lineHeights, radii } = theme const fontStyles = { fontFamily: genericFonts.bodyFont, fontSize: fontSizes.md, fontSizeSm: fontSizes.sm, fontWeight: "normal", lineHeight: lineHeights.base, lineHeightTight: lineHeights.tight, } const widgetBackgroundColor = colors.secondaryBg // We want menuFill to always use bgColor. But when in sidebar, bgColor and secondaryBg are // swapped! So here we unswap them. const mainPaneBgColor = inSidebar ? colors.secondaryBg : colors.bgColor const mainPaneSecondaryBgColor = inSidebar ? colors.bgColor : colors.secondaryBg return { borders: { // Override borders that are declared from literals in // https://github.com/uber/baseweb/blob/master/src/themes/shared/borders.ts radius100: radii.default, radius200: radii.default, radius300: radii.default, radius400: radii.default, radius500: radii.default, /** Datepicker (Range), Progress Bar, Slider, Tag */ useRoundedCorners: true, /** Button, ButtonGroup */ buttonBorderRadiusMini: radii.md, // Unused today. buttonBorderRadius: radii.default, /** Checkbox */ checkboxBorderRadius: `min(${radii.md}, ${radii.maxCheckbox})`, /** Input, Select, Textarea */ inputBorderRadiusMini: radii.md, // Unused today. inputBorderRadius: radii.default, /** Popover, Menu, Tooltip */ popoverBorderRadius: radii.default, /** Card, Datepicker, Modal, Toast, Notification */ surfaceBorderRadius: radii.default, /** Tag */ tagBorderRadius: radii.md, }, typography: { // Here we override some fonts that are used in widgets. We don't care // about the ones that are not used. font100: {}, font150: { ...fontStyles }, // Popup menus font200: {}, font250: {}, font300: { ...fontStyles }, // Popup menus font350: { ...fontStyles }, // Checkbox font400: { ...fontStyles }, // Textinput, textarea, selectboxes font450: { ...fontStyles }, // Radio font460: { ...fontStyles }, // Calendar header buttons font470: { ...fontStyles }, // Button font500: { ...fontStyles }, // Selected items in selectbox font600: {}, LabelXSmall: { ...fontStyles }, LabelSmall: { ...fontStyles }, LabelMedium: { ...fontStyles }, LabelLarge: { ...fontStyles }, ParagraphSmall: { ...fontStyles }, }, colors: { white: colors.white, black: colors.black, primary: colors.primary, primaryA: colors.primary, backgroundPrimary: colors.bgColor, backgroundSecondary: widgetBackgroundColor, backgroundTertiary: colors.bgColor, borderOpaque: colors.darkenedBgMix25, accent: transparentize(colors.primary, 0.5), tagPrimarySolidBackground: colors.primary, tagPrimaryFontDisabled: colors.fadedText40, tagPrimaryOutlinedDisabled: colors.transparent, borderSelected: colors.primary, contentPrimary: colors.bodyText, inputPlaceholder: colors.fadedText60, tickFillDisabled: colors.fadedText40, tickMarkFill: colors.gray20, tickFillSelected: colors.primary, datepickerBackground: mainPaneBgColor, calendarBackground: mainPaneBgColor, calendarForeground: colors.bodyText, calendarDayForegroundPseudoSelected: colors.bodyText, calendarHeaderBackground: mainPaneSecondaryBgColor, calendarHeaderBackgroundActive: mainPaneSecondaryBgColor, calendarHeaderForeground: colors.bodyText, calendarHeaderForegroundDisabled: colors.gray40, calendarDayBackgroundSelected: colors.primary, calendarDayBackgroundSelectedHighlighted: colors.primary, calendarDayForegroundSelected: colors.white, calendarDayForegroundSelectedHighlighted: colors.white, calendarDayForegroundPseudoSelectedHighlighted: colors.bodyText, menuFontHighlighted: colors.bodyText, menuFontSelected: colors.bodyText, modalCloseColor: colors.bodyText, notificationInfoBackground: colors.blueBackgroundColor, notificationInfoText: colors.blueTextColor, notificationPositiveBackground: colors.greenBackgroundColor, notificationPositiveText: colors.greenTextColor, notificationWarningBackground: colors.yellowBackgroundColor, notificationWarningText: colors.yellowTextColor, notificationNegativeBackground: colors.redBackgroundColor, notificationNegativeText: colors.redTextColor, progressbarTrackFill: widgetBackgroundColor, // mono100 overrides tickFill: colors.lightenedBg05, // Checkbox and Radio tickMarkFillDisabled: colors.lightenedBg05, // We want menuFill to always use bgColor. But when in sidebar, bgColor and secondaryBg are // swapped! So here we unswap them. menuFill: mainPaneBgColor, // mono200 overrides buttonDisabledFill: colors.lightenedBg05, tickFillHover: widgetBackgroundColor, inputFillDisabled: widgetBackgroundColor, inputFillActive: widgetBackgroundColor, // mono300 overrides toggleTrackFillDisabled: widgetBackgroundColor, tickFillActive: widgetBackgroundColor, sliderTrackFillDisabled: widgetBackgroundColor, inputBorder: colors.widgetBorderColor || widgetBackgroundColor, inputFill: widgetBackgroundColor, inputEnhanceFill: widgetBackgroundColor, inputEnhancerFillDisabled: widgetBackgroundColor, // mono400 overrides buttonDisabledSpinnerBackground: colors.gray40, toggleTrackFill: colors.gray40, sliderTrackFill: colors.gray40, sliderHandleInnerFill: colors.gray40, sliderHandleInnerFillDisabled: colors.gray40, }, } } /** * Creates the BaseUI theme based on an emotion theme. * * @param theme: The emotion theme to use. * @param primitives: The primitives to use. * @returns the BaseUI theme */ export const createBaseUiTheme = ( theme: EmotionTheme, primitives = lightBaseThemePrimitives // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. ): BaseTheme & Record<string, any> => createBaseTheme( createBaseUiThemePrimitives(primitives, theme), createBaseUiThemeOverrides(theme) )
74
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/globalStyles.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { css, SerializedStyles } from "@emotion/react" import { transparentize } from "color2k" import { EmotionTheme } from "~lib/theme" /** * Contains various styles that are applied globally to the app. * * Please only add styles here if they are truly global. Putting styles to the * individual components should be strongly preferred. */ export const globalStyles = (theme: EmotionTheme): SerializedStyles => css` // Override the base font-size value here. html { font-size: ${theme.fontSizes.baseFontSize}px; } // Set height to 100% for printing, otherwise the page on Safari might be blank @media print { html { height: 100%; // make background-colors appear by default (e.g. the sidebar background, // widget background, multi-select element background, ...) print-color-adjust: exact; -webkit-print-color-adjust: exact; } } *, *::before, *::after { box-sizing: border-box; } // Body // // 1. Remove the margin in all browsers. // 2. As a best practice, apply a default background-color. // 3. Prevent adjustments of font size after orientation changes in iOS. // 4. Change the default tap highlight to be completely transparent in iOS. body { margin: 0; // 1 font-family: ${theme.genericFonts.bodyFont}; font-weight: ${theme.fontWeights.normal}; line-height: ${theme.lineHeights.base}; color: ${theme.colors.bodyText}; background-color: ${theme.colors.bgColor}; // 2 -webkit-text-size-adjust: 100%; // 3 -webkit-tap-highlight-color: ${transparentize(theme.colors.black, 1)}; // 4 -webkit-font-smoothing: auto; } // Embedded Overflow Management body.embedded { overflow: hidden; } body.embedded:hover { overflow: auto; } // Future-proof rule: in browsers that support :focus-visible, suppress the focus outline // on elements that programmatically receive focus but wouldn't normally show a visible // focus outline. In general, this would mean that the outline is only applied if the // interaction that led to the element receiving programmatic focus was a keyboard interaction, // or the browser has somehow determined that the user is primarily a keyboard user and/or // wants focus outlines to always be presented. // See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible // and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/ [tabindex="-1"]:focus:not(:focus-visible) { outline: 0 !important; } // Lists // Reset margins on paragraphs // // Similarly, the top margin on <p>s get reset. However, we also reset the // bottom margin to use rem units instead of em. p, ol, ul, dl { margin: 0 0 1rem 0; padding: 0; font-size: 1rem; font-weight: ${theme.fontWeights.normal}; } ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; } // And undo these styles for placeholder links/named anchors (without href). // It would be more straightforward to just use a[href] in previous block, but that // causes specificity issues in many other styles that are too complex to fix. // See https://github.com/twbs/bootstrap/issues/19402 a:not([href]):not([class]) { &, &:hover { color: inherit; text-decoration: none; } } // Images and content img, svg { vertical-align: middle; } // 1. Remove the margin in Firefox and Safari input, button, select, optgroup, textarea { margin: 0; // 1 font-family: inherit; line-height: inherit; font-size: inherit; } // Show the overflow in Edge button, input { overflow: visible; } // Set the cursor for all buttons or button-like elements button, [role="button"] { &:not(:disabled) { cursor: pointer; } } // 1. Prevent a WebKit bug where (2) destroys native audio and video // controls in Android 4. // 2. Correct the inability to style clickable types in iOS and Safari. // 3. Opinionated: add "hand" cursor to non-disabled button elements. button, [type="button"], // 1 [type="reset"], [type="submit"] { -webkit-appearance: button; // 2 } // Hidden attribute // // Always hide an element with the hidden HTML attribute. [hidden] { display: none !important; } // Tell browser to render a thin scrollbar that only appears when the // container is hovered. (This is ignored in OSes that render overlay // scrollbars, which is exactly what we want.) @supports (scrollbar-color: transparent transparent) { * { scrollbar-width: thin; scrollbar-color: transparent transparent; } *:hover { scrollbar-color: ${theme.colors.fadedText40} transparent; } } // Safari doesn't support scrollbar colors so we style the scrollbar // using the old webkit-only properties. @supports not (scrollbar-color: transparent transparent) { ::-webkit-scrollbar { background: transparent; border-radius: ${theme.radii.full}; height: 6px; width: 6px; } ::-webkit-scrollbar:active { background: ${theme.colors.fadedText10}; } :hover::-webkit-scrollbar-thumb:vertical, :hover::-webkit-scrollbar-thumb:horizontal { background: ${theme.colors.fadedText40}; border-radius: ${theme.radii.full}; } } `
75
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/themeConfigs.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { darkThemePrimitives, lightThemePrimitives } from "baseui" import { baseuiDarkTheme, baseuiLightTheme } from "./baseui" import emotionBaseTheme from "./emotionBaseTheme" import emotionDarkTheme from "./emotionDarkTheme" import emotionLightTheme from "./emotionLightTheme" import { ThemeConfig } from "./types" export const baseTheme: ThemeConfig = { name: "base", emotion: emotionBaseTheme, basewebTheme: baseuiLightTheme, primitives: lightThemePrimitives, } export const darkTheme: ThemeConfig = { name: "Dark", emotion: emotionDarkTheme, basewebTheme: baseuiDarkTheme, primitives: darkThemePrimitives, } export const lightTheme: ThemeConfig = { name: "Light", emotion: emotionLightTheme, basewebTheme: baseuiLightTheme, primitives: lightThemePrimitives, } export const customTheme: ThemeConfig = { name: "Custom Theme", emotion: emotionLightTheme, basewebTheme: baseuiLightTheme, primitives: lightThemePrimitives, }
76
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/utils.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { darken, getLuminance, lighten, parseToRgba, toHex, transparentize, } from "color2k" import cloneDeep from "lodash/cloneDeep" import isObject from "lodash/isObject" import merge from "lodash/merge" import mergeWith from "lodash/mergeWith" import once from "lodash/once" import { getLogger } from "loglevel" import { CustomThemeConfig, ICustomThemeConfig } from "@streamlit/protobuf" import type { StreamlitWindowObject } from "@streamlit/utils" import { localStorageAvailable } from "@streamlit/utils" import { CircularBuffer } from "~lib/components/shared/Profiler/CircularBuffer" import { baseTheme, CachedTheme, darkTheme, EmotionTheme, lightTheme, ThemeConfig, ThemeSpacing, } from "~lib/theme" import { LocalStore } from "~lib/util/storageUtils" import { isDarkThemeInQueryParams, isLightThemeInQueryParams, notNullOrUndefined, } from "~lib/util/utils" import { createBaseUiTheme } from "./createBaseUiTheme" import { computeDerivedColors, createEmotionColors } from "./getColors" import { fonts } from "./primitives/typography" import { DerivedColors, EmotionThemeColors } from "./types" export const AUTO_THEME_NAME = "Use system setting" export const CUSTOM_THEME_NAME = "Custom Theme" export const CUSTOM_THEME_LIGHT_NAME = "Custom Theme Light" export const CUSTOM_THEME_DARK_NAME = "Custom Theme Dark" export const CUSTOM_THEME_AUTO_NAME = "Custom Theme Auto" declare global { interface Window { __streamlit?: StreamlitWindowObject __streamlit_profiles__?: Record< string, CircularBuffer<{ phase: "mount" | "update" | "nested-update" actualDuration: number baseDuration: number startTime: number commitTime: number }> > } } const LOG = getLogger("theme:utils") function mergeTheme( theme: ThemeConfig, injectedTheme: ICustomThemeConfig | undefined ): ThemeConfig { // We confirm the injectedTheme is a valid object before merging it // since the type makes assumption about the implementation of the // injected object. if (injectedTheme && isObject(injectedTheme)) { const themeConfigProto = new CustomThemeConfig(injectedTheme) // eslint-disable-next-line @typescript-eslint/no-use-before-define return createTheme(theme.name, themeConfigProto, theme) } return theme } export const getMergedLightTheme = once(() => mergeTheme(lightTheme, window.__streamlit?.LIGHT_THEME) ) export const getMergedDarkTheme = once(() => mergeTheme(darkTheme, window.__streamlit?.DARK_THEME) ) export const getSystemThemePreference = (): "light" | "dark" => { return window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light" } export const getSystemTheme = (): ThemeConfig => { return getSystemThemePreference() === "dark" ? getMergedDarkTheme() : getMergedLightTheme() } export const createAutoTheme = (): ThemeConfig => ({ ...getSystemTheme(), name: AUTO_THEME_NAME, }) // Update auto theme in case it has changed export const createPresetThemes = (): ThemeConfig[] => [ createAutoTheme(), getMergedLightTheme(), getMergedDarkTheme(), ] export const isPresetTheme = (themeConfig: ThemeConfig): boolean => { const presetThemeNames = createPresetThemes().map((t: ThemeConfig) => t.name) return presetThemeNames.includes(themeConfig.name) } export const bgColorToBaseString = (bgColor?: string): string => bgColor === undefined || getLuminance(bgColor) > 0.5 ? "light" : "dark" export const isColor = (strColor: string): boolean => { const s = new Option().style s.color = strColor return s.color !== "" } /** * Helper function that rounds a font size (in rem) to the nearest eighth of a rem * This is used to keep configured font sizes to (generally) round values for dialogs. * See `convertFontSizes` in `StreamlitMarkdown/styled-components.ts` * (ex: 0.78 -> 0.75) */ export const roundFontSizeToNearestEighth = (remFontSize: number): number => { return Math.round(remFontSize * 8) / 8 } export const parseFont = ( font: string, // fallbackFont is the default streamlit font to use if the custom font fails to load fallbackFont: string = fonts.sansSerif ): string => { // Handle empty/whitespace-only input const trimmedFont = font.trim() if (!trimmedFont) { return fallbackFont } // Try to map a short font family to our default // font families const fontMap: Record<string, string> = { "sans-serif": fonts.sansSerif, serif: fonts.serif, monospace: fonts.monospace, } // The old font config supported "sans serif" as a font family, but this // isn't a valid font family, so we need to support it by converting it to // "sans-serif". const fontKey = trimmedFont.toLowerCase().replaceAll(" ", "-") if (fontKey in fontMap) { return fontMap[fontKey] } // Always append Streamlit's default font as the final fallback, ensuring // that if custom fonts fail to load (including any user-specified fallbacks), // Streamlit's default fonts are used instead of the browser's defaults. // Note: This may result in redundant generic families if the user's font string // already includes one (ex: "Arial, sans-serif, "Source Sans", sans-serif"). // This is intentional - it's valid CSS and ensures appropriate fallback behavior. return `${trimmedFont}, ${fallbackFont}` } /** * Helper function to parse/validate a config color value * @param color: a string - the color value passed in as a given config * @param configKey: a string - the config that the color value was passed for * @param inSidebar: boolean - whether this is for sidebar theming (for error messages) * @returns the validated color value or undefined if the color is invalid */ const parseColor = ( color: string, configKey: string, inSidebar: boolean = false ): string | undefined => { // First try the color as-is if (isColor(color)) { return color } // If that fails, try adding a # prefix if (isColor(`#${color}`)) { return `#${color}` } // If both fail and this is a color config, log a warning const isAColorConfig = configKey.toLowerCase().includes("color") if (isAColorConfig) { const themeSection = inSidebar ? "theme.sidebar" : "theme" LOG.warn( `Invalid color passed for ${configKey} in ${themeSection}: "${color}"` ) } return undefined } /** * Helper function for theme background colors * If the background color is configured, use it. * If the main color is configured, derive background color from it. * If neither is configured, fallback to default. */ const resolveBgColor = ( configBackgroundColor: string | undefined, configMainColor: string | undefined, defaultBackgroundColor: string, isLightTheme: boolean ): string => { if (configBackgroundColor) return configBackgroundColor if (configMainColor) { const transparency = isLightTheme ? 0.9 : 0.8 return transparentize(configMainColor, transparency) } return defaultBackgroundColor } /** * Helper function for theme text colors * If the text color is configured, use it. * If the main color is configured, derive text color from it. * If neither is configured, fallback to default. */ const resolveTextColor = ( configTextColor: string | undefined, configMainColor: string | undefined, defaultTextColor: string, isLightTheme: boolean ): string => { if (configTextColor) return configTextColor if (configMainColor) { const adjustmentAmount = 0.15 return isLightTheme ? darken(configMainColor, adjustmentAmount) : lighten(configMainColor, adjustmentAmount) } return defaultTextColor } /** * Applies background color overrides to theme colors using smart fallback logic. * For each background color: uses explicit config if provided, derives from main color if available, * or falls back to default. * @param existingColors - The existing emotion theme colors object * @param parsedColors - All parsed color configurations from user input * @returns Updated emotion theme colors object with background colors applied */ const setBackgroundColors = ( existingColors: EmotionThemeColors, parsedColors: Record<string, string | undefined> ): EmotionThemeColors => { const updatedColors = { ...existingColors, } const backgroundColorMap = { redBackgroundColor: { main: parsedColors.redColor, background: parsedColors.redBackgroundColor, }, orangeBackgroundColor: { main: parsedColors.orangeColor, background: parsedColors.orangeBackgroundColor, }, yellowBackgroundColor: { main: parsedColors.yellowColor, background: parsedColors.yellowBackgroundColor, }, blueBackgroundColor: { main: parsedColors.blueColor, background: parsedColors.blueBackgroundColor, }, greenBackgroundColor: { main: parsedColors.greenColor, background: parsedColors.greenBackgroundColor, }, violetBackgroundColor: { main: parsedColors.violetColor, background: parsedColors.violetBackgroundColor, }, grayBackgroundColor: { main: parsedColors.grayColor, background: parsedColors.grayBackgroundColor, }, } const isLightTheme = getLuminance(updatedColors.bgColor) > 0.5 Object.entries(backgroundColorMap).forEach(([key, { main, background }]) => { const typedKey = key as keyof typeof backgroundColorMap updatedColors[typedKey] = resolveBgColor( background, main, existingColors[typedKey], isLightTheme ) }) return updatedColors } /** * Applies text color overrides to theme colors using smart fallback logic. * For each text color: uses explicit config if provided, derives from main color if available, * or falls back to default. * @param existingColors - The existing emotion theme colors object * @param parsedColors - All parsed color configurations from user input * @returns Updated emotion theme colors object with text colors applied */ const setTextColors = ( existingColors: EmotionThemeColors, parsedColors: Record<string, string | undefined> ): EmotionThemeColors => { const updatedColors = { ...existingColors, } const textColorMap = { redTextColor: { main: parsedColors.redColor, text: parsedColors.redTextColor, }, orangeTextColor: { main: parsedColors.orangeColor, text: parsedColors.orangeTextColor, }, yellowTextColor: { main: parsedColors.yellowColor, text: parsedColors.yellowTextColor, }, blueTextColor: { main: parsedColors.blueColor, text: parsedColors.blueTextColor, }, greenTextColor: { main: parsedColors.greenColor, text: parsedColors.greenTextColor, }, violetTextColor: { main: parsedColors.violetColor, text: parsedColors.violetTextColor, }, grayTextColor: { main: parsedColors.grayColor, text: parsedColors.grayTextColor, }, } const isLightTheme = getLuminance(updatedColors.bgColor) > 0.5 Object.entries(textColorMap).forEach(([key, { main, text }]) => { const typedKey = key as keyof typeof textColorMap updatedColors[typedKey] = resolveTextColor( text, main, existingColors[typedKey], isLightTheme ) }) return updatedColors } /** * Helper function to parse the baseRadius & buttonRadius options which allow the same possible values * @param radius: a string - "none", "small", "medium", "large", "full", a number in pixels or rem * @returns radius value and css unit */ export const parseRadius = ( radius: string ): [number | undefined, "px" | "rem"] => { let cssUnit: "px" | "rem" = "rem" let radiusValue: number | undefined = undefined const processedRadius = radius.trim().toLowerCase() if (processedRadius === "none") { radiusValue = 0 } else if (processedRadius === "small") { radiusValue = 0.35 } else if (processedRadius === "medium") { radiusValue = 0.5 } else if (processedRadius === "large") { radiusValue = 1 } else if (processedRadius === "full") { radiusValue = 1.4 } else if (processedRadius.endsWith("rem")) { radiusValue = parseFloat(processedRadius) } else if (processedRadius.endsWith("px")) { radiusValue = parseFloat(processedRadius) cssUnit = "px" } else if (!isNaN(parseFloat(processedRadius))) { // Fallback: if the value can be parsed as a number, treat it as pixels radiusValue = parseFloat(processedRadius) cssUnit = "px" } return [radiusValue, cssUnit] } /** * Helper function to parse fontSize options which allow the same possible values * @param fontSize a string number in pixels or rem; handles number values as pixels * (e.g. "15px", "0.875rem", "15") * @returns font size in em (e.g. "0.875em") */ export const parseFontSize = ( configName: string, fontSize: string | number, inSidebar: boolean ): string | undefined => { const themeSection = inSidebar ? "theme.sidebar" : "theme" if (typeof fontSize === "string") { // If string, check its valid (ends with "rem" or "px") // and can be parsed as a number const processedFontSize = fontSize.trim().toLowerCase() const parsedFontSize = parseFloat(processedFontSize) if ( parsedFontSize && (processedFontSize.endsWith("rem") || processedFontSize.endsWith("px")) ) { return processedFontSize } // Fallback: if the value can be parsed as a number, treat it as pixels if (parsedFontSize.toString() === processedFontSize) { return `${processedFontSize}px` } } // If invalid, log warning and return undefined LOG.warn( `Invalid size passed for ${configName} in ${themeSection}: ${fontSize}. Falling back to default ${configName}.` ) } /** * Validate a font weight config */ const isValidFontWeight = ( weightConfigName: string, fontWeight: number | null | undefined, minWeight: number, maxWeight: number, inSidebar?: boolean ): boolean => { const themeSection = inSidebar ? "theme.sidebar" : "theme" // If the font weight config is set, validate it (log warning if invalid) if (notNullOrUndefined(fontWeight)) { const isInteger = Number.isInteger(fontWeight) const isIncrementOf100 = fontWeight % 100 === 0 const isInRange = fontWeight >= minWeight && fontWeight <= maxWeight if (!isInteger || !isIncrementOf100 || !isInRange) { LOG.warn( `Invalid ${weightConfigName}: ${fontWeight} in ${themeSection}. The ${weightConfigName} must be an integer ${minWeight}-${maxWeight}, and an increment of 100. Falling back to default font weight.` ) return false } return true } // If the font weight config is not set, return false return false } /** * Helper function to handle each heading font size in the headingFontSizes config * @param configName: the name of the config option * @param fontSize: the heading font size provided via theme config * @param baseFontSize: the base font size (default or provided via theme config) * @param inSidebar: whether this is the sidebar theme * @returns the heading font size in rem */ const convertHeadingFontSizeToRem = ( configName: string, fontSize: string, baseFontSize: number, inSidebar: boolean ): string | undefined => { // Validates the font size (logs warning & returns undefined if invalid) const validatedSize = parseFontSize(configName, fontSize, inSidebar) // Need each heading font size to be in rem if (validatedSize?.endsWith("rem")) { return validatedSize } else if (validatedSize?.endsWith("px")) { // Convert the font size to rem, and round to nearest 8th const remValue = parseFloat(validatedSize) / baseFontSize return `${remValue}rem` } // If invalid, return undefined return undefined } /** * Set the heading font sizes in the theme config * @param defaultFontSizes: the default theme font sizes * @param inSidebar: whether this is the sidebar theme * @param baseFontSize: the base font size (default or provided via theme config) * @param headingFontSizes: the h1-h6 heading font sizes provided via theme config * @returns an updated emotion theme font sizes object */ const setHeadingFontSizes = ( defaultFontSizes: EmotionTheme["fontSizes"], inSidebar: boolean, baseFontSize: number, headingFontSizes: string[] | null | undefined ): EmotionTheme["fontSizes"] => { const headingFontSizesOverrides = { ...defaultFontSizes, } if (headingFontSizes) { headingFontSizes.forEach((size, index) => { const headingFontSizeKey = `h${index + 1}FontSize` // Gets the heading font size in rem if not already & logs warning if invalid const convertedSize = convertHeadingFontSizeToRem( `${headingFontSizeKey} in headingFontSizes`, size, baseFontSize, inSidebar ) // If valid configured value, overwrite the default heading font size if (convertedSize) { // @ts-expect-error headingFontSizesOverrides[headingFontSizeKey] = convertedSize } }) } return headingFontSizesOverrides } /** * Helper function to set the normal, bold, and extrabold font weights based * on the baseFontWeight option * @param defaultFontWeights: the default theme font weights * @param inSidebar: whether the theme is in the sidebar * @param baseFontWeight: the base font weight provided via theme config * @param codeFontWeight: the code font weight provided via theme config * @param headingFontWeights: the h1-h6 heading font weights provided via theme config * @returns an updated emotion theme font weights object */ const setFontWeights = ( defaultFontWeights: EmotionTheme["fontWeights"], inSidebar: boolean, baseFontWeight: number | null | undefined, codeFontWeight: number | null | undefined, headingFontWeights: number[] | null | undefined ): EmotionTheme["fontWeights"] => { const fontWeightOverrides = { ...defaultFontWeights, // Override default h1FontWeight for sidebar to 600 // Default for main theme set in typography (700) h1FontWeight: inSidebar ? 600 : defaultFontWeights.h1FontWeight, } // Validate the baseFontWeight provided is an integer between 100 and 600 if ( baseFontWeight && isValidFontWeight("baseFontWeight", baseFontWeight, 100, 600) ) { // Set each of the font weights based on the base weight provided // The provided baseFontWeight sets the normal weight fontWeightOverrides.normal = baseFontWeight // The semiBold weight is set to the baseFontWeight + 100 fontWeightOverrides.semiBold = baseFontWeight + 100 // The bold weight is set to the baseFontWeight + 200 fontWeightOverrides.bold = baseFontWeight + 200 // The extrabold weight is set to the baseFontWeight + 300 fontWeightOverrides.extrabold = baseFontWeight + 300 // Set fallback for code font weights based on configured baseFontWeight fontWeightOverrides.code = baseFontWeight fontWeightOverrides.codeBold = baseFontWeight + 200 fontWeightOverrides.codeExtraBold = baseFontWeight + 300 } if ( codeFontWeight && isValidFontWeight("codeFontWeight", codeFontWeight, 100, 600) ) { // Set each of the code weights based on the base code font weight provided fontWeightOverrides.code = codeFontWeight // The bold weight is set to the codeFontWeight + 200 fontWeightOverrides.codeBold = codeFontWeight + 200 // The extrabold weight is set to the codeFontWeight + 300 fontWeightOverrides.codeExtraBold = codeFontWeight + 300 } if (headingFontWeights) { // Filling out the heading font weights array is handled in app_session.py headingFontWeights.forEach((weight, index) => { const headingFontWeightKey = `h${index + 1}FontWeight` if ( isValidFontWeight( `${headingFontWeightKey} in headingFontWeights`, weight, 100, 900, inSidebar ) ) { // @ts-expect-error fontWeightOverrides[headingFontWeightKey] = weight } }) } return fontWeightOverrides } /** * Helper function to validate each of the colors passed in the chart colors configs * @param configName: the name of the config ("chartCategoricalColors", "chartSequentialColors" or "chartDivergingColors") * @param colors: the colors config passed in (array of strings) * @returns the valid colors from the config */ const validateChartColors = ( configName: string, colors: string[] ): string[] => { return ( colors // parseColor returns undefined for invalid colors .map(color => parseColor(color, configName)) // Filter any invalid colors .filter((color): color is string => color !== undefined) ) } export const createEmotionTheme = ( themeInput: Partial<ICustomThemeConfig>, baseThemeConfig = baseTheme ): EmotionTheme => { const { colors, genericFonts, inSidebar } = baseThemeConfig.emotion const { baseFontSize, baseFontWeight, baseRadius, buttonRadius, codeFontSize, codeFontWeight, showWidgetBorder, headingFont, headingFontSizes, headingFontWeights, bodyFont, codeFont, showSidebarBorder, linkUnderline, // Since chart color configs passed as array, handle separate from parsedColors chartCategoricalColors, chartSequentialColors, ...customColors } = themeInput const parsedColors = Object.entries(customColors).reduce( (colorsArg: Record<string, string>, [key, color]) => { // @ts-expect-error const validatedColor = parseColor(color, key, inSidebar) if (validatedColor) { colorsArg[key] = validatedColor } return colorsArg }, {} ) // Extract configured color values from parsedColors and map them to the correct theme color primitive const { secondaryBackgroundColor: secondaryBg, backgroundColor: bgColor, primaryColor: primary, textColor: bodyText, dataframeBorderColor, dataframeHeaderBackgroundColor, widgetBorderColor, borderColor, linkColor, codeTextColor, codeBackgroundColor, redColor, orangeColor, yellowColor, blueColor, greenColor, violetColor, grayColor, } = parsedColors // Create a new generic colors object with configured colors, if they exist. // Fallback to the default colors if they are not set. Necessary as createEmotionColors // calculates some colors based on the generic colors. const newGenericColors = { ...colors, primary: primary ?? colors.primary, bodyText: bodyText ?? colors.bodyText, secondaryBg: secondaryBg ?? colors.secondaryBg, bgColor: bgColor ?? colors.bgColor, // Main theme colors redColor: redColor ?? colors.redColor, orangeColor: orangeColor ?? colors.orangeColor, yellowColor: yellowColor ?? colors.yellowColor, blueColor: blueColor ?? colors.blueColor, greenColor: greenColor ?? colors.greenColor, violetColor: violetColor ?? colors.violetColor, grayColor: grayColor ?? colors.grayColor, // Secondary color is not yet configurable. Set secondary color to primary color // by default for all custom themes. secondary: primary ?? colors.primary, } type ConditionalOverrides = { colors: ReturnType<typeof createEmotionColors> showSidebarBorder: boolean linkUnderline: boolean radii: EmotionTheme["radii"] fontSizes: EmotionTheme["fontSizes"] fontWeights: EmotionTheme["fontWeights"] } const conditionalOverrides: ConditionalOverrides = { colors: { ...createEmotionColors(newGenericColors), }, showSidebarBorder: showSidebarBorder ?? baseThemeConfig.emotion.showSidebarBorder, linkUnderline: linkUnderline ?? baseThemeConfig.emotion.linkUnderline, // Copy over the default values for the other configurable theme properties radii: { ...baseThemeConfig.emotion.radii }, fontSizes: { ...baseThemeConfig.emotion.fontSizes }, fontWeights: { ...baseThemeConfig.emotion.fontWeights }, } // Conditional Overrides - Colors conditionalOverrides.colors.codeBackgroundColor = codeBackgroundColor ?? colors.codeBackgroundColor conditionalOverrides.colors.dataframeHeaderBackgroundColor = dataframeHeaderBackgroundColor ?? colors.dataframeHeaderBackgroundColor if (notNullOrUndefined(borderColor)) { conditionalOverrides.colors.borderColor = borderColor const borderColorLight = transparentize(borderColor, 0.55) // Used for tabs border and expander when stale conditionalOverrides.colors.borderColorLight = borderColorLight // Set the fallback here for dataframe & table border color conditionalOverrides.colors.dataframeBorderColor = borderColorLight } if (notNullOrUndefined(dataframeBorderColor)) { // If dataframeBorderColor explicitly set, override borderColorLight fallback conditionalOverrides.colors.dataframeBorderColor = dataframeBorderColor } if (showWidgetBorder || widgetBorderColor) { // widgetBorderColor from the themeInput is deprecated. For compatibility // with older SiS theming, we still apply it here if provided, but we should // consider full removing it at some point. conditionalOverrides.colors.widgetBorderColor = widgetBorderColor || conditionalOverrides.colors.borderColor } // Apply background color overrides based on configured background color or main color as fallback conditionalOverrides.colors = setBackgroundColors( conditionalOverrides.colors, parsedColors ) // Apply text color overrides based on configured text color or main color as fallback conditionalOverrides.colors = setTextColors( conditionalOverrides.colors, parsedColors ) // Link color should use the linkColor config if provided, otherwise // use blueTextColor (configured/derived or default) handled above conditionalOverrides.colors.link = linkColor ?? conditionalOverrides.colors.blueTextColor // Code text color should use the codeTextColor config if provided, otherwise // use the greenTextColor (configured/derived or default) handled above conditionalOverrides.colors.codeTextColor = codeTextColor ?? conditionalOverrides.colors.greenTextColor if ( notNullOrUndefined(chartCategoricalColors) && chartCategoricalColors.length > 0 ) { // Validate the categorical colors config const validatedCategoricalColors = validateChartColors( "chartCategoricalColors", chartCategoricalColors ) // Set the validated colors if non-empty array if (validatedCategoricalColors.length > 0) { conditionalOverrides.colors.chartCategoricalColors = validatedCategoricalColors } } if ( notNullOrUndefined(chartSequentialColors) && chartSequentialColors.length > 0 ) { // Validate the sequential colors config const validatedSequentialColors = validateChartColors( "chartSequentialColors", chartSequentialColors ) // Set the validated colors, sequential colors should be an array of length 10 // Also checked on BE, but check here again in case one of the entries is not a valid color if (validatedSequentialColors.length === 10) { conditionalOverrides.colors.chartSequentialColors = validatedSequentialColors } else { LOG.warn( `Invalid chartSequentialColors: ${chartSequentialColors.toString()}. Falling back to default chartSequentialColors.` ) } } // Conditional Overrides - Radii if (notNullOrUndefined(baseRadius)) { const [radiusValue, cssUnit] = parseRadius(baseRadius) if (notNullOrUndefined(radiusValue) && !isNaN(radiusValue)) { const radiusWithCssUnit = addCssUnit(radiusValue, cssUnit) conditionalOverrides.radii.default = radiusWithCssUnit // Set the fallback button radius if baseRadius is set conditionalOverrides.radii.button = radiusWithCssUnit // Adapt all the other radii sizes based on the base radii: // We make sure that the value is rounded to 2 decimal places to avoid // floating point precision issues. conditionalOverrides.radii.md = addCssUnit( roundToTwoDecimals(radiusValue * 0.5), cssUnit ) conditionalOverrides.radii.xl = addCssUnit( roundToTwoDecimals(radiusValue * 1.5), cssUnit ) conditionalOverrides.radii.xxl = addCssUnit( roundToTwoDecimals(radiusValue * 2), cssUnit ) } else { LOG.warn( `Invalid base radius: ${baseRadius}. Falling back to default base radius.` ) } } if (notNullOrUndefined(buttonRadius)) { const [radiusValue, cssUnit] = parseRadius(buttonRadius) if (notNullOrUndefined(radiusValue) && !isNaN(radiusValue)) { // If valid buttonRadius set, override baseRadius fallback conditionalOverrides.radii.button = addCssUnit(radiusValue, cssUnit) } else { LOG.warn( `Invalid button radius: ${buttonRadius}. Falling back to default button radius.` ) } } // Conditional Overrides - Font Sizes if (baseFontSize && baseFontSize > 0) { // Set the root font size to the configured value (used on global styles): conditionalOverrides.fontSizes.baseFontSize = baseFontSize } if (codeFontSize) { // Returns font size as a string, or undefined if invalid const parsedCodeFontSize = parseFontSize( "codeFontSize", codeFontSize, inSidebar ) if (parsedCodeFontSize) { conditionalOverrides.fontSizes.codeFontSize = parsedCodeFontSize } // codeFontSize default (fallback) set in typography primitives (0.875rem) // inlineCodeFontSize set in typography primitives (0.75em) } // Set the heading font sizes based on the heading font sizes config provided conditionalOverrides.fontSizes = setHeadingFontSizes( conditionalOverrides.fontSizes, inSidebar, conditionalOverrides.fontSizes.baseFontSize, headingFontSizes ) // Conditional Overrides - Font Weights // Set the font weights based on the font weight configs provided conditionalOverrides.fontWeights = setFontWeights( baseThemeConfig.emotion.fontWeights, inSidebar, baseFontWeight, codeFontWeight, headingFontWeights ) // Font Overrides // Type for font overrides - represents genericFonts properties that can be overridden type GenericFontOverride = { bodyFont: string codeFont: string headingFont: string // Not configurable through custom themes iconFont: string } const fontsOverride: GenericFontOverride = { // Default values for the generic fonts ...genericFonts, // Override properties if configured bodyFont: bodyFont ? parseFont(bodyFont, fonts.sansSerif) : genericFonts.bodyFont, codeFont: codeFont ? parseFont(codeFont, fonts.monospace) : genericFonts.codeFont, headingFont: headingFont ? parseFont(headingFont, fonts.sansSerif) : genericFonts.headingFont, } // Handle headingFont fallback if (bodyFont && !headingFont) { fontsOverride.headingFont = parseFont(bodyFont, fonts.sansSerif) } return { ...baseThemeConfig.emotion, genericFonts: fontsOverride, ...conditionalOverrides, } } export const toThemeInput = ( theme: EmotionTheme ): Partial<CustomThemeConfig> => { const { colors } = theme return { primaryColor: colors.primary, backgroundColor: colors.bgColor, secondaryBackgroundColor: colors.secondaryBg, textColor: colors.bodyText, bodyFont: theme.genericFonts.bodyFont, } } export type ExportedTheme = { base: string primaryColor: string backgroundColor: string secondaryBackgroundColor: string textColor: string bodyFont: string } & DerivedColors export const toExportedTheme = (theme: EmotionTheme): ExportedTheme => { const { colors } = theme const themeInput = toThemeInput(theme) // At this point, we know that all of the fields of themeInput are populated // (since we went "backwards" from a theme -> themeInput), but typescript // doesn't know this, so we have to cast each field to string. return { primaryColor: themeInput.primaryColor as string, backgroundColor: themeInput.backgroundColor as string, secondaryBackgroundColor: themeInput.secondaryBackgroundColor as string, textColor: themeInput.textColor as string, bodyFont: themeInput.bodyFont as string, base: bgColorToBaseString(themeInput.backgroundColor), ...computeDerivedColors(colors), } } const completeThemeInput = ( partialInput: Partial<CustomThemeConfig>, baseThemeArg: ThemeConfig ): CustomThemeConfig => { return new CustomThemeConfig({ ...toThemeInput(baseThemeArg.emotion), ...partialInput, }) } export const createTheme = ( themeName: string, themeInput: Partial<CustomThemeConfig>, baseThemeConfig?: ThemeConfig, inSidebar = false ): ThemeConfig => { let completedThemeInput: CustomThemeConfig if (baseThemeConfig) { completedThemeInput = completeThemeInput(themeInput, baseThemeConfig) } else if (themeInput.base === CustomThemeConfig.BaseTheme.DARK) { completedThemeInput = completeThemeInput(themeInput, darkTheme) } else { completedThemeInput = completeThemeInput(themeInput, lightTheme) } // We use startingTheme to pick a set of "auxiliary colors" for widgets like // the success/info/warning/error boxes and others; these need to have their // colors tweaked to work well with the background. // // For our auxiliary colors, we pick colors that look reasonable based on the // theme's backgroundColor instead of picking them using themeInput.base. // This way, things will look good even if a user sets // themeInput.base === LIGHT and themeInput.backgroundColor === "black". const bgColor = completedThemeInput.backgroundColor const startingTheme = merge( cloneDeep( baseThemeConfig ? baseThemeConfig : getLuminance(bgColor) > 0.5 ? lightTheme : darkTheme ), { emotion: { inSidebar } } ) const emotion = createEmotionTheme(completedThemeInput, startingTheme) // We need to deep clone the theme object to prevent a bug in BaseWeb that causes // primitives to be modified globally. This cloning decouples our BaseWeb theme // object from the shared primitive objects and prevents unintended side effects. const basewebTheme = cloneDeep( createBaseUiTheme(emotion, startingTheme.primitives) ) return { ...startingTheme, name: themeName, emotion, basewebTheme, themeInput, } } export const getCachedTheme = (): ThemeConfig | null => { if (!localStorageAvailable()) { return null } const cachedThemeStr = window.localStorage.getItem(LocalStore.ACTIVE_THEME) if (!cachedThemeStr) { return null } const { name: themeName, themeInput }: CachedTheme = JSON.parse(cachedThemeStr) switch (themeName) { case lightTheme.name: return getMergedLightTheme() case darkTheme.name: return getMergedDarkTheme() default: // At this point we're guaranteed that themeInput is defined. return createTheme(themeName, themeInput as Partial<CustomThemeConfig>) } } const deleteOldCachedThemes = (): void => { const { CACHED_THEME_VERSION, CACHED_THEME_BASE_KEY } = LocalStore const { localStorage } = window // Pre-release versions of theming stored cached themes under the key // "stActiveTheme". localStorage.removeItem("stActiveTheme") // The first version of cached themes had keys of the form // `stActiveTheme-${window.location.pathname}` with no version number. localStorage.removeItem(CACHED_THEME_BASE_KEY) for (let i = 1; i <= CACHED_THEME_VERSION; i++) { localStorage.removeItem(`${CACHED_THEME_BASE_KEY}-v${i}`) } } export const setCachedTheme = (themeConfig: ThemeConfig): void => { if (!localStorageAvailable()) { return } deleteOldCachedThemes() // Do not set the theme if the app has a pre-defined theme from the embedder if (isLightThemeInQueryParams() || isDarkThemeInQueryParams()) { return } const cachedTheme: CachedTheme = { name: themeConfig.name, ...(!isPresetTheme(themeConfig) && { themeInput: toThemeInput(themeConfig.emotion), }), } window.localStorage.setItem( LocalStore.ACTIVE_THEME, JSON.stringify(cachedTheme) ) } export const removeCachedTheme = (): void => { if (!localStorageAvailable()) { return } window.localStorage.removeItem(LocalStore.ACTIVE_THEME) } export const getHostSpecifiedTheme = (): ThemeConfig => { if (isLightThemeInQueryParams()) { return getMergedLightTheme() } if (isDarkThemeInQueryParams()) { return getMergedDarkTheme() } return createAutoTheme() } export const getDefaultTheme = (): ThemeConfig => { // Priority for default theme const cachedTheme = getCachedTheme() // We shouldn't ever have auto saved in our storage in case // OS theme changes but we explicitly check in case! if (cachedTheme && cachedTheme.name !== AUTO_THEME_NAME) { return cachedTheme } return getHostSpecifiedTheme() } const whiteSpace = /\s+/ export function computeSpacingStyle( value: string, theme: EmotionTheme ): string { if (value === "") { return "" } return value .split(whiteSpace) .map(marginValue => { if (marginValue === "0") { return theme.spacing.none } if (!(marginValue in theme.spacing)) { LOG.error(`Invalid spacing value: ${marginValue}`) return theme.spacing.none } return theme.spacing[marginValue as ThemeSpacing] }) .join(" ") } export function addCssUnit(n: number, unit: "px" | "rem"): string { return `${n}${unit}` } function roundToTwoDecimals(n: number): number { return parseFloat(n.toFixed(2)) } export function blend(color: string, background: string | undefined): string { if (background === undefined) return color const [r, g, b, a] = parseToRgba(color) if (a === 1) return color const [br, bg, bb, ba] = parseToRgba(background) const ao = a + ba * (1 - a) // (xaA + xaB·(1−aA))/aR const ro = Math.round((a * r + ba * br * (1 - a)) / ao) const go = Math.round((a * g + ba * bg * (1 - a)) / ao) const bo = Math.round((a * b + ba * bb * (1 - a)) / ao) return toHex(`rgba(${ro}, ${go}, ${bo}, ${ao})`) } /** * Convert a SCSS rem value to pixels. * @param scssValue: a string containing a value in rem units with or without the "rem" unit suffix * @returns pixel value of the given rem value */ export const convertRemToPx = (scssValue: string): number => { const remValue = parseFloat(scssValue.replace(/rem$/, "")) return ( // TODO(lukasmasuch): We might want to somehow cache this value at some point. // However, I did experimented with the performance of calling this, and // it seems not like a big deal to call it many times. remValue * // We fallback to 16px if the fontSize is not defined (should only happen in tests) (parseFloat(getComputedStyle(document.documentElement).fontSize) || 16) ) } /** * Customizer function for lodash mergeWith that skips protobuf default values * (empty strings, null, empty arrays) to prevent them from overwriting valid values. * @returns objValue (keep existing value) if srcValue is a protobuf default, undefined otherwise */ const skipProtobufDefaults = ( objValue: unknown, srcValue: unknown ): unknown => { // Exclude empty strings, empty arrays, and null values if ( srcValue === "" || srcValue === null || (Array.isArray(srcValue) && srcValue.length === 0) ) { return objValue } // Let mergeWith handle all other cases normally return undefined } /** * Helper function to merge theme section configs (light/dark and light.sidebar/dark.sidebar) * into a consolidated theme input with proper inheritance. * Custom Light theme = uses streamlit base theme + [theme] configs + [theme.light] config overrides * Custom Dark theme = uses streamlit base theme + [theme] configs + [theme.dark] config overrides * Sidebar inherits from main theme with additional [theme.sidebar] overrides * Light sidebar = custom light theme + [theme.sidebar] + [theme.light.sidebar] overrides * Dark sidebar = custom dark theme + [theme.sidebar] + [theme.dark.sidebar] overrides * @param themeInput: the theme input (configs) to merge * @param variant: the theme variant to create ('light' or 'dark') */ export const handleSectionInheritance = ( themeInput: CustomThemeConfig, variant: "light" | "dark" ): CustomThemeConfig => { const isLightTheme = variant === "light" const base = isLightTheme ? CustomThemeConfig.BaseTheme.LIGHT : CustomThemeConfig.BaseTheme.DARK // Destructure to separate concerns: common theme properties, sidebar properties, // and light or dark variant sections const { light, dark, sidebar: baseSidebar, ...commonTheme } = themeInput const variantSection = isLightTheme ? light : dark const { sidebar: variantSidebar, ...variantTheme } = variantSection || {} // Merge common theme properties with variant overrides (excluding sidebars for now) // Note: base is set explicitly based on variant and is merged last to ensure it overrides // Use mergeWith with skipProtobufDefaults to prevent empty values from overwriting valid ones const result = mergeWith( {} as CustomThemeConfig, commonTheme, // Common theme properties from themeInput variantTheme, // Variant-specific theme overrides (without sidebar) { base }, // Set base last to override any base from commonTheme/variantTheme skipProtobufDefaults ) // Explicitly merge sidebars with correct precedence: baseSidebar < variantSidebar if (baseSidebar || variantSidebar) { // Use mergeWith with skipProtobufDefaults to prevent empty values from overwriting valid ones result.sidebar = mergeWith( {}, baseSidebar, variantSidebar, skipProtobufDefaults ) } return result } /** * Check if a theme section has any non-null/undefined values set. * Checks one level deep for nested objects (e.g., sidebar within light/dark sections). * Treats empty arrays as "no config" since they represent default values. * @param section: The theme section to check (e.g., themeInput.light or themeInput.dark) * @returns true if the section has any actual values set */ export const hasThemeSectionConfigs = ( section: ICustomThemeConfig | null | undefined ): boolean => { if (!section) { return false } // Helper to check if a value is non-empty (recursively checks one level deep) const isNonEmpty = (value: unknown): boolean => { if (value === null || value === undefined) { return false } // Empty arrays are treated as "no config" (they're default values) if (Array.isArray(value)) { return value.length > 0 } // Check nested objects one level deep (e.g., sidebar subsection) if (typeof value === "object") { return Object.values(value).some(isNonEmpty) } return true } return Object.values(section).some(isNonEmpty) } /** * Create custom themes from the theme input for main app * Function applies merge of sections/subsections and returns custom light/dark theme(s) * When no light/dark section configs are set, returns "Custom Theme" (1 theme) * When light and/or dark section configs are set, returns "Custom Theme Light", "Custom Theme Dark" * & auto based on system preference ("Use System Setting") (3 themes) * @param themeInput: the theme input (configs) with nested sections/subsections * @returns 1 or 3 custom themes */ export const createCustomThemes = ( themeInput: CustomThemeConfig ): ThemeConfig[] => { const hasLightConfigs = hasThemeSectionConfigs(themeInput.light) const hasDarkConfigs = hasThemeSectionConfigs(themeInput.dark) const customThemes: ThemeConfig[] = [] // When light or dark theme section configs are set, need to create a custom theme for each if (hasLightConfigs || hasDarkConfigs) { const lightThemeInput = handleSectionInheritance(themeInput, "light") const lightTheme = { ...createTheme(CUSTOM_THEME_LIGHT_NAME, lightThemeInput), displayName: "Light", } const darkThemeInput = handleSectionInheritance(themeInput, "dark") const darkTheme = { ...createTheme(CUSTOM_THEME_DARK_NAME, darkThemeInput), displayName: "Dark", } // Also add an auto custom theme based on the system preference const autoCustomTheme = getSystemThemePreference() === "dark" ? darkTheme : lightTheme const autoTheme = { ...autoCustomTheme, displayName: AUTO_THEME_NAME, name: CUSTOM_THEME_AUTO_NAME, } // Return light, dark, and auto custom themes customThemes.push(lightTheme, darkTheme, autoTheme) } else { // No light/dark section configs set - single "Custom Theme" returned const customTheme = createTheme(CUSTOM_THEME_NAME, themeInput) // Return the single custom theme customThemes.push(customTheme) } return customThemes } /** * Set the default heading font sizes for the sidebar. * @param configHeadingFontSizes: the heading font sizes provided via theme config * @returns the heading font sizes for the sidebar */ const setSidebarHeadingFontSizes = ( configHeadingFontSizes: string[] | null | undefined ): string[] => { // Default sidebar heading font sizes const defaultHeadingFontSizes = [ "1.5rem", "1.25rem", "1.125rem", "1rem", "0.875rem", "0.75rem", ] // Merge config overrides with sidebar defaults (for arrays, merge replaces at each index) return merge([], defaultHeadingFontSizes, configHeadingFontSizes || []) } /** * Create the sidebar's theme, including any sidebar custom theme configurations * Note: handleSectionInheritance has already handled section inheritance for sidebar * in generating the main theme. * @returns active theme to be used for the sidebar */ export const createSidebarTheme = (activeTheme: ThemeConfig): ThemeConfig => { const sidebarThemeInput = activeTheme.themeInput?.sidebar const { bgColor, secondaryBg } = activeTheme.emotion.colors // Either use the configured background color or secondary background from main theme: const sidebarBackground = sidebarThemeInput?.backgroundColor || secondaryBg // Either use the configured secondary background color or background from main theme: const secondaryBackgroundColor = sidebarThemeInput?.secondaryBackgroundColor || bgColor // Handle configured vs. default header font sizes for sidebar const headingFontSizes = setSidebarHeadingFontSizes( sidebarThemeInput?.headingFontSizes ) let baseTheme = getLuminance(sidebarBackground) > 0.5 ? CustomThemeConfig.BaseTheme.LIGHT : CustomThemeConfig.BaseTheme.DARK // If the active theme is a light/dark custom theme, use the expected base if (activeTheme.name === CUSTOM_THEME_LIGHT_NAME) { baseTheme = CustomThemeConfig.BaseTheme.LIGHT } else if (activeTheme.name === CUSTOM_THEME_DARK_NAME) { baseTheme = CustomThemeConfig.BaseTheme.DARK } // Use mergeWith & skipProtobufDefaults to prevent empty sidebar values from overwriting main theme configs const mergedSidebarThemeInput = mergeWith( {}, activeTheme.themeInput, // Use the theme props from the main theme as basis sidebarThemeInput, // Merge sidebar configs { // Explicit overrides that should always be applied base: baseTheme, backgroundColor: sidebarBackground, secondaryBackgroundColor: secondaryBackgroundColor, headingFontSizes: headingFontSizes, }, skipProtobufDefaults ) // Create the theme with overrides return createTheme( "Sidebar", mergedSidebarThemeInput, undefined, // Creating a new theme from scratch true // inSidebar ) }
77
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/baseui.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { darkThemePrimitives as baseuiDarkThemePrimitives, lightThemePrimitives as baseuiLightThemePrimitives, } from "baseui" import { createBaseUiTheme } from "./createBaseUiTheme" import emotionDarkTheme from "./emotionDarkTheme" import emotionLightTheme from "./emotionLightTheme" export const baseuiLightTheme = createBaseUiTheme( emotionLightTheme, baseuiLightThemePrimitives ) export const baseuiDarkTheme = createBaseUiTheme( emotionDarkTheme, baseuiDarkThemePrimitives ) export type BaseUILightTheme = typeof baseuiLightTheme
78
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/types.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { lightThemePrimitives } from "baseui" import { CustomThemeConfig } from "@streamlit/protobuf" import { baseuiLightTheme } from "./baseui" import emotionBaseTheme from "./emotionBaseTheme" import { OptionalThemeColors, RequiredThemeColors, } from "./emotionBaseTheme/themeColors" import { PrimitiveColors } from "./primitives" /** * Comprehensive type for emotion theme colors. * Combines: * - PrimitiveColors: Base color palette from primitives/colors.ts * - RequiredThemeColors: Required theme colors declared in base/dark themeColors.ts * - OptionalThemeColors: Optional theme colors declared in base/dark themeColors.ts * - DerivedColors: Computed colors based on the 3 color segments above * - SpecialEmotionColors: Extra colors added by createEmotionColors (related to custom theming) */ export type EmotionThemeColors = PrimitiveColors & RequiredThemeColors & OptionalThemeColors & DerivedColors & SpecialEmotionColors /** * Subsegment of EmotionThemeColors that is passed to createEmotionColors to create the full emotion theme colors. * - PrimitiveColors: Base color palette from primitives/colors.ts * - RequiredThemeColors: Required theme colors declared in base/dark themeColors.ts * - OptionalThemeColors: Optional theme colors declared in base/dark themeColors.ts */ export type GenericColors = PrimitiveColors & RequiredThemeColors & OptionalThemeColors /** * Computed colors based on GenericColors */ export type DerivedColors = { fadedText05: string fadedText10: string fadedText20: string fadedText40: string fadedText60: string bgMix: string darkenedBgMix100: string darkenedBgMix25: string darkenedBgMix15: string lightenedBg05: string } /** * Extra colors added by createEmotionColors (related to custom theming) */ export type SpecialEmotionColors = { link: string codeTextColor: string codeBackgroundColor: string borderColor: string borderColorLight: string // Used for borders around dataframes and tables dataframeBorderColor: string // Used for dataframe header background dataframeHeaderBackgroundColor: string headingColor: string // Chart colors (these are arrays of colors) chartCategoricalColors: string[] chartSequentialColors: string[] } /** * Complete emotion theme type with explicitly typed colors */ export interface EmotionTheme extends Omit<typeof emotionBaseTheme, "colors"> { colors: EmotionThemeColors } export type ThemeConfig = { name: string // Display name is used in custom themes for SettingsDialog theme selector // Allows custom themes to still show as "Light", "Dark", or "Use System Setting" displayName?: string emotion: EmotionTheme // For use with Baseweb's ThemeProvider. This is required in order for us to // create separate themes for in the children. Currently required to accommodate // sidebar theming. basewebTheme: typeof baseuiLightTheme primitives: typeof lightThemePrimitives themeInput?: Partial<CustomThemeConfig> } export type CachedTheme = { name: string themeInput?: Partial<CustomThemeConfig> } type IconSizes = typeof emotionBaseTheme.iconSizes export type ThemeSizings = typeof emotionBaseTheme.sizes export type ThemeSpacings = typeof emotionBaseTheme.spacing export type IconSize = keyof IconSizes export type ThemeSizing = keyof ThemeSizings export type ThemeSpacing = keyof ThemeSpacings export type PresetThemeName = "Light" | "Dark"
79
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/utils.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { darken, lighten, transparentize } from "color2k" import { getLogger } from "loglevel" import { MockInstance } from "vitest" import { CustomThemeConfig, ICustomThemeConfig } from "@streamlit/protobuf" import { baseTheme, createAutoTheme, darkTheme, lightTheme, } from "~lib/theme/index" import { ThemeConfig } from "~lib/theme/types" import { LocalStore } from "~lib/util/storageUtils" import { hasLightBackgroundColor } from "./getColors" import { AUTO_THEME_NAME, bgColorToBaseString, computeSpacingStyle, createCustomThemes, createEmotionTheme, createSidebarTheme, createTheme, CUSTOM_THEME_AUTO_NAME, CUSTOM_THEME_DARK_NAME, CUSTOM_THEME_LIGHT_NAME, CUSTOM_THEME_NAME, getCachedTheme, getDefaultTheme, getHostSpecifiedTheme, getSystemTheme, handleSectionInheritance, hasThemeSectionConfigs, isColor, isPresetTheme, parseFont, removeCachedTheme, setCachedTheme, toThemeInput, } from "./utils" const matchMediaFillers = { onchange: null, addListener: vi.fn(), // deprecated removeListener: vi.fn(), // deprecated addEventListener: vi.fn(), removeEventListener: vi.fn(), dispatchEvent: vi.fn(), } const LOG = getLogger("theme:utils") // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. const windowLocationSearch = (search: string): any => ({ location: { search, }, }) // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. const windowMatchMedia = (theme: "light" | "dark"): any => ({ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. matchMedia: (query: any) => ({ matches: query === `(prefers-color-scheme: ${theme})`, media: query, ...matchMediaFillers, }), }) const mockWindow = (...overrides: object[]): MockInstance => { const localStorage = window.localStorage const windowSpy = vi.spyOn(window, "window", "get") windowSpy.mockImplementation(() => ({ localStorage, ...windowLocationSearch(""), ...windowMatchMedia("light"), ...Object.assign({}, ...overrides), })) return windowSpy } describe("Styling utils", () => { describe("computeSpacingStyle", () => { test("pulls correct theme values", () => { expect(computeSpacingStyle("sm md lg none", lightTheme.emotion)).toEqual( "0.5rem 0.75rem 1rem 0" ) expect(computeSpacingStyle("xs 0 px lg", lightTheme.emotion)).toEqual( "0.375rem 0 1px 1rem" ) }) }) }) describe("isPresetTheme", () => { it("returns true for the light, dark, and auto themes", () => { const presetThemes = [lightTheme, darkTheme, createAutoTheme()] presetThemes.forEach((themeConfig: ThemeConfig) => { expect(isPresetTheme(themeConfig)).toBe(true) }) }) it("returns false for custom themes", () => { const customTheme = createTheme( CUSTOM_THEME_NAME, new CustomThemeConfig({ primaryColor: "red", secondaryBackgroundColor: "blue", }) ) expect(isPresetTheme(customTheme)).toBe(false) }) }) describe("Cached theme helpers", () => { // NOTE: localStorage is weird, and calling .spyOn(window.localStorage, "setItem") // doesn't work. Accessing .__proto__ here isn't too bad of a crime since // it's test code. const breakLocalStorage = (): void => { vi // eslint-disable-next-line no-proto .spyOn(window.localStorage.__proto__, "setItem") .mockImplementation(() => { throw new Error("boom") }) } afterEach(() => { vi.restoreAllMocks() window.localStorage.clear() }) describe("getCachedTheme", () => { it("returns null if localStorage is not available", () => { breakLocalStorage() // eslint-disable-next-line no-proto const getItemSpy = vi.spyOn(window.localStorage.__proto__, "getItem") expect(getCachedTheme()).toBe(null) expect(getItemSpy).not.toHaveBeenCalled() }) it("returns null if no theme is set in localStorage", () => { expect(getCachedTheme()).toBe(null) }) it("does not find cached themes with older versions, so returns null", () => { // Save a cachedTheme in LocalStorage with the key of a previous version. window.localStorage.setItem( LocalStore.CACHED_THEME_BASE_KEY, JSON.stringify({ name: darkTheme.name }) ) expect(getCachedTheme()).toBe(null) }) it("returns preset cached theme if localStorage is available and one is set", () => { window.localStorage.setItem( LocalStore.ACTIVE_THEME, JSON.stringify({ name: darkTheme.name }) ) expect(getCachedTheme()).toEqual(darkTheme) }) it("returns a custom cached theme if localStorage is available and one is set", () => { const themeInput: Partial<CustomThemeConfig> = { primaryColor: "red", backgroundColor: "orange", secondaryBackgroundColor: "yellow", textColor: "green", bodyFont: '"Source Sans", sans-serif', } const customTheme = createTheme(CUSTOM_THEME_NAME, themeInput) window.localStorage.setItem( LocalStore.ACTIVE_THEME, JSON.stringify({ name: CUSTOM_THEME_NAME, themeInput }) ) expect(getCachedTheme()).toEqual(customTheme) }) }) describe("removeCachedTheme", () => { it("does nothing if localStorage is not available", () => { breakLocalStorage() const removeItemSpy = vi.spyOn( // eslint-disable-next-line no-proto window.localStorage.__proto__, "removeItem" ) removeCachedTheme() expect(removeItemSpy).not.toHaveBeenCalled() }) it("removes theme if localStorage", () => { const removeItemSpy = vi.spyOn( // eslint-disable-next-line no-proto window.localStorage.__proto__, "removeItem" ) removeCachedTheme() expect(removeItemSpy).toHaveBeenCalled() }) }) describe("setCachedTheme", () => { const themeInput: Partial<CustomThemeConfig> = { primaryColor: "red", backgroundColor: "orange", secondaryBackgroundColor: "yellow", textColor: "green", bodyFont: "Roboto", } const customTheme = createTheme(CUSTOM_THEME_NAME, themeInput) it("does nothing if localStorage is not available", () => { breakLocalStorage() // eslint-disable-next-line no-proto const setItemSpy = vi.spyOn(window.localStorage.__proto__, "setItem") setCachedTheme(darkTheme) // This looks a bit funny and is the way it is because the way we know // that localStorage is broken is that setItem throws an error at us. expect(setItemSpy).toHaveBeenCalledTimes(1) expect(setItemSpy).toHaveBeenCalledWith("testData", "testData") }) it("sets a preset theme with just its name if localStorage is available", () => { setCachedTheme(darkTheme) const cachedTheme = JSON.parse( window.localStorage.getItem(LocalStore.ACTIVE_THEME) as string ) expect(cachedTheme).toEqual({ name: darkTheme.name }) }) it("deletes cached themes with older versions", () => { window.localStorage.setItem("stActiveTheme", "I should get deleted :|") window.localStorage.setItem( LocalStore.CACHED_THEME_BASE_KEY, "I should get deleted too :|" ) setCachedTheme(customTheme) expect(window.localStorage.getItem("stActiveTheme")).toBe(null) expect( window.localStorage.getItem(LocalStore.CACHED_THEME_BASE_KEY) ).toBe(null) }) it("sets a custom theme with its name and themeInput if localStorage is available", () => { setCachedTheme(customTheme) const cachedTheme = JSON.parse( window.localStorage.getItem(LocalStore.ACTIVE_THEME) as string ) // Note: bodyFont will have Streamlit's default fallback appended by parseFont expect(cachedTheme).toEqual({ name: customTheme.name, themeInput: { ...themeInput, bodyFont: 'Roboto, "Source Sans", sans-serif', }, }) }) }) }) describe("createTheme", () => { it("returns a theme", () => { const customThemeConfig = new CustomThemeConfig({ primaryColor: "red", secondaryBackgroundColor: "blue", bodyFont: "serif", }) const customTheme = createTheme(CUSTOM_THEME_NAME, customThemeConfig) expect(customTheme.name).toBe(CUSTOM_THEME_NAME) expect(customTheme.emotion.colors.primary).toBe("red") expect(customTheme.emotion.colors.secondaryBg).toBe("blue") expect(customTheme.emotion.genericFonts.bodyFont).toBe( lightTheme.emotion.fonts.serif ) // If it is not provided, use the default expect(customTheme.emotion.colors.bgColor).toBe( lightTheme.emotion.colors.bgColor ) }) it("returns a theme based on a different theme", () => { const customThemeConfig = new CustomThemeConfig({ primaryColor: "red", secondaryBackgroundColor: "blue", bodyFont: "serif", }) const customTheme = createTheme( CUSTOM_THEME_NAME, customThemeConfig, darkTheme, // inSidebar true ) expect(customTheme.name).toBe(CUSTOM_THEME_NAME) expect(customTheme.emotion.colors.primary).toBe("red") expect(customTheme.emotion.colors.secondaryBg).toBe("blue") expect(customTheme.emotion.genericFonts.bodyFont).toBe( darkTheme.emotion.fonts.serif ) // If it is not provided, use the default expect(customTheme.emotion.colors.bgColor).toBe( darkTheme.emotion.colors.bgColor ) expect(customTheme.emotion.inSidebar).toBe(true) expect(darkTheme.emotion.inSidebar).toBe(false) }) it("handles hex values without #", () => { const customThemeConfig = new CustomThemeConfig({ primaryColor: "eee", secondaryBackgroundColor: "fc9231", bodyFont: "serif", }) const customTheme = createTheme( CUSTOM_THEME_NAME, customThemeConfig, darkTheme ) expect(customTheme.name).toBe(CUSTOM_THEME_NAME) expect(customTheme.emotion.colors.primary).toBe("#eee") expect(customTheme.emotion.colors.secondaryBg).toBe("#fc9231") expect(customTheme.emotion.genericFonts.bodyFont).toBe( customTheme.emotion.fonts.serif ) // If it is not provided, use the default expect(customTheme.emotion.colors.bgColor).toBe( darkTheme.emotion.colors.bgColor ) }) it("sets unspecified theme options using the given BaseTheme", () => { const customTheme = createTheme( CUSTOM_THEME_NAME, new CustomThemeConfig({ base: CustomThemeConfig.BaseTheme.DARK, primaryColor: "blue", }) ) expect(customTheme.emotion.colors.bgColor).toBe( darkTheme.emotion.colors.bgColor ) expect(customTheme.emotion.colors.primary).toBe("blue") // Auxiliary colors should be those of the Dark theme. expect(customTheme.emotion.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) }) it("sets auxiliary colors based on backgroundColor over the BaseTheme", () => { const customTheme = createTheme( CUSTOM_THEME_NAME, new CustomThemeConfig({ backgroundColor: "black", base: CustomThemeConfig.BaseTheme.LIGHT, }) ) expect(customTheme.emotion.colors.bgColor).toBe("black") // Auxiliary colors should be picked to be ones that work well with the // black background even though the user set the base theme to light. expect(customTheme.emotion.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) // Theme options should be inherited from the light theme as defined by the // user. expect(customTheme.emotion.colors.secondaryBg).toBe( lightTheme.emotion.colors.secondaryBg ) }) }) describe("getSystemTheme", () => { let windowSpy: MockInstance afterEach(() => { windowSpy.mockRestore() window.localStorage.clear() }) it("returns lightTheme when matchMedia does *not* match dark", () => { windowSpy = mockWindow() expect(getSystemTheme().name).toBe("Light") }) it("returns darkTheme when matchMedia does match dark", () => { windowSpy = mockWindow(windowMatchMedia("dark")) expect(getSystemTheme().name).toBe("Dark") }) }) describe("getHostSpecifiedTheme", () => { let windowSpy: MockInstance afterEach(() => { windowSpy.mockRestore() window.localStorage.clear() }) it("sets default to the auto theme when there is no theme preference", () => { windowSpy = mockWindow() const defaultTheme = getHostSpecifiedTheme() expect(defaultTheme.name).toBe(AUTO_THEME_NAME) // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) it("sets the auto theme correctly when the OS preference is dark", () => { mockWindow(windowSpy, windowMatchMedia("dark")) const defaultTheme = getHostSpecifiedTheme() expect(defaultTheme.name).toBe(AUTO_THEME_NAME) expect(defaultTheme.emotion.colors).toEqual(darkTheme.emotion.colors) }) it("sets default to the light theme when an embed query parameter is set", () => { windowSpy = mockWindow( windowLocationSearch("?embed=true&embed_options=light_theme") ) const defaultTheme = getHostSpecifiedTheme() expect(defaultTheme.name).toBe("Light") // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) it("sets default to the dark theme when an embed query parameter is set", () => { windowSpy = mockWindow( windowLocationSearch("?embed=true&embed_options=dark_theme") ) const defaultTheme = getHostSpecifiedTheme() expect(defaultTheme.name).toBe("Dark") // Also verify that the theme is our darkTheme. expect(defaultTheme.emotion.colors).toEqual(darkTheme.emotion.colors) }) it("respects embed query parameter is set over system theme", () => { windowSpy = mockWindow( windowMatchMedia("dark"), windowLocationSearch("?embed=true&embed_options=light_theme") ) const defaultTheme = getHostSpecifiedTheme() expect(defaultTheme.name).toBe("Light") // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) }) describe("getDefaultTheme", () => { let windowSpy: MockInstance afterEach(() => { windowSpy.mockRestore() window.localStorage.clear() }) it("sets default to the auto theme when there is no cached theme", () => { windowSpy = mockWindow() const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe(AUTO_THEME_NAME) // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) it("sets the auto theme correctly when the OS preference is dark", () => { mockWindow(windowSpy, windowMatchMedia("dark")) const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe(AUTO_THEME_NAME) expect(defaultTheme.emotion.colors).toEqual(darkTheme.emotion.colors) }) it("sets the default to the user preference when one is set", () => { windowSpy = mockWindow() setCachedTheme(darkTheme) const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe("Dark") expect(defaultTheme.emotion.colors).toEqual(darkTheme.emotion.colors) }) it("sets default to the light theme when an embed query parameter is set", () => { windowSpy = mockWindow( windowLocationSearch("?embed=true&embed_options=light_theme") ) const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe("Light") // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) it("sets default to the dark theme when an embed query parameter is set", () => { windowSpy = mockWindow( windowLocationSearch("?embed=true&embed_options=dark_theme") ) const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe("Dark") // Also verify that the theme is our darkTheme. expect(defaultTheme.emotion.colors).toEqual(darkTheme.emotion.colors) }) it("respects embed query parameter is set over system theme", () => { windowSpy = mockWindow( windowMatchMedia("dark"), windowLocationSearch("?embed=true&embed_options=light_theme") ) const defaultTheme = getDefaultTheme() expect(defaultTheme.name).toBe("Light") // Also verify that the theme is our lightTheme. expect(defaultTheme.emotion.colors).toEqual(lightTheme.emotion.colors) }) }) describe("isColor", () => { // https://www.w3schools.com/cssref/css_colors_legal.asp it("works with valid colors", () => { expect(isColor("#fff")).toBe(true) expect(isColor("#ffffff")).toBe(true) expect(isColor("#ffffff0")).toBe(true) expect(isColor("#000")).toBe(true) expect(isColor("#000000")).toBe(true) expect(isColor("#fafafa")).toBe(true) expect(isColor("red")).toBe(true) expect(isColor("coral")).toBe(true) expect(isColor("transparent")).toBe(true) expect(isColor("rgb(0,0,0)")).toBe(true) expect(isColor("rgb(-1, 0, -255)")).toBe(true) expect(isColor("rgba(0,0,0,.5)")).toBe(true) expect(isColor("hsl(120,50%,40%)")).toBe(true) expect(isColor("hsl(120,50%,40%, .4)")).toBe(true) expect(isColor("currentColor")).toBe(true) }) it("works with invalid colors", () => { expect(isColor("fff")).toBe(false) expect(isColor("cookies are delicious")).toBe(false) expect(isColor("")).toBe(false) expect(isColor("hsl(120,50,40)")).toBe(false) }) }) describe("createEmotionTheme", () => { afterEach(() => { vi.clearAllMocks() }) it("sets to light when matchMedia does not match dark", () => { const themeInput: Partial<CustomThemeConfig> = { headingFont: "serif", bodyFont: "monospace", codeFont: "monospace", primaryColor: "red", backgroundColor: "pink", secondaryBackgroundColor: "blue", textColor: "orange", } const theme = createEmotionTheme(themeInput) expect(theme.colors.primary).toBe("red") expect(theme.colors.bgColor).toBe("pink") expect(theme.colors.secondaryBg).toBe("blue") expect(theme.colors.bodyText).toBe("orange") expect(theme.genericFonts.headingFont).toBe(theme.fonts.serif) expect(theme.genericFonts.bodyFont).toBe(theme.fonts.monospace) expect(theme.genericFonts.codeFont).toBe(theme.fonts.monospace) }) it("defaults to base if missing value", () => { const themeInput: Partial<CustomThemeConfig> = { primaryColor: "red", } const theme = createEmotionTheme(themeInput) expect(theme.colors.primary).toBe("red") expect(theme.colors.bgColor).toBe(baseTheme.emotion.colors.bgColor) expect(theme.colors.secondaryBg).toBe(baseTheme.emotion.colors.secondaryBg) expect(theme.colors.bodyText).toBe(baseTheme.emotion.colors.bodyText) expect(theme.genericFonts.headingFont).toBe( baseTheme.emotion.genericFonts.headingFont ) expect(theme.genericFonts.bodyFont).toBe( baseTheme.emotion.genericFonts.bodyFont ) expect(theme.genericFonts.codeFont).toBe( baseTheme.emotion.genericFonts.codeFont ) }) // == Theme border/underline properties == it("showSidebarBorder config is set to false by default", () => { const theme = createEmotionTheme({}) expect(theme.showSidebarBorder).toBe(false) }) it("sets the showSidebarBorder config to true if showSidebarBorder=true", () => { const theme = createEmotionTheme({ showSidebarBorder: true }) expect(theme.showSidebarBorder).toBe(true) }) it("linkUnderline config is set to true by default", () => { const theme = createEmotionTheme({}) expect(theme.linkUnderline).toBe(true) }) it("sets the linkUnderline config to false if linkUnderline=false", () => { const theme = createEmotionTheme({ linkUnderline: false }) expect(theme.linkUnderline).toBe(false) }) // == Theme color properties == // Handled in newGenericColors it.each([ // Test valid color values ["red", "orange", "blue", "pink", "purple"], ["#ff0000", "#ffa500", "#0000ff", "#ffc0cb", "#800080"], [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(0, 0, 255)", "rgb(255, 192, 192)", "rgb(128, 0, 128)", ], ])( "correctly handles setting of basic color configs '%s'", (primary, bodyText, secondaryBg, bgColor) => { const themeInput: Partial<CustomThemeConfig> = { primaryColor: primary, textColor: bodyText, secondaryBackgroundColor: secondaryBg, backgroundColor: bgColor, } const theme = createEmotionTheme(themeInput) expect(theme.colors.primary).toBe(primary) expect(theme.colors.bodyText).toBe(bodyText) expect(theme.colors.secondaryBg).toBe(secondaryBg) expect(theme.colors.bgColor).toBe(bgColor) } ) it.each([ // Test invalid color values passed to each color config ["primaryColor", "invalid", "orange", "blue", "pink", "purple"], ["textColor", "red", "invalid", "blue", "pink", "purple"], ["secondaryBackgroundColor", "red", "orange", "invalid", "pink", "purple"], ["backgroundColor", "red", "orange", "blue", "invalid", "purple"], ["borderColor", "red", "orange", "blue", "pink", "invalid"], ])( "logs a warning and falls back to default for any invalid color configs '%s'", ( invalidColorConfig, primary, bodyText, secondaryBg, bgColor, borderColor ) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { primaryColor: primary, textColor: bodyText, secondaryBackgroundColor: secondaryBg, backgroundColor: bgColor, borderColor, } const theme = createEmotionTheme(themeInput) // Should log an error expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for ${invalidColorConfig} in theme: "invalid"` ) // Check that valid colors are set correctly if (invalidColorConfig !== "primaryColor") { expect(theme.colors.primary).toBe(primary) } if (invalidColorConfig !== "textColor") { expect(theme.colors.bodyText).toBe(bodyText) } if (invalidColorConfig !== "secondaryBackgroundColor") { expect(theme.colors.secondaryBg).toBe(secondaryBg) } if (invalidColorConfig !== "backgroundColor") { expect(theme.colors.bgColor).toBe(bgColor) } if (invalidColorConfig !== "borderColor") { expect(theme.colors.borderColor).toBe(borderColor) } // Check that invalid color falls back to default value if (invalidColorConfig === "primaryColor") { expect(theme.colors.primary).toBe(baseTheme.emotion.colors.primary) } if (invalidColorConfig === "textColor") { expect(theme.colors.bodyText).toBe(baseTheme.emotion.colors.bodyText) } if (invalidColorConfig === "secondaryBackgroundColor") { expect(theme.colors.secondaryBg).toBe( baseTheme.emotion.colors.secondaryBg ) } if (invalidColorConfig === "backgroundColor") { expect(theme.colors.bgColor).toBe(baseTheme.emotion.colors.bgColor) } if (invalidColorConfig === "borderColor") { expect(theme.colors.borderColor).toBe(theme.colors.fadedText10) } } ) // Main theme colors it.each([ // Test valid main theme color values ["#ff0000", "#ff0000"], ["rgb(255, 0, 0)", "rgb(255, 0, 0)"], ["rgba(196, 77, 86, 1)", "rgba(196, 77, 86, 1)"], ["red", "red"], ["ff0000", "#ff0000"], // Handles no leading # ])("uses configured main theme colors if set", (color, expectedColor) => { const themeInput: Partial<CustomThemeConfig> = { redColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redColor).toBe(expectedColor) expect(theme.colors.orangeColor).toBe(theme.colors.orange70) expect(theme.colors.yellowColor).toBe(theme.colors.yellow80) expect(theme.colors.blueColor).toBe(theme.colors.blue70) expect(theme.colors.greenColor).toBe(theme.colors.green70) expect(theme.colors.violetColor).toBe(theme.colors.purple70) expect(theme.colors.grayColor).toBe(theme.colors.gray60) }) it.each([ // Test invalid main theme color values ["invalid"], ["rgb(255, 0, 0"], // Missing closing parenthesis ["corgi"], // Invalid color name ["#G00000"], // Invalid hex code ])( "logs a warning and falls back to default for invalid main theme colors '%s'", color => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { orangeColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for orangeColor in theme: "${color}"` ) // Falls back to default orange expect(theme.colors.orangeColor).toBe(theme.colors.orange70) // All others use defaults expect(theme.colors.redColor).toBe(theme.colors.red70) expect(theme.colors.yellowColor).toBe(theme.colors.yellow80) expect(theme.colors.blueColor).toBe(theme.colors.blue70) expect(theme.colors.greenColor).toBe(theme.colors.green70) expect(theme.colors.violetColor).toBe(theme.colors.purple70) expect(theme.colors.grayColor).toBe(theme.colors.gray60) } ) it("falls back to default main theme colors if not set", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redColor).toBe(theme.colors.red70) expect(theme.colors.orangeColor).toBe(theme.colors.orange70) expect(theme.colors.yellowColor).toBe(theme.colors.yellow80) expect(theme.colors.blueColor).toBe(theme.colors.blue70) expect(theme.colors.greenColor).toBe(theme.colors.green70) expect(theme.colors.violetColor).toBe(theme.colors.purple70) expect(theme.colors.grayColor).toBe(theme.colors.gray60) }) it("default main theme colors are set correctly for dark theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, } const theme = createEmotionTheme(themeInput, darkTheme) expect(theme.colors.redColor).toBe(theme.colors.red80) expect(theme.colors.orangeColor).toBe(theme.colors.orange80) expect(theme.colors.yellowColor).toBe(theme.colors.yellow70) expect(theme.colors.blueColor).toBe(theme.colors.blue80) expect(theme.colors.greenColor).toBe(theme.colors.green80) expect(theme.colors.violetColor).toBe(theme.colors.purple70) expect(theme.colors.grayColor).toBe(theme.colors.gray80) }) // Conditional Overrides - Colors it("sets the codeBackgroundColor if configured", () => { const themeInput: Partial<CustomThemeConfig> = { codeBackgroundColor: "pink", } const theme = createEmotionTheme(themeInput) expect(theme.colors.codeBackgroundColor).toBe("pink") }) it("uses default codeBackgroundColor if not configured", () => { const theme = createEmotionTheme({}) expect(theme.colors.codeBackgroundColor).toBe(theme.colors.bgMix) }) it("sets the dataframeHeaderBackgroundColor if configured", () => { const themeInput: Partial<CustomThemeConfig> = { dataframeHeaderBackgroundColor: "#FFC0CB", } const theme = createEmotionTheme(themeInput) expect(theme.colors.dataframeHeaderBackgroundColor).toBe("#FFC0CB") }) it("uses default dataframeHeaderBackgroundColor if not configured", () => { const theme = createEmotionTheme({}) expect(theme.colors.dataframeHeaderBackgroundColor).toBe( theme.colors.bgMix ) }) it("sets the borderColor properties based on borderColor config", () => { const themeInput: Partial<CustomThemeConfig> = { borderColor: "blue", // Note no specified dataframeBorderColor } const theme = createEmotionTheme(themeInput) expect(theme.colors.borderColor).toBe("blue") expect(theme.colors.borderColorLight).toBe(transparentize("blue", 0.55)) // Sets the dataframeBorderColor based on borderColor if dataframeBorderColor // not configured expect(theme.colors.dataframeBorderColor).toBe( theme.colors.borderColorLight ) }) it("sets the dataframeBorderColor if configured", () => { const themeInput: Partial<CustomThemeConfig> = { borderColor: "red", dataframeBorderColor: "green", } const theme = createEmotionTheme(themeInput) expect(theme.colors.borderColor).toBe("red") expect(theme.colors.dataframeBorderColor).toBe("green") }) it("handles showWidgetBorder config", () => { const themeInput: Partial<CustomThemeConfig> = { showWidgetBorder: true, } const theme = createEmotionTheme(themeInput) expect(theme.colors.widgetBorderColor).toBe(theme.colors.borderColor) }) it("handles legacy widgetBorderColor config", () => { const themeInput: Partial<CustomThemeConfig> = { widgetBorderColor: "yellow", } const theme = createEmotionTheme(themeInput) expect(theme.colors.widgetBorderColor).toBe("yellow") }) // Background theme colors it.each([ ["#ff0000", "#ff0000"], ["rgb(255, 0, 0)", "rgb(255, 0, 0)"], ["rgba(196, 77, 86, 0.1)", "rgba(196, 77, 86, 0.1)"], ["red", "red"], ["ff0000", "#ff0000"], // Handles no leading # ])( "uses configured background theme colors if set", (color, expectedColor) => { const themeInput: Partial<CustomThemeConfig> = { redBackgroundColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redBackgroundColor).toBe(expectedColor) expect(theme.colors.orangeBackgroundColor).toBe( lightTheme.emotion.colors.orangeBackgroundColor ) expect(theme.colors.yellowBackgroundColor).toBe( lightTheme.emotion.colors.yellowBackgroundColor ) expect(theme.colors.blueBackgroundColor).toBe( lightTheme.emotion.colors.blueBackgroundColor ) expect(theme.colors.greenBackgroundColor).toBe( lightTheme.emotion.colors.greenBackgroundColor ) expect(theme.colors.violetBackgroundColor).toBe( lightTheme.emotion.colors.violetBackgroundColor ) expect(theme.colors.grayBackgroundColor).toBe( lightTheme.emotion.colors.grayBackgroundColor ) } ) it.each([ // Test invalid background color values ["invalid"], ["rgb(255, 0, 0"], // Missing closing parenthesis ["corgi"], // Invalid color name ["#G00000"], // Invalid hex code ])( "logs a warning and falls back to default for invalid background theme colors '%s'", color => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { orangeBackgroundColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for orangeBackgroundColor in theme: "${color}"` ) // Falls back to default orange background expect(theme.colors.orangeBackgroundColor).toBe( lightTheme.emotion.colors.orangeBackgroundColor ) // All others use defaults expect(theme.colors.redBackgroundColor).toBe( lightTheme.emotion.colors.redBackgroundColor ) expect(theme.colors.yellowBackgroundColor).toBe( lightTheme.emotion.colors.yellowBackgroundColor ) expect(theme.colors.blueBackgroundColor).toBe( lightTheme.emotion.colors.blueBackgroundColor ) expect(theme.colors.greenBackgroundColor).toBe( lightTheme.emotion.colors.greenBackgroundColor ) expect(theme.colors.violetBackgroundColor).toBe( lightTheme.emotion.colors.violetBackgroundColor ) expect(theme.colors.grayBackgroundColor).toBe( lightTheme.emotion.colors.grayBackgroundColor ) } ) it("defaults background colors are set correctly for light theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redBackgroundColor).toBe( transparentize(theme.colors.red80, 0.9) ) expect(theme.colors.orangeBackgroundColor).toBe( transparentize(theme.colors.orange70, 0.9) ) expect(theme.colors.yellowBackgroundColor).toBe( transparentize(theme.colors.yellow65, 0.9) ) expect(theme.colors.blueBackgroundColor).toBe( transparentize(theme.colors.blue65, 0.9) ) expect(theme.colors.greenBackgroundColor).toBe( transparentize(theme.colors.green70, 0.9) ) expect(theme.colors.violetBackgroundColor).toBe( transparentize(theme.colors.purple60, 0.9) ) expect(theme.colors.grayBackgroundColor).toBe( transparentize(theme.colors.gray85, 0.9) ) }) it("default background colors are set correctly for dark theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, } const theme = createEmotionTheme(themeInput, darkTheme) expect(theme.colors.redBackgroundColor).toBe( transparentize(theme.colors.red60, 0.8) ) expect(theme.colors.orangeBackgroundColor).toBe( transparentize(theme.colors.orange80, 0.8) ) expect(theme.colors.yellowBackgroundColor).toBe( transparentize(theme.colors.yellow65, 0.8) ) expect(theme.colors.blueBackgroundColor).toBe( transparentize(theme.colors.blue60, 0.8) ) expect(theme.colors.greenBackgroundColor).toBe( transparentize(theme.colors.green60, 0.8) ) expect(theme.colors.violetBackgroundColor).toBe( transparentize(theme.colors.purple60, 0.8) ) expect(theme.colors.grayBackgroundColor).toBe( transparentize(theme.colors.gray70, 0.8) ) }) it("derives background colors from main colors with correct opacity for light theme", () => { const themeInput: Partial<CustomThemeConfig> = { redColor: "#ff0000", blueColor: "#0000ff", backgroundColor: "#ffffff", // Light theme } const theme = createEmotionTheme(themeInput, lightTheme) // Should derive red background from provided red color with 10% opacity (light theme) expect(theme.colors.redBackgroundColor).toBe("rgba(255, 0, 0, 0.1)") // Should derive blue background from provided blue color with 10% opacity (light theme) expect(theme.colors.blueBackgroundColor).toBe("rgba(0, 0, 255, 0.1)") // Should use default for colors not provided expect(theme.colors.orangeBackgroundColor).toBe( lightTheme.emotion.colors.orangeBackgroundColor ) }) it("derives background colors from main colors with correct opacity for dark theme", () => { const themeInput: Partial<CustomThemeConfig> = { redColor: "#ff0000", greenColor: "#00ff00", backgroundColor: "#000000", // Dark theme } const theme = createEmotionTheme(themeInput, darkTheme) // Should derive colors with 20% opacity for dark theme expect(theme.colors.redBackgroundColor).toBe("rgba(255, 0, 0, 0.2)") expect(theme.colors.greenBackgroundColor).toBe("rgba(0, 255, 0, 0.2)") // Should use default for colors not provided expect(theme.colors.blueBackgroundColor).toBe( darkTheme.emotion.colors.blueBackgroundColor ) }) it("uses explicit background color when both main color and background color are provided", () => { const themeInput: Partial<CustomThemeConfig> = { redColor: "#ff0000", redBackgroundColor: "#ffcccc", // Explicitly provided backgroundColor: "#ffffff", } const theme = createEmotionTheme(themeInput, lightTheme) // Should use explicitly provided background color, not derived expect(theme.colors.redBackgroundColor).toBe("#ffcccc") }) it("handles mixed explicit and derived background colors correctly", () => { const themeInput: Partial<CustomThemeConfig> = { // Explicit background colors redBackgroundColor: "#ffe6e6", blueBackgroundColor: "#e6f3ff", // Main colors that should derive backgrounds greenColor: "#00ff00", violetColor: "#8b00ff", // No yellow/orange/gray configs - should use defaults backgroundColor: "#ffffff", // Light theme } const theme = createEmotionTheme(themeInput, lightTheme) // Should use explicit backgrounds expect(theme.colors.redBackgroundColor).toBe("#ffe6e6") expect(theme.colors.blueBackgroundColor).toBe("#e6f3ff") // Should derive from main colors expect(theme.colors.greenBackgroundColor).toBe("rgba(0, 255, 0, 0.1)") expect(theme.colors.violetBackgroundColor).toBe("rgba(139, 0, 255, 0.1)") // Should use defaults expect(theme.colors.orangeBackgroundColor).toBe( lightTheme.emotion.colors.orangeBackgroundColor ) expect(theme.colors.yellowBackgroundColor).toBe( lightTheme.emotion.colors.yellowBackgroundColor ) expect(theme.colors.grayBackgroundColor).toBe( lightTheme.emotion.colors.grayBackgroundColor ) }) it("falls back to default when main color is invalid and no explicit background provided", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { redColor: "invalid-color", // Invalid main color blueColor: "#0000ff", // Valid main color backgroundColor: "#ffffff", } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( 'Invalid color passed for redColor in theme: "invalid-color"' ) // Should use default for red (main color invalid) expect(theme.colors.redBackgroundColor).toBe( lightTheme.emotion.colors.redBackgroundColor ) // Should derive for blue (main color valid) expect(theme.colors.blueBackgroundColor).toBe("rgba(0, 0, 255, 0.1)") }) // Text theme colors it.each([ ["#ffabab", "#ffabab"], // Using red40 from colors.ts ["ffabab", "#ffabab"], // Handles no leading # ["rgb(136, 51, 51)", "rgb(136, 51, 51)"], ["rgba(180, 69, 78, 0.1)", "rgba(180, 69, 78, 0.1)"], ["red", "red"], ])("uses configured text theme colors if set", (color, expectedColor) => { const themeInput: Partial<CustomThemeConfig> = { redTextColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redTextColor).toBe(expectedColor) expect(theme.colors.orangeTextColor).toBe( lightTheme.emotion.colors.orangeTextColor ) expect(theme.colors.yellowTextColor).toBe( lightTheme.emotion.colors.yellowTextColor ) expect(theme.colors.blueTextColor).toBe( lightTheme.emotion.colors.blueTextColor ) expect(theme.colors.greenTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) expect(theme.colors.violetTextColor).toBe( lightTheme.emotion.colors.violetTextColor ) expect(theme.colors.grayTextColor).toBe( lightTheme.emotion.colors.grayTextColor ) }) it.each([ // Test invalid text color values "invalid", "rgb(255, 0, 0", // Missing closing parenthesis "corgi", // Invalid color name "#G00000", // Invalid hex code ])( "logs a warning and falls back to default for invalid text theme colors '%s'", color => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { orangeTextColor: color, } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for orangeTextColor in theme: "${color}"` ) // Falls back to default orange text expect(theme.colors.orangeTextColor).toBe( lightTheme.emotion.colors.orangeTextColor ) // All others use defaults expect(theme.colors.redTextColor).toBe( lightTheme.emotion.colors.redTextColor ) expect(theme.colors.yellowTextColor).toBe( lightTheme.emotion.colors.yellowTextColor ) expect(theme.colors.blueTextColor).toBe( lightTheme.emotion.colors.blueTextColor ) expect(theme.colors.greenTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) expect(theme.colors.violetTextColor).toBe( lightTheme.emotion.colors.violetTextColor ) expect(theme.colors.grayTextColor).toBe( lightTheme.emotion.colors.grayTextColor ) } ) it("default text colors are set correctly for light theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.redTextColor).toBe( lightTheme.emotion.colors.redTextColor ) expect(theme.colors.orangeTextColor).toBe( lightTheme.emotion.colors.orangeTextColor ) expect(theme.colors.yellowTextColor).toBe( lightTheme.emotion.colors.yellowTextColor ) expect(theme.colors.blueTextColor).toBe( lightTheme.emotion.colors.blueTextColor ) expect(theme.colors.greenTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) expect(theme.colors.violetTextColor).toBe( lightTheme.emotion.colors.violetTextColor ) expect(theme.colors.grayTextColor).toBe( lightTheme.emotion.colors.grayTextColor ) }) it("default text colors are set correctly for dark theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, } const theme = createEmotionTheme(themeInput, darkTheme) expect(theme.colors.redTextColor).toBe( darkTheme.emotion.colors.redTextColor ) expect(theme.colors.orangeTextColor).toBe( darkTheme.emotion.colors.orangeTextColor ) expect(theme.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) expect(theme.colors.blueTextColor).toBe( darkTheme.emotion.colors.blueTextColor ) expect(theme.colors.greenTextColor).toBe( darkTheme.emotion.colors.greenTextColor ) expect(theme.colors.violetTextColor).toBe( darkTheme.emotion.colors.violetTextColor ) expect(theme.colors.grayTextColor).toBe( darkTheme.emotion.colors.grayTextColor ) }) it("derives text colors from main colors for light theme (darkens by 15%)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, redColor: "#ff4b4b", // red70 blueColor: "#1c83e1", // blue70 // Don't set redTextColor or blueTextColor - should derive from main colors } const theme = createEmotionTheme(themeInput, lightTheme) // Should derive text colors from main colors (darken by 15%) expect(theme.colors.redTextColor).toBe(darken("#ff4b4b", 0.15)) expect(theme.colors.blueTextColor).toBe(darken("#1c83e1", 0.15)) // Should use defaults for colors without main colors configured expect(theme.colors.orangeTextColor).toBe( lightTheme.emotion.colors.orangeTextColor ) }) it("derives text colors from main colors for dark theme (lightens by 15%)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, redColor: "#7d353b", // red100 blueColor: "#004280", // blue100 // Don't set redTextColor or blueTextColor - should derive from main colors } const theme = createEmotionTheme(themeInput, darkTheme) // Should derive text colors from main colors (lighten by 15%) expect(theme.colors.redTextColor).toBe(lighten("#7d353b", 0.15)) expect(theme.colors.blueTextColor).toBe(lighten("#004280", 0.15)) // Should use defaults for colors without main colors configured expect(theme.colors.orangeTextColor).toBe( darkTheme.emotion.colors.orangeTextColor ) }) it("prefers explicit text colors over derived from main colors", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, redColor: "#ff4b4b", // red70 from colors.ts - This would derive to darkened red redTextColor: "#ffabab", // red40 from colors.ts - This explicit value should take precedence } const theme = createEmotionTheme(themeInput, lightTheme) // Should use explicit text color, not derived from main color expect(theme.colors.redTextColor).toBe("#ffabab") expect(theme.colors.redTextColor).not.toBe(darken("#ff4b4b", 0.15)) }) it("handles mixed explicit and derived text colors correctly", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, // Explicit text colors redTextColor: "#ff9999", blueTextColor: "#9999ff", // Main colors that should derive text colors greenColor: "#00ff00", violetColor: "#8b00ff", // No yellow/orange/gray configs - should use defaults } const theme = createEmotionTheme(themeInput, lightTheme) // Should use explicit text colors expect(theme.colors.redTextColor).toBe("#ff9999") expect(theme.colors.blueTextColor).toBe("#9999ff") // Should derive from main colors (darken by 15% for light theme) expect(theme.colors.greenTextColor).toBe(darken("#00ff00", 0.15)) expect(theme.colors.violetTextColor).toBe(darken("#8b00ff", 0.15)) // Should use defaults expect(theme.colors.orangeTextColor).toBe( lightTheme.emotion.colors.orangeTextColor ) expect(theme.colors.yellowTextColor).toBe( lightTheme.emotion.colors.yellowTextColor ) expect(theme.colors.grayTextColor).toBe( lightTheme.emotion.colors.grayTextColor ) }) it("falls back to default when main color is invalid and no explicit text color provided", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, redColor: "invalid-color", // Invalid main color blueColor: "#0000ff", // Valid main color } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for redColor in theme: "invalid-color"` ) // Should use default for red (main color invalid) expect(theme.colors.redTextColor).toBe( lightTheme.emotion.colors.redTextColor ) // Should derive for blue (main color valid) expect(theme.colors.blueTextColor).toBe(darken("#0000ff", 0.15)) }) it("handles mixed explicit and derived text colors correctly for dark theme", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, // Explicit text colors redTextColor: "#ff9999", blueTextColor: "#9999ff", // Main colors that should derive text colors greenColor: "#008800", violetColor: "#6600bb", // No yellow/orange/gray configs - should use defaults } const theme = createEmotionTheme(themeInput, darkTheme) // Should use explicit text colors expect(theme.colors.redTextColor).toBe("#ff9999") expect(theme.colors.blueTextColor).toBe("#9999ff") // Should derive from main colors (lighten by 15% for dark theme) expect(theme.colors.greenTextColor).toBe(lighten("#008800", 0.15)) expect(theme.colors.violetTextColor).toBe(lighten("#6600bb", 0.15)) // Should use defaults expect(theme.colors.orangeTextColor).toBe( darkTheme.emotion.colors.orangeTextColor ) expect(theme.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) expect(theme.colors.grayTextColor).toBe( darkTheme.emotion.colors.grayTextColor ) }) it("falls back to default when main color is invalid and no explicit text color provided for dark theme", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, redColor: "invalid-color", // Invalid main color blueColor: "#000080", // Valid main color } const theme = createEmotionTheme(themeInput, darkTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for redColor in theme: "invalid-color"` ) // Should use default for red (main color invalid) expect(theme.colors.redTextColor).toBe( darkTheme.emotion.colors.redTextColor ) // Should derive for blue (main color valid, lighten by 15% for dark theme) expect(theme.colors.blueTextColor).toBe(lighten("#000080", 0.15)) }) it("handles mixed valid/invalid main colors for text color derivation", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, redColor: "invalid", // Invalid main color blueColor: "#0000ff", // Valid main color } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for redColor in theme: "invalid"` ) // Should use default for red (main color invalid) expect(theme.colors.redTextColor).toBe( lightTheme.emotion.colors.redTextColor ) // Should derive for blue (main color valid) expect(theme.colors.blueTextColor).toBe(darken("#0000ff", 0.15)) }) // Link color handling it("uses configured linkColor when provided", () => { const themeInput: Partial<CustomThemeConfig> = { linkColor: "#ff0000", blueTextColor: "#0000ff", // This should be ignored when linkColor is set } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.link).toBe("#ff0000") }) it("falls back to configured blueTextColor when linkColor not provided", () => { const themeInput: Partial<CustomThemeConfig> = { blueTextColor: "#0000ff", // linkColor intentionally not set } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.link).toBe("#0000ff") expect(theme.colors.blueTextColor).toBe("#0000ff") }) it("falls back to blueTextColor derived from blueColor when linkColor & blueTextColor not provided (light theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, blueColor: "#1c83e1", // blue70 // linkColor and blueTextColor intentionally not set } const theme = createEmotionTheme(themeInput, lightTheme) const expectedDerivedBlueTextColor = darken("#1c83e1", 0.15) expect(theme.colors.blueTextColor).toBe(expectedDerivedBlueTextColor) expect(theme.colors.link).toBe(expectedDerivedBlueTextColor) }) it("falls back to blueTextColor derived from blueColor when linkColor & blueTextColor not provided (dark theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, blueColor: "#1c83e1", // blue70 // linkColor and blueTextColor intentionally not set } const theme = createEmotionTheme(themeInput, darkTheme) const expectedDerivedBlueTextColor = lighten("#1c83e1", 0.15) expect(theme.colors.blueTextColor).toBe(expectedDerivedBlueTextColor) expect(theme.colors.link).toBe(expectedDerivedBlueTextColor) }) it("falls back to default blueTextColor when no link-related colors are configured (light theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, // No linkColor, blueTextColor, or blueColor configured } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.link).toBe(lightTheme.emotion.colors.blueTextColor) expect(theme.colors.blueTextColor).toBe( lightTheme.emotion.colors.blueTextColor ) }) it("falls back to default blueTextColor when no link-related colors are configured (dark theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, // No linkColor, blueTextColor, or blueColor configured } const theme = createEmotionTheme(themeInput, darkTheme) expect(theme.colors.link).toBe(darkTheme.emotion.colors.blueTextColor) expect(theme.colors.blueTextColor).toBe( darkTheme.emotion.colors.blueTextColor ) }) it("prioritizes linkColor over blueTextColor when both are configured", () => { const themeInput: Partial<CustomThemeConfig> = { linkColor: "#ff0000", blueTextColor: "#0000ff", } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.link).toBe("#ff0000") expect(theme.colors.blueTextColor).toBe("#0000ff") }) it("handles invalid linkColor by logging warning and falling back to default blueTextColor", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { linkColor: "invalid-color", blueTextColor: "#0000ff", } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for linkColor in theme: "invalid-color"` ) // Should fall back to blueTextColor since linkColor is invalid expect(theme.colors.link).toBe("#0000ff") expect(theme.colors.blueTextColor).toBe("#0000ff") }) it("falls back to default when both linkColor and blueTextColor are invalid", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { linkColor: "invalid-color", blueTextColor: "invalid-blue-color", } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for linkColor in theme: "invalid-color"` ) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for blueTextColor in theme: "invalid-blue-color"` ) // Should use default blueTextColor since both colors are invalid expect(theme.colors.link).toBe(lightTheme.emotion.colors.blueTextColor) expect(theme.colors.blueTextColor).toBe( lightTheme.emotion.colors.blueTextColor ) }) it("handles linkColor without # prefix correctly", () => { const themeInput: Partial<CustomThemeConfig> = { linkColor: "0000ff", // Blue without # prefix } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.link).toBe("#0000ff") }) // Code text color handling it("uses configured codeTextColor when provided", () => { const themeInput: Partial<ICustomThemeConfig> = { codeTextColor: "#ff0000", greenTextColor: "#00aa00", // This should be ignored when codeTextColor is set } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.codeTextColor).toBe("#ff0000") expect(theme.colors.greenTextColor).toBe("#00aa00") }) it("falls back to configured greenTextColor when codeTextColor not provided", () => { const themeInput: Partial<CustomThemeConfig> = { greenTextColor: "#00aa00", // codeTextColor intentionally not set } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.codeTextColor).toBe("#00aa00") expect(theme.colors.greenTextColor).toBe("#00aa00") }) it("falls back to greenTextColor derived from greenColor when codeTextColor & greenTextColor not provided (light theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, greenColor: "#29b09d", // green70 // codeTextColor and greenTextColor intentionally not set } const theme = createEmotionTheme(themeInput, lightTheme) const expectedDerivedGreenTextColor = darken("#29b09d", 0.15) expect(theme.colors.greenTextColor).toBe(expectedDerivedGreenTextColor) expect(theme.colors.codeTextColor).toBe(expectedDerivedGreenTextColor) }) it("falls back to greenTextColor derived from greenColor when codeTextColor & greenTextColor not provided (dark theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, greenColor: "#177233", // green100 // codeTextColor and greenTextColor intentionally not set } const theme = createEmotionTheme(themeInput, darkTheme) const expectedDerivedGreenTextColor = lighten("#177233", 0.15) expect(theme.colors.greenTextColor).toBe(expectedDerivedGreenTextColor) expect(theme.colors.codeTextColor).toBe(expectedDerivedGreenTextColor) }) it("falls back to default greenTextColor when no code or green colors configured (light theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, // No codeTextColor, greenColor, or greenTextColor configured } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.codeTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) expect(theme.colors.greenTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) }) it("falls back to default greenTextColor when no code or green colors configured (dark theme)", () => { const themeInput: Partial<CustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.DARK, // No codeTextColor, greenColor, or greenTextColor configured } const theme = createEmotionTheme(themeInput, darkTheme) expect(theme.colors.codeTextColor).toBe( darkTheme.emotion.colors.greenTextColor ) expect(theme.colors.greenTextColor).toBe( darkTheme.emotion.colors.greenTextColor ) }) it("prioritizes codeTextColor over greenTextColor when both are configured", () => { const themeInput: Partial<ICustomThemeConfig> = { codeTextColor: "#ff0000", // Explicit code text color greenTextColor: "#00ff00", // This should be ignored for codeTextColor } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.codeTextColor).toBe("#ff0000") expect(theme.colors.greenTextColor).toBe("#00ff00") }) it("prioritizes codeTextColor over derived greenTextColor from greenColor", () => { const themeInput: Partial<ICustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, codeTextColor: "#ff0000", // Explicit code text color greenColor: "#29b09d", // This would derive a different greenTextColor } const theme = createEmotionTheme(themeInput, lightTheme) const expectedDerivedGreenTextColor = darken("#29b09d", 0.15) expect(theme.colors.greenTextColor).toBe(expectedDerivedGreenTextColor) expect(theme.colors.codeTextColor).toBe("#ff0000") // Should use explicit codeTextColor }) it("handles invalid codeTextColor by logging warning and falling back to default greenTextColor", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<ICustomThemeConfig> = { codeTextColor: "invalid-color", greenTextColor: "#00aa00", } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for codeTextColor in theme: "invalid-color"` ) // Should fall back to greenTextColor since codeTextColor is invalid expect(theme.colors.codeTextColor).toBe("#00aa00") expect(theme.colors.greenTextColor).toBe("#00aa00") }) it("falls back to default when both codeTextColor and greenTextColor are invalid", () => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<ICustomThemeConfig> = { base: CustomThemeConfig.BaseTheme.LIGHT, codeTextColor: "invalid-code-color", greenTextColor: "invalid-green-color", } const theme = createEmotionTheme(themeInput, lightTheme) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for codeTextColor in theme: "invalid-code-color"` ) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for greenTextColor in theme: "invalid-green-color"` ) // Should use default greenTextColor since both colors are invalid expect(theme.colors.greenTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) expect(theme.colors.codeTextColor).toBe( lightTheme.emotion.colors.greenTextColor ) }) it("handles codeTextColor without # prefix correctly", () => { const themeInput: Partial<ICustomThemeConfig> = { codeTextColor: "00ff00", // Green without # prefix } const theme = createEmotionTheme(themeInput, lightTheme) expect(theme.colors.codeTextColor).toBe("#00ff00") }) // Categorical chart colors it.each([ // Test valid color values [ ["red", "orange", "blue", "pink", "purple"], ["red", "orange", "blue", "pink", "purple"], ], // Valid hex codes passed without leading # [ [ "7fc97f", "beaed4", "fdc086", "ffff99", "386cb0", "f0027f", "bf5b17", "666666", ], [ "#7fc97f", "#beaed4", "#fdc086", "#ffff99", "#386cb0", "#f0027f", "#bf5b17", "#666666", ], ], [ [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf", ], [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf", ], ], [ [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(0, 0, 255)", "rgb(255, 192, 192)", "rgb(128, 0, 128)", ], [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(0, 0, 255)", "rgb(255, 192, 192)", "rgb(128, 0, 128)", ], ], ])( "correctly handles setting of categorical color config '%s'", (chartCategoricalColors, expectedCategoricalColors) => { const themeInput: Partial<CustomThemeConfig> = { chartCategoricalColors, } const theme = createEmotionTheme(themeInput) expect(theme.colors.chartCategoricalColors).toEqual( expectedCategoricalColors ) } ) it.each([ // Test invalid color values [ ["red", "orange", "blue", "pink", "purple", "invalid"], ["red", "orange", "blue", "pink", "purple"], ], [ [ "7fc97f", "beaed4", "fdc086", "ffff99", "386cb0", "f0027f", "bf5b17", "666666", "invalid", ], [ "#7fc97f", "#beaed4", "#fdc086", "#ffff99", "#386cb0", "#f0027f", "#bf5b17", "#666666", ], ], [ [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf", "invalid", ], [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf", ], ], [ [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(0, 0, 255)", "rgb(255, 192, 192)", "rgb(128, 0, 128)", "invalid", ], [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(0, 0, 255)", "rgb(255, 192, 192)", "rgb(128, 0, 128)", ], ], [ // When no valid colors are passed, returns default colors ["invalid"], [ "#0068c9", "#83c9ff", "#ff2b2b", "#ffabab", "#29b09d", "#7defa1", "#ff8700", "#ffd16a", "#6d3fc0", "#d5dae5", ], ], ])( "logs a warning and removes any invalid categorical color configs '%s'", (chartCategoricalColors, expectedCategoricalColors) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { chartCategoricalColors, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for chartCategoricalColors in theme: "invalid"` ) expect(theme.colors.chartCategoricalColors).toEqual( expectedCategoricalColors ) } ) // Sequential chart colors it.each([ // Test valid color values [ [ "red", "orange", "yellow", "green", "blue", "purple", "pink", "gray", "black", "white", ], [ "red", "orange", "yellow", "green", "blue", "purple", "pink", "gray", "black", "white", ], ], // Valid hex codes [ [ "#dffde9", "#c0fcd3", "#9ef6bb", "#7defa1", "#5ce488", "#3dd56d", "#21c354", "#09ab3b", "#158237", "#177233", ], [ "#dffde9", "#c0fcd3", "#9ef6bb", "#7defa1", "#5ce488", "#3dd56d", "#21c354", "#09ab3b", "#158237", "#177233", ], ], // Valid hex codes passed without leading # [ [ "dffde9", "c0fcd3", "9ef6bb", "7defa1", "5ce488", "3dd56d", "21c354", "09ab3b", "158237", "177233", ], [ "#dffde9", "#c0fcd3", "#9ef6bb", "#7defa1", "#5ce488", "#3dd56d", "#21c354", "#09ab3b", "#158237", "#177233", ], ], // Valid rgb values [ [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(255, 255, 0)", "rgb(0, 255, 0)", "rgb(0, 0, 255)", "rgb(128, 0, 128)", "rgb(255, 192, 192)", "rgb(128, 128, 128)", "rgb(0, 0, 0)", "rgb(255, 255, 255)", ], [ "rgb(255, 0, 0)", "rgb(255, 165, 0)", "rgb(255, 255, 0)", "rgb(0, 255, 0)", "rgb(0, 0, 255)", "rgb(128, 0, 128)", "rgb(255, 192, 192)", "rgb(128, 128, 128)", "rgb(0, 0, 0)", "rgb(255, 255, 255)", ], ], ])( "correctly handles setting of sequential color config '%s'", (chartSequentialColors, expectedSequentialColors) => { const themeInput: Partial<CustomThemeConfig> = { chartSequentialColors, } const theme = createEmotionTheme(themeInput) expect(theme.colors.chartSequentialColors).toEqual( expectedSequentialColors ) } ) it.each([ // Test invalid color values [ [ "red", "orange", "yellow", "green", "blue", "purple", "pink", "gray", "black", "invalid", ], [ "#e4f5ff", "#c7ebff", "#a6dcff", "#83c9ff", "#60b4ff", "#3d9df3", "#1c83e1", "#0068c9", "#0054a3", "#004280", ], ], [ // When the array doesn't contain 10 colors, returns default colors ["invalid"], [ "#e4f5ff", "#c7ebff", "#a6dcff", "#83c9ff", "#60b4ff", "#3d9df3", "#1c83e1", "#0068c9", "#0054a3", "#004280", ], ], ])( "logs a warning and removes any invalid sequential color configs '%s'", (chartSequentialColors, expectedSequentialColors) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { chartSequentialColors, } const theme = createEmotionTheme(themeInput) // Error log from parseColor (invalid color) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid color passed for chartSequentialColors in theme: "invalid"` ) // Error log from validateChartColors (<10 colors) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid chartSequentialColors: ${chartSequentialColors.toString()}. Falling back to default chartSequentialColors.` ) expect(theme.colors.chartSequentialColors).toEqual( expectedSequentialColors ) } ) // == Theme radii properties == it("adapts the radii theme props if baseRadius is provided", () => { const themeInput: Partial<CustomThemeConfig> = { baseRadius: "1.2rem", } const theme = createEmotionTheme(themeInput) expect(theme.radii.default).toBe("1.2rem") expect(theme.radii.md).toBe("0.6rem") expect(theme.radii.xl).toBe("1.8rem") expect(theme.radii.xxl).toBe("2.4rem") }) it.each([ // Test keyword values ["full", "1.4rem", "0.7rem", "2.1rem", "2.8rem"], ["none", "0rem", "0rem", "0rem", "0rem"], ["small", "0.35rem", "0.17rem", "0.52rem", "0.7rem"], ["medium", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["large", "1rem", "0.5rem", "1.5rem", "2rem"], // Test rem values ["0.8rem", "0.8rem", "0.4rem", "1.2rem", "1.6rem"], ["2rem", "2rem", "1rem", "3rem", "4rem"], // Test px values ["10px", "10px", "5px", "15px", "20px"], ["24px", "24px", "12px", "36px", "48px"], // Test with whitespace and uppercase [" FULL ", "1.4rem", "0.7rem", "2.1rem", "2.8rem"], [" medium ", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["2 rem ", "2rem", "1rem", "3rem", "4rem"], // Test only numbers: ["10", "10px", "5px", "15px", "20px"], ["24foo", "24px", "12px", "36px", "48px"], ])( "correctly applies baseRadius '%s'", (baseRadius, expectedDefault, expectedMd, expectedXl, expectedXxl) => { const themeInput: Partial<CustomThemeConfig> = { baseRadius, } const theme = createEmotionTheme(themeInput) expect(theme.radii.default).toBe(expectedDefault) expect(theme.radii.md).toBe(expectedMd) expect(theme.radii.xl).toBe(expectedXl) expect(theme.radii.xxl).toBe(expectedXxl) } ) it.each([ "invalid", "rem", // Missing number "px", // Missing number ])( "logs a warning and falls back to default for invalid baseRadius '%s'", invalidBaseRadius => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { baseRadius: invalidBaseRadius, } const theme = createEmotionTheme(themeInput) // Should log an error expect(logWarningSpy).toHaveBeenCalledWith( `Invalid base radius: ${invalidBaseRadius}. Falling back to default base radius.` ) // Should fall back to default values expect(theme.radii.default).toBe(baseTheme.emotion.radii.default) expect(theme.radii.md).toBe(baseTheme.emotion.radii.md) expect(theme.radii.xl).toBe(baseTheme.emotion.radii.xl) expect(theme.radii.xxl).toBe(baseTheme.emotion.radii.xxl) } ) it.each([ // Test keyword values ["full", "1.4rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["none", "0rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["small", "0.35rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["medium", "0.5rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["large", "1rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], // Test rem values ["0.8rem", "0.8rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["2rem", "2rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], // Test px values ["10px", "10px", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["24px", "24px", "0.5rem", "0.25rem", "0.75rem", "1rem"], // Test with whitespace and uppercase [" FULL ", "1.4rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], [" medium ", "0.5rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["2 rem ", "2rem", "0.5rem", "0.25rem", "0.75rem", "1rem"], // Test only numbers: ["10", "10px", "0.5rem", "0.25rem", "0.75rem", "1rem"], ["24foo", "24px", "0.5rem", "0.25rem", "0.75rem", "1rem"], ])( "correctly handles buttonRadius config '%s' (does not impact other radii values)", ( buttonRadius, expectedButtonRadius, expectedDefault, expectedMd, expectedXl, expectedXxl ) => { const themeInput: Partial<CustomThemeConfig> = { buttonRadius, } const theme = createEmotionTheme(themeInput) expect(theme.radii.button).toBe(expectedButtonRadius) expect(theme.radii.default).toBe(expectedDefault) expect(theme.radii.md).toBe(expectedMd) expect(theme.radii.xl).toBe(expectedXl) expect(theme.radii.xxl).toBe(expectedXxl) } ) it.each([ "invalid", "rem", // Missing number "px", // Missing number "", // Empty string ])( "logs a warning and falls back to default for invalid buttonRadius '%s'", invalidButtonRadius => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { buttonRadius: invalidButtonRadius, } const theme = createEmotionTheme(themeInput) // Should log an error expect(logWarningSpy).toHaveBeenCalledWith( `Invalid button radius: ${invalidButtonRadius}. Falling back to default button radius.` ) // Should fall back to default values expect(theme.radii.button).toBe(baseTheme.emotion.radii.button) expect(theme.radii.default).toBe(baseTheme.emotion.radii.default) expect(theme.radii.md).toBe(baseTheme.emotion.radii.md) expect(theme.radii.xl).toBe(baseTheme.emotion.radii.xl) expect(theme.radii.xxl).toBe(baseTheme.emotion.radii.xxl) } ) it("sets buttonRadius based on baseRadius if buttonRadius not configured", () => { const themeInput: Partial<CustomThemeConfig> = { baseRadius: "0.77rem", } const theme = createEmotionTheme(themeInput) expect(theme.radii.button).toBe("0.77rem") expect(theme.radii.default).toBe("0.77rem") expect(theme.radii.md).toBe("0.39rem") expect(theme.radii.xl).toBe("1.16rem") expect(theme.radii.xxl).toBe("1.54rem") }) // == Theme font size properties == it("uses baseFontSize when configured", () => { const themeInput: Partial<CustomThemeConfig> = { baseFontSize: 18, } const theme = createEmotionTheme(themeInput) expect(theme.fontSizes.baseFontSize).toBe(18) }) it("maintains default if configured baseFontSize is not > 0", () => { const themeInput: Partial<CustomThemeConfig> = { baseFontSize: 0, } const theme = createEmotionTheme(themeInput) expect(theme.fontSizes.baseFontSize).toBe(16) }) it.each([ // Test valid codeFontSize values // Inline code font size unaffected, set to 0.75em ["0.875rem", "0.875rem", "0.75em"], ["0.875REM", "0.875rem", "0.75em"], ["14px", "14px", "0.75em"], ["14PX", "14px", "0.75em"], ["15", "15px", "0.75em"], ])( "correctly applies codeFontSize and inlineCodeFontSize '%s'", (codeFontSize, expectedCodeFontSize, expectedInlineCodeFontSize) => { const themeInput: Partial<CustomThemeConfig> = { codeFontSize, } const theme = createEmotionTheme(themeInput) expect(theme.fontSizes.codeFontSize).toBe(expectedCodeFontSize) expect(theme.fontSizes.inlineCodeFontSize).toBe( expectedInlineCodeFontSize ) } ) it.each([ // Test invalid codeFontSize values ["invalid", "0.875rem", "0.75em"], ["rem", "0.875rem", "0.75em"], ["px", "0.875rem", "0.75em"], [" ", "0.875rem", "0.75em"], ])( "logs a warning and falls back to default for any invalid codeFontSize '%s'", (codeFontSize, expectedCodeFontSize, expectedInlineCodeFontSize) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { codeFontSize, } const theme = createEmotionTheme(themeInput) // Should log an error with the actual codeFontSize value expect(logWarningSpy).toHaveBeenCalledWith( `Invalid size passed for codeFontSize in theme: ${codeFontSize}. Falling back to default codeFontSize.` ) expect(theme.fontSizes.codeFontSize).toBe(expectedCodeFontSize) expect(theme.fontSizes.inlineCodeFontSize).toBe( expectedInlineCodeFontSize ) } ) it.each([ // Test valid headingFontSize values [ ["3rem", "2.875rem"], ["3rem", "2.875rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ ["3REM", "2.875REM"], ["3rem", "2.875rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ ["50px", "45px"], ["3.125rem", "2.8125rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ ["50PX", "45PX"], ["3.125rem", "2.8125rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ ["50", "45"], ["3.125rem", "2.8125rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ ["39.5px", "32.8px", "24.2px"], ["2.46875rem", "2.05rem", "1.5125rem", "1.5rem", "1.25rem", "1rem"], ], ])( "correctly applies headingFontSizes '%s'", (headingFontSizes, expectedHeadingFontSizes) => { const themeInput: Partial<CustomThemeConfig> = { headingFontSizes, } const theme = createEmotionTheme(themeInput) expect(theme.fontSizes.h1FontSize).toBe(expectedHeadingFontSizes[0]) expect(theme.fontSizes.h2FontSize).toBe(expectedHeadingFontSizes[1]) expect(theme.fontSizes.h3FontSize).toBe(expectedHeadingFontSizes[2]) expect(theme.fontSizes.h4FontSize).toBe(expectedHeadingFontSizes[3]) expect(theme.fontSizes.h5FontSize).toBe(expectedHeadingFontSizes[4]) expect(theme.fontSizes.h6FontSize).toBe(expectedHeadingFontSizes[5]) } ) it.each([ // Test invalid headingFontSize values [ "h1FontSize", ["Invalid"], ["2.75rem", "2.25rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ "h2FontSize", ["3REM", "Invalid"], ["3rem", "2.25rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ "h3FontSize", ["3rem", "2.875rem", "Invalid"], ["3rem", "2.875rem", "1.75rem", "1.5rem", "1.25rem", "1rem"], ], [ "h4FontSize", ["3rem", "2.875rem", "2.75rem", "Invalid"], ["3rem", "2.875rem", "2.75rem", "1.5rem", "1.25rem", "1rem"], ], [ "h5FontSize", ["3rem", "2.875rem", "2.75rem", "2.25rem", "Invalid"], ["3rem", "2.875rem", "2.75rem", "2.25rem", "1.25rem", "1rem"], ], [ "h6FontSize", ["3rem", "2.875rem", "2.75rem", "2.25rem", "2rem", "Invalid"], ["3rem", "2.875rem", "2.75rem", "2.25rem", "2rem", "1rem"], ], ])( "logs a warning and falls back to default for any invalid headingFontSizes '%s'", (invalidHeadingConfig, headingFontSizes, expectedHeadingFontSizes) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { headingFontSizes, } const theme = createEmotionTheme(themeInput) // Should log an error with the actual codeFontSize value expect(logWarningSpy).toHaveBeenCalledWith( `Invalid size passed for ${invalidHeadingConfig} in headingFontSizes in theme: Invalid. Falling back to default ${invalidHeadingConfig} in headingFontSizes.` ) expect(theme.fontSizes.h1FontSize).toBe(expectedHeadingFontSizes[0]) expect(theme.fontSizes.h2FontSize).toBe(expectedHeadingFontSizes[1]) expect(theme.fontSizes.h3FontSize).toBe(expectedHeadingFontSizes[2]) expect(theme.fontSizes.h4FontSize).toBe(expectedHeadingFontSizes[3]) expect(theme.fontSizes.h5FontSize).toBe(expectedHeadingFontSizes[4]) expect(theme.fontSizes.h6FontSize).toBe(expectedHeadingFontSizes[5]) } ) // == Theme font weight properties == it.each([ // Test valid font weights [100, 100, 300, 400], [200, 200, 400, 500], [300, 300, 500, 600], [400, 400, 600, 700], [500, 500, 700, 800], [600, 600, 800, 900], ])( "sets the font weights based on the baseFontWeight config '%s'", (baseFontWeight, expectedNormal, expectedBold, expectedExtrabold) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { baseFontWeight, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).not.toHaveBeenCalled() expect(theme.fontWeights.normal).toBe(expectedNormal) expect(theme.fontWeights.bold).toBe(expectedBold) expect(theme.fontWeights.extrabold).toBe(expectedExtrabold) } ) it.each([ // Test invalid font weights [150, 400, 600, 700], // Not an increment of 100 [700, 400, 600, 700], // Not between 100 and 600 [400.5, 400, 600, 700], // Not an integer ])( "logs a warning and falls back to default font weights if baseFontWeight is invalid '%s'", (baseFontWeight, expectedNormal, expectedBold, expectedExtrabold) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { baseFontWeight, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid baseFontWeight: ${baseFontWeight} in theme. The baseFontWeight must be an integer 100-600, and an increment of 100. Falling back to default font weight.` ) expect(theme.fontWeights.normal).toBe(expectedNormal) expect(theme.fontWeights.bold).toBe(expectedBold) expect(theme.fontWeights.extrabold).toBe(expectedExtrabold) } ) it.each([ // Test valid font weights [100, 400, 600, 700, 100, 300, 400], [200, 400, 600, 700, 200, 400, 500], [300, 400, 600, 700, 300, 500, 600], [400, 400, 600, 700, 400, 600, 700], [500, 400, 600, 700, 500, 700, 800], [600, 400, 600, 700, 600, 800, 900], ])( "sets the font weights based on the codeFontWeight config '%s'", ( codeFontWeight, expectedNormal, expectedBold, expectedExtrabold, expectedCode, expectedCodeBold, expectedCodeExtraBold ) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { codeFontWeight, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).not.toHaveBeenCalled() // baseFontWeight is not set, so the default font weights are used expect(theme.fontWeights.normal).toBe(expectedNormal) expect(theme.fontWeights.bold).toBe(expectedBold) expect(theme.fontWeights.extrabold).toBe(expectedExtrabold) // codeFontWeight is set, so it overrides the default code font weight expect(theme.fontWeights.code).toBe(expectedCode) expect(theme.fontWeights.codeBold).toBe(expectedCodeBold) expect(theme.fontWeights.codeExtraBold).toBe(expectedCodeExtraBold) } ) it.each([ // Test invalid font weights [700, 400, 600, 700, 400], // Not between 100 and 600 [800, 400, 600, 700, 400], // Not between 100 and 600 [900, 400, 600, 700, 400], // Not between 100 and 600 [150, 400, 600, 700, 400], // Not an increment of 100 [1000, 400, 600, 700, 400], // Not between 100 and 900 [400.5, 400, 600, 700, 400], // Not an integer ])( "logs a warning and falls back to default font weights if codeFontWeight is invalid '%s'", ( codeFontWeight, expectedNormal, expectedBold, expectedExtrabold, expectedCode ) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { codeFontWeight, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid codeFontWeight: ${codeFontWeight} in theme. The codeFontWeight must be an integer 100-600, and an increment of 100. Falling back to default font weight.` ) expect(theme.fontWeights.normal).toBe(expectedNormal) expect(theme.fontWeights.bold).toBe(expectedBold) expect(theme.fontWeights.extrabold).toBe(expectedExtrabold) expect(theme.fontWeights.code).toBe(expectedCode) expect(theme.fontWeights.codeBold).toBe(expectedBold) expect(theme.fontWeights.codeExtraBold).toBe(expectedExtrabold) } ) it.each([ // Test valid headingFontWeights for h1-h6 [[100, 100, 100, 100, 100, 100]], [[200, 200, 200, 200, 200, 200]], [[300, 300, 300, 300, 300, 300]], [[400, 400, 400, 400, 400, 400]], [[500, 500, 500, 500, 500, 500]], [[600, 600, 600, 600, 600, 600]], [[700, 700, 700, 700, 700, 700]], [[800, 800, 800, 800, 800, 800]], [[900, 900, 900, 900, 900, 900]], ])( "sets the font weights based on the headingFontWeights configs '%s'", headingFontWeights => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { headingFontWeights, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).not.toHaveBeenCalled() expect(theme.fontWeights.h1FontWeight).toBe(headingFontWeights[0]) expect(theme.fontWeights.h2FontWeight).toBe(headingFontWeights[1]) expect(theme.fontWeights.h3FontWeight).toBe(headingFontWeights[2]) expect(theme.fontWeights.h4FontWeight).toBe(headingFontWeights[3]) expect(theme.fontWeights.h5FontWeight).toBe(headingFontWeights[4]) expect(theme.fontWeights.h6FontWeight).toBe(headingFontWeights[5]) } ) it.each([ // Test invalid font weights for h1-h6 [[150, 200, 300, 400, 500, 600], 150, "h1FontWeight"], // Not an increment of 100 (h1) [[1000, 200, 300, 400, 500, 600], 1000, "h1FontWeight"], // Not between 100 and 900 (h1) [[400.5, 200, 300, 400, 500, 600], 400.5, "h1FontWeight"], // Not an integer (h1) [[200, 150, 300, 400, 500, 600], 150, "h2FontWeight"], // h2 [[200, 1000, 300, 400, 500, 600], 1000, "h2FontWeight"], // h2 [[200, 400.5, 300, 400, 500, 600], 400.5, "h2FontWeight"], // h2 [[200, 300, 150, 400, 500, 600], 150, "h3FontWeight"], // h3 [[200, 300, 1000, 400, 500, 600], 1000, "h3FontWeight"], // h3 [[200, 300, 400.5, 400, 500, 600], 400.5, "h3FontWeight"], // h3 [[200, 300, 400, 150, 500, 600], 150, "h4FontWeight"], // h4 [[200, 300, 400, 1000, 500, 600], 1000, "h4FontWeight"], // h4 [[200, 300, 400, 400.5, 500, 600], 400.5, "h4FontWeight"], // h4 [[200, 300, 400, 500, 150, 600], 150, "h5FontWeight"], // h5 [[200, 300, 400, 500, 1000, 600], 1000, "h5FontWeight"], // h5 [[200, 300, 400, 500, 400.5, 600], 400.5, "h5FontWeight"], // h5 [[200, 300, 400, 500, 600, 150], 150, "h6FontWeight"], // h6 [[200, 300, 400, 500, 600, 1000], 1000, "h6FontWeight"], // h6 [[200, 300, 400, 500, 600, 400.5], 400.5, "h6FontWeight"], // h6 ])( "logs a warning and falls back to default font weights if headingFontWeights is invalid '%s'", (headingFontWeights, invalidFontWeight, invalidFontWeightConfig) => { const logWarningSpy = vi.spyOn(LOG, "warn") const themeInput: Partial<CustomThemeConfig> = { headingFontWeights, } const theme = createEmotionTheme(themeInput) expect(logWarningSpy).toHaveBeenCalledWith( `Invalid ${invalidFontWeightConfig} in headingFontWeights: ${invalidFontWeight} in theme. The ${invalidFontWeightConfig} in headingFontWeights must be an integer 100-900, and an increment of 100. Falling back to default font weight.` ) // Check that the heading font weights are set correctly if (invalidFontWeightConfig !== "h1FontWeight") { expect(theme.fontWeights.h1FontWeight).toBe(headingFontWeights[0]) } if (invalidFontWeightConfig !== "h2FontWeight") { expect(theme.fontWeights.h2FontWeight).toBe(headingFontWeights[1]) } if (invalidFontWeightConfig !== "h3FontWeight") { expect(theme.fontWeights.h3FontWeight).toBe(headingFontWeights[2]) } if (invalidFontWeightConfig !== "h4FontWeight") { expect(theme.fontWeights.h4FontWeight).toBe(headingFontWeights[3]) } if (invalidFontWeightConfig !== "h5FontWeight") { expect(theme.fontWeights.h5FontWeight).toBe(headingFontWeights[4]) } if (invalidFontWeightConfig !== "h6FontWeight") { expect(theme.fontWeights.h6FontWeight).toBe(headingFontWeights[5]) } } ) // == Theme font properties == it("uses bodyFont when configured", () => { const themeInput: Partial<CustomThemeConfig> = { bodyFont: "Body Font Test", } const theme = createEmotionTheme(themeInput) expect(theme.genericFonts.bodyFont).toBe( 'Body Font Test, "Source Sans", sans-serif' ) }) it("uses codeFont when configured", () => { const themeInput: Partial<CustomThemeConfig> = { codeFont: "Code Font Test", } const theme = createEmotionTheme(themeInput) expect(theme.genericFonts.codeFont).toBe( 'Code Font Test, "Source Code Pro", monospace' ) }) it("uses headingFont when configured", () => { const themeInput: Partial<CustomThemeConfig> = { headingFont: "Heading Font Test", } const theme = createEmotionTheme(themeInput) expect(theme.genericFonts.headingFont).toBe( 'Heading Font Test, "Source Sans", sans-serif' ) }) it("uses bodyFont for headingFont when headingFont is not configured", () => { const themeInput: Partial<CustomThemeConfig> = { bodyFont: "monospace", // headingFont is intentionally not set } const theme = createEmotionTheme(themeInput) expect(theme.genericFonts.bodyFont).toBe(theme.fonts.monospace) expect(theme.genericFonts.headingFont).toBe(theme.fonts.monospace) }) }) describe("toThemeInput", () => { it("converts from emotion theme to what a custom component expects", () => { const { colors } = lightTheme.emotion expect(toThemeInput(lightTheme.emotion)).toEqual({ primaryColor: colors.primary, bodyFont: `"Source Sans", sans-serif`, backgroundColor: colors.bgColor, secondaryBackgroundColor: colors.secondaryBg, textColor: colors.bodyText, }) }) }) describe("bgColorToBaseString", () => { it("returns 'light' if passed undefined", () => { expect(bgColorToBaseString(undefined)).toBe("light") }) it("returns 'light' for a light background color", () => { expect(bgColorToBaseString("#FFFFFF")).toBe("light") }) it("returns 'dark' for a dark background color", () => { expect(bgColorToBaseString("#000000")).toBe("dark") }) }) describe("hasLightBackgroundColor", () => { const testCases = [ { description: "works for default light theme", theme: lightTheme, expectedResult: true, }, { description: "works for default dark theme", theme: darkTheme, expectedResult: false, }, { description: "works for custom light theme", theme: createTheme( CUSTOM_THEME_NAME, new CustomThemeConfig({ backgroundColor: "yellow" }) ), expectedResult: true, }, { description: "works for custom dark theme", theme: createTheme( CUSTOM_THEME_NAME, new CustomThemeConfig({ backgroundColor: "navy" }) ), expectedResult: false, }, ] testCases.forEach(({ description, theme, expectedResult }) => { it(`${description}`, () => { expect(hasLightBackgroundColor(theme.emotion)).toBe(expectedResult) }) }) }) describe("theme overrides", () => { beforeEach(() => { vi.resetModules() window.__streamlit = undefined }) afterEach(() => { vi.resetModules() window.__streamlit = undefined }) it("honors the window variables set", async () => { window.__streamlit = { LIGHT_THEME: { primaryColor: "purple", }, DARK_THEME: { primaryColor: "yellow", }, } const module = await import("./utils") // Ensure we are not working with the same object expect(module.getMergedLightTheme()).not.toEqual(lightTheme) expect(module.getMergedDarkTheme()).not.toEqual(darkTheme) expect(module.getMergedLightTheme().emotion.colors.primary).toEqual( "purple" ) expect(module.getMergedDarkTheme().emotion.colors.primary).toEqual( "yellow" ) }) it("maintains original theme if no global themes are specified", async () => { const module = await import("./utils") expect(module.getMergedLightTheme()).toEqual(lightTheme) expect(module.getMergedDarkTheme()).toEqual(darkTheme) }) }) describe("parseFont", () => { it.each([ // Test standard font mappings ["sans-serif", '"Source Sans", sans-serif'], ["Sans-Serif", '"Source Sans", sans-serif'], // Case insensitive ["SANS-SERIF", '"Source Sans", sans-serif'], // All caps ["sans serif", '"Source Sans", sans-serif'], // With space ["serif", '"Source Serif", serif'], ["monospace", '"Source Code Pro", monospace'], // Test fonts that aren't in the map (should always append Streamlit default as fallback) ["Arial", 'Arial, "Source Sans", sans-serif'], ["Helvetica", 'Helvetica, "Source Sans", sans-serif'], ["Times New Roman", 'Times New Roman, "Source Sans", sans-serif'], ["Comic Sans MS", 'Comic Sans MS, "Source Sans", sans-serif'], // Empty string should return just the fallback font ["", '"Source Sans", sans-serif'], // Whitespace-only string should also return just the fallback font [" ", '"Source Sans", sans-serif'], // Test fonts that already have fallbacks (should still append Streamlit default as final fallback) [ '"Roboto", Arial, sans-serif', '"Roboto", Arial, sans-serif, "Source Sans", sans-serif', ], [ "Arial, Helvetica, sans-serif", 'Arial, Helvetica, sans-serif, "Source Sans", sans-serif', ], ])("correctly maps '%s' to '%s'", (input, expected) => { expect(parseFont(input)).toBe(expected) }) it("allows custom fallback font", () => { expect(parseFont("Arial", '"Source Code Pro", monospace')).toBe( 'Arial, "Source Code Pro", monospace' ) }) it("appends fallback even to fonts that already have commas", () => { expect(parseFont('"My Font", Arial')).toBe( '"My Font", Arial, "Source Sans", sans-serif' ) }) }) describe("Font weight configuration coverage", () => { it("ensures all font weights from typography.ts are handled in setFontWeights", () => { // Import the default font weights from typography const { fontWeights: defaultFontWeights } = lightTheme.emotion // List of font weights that should NOT be affected by baseFontWeight const UNAFFECTED_BY_BASE_WEIGHT = [ "h1FontWeight", "h2FontWeight", "h3FontWeight", "h4FontWeight", "h5FontWeight", "h6FontWeight", ] // List of font weights that SHOULD be calculated based on baseFontWeight const AFFECTED_BY_BASE_WEIGHT = ["normal", "semiBold", "bold", "extrabold"] // Get all font weight keys from the default theme const allFontWeightKeys = Object.keys(defaultFontWeights) // Filter out special cases const fontWeightsToCheck = allFontWeightKeys.filter( key => !UNAFFECTED_BY_BASE_WEIGHT.includes(key) && key !== "code" && // code font weights are handled separately key !== "codeBold" && key !== "codeExtraBold" ) // Verify our expected list matches reality const missingFromExpected = fontWeightsToCheck.filter( key => !AFFECTED_BY_BASE_WEIGHT.includes(key) ) if (missingFromExpected.length > 0) { throw new Error( `New font weight(s) detected in typography.ts that are not handled in utils.ts setFontWeights function:\n` + ` ${missingFromExpected.join(", ")}\n\n` + `When adding new font weights, you must:\n` + ` 1. Update the setFontWeights function in utils.ts to calculate the new weight based on baseFontWeight\n` + ` 2. Add the new font weight to the AFFECTED_BY_BASE_WEIGHT array in this test\n` + ` 3. Add test cases to verify the calculation logic\n\n` + `Example: If you added 'medium', you might set it to baseFontWeight + 50` ) } // Test that baseFontWeight actually affects the expected weights const testTheme = createEmotionTheme( { baseFontWeight: 300 } as Partial<ICustomThemeConfig>, lightTheme ) AFFECTED_BY_BASE_WEIGHT.forEach(weightKey => { const typedKey = weightKey as keyof typeof testTheme.fontWeights expect(testTheme.fontWeights[typedKey]).not.toBe( defaultFontWeights[typedKey] ) }) // Verify unaffected weights remain unchanged UNAFFECTED_BY_BASE_WEIGHT.forEach(weightKey => { const typedKey = weightKey as keyof typeof testTheme.fontWeights expect(testTheme.fontWeights[typedKey]).toBe( defaultFontWeights[typedKey] ) }) }) }) describe("Custom theme creation", () => { describe("hasThemeSectionConfigs", () => { it("returns true if there are any theme section configs - light", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", light: { primaryColor: "red", }, }) expect(hasThemeSectionConfigs(themeInput.light)).toBe(true) }) it("returns true if there are any theme section configs - dark", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", dark: { primaryColor: "red", }, }) expect(hasThemeSectionConfigs(themeInput.dark)).toBe(true) }) it("returns false if there are no theme section configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", light: {}, dark: {}, }) expect(hasThemeSectionConfigs(themeInput.light)).toBe(false) expect(hasThemeSectionConfigs(themeInput.dark)).toBe(false) }) it("returns true for nested theme section configs - light", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", light: { sidebar: { primaryColor: "green", }, }, }) expect(hasThemeSectionConfigs(themeInput.light)).toBe(true) }) it("returns true for nested theme section configs - dark", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", dark: { sidebar: { primaryColor: "green", }, }, }) expect(hasThemeSectionConfigs(themeInput.dark)).toBe(true) }) it("returns false for default values - empty arrays", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", light: { headingFontSizes: [], headingFontWeights: [], sidebar: { headingFontSizes: [], headingFontWeights: [], }, }, dark: { headingFontSizes: [], headingFontWeights: [], sidebar: { headingFontSizes: [], headingFontWeights: [], }, }, }) expect(hasThemeSectionConfigs(themeInput.light)).toBe(false) expect(hasThemeSectionConfigs(themeInput.dark)).toBe(false) }) }) describe("handleSectionInheritance", () => { it("correctly merges light section configs with base configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", backgroundColor: "gray", light: { primaryColor: "lightblue", textColor: "black", }, }) const result = handleSectionInheritance(themeInput, "light") // Should merge light section with base expect(result.primaryColor).toBe("lightblue") expect(result.textColor).toBe("black") expect(result.backgroundColor).toBe("gray") // Inherited from base expect(result.base).toBe(CustomThemeConfig.BaseTheme.LIGHT) // Light and dark sections should be removed expect(result.light).toBeUndefined() expect(result.dark).toBeUndefined() }) it("correctly merges dark section configs with base configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "red", backgroundColor: "gray", dark: { primaryColor: "darkred", textColor: "white", }, }) const result = handleSectionInheritance(themeInput, "dark") // Should merge dark section with base expect(result.primaryColor).toBe("darkred") expect(result.textColor).toBe("white") expect(result.backgroundColor).toBe("gray") // Inherited from base expect(result.base).toBe(CustomThemeConfig.BaseTheme.DARK) // Light and dark sections should be removed expect(result.light).toBeUndefined() expect(result.dark).toBeUndefined() }) it("handles nested sidebar inheritance for light theme", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", sidebar: { primaryColor: "gray", textColor: "black", }, light: { primaryColor: "lightblue", sidebar: { backgroundColor: "lightgray", }, }, }) const result = handleSectionInheritance(themeInput, "light") // Should use light theme overrides expect(result.primaryColor).toBe("lightblue") // Sidebar should merge: theme.sidebar + theme.light.sidebar expect(result.sidebar?.primaryColor).toBe("gray") // From theme.sidebar expect(result.sidebar?.textColor).toBe("black") // From theme.sidebar expect(result.sidebar?.backgroundColor).toBe("lightgray") // From theme.light.sidebar // Sections should be removed expect(result.light).toBeUndefined() expect(result.dark).toBeUndefined() }) it("handles nested sidebar inheritance for dark theme", () => { const themeInput = new CustomThemeConfig({ primaryColor: "red", sidebar: { primaryColor: "gray", textColor: "white", }, dark: { primaryColor: "darkred", sidebar: { backgroundColor: "darkgray", }, }, }) const result = handleSectionInheritance(themeInput, "dark") // Should use dark theme overrides expect(result.primaryColor).toBe("darkred") // Sidebar should merge: theme.sidebar + theme.dark.sidebar expect(result.sidebar?.primaryColor).toBe("gray") // From theme.sidebar expect(result.sidebar?.textColor).toBe("white") // From theme.sidebar expect(result.sidebar?.backgroundColor).toBe("darkgray") // From theme.dark.sidebar // Sections should be removed expect(result.light).toBeUndefined() expect(result.dark).toBeUndefined() }) it("respects full precedence chain: theme < theme.dark < theme.sidebar < theme.dark.sidebar", () => { const themeInput = new CustomThemeConfig({ primaryColor: "base-primary", textColor: "base-text", sidebar: { primaryColor: "sidebar-primary", textColor: "sidebar-text", backgroundColor: "sidebar-bg", }, dark: { primaryColor: "dark-primary", textColor: "dark-text", sidebar: { primaryColor: "dark-sidebar-primary", backgroundColor: "dark-sidebar-bg", }, }, }) const result = handleSectionInheritance(themeInput, "dark") // Main theme properties: theme < theme.dark expect(result.primaryColor).toBe("dark-primary") // theme.dark wins expect(result.textColor).toBe("dark-text") // theme.dark wins // Sidebar properties with full precedence: // theme.sidebar.primaryColor="sidebar-primary" < theme.dark.sidebar.primaryColor="dark-sidebar-primary" expect(result.sidebar?.primaryColor).toBe("dark-sidebar-primary") // theme.dark.sidebar wins // theme.sidebar.backgroundColor="sidebar-bg" < theme.dark.sidebar.backgroundColor="dark-sidebar-bg" expect(result.sidebar?.backgroundColor).toBe("dark-sidebar-bg") // theme.dark.sidebar wins // theme.sidebar.textColor="sidebar-text" (no override in theme.dark.sidebar) expect(result.sidebar?.textColor).toBe("sidebar-text") // theme.sidebar wins (no override) }) }) describe("createCustomThemes", () => { it("returns 1 custom theme when there are no theme section configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", backgroundColor: "white", }) const customThemes = createCustomThemes(themeInput) expect(customThemes).toHaveLength(1) expect(customThemes[0].name).toBe(CUSTOM_THEME_NAME) expect(customThemes[0].emotion.colors.primary).toBe("blue") expect(customThemes[0].emotion.colors.bgColor).toBe("white") }) it("returns 1 custom theme based on dark base when no section configs", () => { const themeInput = new CustomThemeConfig({ base: CustomThemeConfig.BaseTheme.DARK, primaryColor: "purple", }) const customThemes = createCustomThemes(themeInput) expect(customThemes).toHaveLength(1) expect(customThemes[0].name).toBe(CUSTOM_THEME_NAME) expect(customThemes[0].emotion.colors.primary).toBe("purple") // Should inherit dark theme auxiliary colors expect(customThemes[0].emotion.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) }) it("returns 3 custom themes when light section configs are set", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", light: { primaryColor: "lightblue", }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) expect(customThemes[0].name).toBe(CUSTOM_THEME_LIGHT_NAME) expect(customThemes[1].name).toBe(CUSTOM_THEME_DARK_NAME) expect(customThemes[2].name).toBe(CUSTOM_THEME_AUTO_NAME) // Light theme should use light section override expect(customThemes[0].emotion.colors.primary).toBe("lightblue") // Dark theme should use base config expect(customThemes[1].emotion.colors.primary).toBe("blue") }) it("returns 3 custom themes when dark section configs are set", () => { const themeInput = new CustomThemeConfig({ primaryColor: "green", dark: { primaryColor: "darkgreen", }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) expect(customThemes[0].name).toBe(CUSTOM_THEME_LIGHT_NAME) expect(customThemes[1].name).toBe(CUSTOM_THEME_DARK_NAME) expect(customThemes[2].name).toBe(CUSTOM_THEME_AUTO_NAME) // Light theme should use base config expect(customThemes[0].emotion.colors.primary).toBe("green") // Dark theme should use dark section override expect(customThemes[1].emotion.colors.primary).toBe("darkgreen") }) it("returns 3 custom themes when both light and dark section configs are set", () => { const themeInput = new CustomThemeConfig({ primaryColor: "yellow", light: { primaryColor: "lightyellow", backgroundColor: "white", }, dark: { primaryColor: "gold", backgroundColor: "black", }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) // Light theme expect(customThemes[0].name).toBe(CUSTOM_THEME_LIGHT_NAME) expect(customThemes[0].emotion.colors.primary).toBe("lightyellow") expect(customThemes[0].emotion.colors.bgColor).toBe("white") // Dark theme expect(customThemes[1].name).toBe(CUSTOM_THEME_DARK_NAME) expect(customThemes[1].emotion.colors.primary).toBe("gold") expect(customThemes[1].emotion.colors.bgColor).toBe("black") }) it("handles nested sidebar configs in light section", () => { const themeInput = new CustomThemeConfig({ primaryColor: "blue", sidebar: { primaryColor: "gray", textColor: "white", }, light: { sidebar: { backgroundColor: "lightgray", }, }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) // Light theme sidebar should merge: theme.sidebar + theme.light.sidebar expect(customThemes[0].themeInput?.sidebar?.primaryColor).toBe("gray") // From theme.sidebar expect(customThemes[0].themeInput?.sidebar?.textColor).toBe("white") // From theme.sidebar expect(customThemes[0].themeInput?.sidebar?.backgroundColor).toBe( "lightgray" ) // From theme.light.sidebar // Dark theme sidebar should only have base sidebar config (no dark.sidebar override) expect(customThemes[1].themeInput?.sidebar?.primaryColor).toBe("gray") expect(customThemes[1].themeInput?.sidebar?.textColor).toBe("white") expect( customThemes[1].themeInput?.sidebar?.backgroundColor ).toBeUndefined() }) it("handles nested sidebar configs in dark section", () => { const themeInput = new CustomThemeConfig({ primaryColor: "red", sidebar: { primaryColor: "gray", textColor: "black", }, dark: { sidebar: { backgroundColor: "darkgray", }, }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) // Light theme sidebar should only have base sidebar config (no light.sidebar override) expect(customThemes[0].themeInput?.sidebar?.primaryColor).toBe("gray") expect(customThemes[0].themeInput?.sidebar?.textColor).toBe("black") expect( customThemes[0].themeInput?.sidebar?.backgroundColor ).toBeUndefined() // Dark theme sidebar should merge: theme.sidebar + theme.dark.sidebar expect(customThemes[1].themeInput?.sidebar?.primaryColor).toBe("gray") // From theme.sidebar expect(customThemes[1].themeInput?.sidebar?.textColor).toBe("black") // From theme.sidebar expect(customThemes[1].themeInput?.sidebar?.backgroundColor).toBe( "darkgray" ) // From theme.dark.sidebar }) it("treats empty light/dark sections as no section configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "orange", light: {}, dark: {}, }) const customThemes = createCustomThemes(themeInput) // Should return 1 theme since empty sections don't count as configs expect(customThemes).toHaveLength(1) expect(customThemes[0].name).toBe(CUSTOM_THEME_NAME) }) it("ignores empty arrays in section configs", () => { const themeInput = new CustomThemeConfig({ primaryColor: "pink", light: { headingFontSizes: [], headingFontWeights: [], }, }) const customThemes = createCustomThemes(themeInput) // Empty arrays don't count as configs, so should return 1 theme expect(customThemes).toHaveLength(1) expect(customThemes[0].name).toBe(CUSTOM_THEME_NAME) }) it("sets auto theme to light when system preference is light", () => { // Mock the system preference return value (light) Object.defineProperty(window, "matchMedia", { writable: true, value: vi.fn().mockImplementation(query => ({ matches: query === "(prefers-color-scheme: light)", // Returns true for light })), }) const themeInput = new CustomThemeConfig({ primaryColor: "yellow", light: { primaryColor: "lightyellow", backgroundColor: "white", }, dark: { primaryColor: "gold", backgroundColor: "black", }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) expect(customThemes[2].name).toBe(CUSTOM_THEME_AUTO_NAME) // Auto theme should be based the same as the custom light theme expect(customThemes[2].emotion.colors.primary).toBe("lightyellow") expect(customThemes[2].emotion.colors.bgColor).toBe("white") }) it("sets auto theme to dark when system preference is dark", () => { // Mock the system preference return value (dark) Object.defineProperty(window, "matchMedia", { writable: true, value: vi.fn().mockImplementation(query => ({ matches: query === "(prefers-color-scheme: dark)", // Returns true for dark })), }) const themeInput = new CustomThemeConfig({ primaryColor: "yellow", light: { primaryColor: "lightyellow", backgroundColor: "white", }, dark: { primaryColor: "gold", backgroundColor: "black", }, }) const customThemes = createCustomThemes(themeInput) // Expect 3 themes: Custom Theme Light, Custom Theme Dark, Custom Theme Auto expect(customThemes).toHaveLength(3) expect(customThemes[2].name).toBe(CUSTOM_THEME_AUTO_NAME) // Auto theme should be based the same as the custom dark theme expect(customThemes[2].emotion.colors.primary).toBe("gold") expect(customThemes[2].emotion.colors.bgColor).toBe("black") }) }) }) describe("Sidebar theme creation", () => { describe("createSidebarTheme", () => { it("creates sidebar theme with swapped background colors by default", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { backgroundColor: "white", secondaryBackgroundColor: "lightgray", }) const sidebarTheme = createSidebarTheme(mainTheme) // Sidebar background should be main theme's secondary background expect(sidebarTheme.emotion.colors.bgColor).toBe("lightgray") // Sidebar secondary background should be main theme's background expect(sidebarTheme.emotion.colors.secondaryBg).toBe("white") expect(sidebarTheme.emotion.inSidebar).toBe(true) }) it("uses configured sidebar backgroundColor when provided", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { backgroundColor: "white", secondaryBackgroundColor: "lightgray", sidebar: { backgroundColor: "darkblue", }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use configured sidebar background expect(sidebarTheme.emotion.colors.bgColor).toBe("darkblue") // Secondary should still swap to main background expect(sidebarTheme.emotion.colors.secondaryBg).toBe("white") }) it("uses configured sidebar secondaryBackgroundColor when provided", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { backgroundColor: "white", secondaryBackgroundColor: "lightgray", sidebar: { secondaryBackgroundColor: "blue", }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Background should still swap to main secondary expect(sidebarTheme.emotion.colors.bgColor).toBe("lightgray") // Should use configured sidebar secondary background expect(sidebarTheme.emotion.colors.secondaryBg).toBe("blue") }) it("applies sidebar theme overrides", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", sidebar: { primaryColor: "blue", }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should apply sidebar primary color override expect(sidebarTheme.emotion.colors.primary).toBe("blue") }) it("uses default sidebar heading font sizes when not configured", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use default sidebar heading font sizes expect(sidebarTheme.emotion.fontSizes.h1FontSize).toBe("1.5rem") expect(sidebarTheme.emotion.fontSizes.h2FontSize).toBe("1.25rem") expect(sidebarTheme.emotion.fontSizes.h3FontSize).toBe("1.125rem") expect(sidebarTheme.emotion.fontSizes.h4FontSize).toBe("1rem") expect(sidebarTheme.emotion.fontSizes.h5FontSize).toBe("0.875rem") expect(sidebarTheme.emotion.fontSizes.h6FontSize).toBe("0.75rem") }) it("uses configured sidebar heading font sizes when provided", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", sidebar: { headingFontSizes: ["2rem", "1.75rem"], }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should override first two heading sizes expect(sidebarTheme.emotion.fontSizes.h1FontSize).toBe("2rem") expect(sidebarTheme.emotion.fontSizes.h2FontSize).toBe("1.75rem") // Rest should use defaults expect(sidebarTheme.emotion.fontSizes.h3FontSize).toBe("1.125rem") expect(sidebarTheme.emotion.fontSizes.h4FontSize).toBe("1rem") }) it("sets base theme to LIGHT when sidebar background is light", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { backgroundColor: "black", sidebar: { backgroundColor: "white", }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use light base for light sidebar background expect(sidebarTheme.emotion.colors.bgColor).toBe("white") // Should have light theme auxiliary colors expect(sidebarTheme.emotion.colors.yellowTextColor).toBe( lightTheme.emotion.colors.yellowTextColor ) }) it("sets base theme to DARK when sidebar background is dark", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { backgroundColor: "white", sidebar: { backgroundColor: "black", }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use dark base for dark sidebar background expect(sidebarTheme.emotion.colors.bgColor).toBe("black") // Should have dark theme auxiliary colors expect(sidebarTheme.emotion.colors.yellowTextColor).toBe( darkTheme.emotion.colors.yellowTextColor ) }) it("inherits main theme properties not overridden in sidebar", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", textColor: "navy", bodyFont: "monospace", sidebar: { primaryColor: "blue", // Only override primary color }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use sidebar override expect(sidebarTheme.emotion.colors.primary).toBe("blue") // Should inherit from main theme expect(sidebarTheme.emotion.colors.bodyText).toBe("navy") expect(sidebarTheme.emotion.genericFonts.bodyFont).toBe( lightTheme.emotion.fonts.monospace ) }) it("removes empty arrays from sidebar configuration", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", headingFontSizes: ["2rem", "1.5rem"], sidebar: { headingFontSizes: [], // Empty array should be ignored }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use default sidebar heading font sizes, not empty array expect(sidebarTheme.emotion.fontSizes.h1FontSize).toBe("1.5rem") expect(sidebarTheme.emotion.fontSizes.h2FontSize).toBe("1.25rem") }) it("handles complex sidebar theming scenario", () => { const mainTheme = createTheme(CUSTOM_THEME_NAME, { primaryColor: "red", backgroundColor: "white", secondaryBackgroundColor: "lightgray", textColor: "black", bodyFont: "serif", headingFontSizes: ["3rem", "2.5rem"], sidebar: { primaryColor: "blue", backgroundColor: "darkblue", textColor: "white", headingFontSizes: ["1.75rem", "1.5rem"], }, }) const sidebarTheme = createSidebarTheme(mainTheme) // Should use all sidebar overrides expect(sidebarTheme.emotion.colors.primary).toBe("blue") expect(sidebarTheme.emotion.colors.bgColor).toBe("darkblue") expect(sidebarTheme.emotion.colors.bodyText).toBe("white") expect(sidebarTheme.emotion.colors.secondaryBg).toBe("white") // Swapped from main bg expect(sidebarTheme.emotion.fontSizes.h1FontSize).toBe("1.75rem") expect(sidebarTheme.emotion.fontSizes.h2FontSize).toBe("1.5rem") // Should inherit main theme font expect(sidebarTheme.emotion.genericFonts.bodyFont).toBe( lightTheme.emotion.fonts.serif ) expect(sidebarTheme.emotion.inSidebar).toBe(true) }) it("handles sidebar with custom light/dark themes", () => { const themeInput = new CustomThemeConfig({ primaryColor: "red", backgroundColor: "white", light: { sidebar: { primaryColor: "lightblue", }, }, dark: { sidebar: { primaryColor: "darkblue", }, }, }) const [lightTheme, darkTheme] = createCustomThemes(themeInput) const lightSidebarTheme = createSidebarTheme(lightTheme) const darkSidebarTheme = createSidebarTheme(darkTheme) // Light sidebar should use light section config expect(lightSidebarTheme.emotion.colors.primary).toBe("lightblue") // Dark sidebar should use dark section config expect(darkSidebarTheme.emotion.colors.primary).toBe("darkblue") }) }) })
80
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export * from "./baseui" export * from "./getColors" export * from "./globalStyles" export * from "./themeConfigs" export * from "./types" export * from "./utils" export * from "./consts"
81
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/getColors.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { transparentize } from "color2k" import { Metric as MetricProto } from "@streamlit/protobuf" import { darkTheme, lightTheme } from "~lib/theme/index" import { getDividerColors, getMarkdownBgColors, getMarkdownTextColors, getMetricBackgroundColor, getMetricColor, getMetricTextColor, hasLightBackgroundColor, } from "./getColors" describe("getDividerColors", () => { describe("light theme", () => { it("returns correct divider primitive colors for light theme", () => { expect(hasLightBackgroundColor(lightTheme.emotion)).toBe(true) const result = getDividerColors(lightTheme.emotion) // colors.red70 expect(result.red).toBe("#ff4b4b") // colors.orange70 expect(result.orange).toBe("#ffa421") // colors.yellow80 expect(result.yellow).toBe("#faca2b") // colors.blue70 expect(result.blue).toBe("#1c83e1") // colors.green70 expect(result.green).toBe("#21c354") // colors.purple70 expect(result.violet).toBe("#803df5") // colors.gray60 expect(result.gray).toBe("#a3a8b8") // colors.gray60 expect(result.grey).toBe("#a3a8b8") expect(result.rainbow).toBe( "linear-gradient(to right, #ff4b4b, #ffa421, #faca2b, #21c354, #1c83e1, #803df5)" ) }) it("matches the default theme colors", () => { const result = getDividerColors(lightTheme.emotion) const colors = lightTheme.emotion.colors expect(result.red).toBe(colors.redColor) expect(result.orange).toBe(colors.orangeColor) expect(result.yellow).toBe(colors.yellowColor) expect(result.blue).toBe(colors.blueColor) expect(result.green).toBe(colors.greenColor) expect(result.violet).toBe(colors.violetColor) expect(result.gray).toBe(colors.grayColor) expect(result.grey).toBe(colors.grayColor) expect(result.rainbow).toBe( `linear-gradient(to right, ${colors.redColor}, ${colors.orangeColor}, ${colors.yellowColor}, ${colors.greenColor}, ${colors.blueColor}, ${colors.violetColor})` ) // Verify all colors are valid hex strings Object.entries(result).forEach(([key, value]) => { if (key !== "rainbow") { expect(value).toMatch(/^#[0-9a-fA-F]{6}$/) } }) }) it("gray and grey properties are identical", () => { const result = getDividerColors(lightTheme.emotion) expect(result.gray).toBe(result.grey) }) it("rainbow gradient contains all colors in consistent order", () => { const result = getDividerColors(lightTheme.emotion) const expectedOrder = [ result.red, result.orange, result.yellow, result.green, result.blue, result.violet, ] expect(result.rainbow).toBe( "linear-gradient(to right, #ff4b4b, #ffa421, #faca2b, #21c354, #1c83e1, #803df5)" ) const gradientColors = result.rainbow.match(/#[0-9a-fA-F]{6}/g) expect(gradientColors).toEqual(expectedOrder) }) }) describe("dark theme", () => { it("returns correct divider primitive colors for dark theme", () => { expect(hasLightBackgroundColor(darkTheme.emotion)).toBe(false) const result = getDividerColors(darkTheme.emotion) // colors.red80 expect(result.red).toBe("#ff2b2b") // colors.orange80 expect(result.orange).toBe("#ff8700") // colors.yellow70 expect(result.yellow).toBe("#ffe312") // colors.blue80 expect(result.blue).toBe("#0068c9") // colors.green80 expect(result.green).toBe("#09ab3b") // colors.purple70 expect(result.violet).toBe("#803df5") // colors.gray80 expect(result.gray).toBe("#555867") // colors.gray80 expect(result.grey).toBe("#555867") expect(result.rainbow).toBe( "linear-gradient(to right, #ff2b2b, #ff8700, #ffe312, #09ab3b, #0068c9, #803df5)" ) }) it("matches the default theme colors", () => { const result = getDividerColors(darkTheme.emotion) const colors = darkTheme.emotion.colors expect(result.red).toBe(colors.redColor) expect(result.orange).toBe(colors.orangeColor) expect(result.yellow).toBe(colors.yellowColor) expect(result.blue).toBe(colors.blueColor) expect(result.green).toBe(colors.greenColor) expect(result.violet).toBe(colors.violetColor) expect(result.gray).toBe(colors.grayColor) expect(result.grey).toBe(colors.grayColor) expect(result.rainbow).toBe( `linear-gradient(to right, ${colors.redColor}, ${colors.orangeColor}, ${colors.yellowColor}, ${colors.greenColor}, ${colors.blueColor}, ${colors.violetColor})` ) // Verify all colors are valid hex strings Object.entries(result).forEach(([key, value]) => { if (key !== "rainbow") { expect(value).toMatch(/^#[0-9a-fA-F]{6}$/) } }) }) it("gray and grey properties are identical", () => { const result = getDividerColors(darkTheme.emotion) expect(result.gray).toBe(result.grey) }) it("rainbow gradient contains all colors in consistent order", () => { const result = getDividerColors(darkTheme.emotion) const expectedOrder = [ result.red, result.orange, result.yellow, result.green, result.blue, result.violet, ] expect(result.rainbow).toBe( "linear-gradient(to right, #ff2b2b, #ff8700, #ffe312, #09ab3b, #0068c9, #803df5)" ) const gradientColors = result.rainbow.match(/#[0-9a-fA-F]{6}/g) expect(gradientColors).toEqual(expectedOrder) }) }) }) describe("getMarkdownBgColors", () => { it("returns correct background colors for light theme", () => { const result = getMarkdownBgColors(lightTheme.emotion) const colors = lightTheme.emotion.colors expect(result.redbg).toBe(colors.redBackgroundColor) expect(result.orangebg).toBe(colors.orangeBackgroundColor) expect(result.yellowbg).toBe(colors.yellowBackgroundColor) expect(result.bluebg).toBe(colors.blueBackgroundColor) expect(result.greenbg).toBe(colors.greenBackgroundColor) expect(result.violetbg).toBe(colors.violetBackgroundColor) expect(result.graybg).toBe(colors.grayBackgroundColor) expect(result.purplebg).toBe(transparentize(colors.purple90, 0.9)) expect(result.primarybg).toBe(transparentize(colors.primary, 0.9)) }) it("returns correct background colors for dark theme", () => { const result = getMarkdownBgColors(darkTheme.emotion) const colors = darkTheme.emotion.colors expect(result.redbg).toBe(colors.redBackgroundColor) expect(result.orangebg).toBe(colors.orangeBackgroundColor) expect(result.yellowbg).toBe(colors.yellowBackgroundColor) expect(result.bluebg).toBe(colors.blueBackgroundColor) expect(result.greenbg).toBe(colors.greenBackgroundColor) expect(result.violetbg).toBe(colors.violetBackgroundColor) expect(result.graybg).toBe(colors.grayBackgroundColor) expect(result.purplebg).toBe(transparentize(colors.purple80, 0.7)) expect(result.primarybg).toBe(transparentize(colors.primary, 0.7)) }) }) describe("getMarkdownTextColors", () => { it("returns correct text colors for light theme", () => { const result = getMarkdownTextColors(lightTheme.emotion) const colors = lightTheme.emotion.colors expect(result.red).toBe(colors.redTextColor) expect(result.orange).toBe(colors.orangeTextColor) expect(result.yellow).toBe(colors.yellowTextColor) expect(result.blue).toBe(colors.blueTextColor) expect(result.green).toBe(colors.greenTextColor) expect(result.violet).toBe(colors.violetTextColor) expect(result.purple).toBe(colors.purple100) expect(result.gray).toBe(colors.grayTextColor) expect(result.primary).toBe(colors.primary) }) it("returns correct text colors for dark theme", () => { const result = getMarkdownTextColors(darkTheme.emotion) const colors = darkTheme.emotion.colors expect(result.red).toBe(colors.redTextColor) expect(result.orange).toBe(colors.orangeTextColor) expect(result.yellow).toBe(colors.yellowTextColor) expect(result.blue).toBe(colors.blueTextColor) expect(result.green).toBe(colors.greenTextColor) expect(result.violet).toBe(colors.violetTextColor) expect(result.purple).toBe(colors.purple80) expect(result.gray).toBe(colors.grayTextColor) expect(result.primary).toBe(colors.primary) }) }) describe("getMetricColor", () => { it("returns correct metric color for light theme", () => { const colors = lightTheme.emotion.colors const result1 = getMetricColor( lightTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricColor( lightTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricColor( lightTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redColor) expect(result2).toBe(colors.greenColor) expect(result3).toBe(colors.grayColor) }) it("returns correct metric color for dark theme", () => { const colors = darkTheme.emotion.colors const result1 = getMetricColor( darkTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricColor( darkTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricColor( darkTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redColor) expect(result2).toBe(colors.greenColor) expect(result3).toBe(colors.grayColor) }) }) describe("getMetricBackgroundColor", () => { it("returns correct metric background colors for light theme", () => { const colors = lightTheme.emotion.colors const result1 = getMetricBackgroundColor( lightTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricBackgroundColor( lightTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricBackgroundColor( lightTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redBackgroundColor) expect(result2).toBe(colors.greenBackgroundColor) expect(result3).toBe(colors.grayBackgroundColor) }) it("returns correct metric background colors for dark theme", () => { const colors = darkTheme.emotion.colors const result1 = getMetricBackgroundColor( darkTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricBackgroundColor( darkTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricBackgroundColor( darkTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redBackgroundColor) expect(result2).toBe(colors.greenBackgroundColor) expect(result3).toBe(colors.grayBackgroundColor) }) }) describe("getMetricTextColor", () => { it("returns correct metric text color for light theme", () => { const colors = lightTheme.emotion.colors const result1 = getMetricTextColor( lightTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricTextColor( lightTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricTextColor( lightTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redTextColor) expect(result2).toBe(colors.greenTextColor) expect(result3).toBe(colors.grayTextColor) }) it("returns correct metric text color for dark theme", () => { const colors = darkTheme.emotion.colors const result1 = getMetricTextColor( darkTheme.emotion, MetricProto.MetricColor.RED ) const result2 = getMetricTextColor( darkTheme.emotion, MetricProto.MetricColor.GREEN ) const result3 = getMetricTextColor( darkTheme.emotion, MetricProto.MetricColor.GRAY ) expect(result1).toBe(colors.redTextColor) expect(result2).toBe(colors.greenTextColor) expect(result3).toBe(colors.grayTextColor) }) })
82
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/consts.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const STALE_TRANSITION_PARAMS = "1s ease-in 0.5s" export const STALE_STYLES = { opacity: 0.33, transition: `opacity ${STALE_TRANSITION_PARAMS}`, }
83
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/zIndices.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ const sidebar = 100 const menuButton = sidebar + 10 const balloons = 1000000 const header = balloons - 10 const bottom = sidebar - 1 const sidebarMobile = balloons - 5 const fullscreenWrapper = balloons + 50 const headerDecoration = balloons - 1 // Used for popup menus, chart tooltips, and other aspects // that need to be shown above the fullscreen wrapper const popup = fullscreenWrapper + 10 // Used for rendering the cell overlay editor of the // dataframe component: const tablePortal = fullscreenWrapper + 60 const cacheSpinner = sidebar + 1 // Toasts should overlap chatInput container // should also show above dialog const toast = popup + 1 export const zIndices = { hide: -1, auto: "auto", base: 0, // this is used if we want to ensure that an element // is shown above the parent elements. priority: 1, sidebar, menuButton, balloons, header, sidebarMobile, popup, fullscreenWrapper, tablePortal, bottom, cacheSpinner, toast, headerDecoration, }
84
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/radii.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // md, default, xl, xxl can be changed based on the baseRadius theme config. // chatInput, full, and maxCheckboxRadius are not impacted by this config. export const radii = { md: "0.25rem", // This is the default radius used in most elements: default: "0.5rem", xl: "0.75rem", xxl: "1rem", // Radius specific to buttons (enables buttonRadius config): button: "0.5rem", // Chat input enforces a more rounded look: chatInput: "1.25rem", // Ensures that the element is fully rounded: full: "9999px", // The maximum radius for checkboxes to still be recognizable as a checkbox: maxCheckbox: "0.35rem", }
85
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/breakpoints.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const breakpoints = { // This value is used to determine whether we should hide/show the "Please enter to apply" in all widgets. hideWidgetDetails: 180, // This value is used to determine whether we should hide/show the - and + buttons in st.number_input. hideNumberInputControls: 120, sm: "576px", columns: "640px", md: "768px", }
86
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/iconSizes.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const iconSizes = { xs: "0.5rem", sm: "0.75rem", md: "0.9rem", base: "1rem", lg: "1.25rem", xl: "1.5rem", twoXL: "1.8rem", threeXL: "2.3rem", }
87
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/colors.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const colors = { transparent: "transparent", black: "#000000", white: "#ffffff", gray10: "#fafafa", gray20: "#f0f2f6", gray30: "#e6eaf1", gray40: "#d5dae5", gray50: "#bfc5d3", gray60: "#a3a8b8", gray70: "#808495", gray80: "#555867", gray85: "#31333F", gray90: "#262730", gray100: "#0e1117", red10: "#fff0f0", red20: "#ffdede", red30: "#ffc7c7", red40: "#ffabab", red50: "#ff8c8c", red60: "#ff6c6c", red70: "#ff4b4b", red80: "#ff2b2b", red90: "#bd4043", red100: "#7d353b", orange10: "#fffae8", orange20: "#fff6d0", orange30: "#ffecb0", orange40: "#ffe08e", orange50: "#ffd16a", orange60: "#ffbd45", orange70: "#ffa421", orange80: "#ff8700", orange90: "#ed6f13", orange95: "#e2660c", orange100: "#d95a00", yellow10: "#ffffe1", yellow20: "#ffffc2", yellow30: "#ffffa0", yellow40: "#ffff7d", yellow50: "#ffff59", yellow60: "#fff835", yellow65: "#ffff12", yellow70: "#ffe312", yellow80: "#faca2b", yellow90: "#edbb16", yellow100: "#dea816", yellow110: "#916e10", yellow115: "#926c05", green10: "#dffde9", green20: "#c0fcd3", green30: "#9ef6bb", green40: "#7defa1", green50: "#5ce488", green60: "#3dd56d", green70: "#21c354", green80: "#09ab3b", green90: "#158237", green100: "#177233", blueGreen10: "#dcfffb", blueGreen20: "#bafff7", blueGreen30: "#93ffee", blueGreen40: "#6bfde3", blueGreen50: "#45f4d5", blueGreen60: "#20e7c5", blueGreen70: "#00d4b1", blueGreen80: "#29b09d", blueGreen90: "#2c867c", blueGreen100: "#246e69", lightBlue10: "#e0feff", lightBlue20: "#bffdff", lightBlue30: "#9af8ff", lightBlue40: "#73efff", lightBlue50: "#4be4ff", lightBlue60: "#24d4ff", lightBlue70: "#00c0f2", lightBlue80: "#00a4d4", lightBlue90: "#0d8cb5", lightBlue100: "#15799e", blue10: "#e4f5ff", blue20: "#c7ebff", blue30: "#a6dcff", blue40: "#83c9ff", blue50: "#60b4ff", blue60: "#3d9df3", blue65: "#1c83ff", blue70: "#1c83e1", blue80: "#0068c9", blue90: "#0054a3", blue100: "#004280", purple10: "#f5ebff", purple20: "#ebd6ff", purple30: "#dbbbff", purple40: "#c89dff", purple50: "#b27eff", purple60: "#9a5dff", purple70: "#803df5", purple80: "#6d3fc0", purple90: "#583f84", purple100: "#3f3163", } export type PrimitiveColors = Record<keyof typeof colors, string>
88
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/spacing.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const spacing = { px: "1px", none: "0", threeXS: "0.125rem", // 2px twoXS: "0.25rem", // 4px xs: "0.375rem", // 6px sm: "0.5rem", // 8px md: "0.75rem", // 12px lg: "1rem", // 16px xl: "1.25rem", // 20px twoXL: "1.5rem", // 24px threeXL: "2rem", // 32px fourXL: "4rem", // 64px }
89
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export { breakpoints } from "./breakpoints" export { colors, type PrimitiveColors } from "./colors" export { iconSizes } from "./iconSizes" export { radii } from "./radii" export { sizes } from "./sizes" export { spacing } from "./spacing" export { fonts, fontSizes, fontWeights, genericFonts, lineHeights, } from "./typography" export { zIndices } from "./zIndices"
90
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/sizes.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const sizes = { full: "100%", headerHeight: "3.75rem", // Old header height to avoid addtl cascading visual/snapshot changes fullScreenHeaderHeight: "2.875rem", sidebarTopSpace: "6rem", toastWidth: "21rem", // Use px here since we want to keep the width the same // regardless of the root font size. contentMaxWidth: "736px", maxChartTooltipWidth: "30rem", // Used for checkboxes, radio, and toggles: checkbox: "1rem", borderWidth: "1px", // Used for checkboxes/toggle smallElementHeight: "1.5rem", // min height used for most input widgets minElementHeight: "2.5rem", // min height for larger input widgets like text area and audio input largestElementHeight: "4.25rem", smallLogoHeight: "1.25rem", defaultLogoHeight: "1.5rem", largeLogoHeight: "2rem", sliderThumb: "0.75rem", wideSidePadding: "5rem", headerDecorationHeight: "0.125rem", appRunningMen: "1.6rem", appStatusMaxWidth: "20rem", spinnerSize: "1.375rem", spinnerThickness: "0.125rem", tabHeight: "2.5rem", // Min width used for popover and dialog: minPopupWidth: "20rem", maxTooltipHeight: "18.75rem", chatAvatarSize: "2rem", // Used for the clear icon used by some Input elements clearIconSize: "1.5em", numberInputControlsWidth: "2rem", emptyDropdownHeight: "5.625rem", dropdownItemHeight: "2.5rem", maxDropdownHeight: "18.75rem", appDefaultBottomPadding: "3.5rem", defaultMapHeight: "31.25rem", defaultChartHeight: "21.875rem", defaultChartWidth: "25rem", // The minimum width of the menu (used for the dataframe column menu) minMenuWidth: "8rem", minChatInputFileListHeight: "3rem", headerItemHeight: "1.75rem", headerRightContentMaxWidth: "12.5rem", }
91
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/primitives/typography.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export const fonts: { [key: string]: string } = { sansSerif: '"Source Sans", sans-serif', monospace: '"Source Code Pro", monospace', serif: '"Source Serif", serif', materialIcons: "Material Symbols Rounded", } export const genericFonts = { bodyFont: fonts.sansSerif, codeFont: fonts.monospace, headingFont: fonts.sansSerif, iconFont: fonts.materialIcons, } export const fontSizes = { // baseFontSize equals to md, but in pixels (this value can also be configured by the user) // The baseFontSize should only be used in global styles. baseFontSize: 16, twoSm: "0.75rem", sm: "0.875rem", md: "1rem", mdLg: "1.125rem", lg: "1.25rem", xl: "1.5rem", twoXL: "1.75rem", threeXL: "2.25rem", fourXL: "2.75rem", codeFontSize: "0.875rem", // Inline code font size as em value for proper scaling w/ headers, captions, // sidebar, etc. inlineCodeFontSize: "0.75em", // Header font sizes - unaffected by baseFontSize, configured via headingFontSizes h1FontSize: "2.75rem", h2FontSize: "2.25rem", h3FontSize: "1.75rem", h4FontSize: "1.5rem", h5FontSize: "1.25rem", h6FontSize: "1rem", } export const fontWeights = { normal: 400, semiBold: 500, bold: 600, extrabold: 700, // codeFontWeight separately configurable code: 400, codeBold: 600, codeExtraBold: 700, // baseFontWeight config does not affect headers // defaults set here for h1-h6 h1FontWeight: 700, h2FontWeight: 600, h3FontWeight: 600, h4FontWeight: 600, h5FontWeight: 600, h6FontWeight: 600, } export const lineHeights = { none: 1, headings: 1.2, tight: 1.25, inputWidget: 1.4, small: 1.5, base: 1.6, menuItem: 2, }
92
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionBaseTheme/themeColors.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { transparentize } from "color2k" import { colors } from "~lib/theme/primitives/colors" // NOTE: Updates to the color below MUST be reflected in the mockTheme.ts file // to ensure the mock theme used for tests is consistent with expected theme colors. const requiredThemeColors = { bgColor: colors.white, secondaryBg: colors.gray20, bodyText: colors.gray85, primary: colors.red70, secondary: colors.blue70, // Used in progress bar // Default main theme colors (light theme) redColor: colors.red70, orangeColor: colors.orange70, yellowColor: colors.yellow80, blueColor: colors.blue70, greenColor: colors.green70, violetColor: colors.purple70, grayColor: colors.gray60, // Default background theme colors (light theme) redBackgroundColor: transparentize(colors.red80, 0.9), orangeBackgroundColor: transparentize(colors.orange70, 0.9), yellowBackgroundColor: transparentize(colors.yellow65, 0.9), blueBackgroundColor: transparentize(colors.blue65, 0.9), greenBackgroundColor: transparentize(colors.green70, 0.9), violetBackgroundColor: transparentize(colors.purple60, 0.9), grayBackgroundColor: transparentize(colors.gray85, 0.9), // Default text theme colors (light theme) redTextColor: colors.red90, orangeTextColor: colors.orange95, yellowTextColor: colors.yellow115, blueTextColor: colors.blue90, greenTextColor: colors.green90, violetTextColor: colors.purple90, grayTextColor: transparentize(colors.gray85, 0.4), } export type RequiredThemeColors = Record< keyof typeof requiredThemeColors, string > export interface OptionalThemeColors { widgetBorderColor?: string } const optionalThemeColors: OptionalThemeColors = {} export default { ...colors, ...requiredThemeColors, ...optionalThemeColors, }
93
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionBaseTheme/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { createEmotionColors } from "~lib/theme/getColors" import { breakpoints, fonts, fontSizes, fontWeights, genericFonts, iconSizes, lineHeights, radii, sizes, spacing, zIndices, } from "~lib/theme/primitives" import genericColors from "./themeColors" export default { inSidebar: false, showSidebarBorder: false, linkUnderline: true, breakpoints, colors: createEmotionColors(genericColors), fonts, fontSizes, fontWeights, genericFonts, iconSizes, lineHeights, radii, sizes, spacing, zIndices, }
94
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionDarkTheme/themeColors.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { transparentize } from "color2k" import { colors } from "~lib/theme/primitives/colors" export default { ...colors, bgColor: colors.gray100, bodyText: colors.gray10, primary: colors.red70, secondaryBg: colors.gray90, // Default main theme colors (dark theme) redColor: colors.red80, orangeColor: colors.orange80, yellowColor: colors.yellow70, blueColor: colors.blue80, greenColor: colors.green80, violetColor: colors.purple70, grayColor: colors.gray80, // Default background theme colors (dark theme) redBackgroundColor: transparentize(colors.red60, 0.8), orangeBackgroundColor: transparentize(colors.orange80, 0.8), yellowBackgroundColor: transparentize(colors.yellow65, 0.8), blueBackgroundColor: transparentize(colors.blue60, 0.8), greenBackgroundColor: transparentize(colors.green60, 0.8), violetBackgroundColor: transparentize(colors.purple60, 0.8), grayBackgroundColor: transparentize(colors.gray70, 0.8), // Default text theme colors (dark theme) redTextColor: colors.red60, orangeTextColor: colors.orange60, yellowTextColor: colors.yellow20, blueTextColor: colors.blue60, greenTextColor: colors.green50, violetTextColor: colors.purple50, grayTextColor: transparentize(colors.gray10, 0.4), }
95
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionDarkTheme/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import emotionBaseTheme from "~lib/theme/emotionBaseTheme" import { createEmotionColors } from "~lib/theme/getColors" import genericColors from "./themeColors" export default { ...emotionBaseTheme, inSidebar: false, colors: createEmotionColors({ ...emotionBaseTheme.colors, ...genericColors, }), }
96
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionLightTheme/themeColors.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { colors } from "~lib/theme/primitives/colors" export default { ...colors, }
97
theme
/content/streamlit_public_repos/streamlit/frontend/lib/src/theme/emotionLightTheme/index.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import emotionBaseTheme from "~lib/theme/emotionBaseTheme" import { createEmotionColors } from "~lib/theme/getColors" import genericColors from "./themeColors" export default { ...emotionBaseTheme, inSidebar: false, colors: createEmotionColors({ ...emotionBaseTheme.colors, ...genericColors, }), }
98
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/dataframes/Quiver.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Private members use _. import { Field, Vector } from "apache-arrow" import { immerable, produce } from "immer" import { IArrow, Styler as StylerProto } from "@streamlit/protobuf" import { hashString } from "~lib/util/utils" import { concat } from "./arrowConcatUtils" import { ColumnNames, Data, IndexData, parseArrowIpcBytes, } from "./arrowParseUtils" import { ArrowType, DataFrameCellType, DataType } from "./arrowTypeUtils" /** * Pandas Styler data from proto message. * * This is only present if the DataFrame was created based * on a Pandas Styler object. */ interface PandasStylerData { /** UUID from Styler. */ uuid: string /** Optional user-specified caption. */ caption?: string /** CSS styles from Styler. */ cssStyles?: string /** CSS ID to use for the Table. * * Format ot the CSS ID: `T_${StylerUUID}` * * This id is used by styled tables and styled dataframes to associate * the Styler CSS with the styled data. */ cssId?: string /** * Stringified versions of each cell in the DataFrame, in the * user-specified format. * * The display values table is expected to always have the same * dimensions as the actual data table. */ displayValues: Quiver } /** Dimensions of the DataFrame. */ interface DataFrameDimensions { // The number of header rows (> 1 for multi-level headers) numHeaderRows: number // The number of index columns numIndexColumns: number // The number of data rows (excluding header rows) numDataRows: number // The number of data columns (excluding index columns) numDataColumns: number // The total number of rows (header rows + data rows) numRows: number // The total number of columns (index + data columns) numColumns: number } /** Data for a single cell in a DataFrame. */ export interface DataFrameCell { /** The cell's type (index or data). */ type: DataFrameCellType /** The cell's content. */ content: DataType /** The cell's content type. */ // For "blank" cells "contentType" is undefined. contentType: ArrowType /** The cell's field. */ field: Field } /** * Parses data from an Arrow table, and stores it in a row-major format * (which is more useful for our frontend display code than Arrow's columnar format). */ export class Quiver { /** * Plain objects (objects without a prototype), arrays, Maps and Sets are always drafted by Immer. * Every other object must use the immerable symbol to mark itself as compatible with Immer. * When one of these objects is mutated within a producer, its prototype is preserved between copies. * Source: https://immerjs.github.io/immer/complex-objects/ */ [immerable] = true /** Index & data column names (matrix of column names to support multi-level headers). */ private _columnNames: ColumnNames /** Column type information for the (Pandas) index columns. * * Index columns only exist if the DataFrame was created based on a Pandas DataFrame. */ private _pandasIndexColumnTypes: ArrowType[] /** Column type information for the data columns. */ private _dataColumnTypes: ArrowType[] /** Column type information for all columns. * * This is a concatenation of the index and data column types * and needs to be updated whenever the index or data columns * change. */ private _columnTypes: ArrowType[] /** Cell values of the (Pandas) index columns. * * Index columns only exist if the DataFrame was created based on a Pandas DataFrame. */ private _pandasIndexData: IndexData /** Cell values of the data columns. */ private _data: Data /** [optional] Pandas Styler data. This will be defined if the user styled the dataframe. */ private readonly _styler?: PandasStylerData /** Number of bytes in the Arrow IPC bytes. */ private _num_bytes: number constructor(element: IArrow) { const { pandasIndexData, columnNames, data, dataColumnTypes, pandasIndexColumnTypes, } = parseArrowIpcBytes(element.data) // Load styler data (if provided): const styler = element.styler ? parseStyler(element.styler as StylerProto) : undefined // The assignment is done below to avoid partially populating the instance // if an error is thrown. this._pandasIndexData = pandasIndexData this._columnNames = columnNames this._data = data this._dataColumnTypes = dataColumnTypes this._pandasIndexColumnTypes = pandasIndexColumnTypes this._styler = styler this._num_bytes = element.data?.length ?? 0 this._columnTypes = this._pandasIndexColumnTypes.concat( this._dataColumnTypes ) } /** Matrix of column names of the index- & data-columns. * * This is a matrix to support multi-level headers. * Index columns only exist if the DataFrame was created based on a Pandas DataFrame. */ public get columnNames(): ColumnNames { return this._columnNames } /** List of column types for every index- & data-column. */ public get columnTypes(): ArrowType[] { return this._columnTypes } /** Pandas Styler data. This will only be defined if the user styled the dataframe * via Pandas Styler. */ public get styler(): PandasStylerData | undefined { return this._styler } /** Dimensions of the DataFrame. */ public get dimensions(): DataFrameDimensions { const numIndexColumns = this._pandasIndexColumnTypes.length || 0 const numHeaderRows = this._columnNames.length || 1 const numDataRows = this._data.numRows || 0 const numDataColumns = this._dataColumnTypes.length || 0 const numRows = numHeaderRows + numDataRows const numColumns = numIndexColumns + numDataColumns return { numHeaderRows, numIndexColumns, numDataRows, numDataColumns, numRows, numColumns, } } /** * A hash that identifies the underlying data. * * This hash is based on various descriptive information * but is not 100% guaranteed to be unique. */ public get hash(): string { // Its important to calculate this at runtime // since some of the data can change when `add_rows` is // used. const valuesToHash = [ this.dimensions.numColumns, this.dimensions.numDataColumns, this.dimensions.numDataRows, this.dimensions.numIndexColumns, this.dimensions.numHeaderRows, this.dimensions.numRows, this._num_bytes, this._columnNames, ] return hashString(valuesToHash.join("-")) } /** Return a single cell from an (Pandas) index- or data-column of the DataFrame. * * @param rowIndex - The row index of the cell (0 is the first data or index row excluding header rows) * @param columnIndex - The column index of the cell (0 is the first data or index column) * @returns The cell's content, type, and field. */ public getCell(rowIndex: number, columnIndex: number): DataFrameCell { const { numIndexColumns, numDataRows, numColumns } = this.dimensions if (rowIndex < 0 || rowIndex >= numDataRows) { throw new Error(`Row index is out of range: ${rowIndex}`) } if (columnIndex < 0 || columnIndex >= numColumns) { throw new Error(`Column index is out of range: ${columnIndex}`) } const isIndexCell = columnIndex < numIndexColumns if (isIndexCell) { const contentType = this._pandasIndexColumnTypes[columnIndex] const content = this.getIndexValue(rowIndex, columnIndex) return { type: DataFrameCellType.INDEX, content, contentType, field: contentType.arrowField, } } const dataColumnIndex = columnIndex - numIndexColumns const contentType = this._dataColumnTypes[dataColumnIndex] const content = this.getDataValue(rowIndex, dataColumnIndex) return { type: DataFrameCellType.DATA, content, contentType, field: contentType.arrowField, } } /** Get the raw value of an index cell. * * Index columns only exist if the DataFrame was created based on a Pandas DataFrame. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. private getIndexValue(rowIndex: number, columnIndex: number): any { const index = this._pandasIndexData[columnIndex] const value = index instanceof Vector ? index.get(rowIndex) : index[rowIndex] return value } /** Get the raw value of a data cell. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Replace 'any' with a more specific type. private getDataValue(rowIndex: number, columnIndex: number): any { return this._data.getChildAt(columnIndex)?.get(rowIndex) } /** * Add the contents of another table (data + indexes) to this table. * Extra columns will not be created. */ public addRows(other: Quiver): Quiver { if (this.styler || other.styler) { throw new Error(` Unsupported operation. \`add_rows()\` does not support Pandas Styler objects. If you do not need the Styler's styles, try passing the \`.data\` attribute of the Styler object instead to concatenate just the underlying dataframe. For example: \`\`\` st.add_rows(my_styler.data) \`\`\` `) } // Don't do anything if the incoming DataFrame is empty. if (other.dimensions.numDataRows === 0) { return produce(this, (draft: Quiver) => draft) } // We need to handle this separately, as columns need to be reassigned. // We don't concatenate columns in the general case. if (this.dimensions.numDataRows === 0) { return produce(other, (draft: Quiver) => draft) } const { index: newIndex, data: newData, indexTypes: newIndexTypes, dataTypes: newDataTypes, } = concat( this._dataColumnTypes, this._pandasIndexColumnTypes, this._pandasIndexData, this._data, other._dataColumnTypes, other._pandasIndexColumnTypes, other._pandasIndexData, other._data ) // If we get here, then we had no concatenation errors. return produce(this, (draft: Quiver) => { draft._pandasIndexData = newIndex draft._data = newData draft._pandasIndexColumnTypes = newIndexTypes draft._dataColumnTypes = newDataTypes draft._columnTypes = newIndexTypes.concat(newDataTypes) }) } } /** Parse Pandas styler information from proto. */ function parseStyler(pandasStyler: StylerProto): PandasStylerData { return { uuid: pandasStyler.uuid, caption: pandasStyler.caption, cssStyles: pandasStyler.styles, cssId: pandasStyler.uuid ? `T_${pandasStyler.uuid}` : undefined, // Recursively create a new Quiver instance for Styler's display values. // This values will be used for rendering the DataFrame, while the original values // will be used for sorting, etc. displayValues: new Quiver({ data: pandasStyler.displayValues }), } }
99
src
/content/streamlit_public_repos/streamlit/frontend/lib/src/dataframes/arrowTypeUtils.test.ts
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Binary, Bool, Decimal, Duration, Field, Float64, Int64, LargeBinary, LargeUtf8, List, makeVector, Null, Time, Timestamp, TimeUnit, Utf8, } from "apache-arrow" import { Quiver } from "~lib/dataframes/Quiver" import { CATEGORICAL, DATE, DECIMAL, DICTIONARY, FLOAT64, INT64, INTERVAL_DATETIME64, INTERVAL_FLOAT64, INTERVAL_INT64, INTERVAL_UINT64, PERIOD, RANGE, TIMEDELTA, UINT64, UNICODE, } from "~lib/mocks/arrow" import { ArrowType, convertVectorToList, DataFrameCellType, getPandasTypeName, getTimezone, isBooleanType, isBytesType, isDatetimeType, isDecimalType, isDurationType, isEmptyType, isFloatType, isIntegerType, isIntervalType, isListType, isNumericType, isPeriodType, isRangeIndexType, isStringType, isTimeType, isUnsignedIntegerType, } from "./arrowTypeUtils" describe("getTypeName", () => { describe("uses numpy_type", () => { test("period", () => { const mockElement = { data: PERIOD } const q = new Quiver(mockElement) const dataType = q.columnTypes[1] expect(getPandasTypeName(dataType)).toEqual("period[Y-DEC]") }) test("decimal", () => { const mockElement = { data: DECIMAL } const q = new Quiver(mockElement) const firstColumnType = q.columnTypes[1] expect(getPandasTypeName(firstColumnType)).toEqual("decimal") }) test("timedelta", () => { const mockElement = { data: TIMEDELTA } const q = new Quiver(mockElement) const firstColumnType = q.columnTypes[1] expect(getPandasTypeName(firstColumnType)).toEqual("timedelta64[ns]") }) test("dictionary", () => { const mockElement = { data: DICTIONARY } const q = new Quiver(mockElement) const firstColumnType = q.columnTypes[1] expect(getPandasTypeName(firstColumnType)).toEqual("object") }) test("interval datetime64[ns]", () => { const mockElement = { data: INTERVAL_DATETIME64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual( "interval[datetime64[ns], right]" ) }) test("interval float64", () => { const mockElement = { data: INTERVAL_FLOAT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("interval[float64, right]") }) test("interval int64", () => { const mockElement = { data: INTERVAL_INT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("interval[int64, right]") }) test("interval uint64", () => { const mockElement = { data: INTERVAL_UINT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("interval[uint64, right]") }) }) describe("uses pandas_type", () => { test("categorical", () => { const mockElement = { data: CATEGORICAL } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("categorical") }) test("date", () => { const mockElement = { data: DATE } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("datetime") }) test("float64", () => { const mockElement = { data: FLOAT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("float64") }) test("int64", () => { const mockElement = { data: INT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("int64") }) test("range", () => { const mockElement = { data: RANGE } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("range") }) test("uint64", () => { const mockElement = { data: UINT64 } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("uint64") }) test("unicode", () => { const mockElement = { data: UNICODE } const q = new Quiver(mockElement) const indexType = q.columnTypes[0] expect(getPandasTypeName(indexType)).toEqual("unicode") }) }) it("returns the correct type name for PERIOD", () => { const arrowType: ArrowType = { type: DataFrameCellType.DATA, arrowField: new Field("c1", new Utf8(), true), pandasType: { field_name: "c1", name: "c1", pandas_type: "period[M]", numpy_type: "period[M]", metadata: null, }, categoricalOptions: undefined, } expect(getPandasTypeName(arrowType)).toBe("period[M]") }) it("returns the correct type name for DECIMAL", () => { const arrowType: ArrowType = { type: DataFrameCellType.DATA, arrowField: new Field("c1", new Utf8(), true), pandasType: { field_name: "c1", name: "c1", pandas_type: "decimal", numpy_type: "object", metadata: null, }, categoricalOptions: undefined, } expect(getPandasTypeName(arrowType)).toBe("decimal") }) }) describe("isIntegerType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "int16", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "range", numpy_type: "range", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "uint64", numpy_type: "uint64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Bool(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bool", numpy_type: "bool", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "interval[int64, both]", metadata: null, }, }, false, ], ])( "interprets %s as integer type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isIntegerType(arrowType)).toEqual(expected) } ) }) describe("isUnsignedIntegerType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "uint64", numpy_type: "uint64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "uint16", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bool", numpy_type: "bool", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "categorical", numpy_type: "uint8", metadata: null, }, }, false, ], ])( "interprets %s as unsigned integer type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isUnsignedIntegerType(arrowType)).toEqual(expected) } ) }) describe("isBooleanType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Bool(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bool", numpy_type: "bool", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Bool(), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "bool", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], ])( "interprets %s as boolean type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isBooleanType(arrowType)).toEqual(expected) } ) }) describe("getTimezone", () => { it.each([ [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new Timestamp(TimeUnit.SECOND, "UTC"), true ), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: { timezone: "UTC" }, }, }, "UTC", ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: { timezone: "America/New_York" }, }, }, "America/New_York", ], [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new Timestamp(TimeUnit.SECOND, "America/New_York"), true ), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: null, }, }, "America/New_York", ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: {}, }, }, undefined, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: {}, }, }, undefined, ], ])( "returns correct timezone for %o", (arrowType: ArrowType, expected: string | undefined) => { expect(getTimezone(arrowType)).toEqual(expected) } ) }) describe("isFloatType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "float32", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Bool(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bool", numpy_type: "bool", metadata: null, }, }, false, ], ])( "interprets %s as float type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isFloatType(arrowType)).toEqual(expected) } ) }) describe("isDecimalType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Decimal(10, 2), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "decimal", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], ])( "interprets %s as decimal type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isDecimalType(arrowType)).toEqual(expected) } ) }) describe("isNumericType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Decimal(10, 2), true), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "decimal", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "uint64", numpy_type: "uint64", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Bool(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bool", numpy_type: "bool", metadata: null, }, }, false, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], ])( "interprets %s as numeric type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isNumericType(arrowType)).toEqual(expected) } ) }) describe("convertVectorToList", () => { it("converts vector to list", () => { const vector = makeVector(Int32Array.from([1, 2, 3])) const expected = [1, 2, 3] expect(convertVectorToList(vector)).toEqual(expected) }) }) describe("isDatetimeType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[s]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], ])( "interprets %s as datetime type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isDatetimeType(arrowType)).toEqual(expected) } ) }) describe("isTimeType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Time(TimeUnit.SECOND, 64), true), pandasType: { field_name: "test", name: "test", pandas_type: "time", numpy_type: "time", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Time(TimeUnit.SECOND, 64), true), pandasType: { field_name: "test", name: "test", pandas_type: "time", numpy_type: "time", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: null, }, }, false, ], ])( "interprets %s as time type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isTimeType(arrowType)).toEqual(expected) } ) }) describe("isListType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new List(new Field("test", new Int64(), true)), true ), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "list[int64]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new List(new Field("test", new Utf8(), true)), true ), pandasType: { field_name: "test", name: "test", pandas_type: "object", numpy_type: "list[str]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Timestamp(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "datetime", numpy_type: "datetime64[ns]", metadata: null, }, }, false, ], ])( "interprets %s as list type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isListType(arrowType)).toEqual(expected) } ) }) describe("isDurationType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Duration(TimeUnit.SECOND), true), pandasType: { field_name: "test", name: "test", pandas_type: "timedelta", numpy_type: "timedelta64[ns]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Float64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "float64", numpy_type: "float64", metadata: null, }, }, false, ], ])( "interprets %s as duration type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isDurationType(arrowType)).toEqual(expected) } ) }) describe("isPeriodType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new Int64(), true, new Map([["ARROW:extension:name", "period"]]) ), pandasType: { field_name: "test", name: "test", pandas_type: "period[M]", numpy_type: "period[M]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], ])( "interprets %s as period type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isPeriodType(arrowType)).toEqual(expected) } ) }) describe("isBytesType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Binary(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bytes", numpy_type: "bytes", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new LargeBinary(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bytes", numpy_type: "bytes", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], ])( "interprets %s as bytes type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isBytesType(arrowType)).toEqual(expected) } ) }) describe("isStringType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new LargeUtf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "large_string[pyarrow]", numpy_type: "object", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Binary(), true), pandasType: { field_name: "test", name: "test", pandas_type: "bytes", numpy_type: "bytes", metadata: null, }, }, false, ], ])( "interprets %s as string type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isStringType(arrowType)).toEqual(expected) } ) }) describe("isEmptyType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Null(), true), pandasType: { field_name: "test", name: "test", pandas_type: "empty", numpy_type: "object", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Utf8(), true), pandasType: { field_name: "test", name: "test", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, false, ], ])( "interprets %s as empty type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isEmptyType(arrowType)).toEqual(expected) } ) }) describe("isIntervalType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field( "test", new Int64(), true, new Map([["ARROW:extension:name", "interval"]]) ), pandasType: { field_name: "test", name: "test", pandas_type: "interval", numpy_type: "interval[int64]", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], ])( "interprets %s as interval type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isIntervalType(arrowType)).toEqual(expected) } ) }) describe("isRangeIndexType", () => { it.each([ [undefined, false], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "range", numpy_type: "range", metadata: null, }, }, true, ], [ { type: DataFrameCellType.DATA, arrowField: new Field("test", new Int64(), true), pandasType: { field_name: "test", name: "test", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, false, ], ])( "interprets %s as range index type: %s", (arrowType: ArrowType | undefined, expected: boolean) => { expect(isRangeIndexType(arrowType)).toEqual(expected) } ) })