diff --git a/.github/workflows/pull-compliance.yml b/.github/workflows/pull-compliance.yml
index c93aed05f4c81..91f3329afbcc8 100644
--- a/.github/workflows/pull-compliance.yml
+++ b/.github/workflows/pull-compliance.yml
@@ -158,7 +158,7 @@ jobs:
go-version-file: go.mod
check-latest: true
- run: make deps-backend deps-tools
- - run: make --always-make checks-backend # ensure the "go-licenses" make target runs
+ - run: make checks-backend
frontend:
if: needs.files-changed.outputs.frontend == 'true' || needs.files-changed.outputs.actions == 'true'
diff --git a/.github/workflows/pull-db-tests.yml b/.github/workflows/pull-db-tests.yml
index d168c2ecc5fab..0ee2c9f161c46 100644
--- a/.github/workflows/pull-db-tests.yml
+++ b/.github/workflows/pull-db-tests.yml
@@ -47,9 +47,16 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
+ - uses: pnpm/action-setup@v5
+ - uses: actions/setup-node@v6
+ with:
+ node-version-file: package.json
+ cache: pnpm
+ cache-dependency-path: pnpm-lock.yaml
- name: Add hosts to /etc/hosts
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 pgsql ldap minio" | sudo tee -a /etc/hosts'
- run: make deps-backend
+ - run: make svg
- run: make backend
env:
TAGS: bindata
@@ -76,7 +83,14 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
+ - uses: pnpm/action-setup@v5
+ - uses: actions/setup-node@v6
+ with:
+ node-version-file: package.json
+ cache: pnpm
+ cache-dependency-path: pnpm-lock.yaml
- run: make deps-backend
+ - run: make svg
- run: GOEXPERIMENT='' make backend
env:
TAGS: bindata gogit sqlite sqlite_unlock_notify
@@ -135,9 +149,16 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
+ - uses: pnpm/action-setup@v5
+ - uses: actions/setup-node@v6
+ with:
+ node-version-file: package.json
+ cache: pnpm
+ cache-dependency-path: pnpm-lock.yaml
- name: Add hosts to /etc/hosts
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 minio devstoreaccount1.azurite.local mysql elasticsearch meilisearch smtpimap" | sudo tee -a /etc/hosts'
- run: make deps-backend
+ - run: make svg
- run: make backend
env:
TAGS: bindata
@@ -190,9 +211,16 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
+ - uses: pnpm/action-setup@v5
+ - uses: actions/setup-node@v6
+ with:
+ node-version-file: package.json
+ cache: pnpm
+ cache-dependency-path: pnpm-lock.yaml
- name: Add hosts to /etc/hosts
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 mysql elasticsearch smtpimap" | sudo tee -a /etc/hosts'
- run: make deps-backend
+ - run: make svg
- run: make backend
env:
TAGS: bindata
@@ -231,9 +259,16 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
+ - uses: pnpm/action-setup@v5
+ - uses: actions/setup-node@v6
+ with:
+ node-version-file: package.json
+ cache: pnpm
+ cache-dependency-path: pnpm-lock.yaml
- name: Add hosts to /etc/hosts
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 mssql devstoreaccount1.azurite.local" | sudo tee -a /etc/hosts'
- run: make deps-backend
+ - run: make svg
- run: make backend
env:
TAGS: bindata
diff --git a/.gitignore b/.gitignore
index 019ee94c7a3bd..45f281f25b192 100644
--- a/.gitignore
+++ b/.gitignore
@@ -83,7 +83,11 @@ cpu.out
/public/assets/js
/public/assets/css
/public/assets/fonts
+/public/assets/img/svg
/public/assets/licenses.txt
+/options/fileicon/material-icon-rules.json
+/options/fileicon/material-icon-svgs.json
+/assets/go-licenses.json
/vendor
/VERSION
/.air
diff --git a/Makefile b/Makefile
index 8c73dc350d4da..5bdfec68da2d7 100644
--- a/Makefile
+++ b/Makefile
@@ -121,7 +121,9 @@ BINDATA_DEST_WILDCARD := modules/migration/bindata.* modules/public/bindata.* mo
GENERATED_GO_DEST := modules/charset/invisible_gen.go modules/charset/ambiguous_gen.go
-SVG_DEST_DIR := public/assets/img/svg
+SVG_SOURCES := $(wildcard web_src/svg/*.svg) tools/generate-svg.ts tools/generate-svg-vscode-extensions.json public/assets/img/gitea.svg
+SVG_DEST := public/assets/img/svg
+SVG_DEST_ENTRIES := public/assets/img/svg options/fileicon/material-icon-rules.json options/fileicon/material-icon-svgs.json
AIR_TMP_DIR := .air
@@ -196,6 +198,7 @@ clean-all: clean ## delete backend, frontend and integration files
.PHONY: clean
clean: ## delete backend and integration files
rm -rf $(EXECUTABLE) $(EXECUTABLE_E2E) $(DIST) $(BINDATA_DEST_WILDCARD) \
+ $(SVG_DEST_ENTRIES) $(GO_LICENSE_FILE) \
integrations*.test \
tests/integration/gitea-integration-* \
tests/integration/indexers-* \
@@ -260,7 +263,7 @@ swagger-validate: ## check if the swagger spec is valid
checks: checks-frontend checks-backend ## run various consistency checks
.PHONY: checks-frontend
-checks-frontend: lockfile-check svg-check ## check frontend files
+checks-frontend: lockfile-check ## check frontend files
.PHONY: checks-backend
checks-backend: tidy-check swagger-check fmt-check swagger-validate security-check ## check backend files
@@ -284,12 +287,12 @@ lint-backend: lint-go lint-go-gitea-vet lint-editorconfig ## lint backend files
lint-backend-fix: lint-go-fix lint-go-gitea-vet lint-editorconfig ## lint backend files and fix issues
.PHONY: lint-js
-lint-js: node_modules ## lint js and ts files
+lint-js: node_modules $(SVG_DEST) ## lint js and ts files
pnpm exec eslint --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY) $(ESLINT_FILES)
pnpm exec vue-tsc
.PHONY: lint-js-fix
-lint-js-fix: node_modules ## lint js and ts files and fix issues
+lint-js-fix: node_modules $(SVG_DEST) ## lint js and ts files and fix issues
pnpm exec eslint --color --max-warnings=0 --concurrency $(ESLINT_CONCURRENCY) $(ESLINT_FILES) --fix
pnpm exec vue-tsc
@@ -351,7 +354,7 @@ lint-actions: ## lint action workflow files
$(GO) run $(ACTIONLINT_PACKAGE)
.PHONY: lint-templates
-lint-templates: .venv node_modules ## lint template files
+lint-templates: .venv node_modules $(SVG_DEST) ## lint template files
@node tools/lint-templates-svg.ts
@uv run --frozen djlint $(shell find templates -type f -iname '*.tmpl')
@@ -372,7 +375,7 @@ watch: ## watch everything and continuously rebuild
@bash tools/watch.sh
.PHONY: watch-frontend
-watch-frontend: node_modules ## start vite dev server for frontend
+watch-frontend: node_modules $(SVG_DEST) ## start vite dev server for frontend
NODE_ENV=development pnpm exec vite --logLevel $(FRONTEND_DEV_LOG_LEVEL)
.PHONY: watch-backend
@@ -423,7 +426,6 @@ unit-test-coverage:
tidy: ## run go mod tidy
$(eval MIN_GO_VERSION := $(shell grep -Eo '^go\s+[0-9]+\.[0-9.]+' go.mod | cut -d' ' -f2))
$(GO) mod tidy -compat=$(MIN_GO_VERSION)
- @$(MAKE) --no-print-directory $(GO_LICENSE_FILE)
vendor: go.mod go.sum
$(GO) mod vendor
@@ -431,7 +433,7 @@ vendor: go.mod go.sum
.PHONY: tidy-check
tidy-check: tidy
- @diff=$$(git diff --color=always go.mod go.sum $(GO_LICENSE_FILE)); \
+ @diff=$$(git diff --color=always go.mod go.sum); \
if [ -n "$$diff" ]; then \
echo "Please run 'make tidy' and commit the result:"; \
printf "%s" "$${diff}"; \
@@ -775,7 +777,7 @@ update-py: node_modules ## update py dependencies
.PHONY: vite
vite: $(FRONTEND_DEST) ## build vite files
-$(FRONTEND_DEST): $(FRONTEND_SOURCES) $(FRONTEND_CONFIGS) pnpm-lock.yaml
+$(FRONTEND_DEST): $(FRONTEND_SOURCES) $(FRONTEND_CONFIGS) pnpm-lock.yaml $(SVG_DEST) $(GO_LICENSE_FILE)
@$(MAKE) -s node_modules
@rm -rf $(FRONTEND_DEST_ENTRIES)
@echo "Running vite build..."
@@ -783,19 +785,12 @@ $(FRONTEND_DEST): $(FRONTEND_SOURCES) $(FRONTEND_CONFIGS) pnpm-lock.yaml
@touch $(FRONTEND_DEST)
.PHONY: svg
-svg: node_modules ## build svg files
- rm -rf $(SVG_DEST_DIR)
- node tools/generate-svg.ts
+svg: $(SVG_DEST) ## generate svg and material-icon assets
-.PHONY: svg-check
-svg-check: svg
- @git add $(SVG_DEST_DIR)
- @diff=$$(git diff --color=always --cached $(SVG_DEST_DIR)); \
- if [ -n "$$diff" ]; then \
- echo "Please run 'make svg' and 'git add $(SVG_DEST_DIR)' and commit the result:"; \
- printf "%s" "$${diff}"; \
- exit 1; \
- fi
+$(SVG_DEST): $(SVG_SOURCES) pnpm-lock.yaml | node_modules
+ rm -rf $(SVG_DEST_ENTRIES)
+ node tools/generate-svg.ts
+ @touch $(SVG_DEST)
.PHONY: lockfile-check
lockfile-check:
diff --git a/assets/go-licenses.json b/assets/go-licenses.json
deleted file mode 100644
index 61bf76702c3a6..0000000000000
--- a/assets/go-licenses.json
+++ /dev/null
@@ -1,1352 +0,0 @@
-[
- {
- "name": "cloud.google.com/go/compute/metadata",
- "path": "cloud.google.com/go/compute/metadata/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "code.gitea.io/actions-proto-go",
- "path": "code.gitea.io/actions-proto-go/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2022 The Gitea Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "code.gitea.io/gitea/modules/lfs",
- "path": "code.gitea.io/gitea/modules/lfs/LICENSE",
- "licenseText": "Copyright (c) 2016 The Gitea Authors\nCopyright (c) GitHub, Inc. and LFS Test Server contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "code.gitea.io/sdk/gitea",
- "path": "code.gitea.io/sdk/gitea/LICENSE",
- "licenseText": "Copyright (c) 2016 The Gitea Authors\nCopyright (c) 2014 The Gogs Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "codeberg.org/gusted/mcaptcha",
- "path": "codeberg.org/gusted/mcaptcha/LICENSE",
- "licenseText": "Copyright © 2022 William Zijl\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "connectrpc.com/connect",
- "path": "connectrpc.com/connect/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2021-2025 The Connect Authors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "dario.cat/mergo",
- "path": "dario.cat/mergo/LICENSE",
- "licenseText": "Copyright (c) 2013 Dario Castañé. All rights reserved.\nCopyright (c) 2012 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "filippo.io/edwards25519",
- "path": "filippo.io/edwards25519/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "gitea.com/go-chi/binding",
- "path": "gitea.com/go-chi/binding/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "gitea.com/go-chi/cache",
- "path": "gitea.com/go-chi/cache/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "gitea.com/go-chi/captcha",
- "path": "gitea.com/go-chi/captcha/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "gitea.com/go-chi/session",
- "path": "gitea.com/go-chi/session/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "gitea.com/lunny/dingtalk_webhook",
- "path": "gitea.com/lunny/dingtalk_webhook/LICENSE",
- "licenseText": "Copyright (c) 2016 The Gitea Authors\nCopyright (c) 2015 The Gogs Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "gitea.com/lunny/levelqueue",
- "path": "gitea.com/lunny/levelqueue/LICENSE",
- "licenseText": "Copyright (c) 2019 Lunny Xiao\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/42wim/httpsig",
- "path": "github.com/42wim/httpsig/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2018, go-fed\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/42wim/sshsig",
- "path": "github.com/42wim/sshsig/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/Azure/azure-sdk-for-go/sdk/azcore",
- "path": "github.com/Azure/azure-sdk-for-go/sdk/azcore/LICENSE.txt",
- "licenseText": "MIT License\n\nCopyright (c) Microsoft Corporation.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE\n"
- },
- {
- "name": "github.com/Azure/azure-sdk-for-go/sdk/internal",
- "path": "github.com/Azure/azure-sdk-for-go/sdk/internal/LICENSE.txt",
- "licenseText": "MIT License\n\nCopyright (c) Microsoft Corporation.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE\n"
- },
- {
- "name": "github.com/Azure/azure-sdk-for-go/sdk/storage/azblob",
- "path": "github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/LICENSE.txt",
- "licenseText": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE"
- },
- {
- "name": "github.com/Azure/go-ntlmssp",
- "path": "github.com/Azure/go-ntlmssp/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2016 Microsoft\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/DataDog/zstd",
- "path": "github.com/DataDog/zstd/LICENSE",
- "licenseText": "Simplified BSD License\n\nCopyright (c) 2016, Datadog \u003cinfo@datadoghq.com\u003e\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/ProtonMail/go-crypto",
- "path": "github.com/ProtonMail/go-crypto/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/PuerkitoBio/goquery",
- "path": "github.com/PuerkitoBio/goquery/LICENSE",
- "licenseText": "Copyright (c) 2012-2021, Martin Angers \u0026 Contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n* 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.\n\n* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS 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.\n"
- },
- {
- "name": "github.com/RoaringBitmap/roaring/v2",
- "path": "github.com/RoaringBitmap/roaring/v2/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2016 by the authors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n================================================================================\n\nPortions of runcontainer.go are from the Go standard library, which is licensed\nunder:\n\nCopyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/STARRY-S/zip",
- "path": "github.com/STARRY-S/zip/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2023, Starry\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/SaveTheRbtz/zstd-seekable-format-go/pkg",
- "path": "github.com/SaveTheRbtz/zstd-seekable-format-go/pkg/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2022 Alexey Ivanov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/alecthomas/chroma/v2",
- "path": "github.com/alecthomas/chroma/v2/COPYING",
- "licenseText": "Copyright (C) 2017 Alec Thomas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/andybalholm/brotli",
- "path": "github.com/andybalholm/brotli/LICENSE",
- "licenseText": "Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/andybalholm/brotli/flate",
- "path": "github.com/andybalholm/brotli/flate/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/andybalholm/cascadia",
- "path": "github.com/andybalholm/cascadia/LICENSE",
- "licenseText": "Copyright (c) 2011 Andy Balholm. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/anmitsu/go-shlex",
- "path": "github.com/anmitsu/go-shlex/LICENSE",
- "licenseText": "Copyright (c) anmitsu \u003canmitsu.s@gmail.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2",
- "path": "github.com/aws/aws-sdk-go-v2/LICENSE.txt",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2/credentials",
- "path": "github.com/aws/aws-sdk-go-v2/credentials/LICENSE.txt",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2/internal/configsources",
- "path": "github.com/aws/aws-sdk-go-v2/internal/configsources/LICENSE.txt",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2/internal/endpoints/v2",
- "path": "github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/LICENSE.txt",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2/internal/sync/singleflight",
- "path": "github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/aws/aws-sdk-go-v2/service/codecommit",
- "path": "github.com/aws/aws-sdk-go-v2/service/codecommit/LICENSE.txt",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/aws/smithy-go",
- "path": "github.com/aws/smithy-go/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n"
- },
- {
- "name": "github.com/aws/smithy-go/internal/sync/singleflight",
- "path": "github.com/aws/smithy-go/internal/sync/singleflight/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/aymerick/douceur",
- "path": "github.com/aymerick/douceur/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Aymerick JEHANNE\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/beorn7/perks",
- "path": "github.com/beorn7/perks/LICENSE",
- "licenseText": "Copyright (C) 2013 Blake Mizerany\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/bits-and-blooms/bitset",
- "path": "github.com/bits-and-blooms/bitset/LICENSE",
- "licenseText": "Copyright (c) 2014 Will Fitzgerald. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/blakesmith/ar",
- "path": "github.com/blakesmith/ar/COPYING",
- "licenseText": "Copyright (c) 2013 Blake Smith \u003cblakesmith0@gmail.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n"
- },
- {
- "name": "github.com/blevesearch/bleve/v2",
- "path": "github.com/blevesearch/bleve/v2/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/bleve_index_api",
- "path": "github.com/blevesearch/bleve_index_api/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/geo",
- "path": "github.com/blevesearch/geo/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/blevesearch/go-porterstemmer",
- "path": "github.com/blevesearch/go-porterstemmer/LICENSE",
- "licenseText": "Copyright (c) 2013 Charles Iliya Krempeaux \u003ccharles@reptile.ca\u003e :: http://changelog.ca/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/blevesearch/gtreap",
- "path": "github.com/blevesearch/gtreap/LICENSE",
- "licenseText": "Copyright (C) 2012 Steve Yen\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
- },
- {
- "name": "github.com/blevesearch/mmap-go",
- "path": "github.com/blevesearch/mmap-go/LICENSE",
- "licenseText": "Copyright (c) 2011, Evan Shaw \u003cedsrzf@gmail.com\u003e\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the copyright holder nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL \u003cCOPYRIGHT HOLDER\u003e BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/blevesearch/scorch_segment_api/v2",
- "path": "github.com/blevesearch/scorch_segment_api/v2/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/segment",
- "path": "github.com/blevesearch/segment/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/snowballstem",
- "path": "github.com/blevesearch/snowballstem/COPYING",
- "licenseText": "Copyright (c) 2001, Dr Martin Porter\nCopyright (c) 2004,2005, Richard Boulton\nCopyright (c) 2013, Yoshiki Shibukawa\nCopyright (c) 2006,2007,2009,2010,2011,2014-2019, Olly Betts\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n 3. Neither the name of the Snowball project nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/blevesearch/upsidedown_store_api",
- "path": "github.com/blevesearch/upsidedown_store_api/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/vellum",
- "path": "github.com/blevesearch/vellum/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/vellum/levenshtein",
- "path": "github.com/blevesearch/vellum/levenshtein/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n"
- },
- {
- "name": "github.com/blevesearch/zapx/v11",
- "path": "github.com/blevesearch/zapx/v11/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/zapx/v12",
- "path": "github.com/blevesearch/zapx/v12/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/zapx/v13",
- "path": "github.com/blevesearch/zapx/v13/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/zapx/v14",
- "path": "github.com/blevesearch/zapx/v14/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/zapx/v15",
- "path": "github.com/blevesearch/zapx/v15/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/blevesearch/zapx/v16",
- "path": "github.com/blevesearch/zapx/v16/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/bmatcuk/doublestar/v4",
- "path": "github.com/bmatcuk/doublestar/v4/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Bob Matcuk\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/bodgit/plumbing",
- "path": "github.com/bodgit/plumbing/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2019, Matt Dainty\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/bodgit/sevenzip",
- "path": "github.com/bodgit/sevenzip/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2020, Matt Dainty\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/bodgit/windows",
- "path": "github.com/bodgit/windows/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2020, Matt Dainty\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/bohde/codel",
- "path": "github.com/bohde/codel/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2018, Rowan Bohde\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/boombuler/barcode",
- "path": "github.com/boombuler/barcode/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Florian Sundermann\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/bradfitz/gomemcache",
- "path": "github.com/bradfitz/gomemcache/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/buildkite/terminal-to-html/v3",
- "path": "github.com/buildkite/terminal-to-html/v3/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2019 Keith Pitt, Tim Lucas, Michael Pearson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/caddyserver/certmagic",
- "path": "github.com/caddyserver/certmagic/LICENSE.txt",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/caddyserver/zerossl",
- "path": "github.com/caddyserver/zerossl/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2024 Matthew Holt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
- },
- {
- "name": "github.com/cention-sany/utf7",
- "path": "github.com/cention-sany/utf7/LICENSE",
- "licenseText": "Copyright (c) 2013 The Go-IMAP Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\n * Neither the name of the go-imap project nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/cespare/xxhash/v2",
- "path": "github.com/cespare/xxhash/v2/LICENSE.txt",
- "licenseText": "Copyright (c) 2016 Caleb Spare\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/charmbracelet/git-lfs-transfer",
- "path": "github.com/charmbracelet/git-lfs-transfer/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2022-2023 Charmbracelet, Inc\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/chi-middleware/proxy",
- "path": "github.com/chi-middleware/proxy/LICENSE",
- "licenseText": "Copyright (c) 2020 Lauris BH\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/clipperhouse/displaywidth",
- "path": "github.com/clipperhouse/displaywidth/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2025 Matt Sherman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/clipperhouse/uax29/v2",
- "path": "github.com/clipperhouse/uax29/v2/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2020 Matt Sherman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/cloudflare/circl",
- "path": "github.com/cloudflare/circl/LICENSE",
- "licenseText": "Copyright (c) 2019 Cloudflare. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Cloudflare nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n========================================================================\n\nCopyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/couchbase/go-couchbase",
- "path": "github.com/couchbase/go-couchbase/LICENSE",
- "licenseText": "Copyright (c) 2013 Couchbase, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/couchbase/gomemcached",
- "path": "github.com/couchbase/gomemcached/LICENSE",
- "licenseText": "Copyright (c) 2013 Dustin Sallings\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/couchbase/goutils",
- "path": "github.com/couchbase/goutils/LICENSE.txt",
- "licenseText": "Source code in this repository is licensed under various licenses. The\nBusiness Source License 1.1 (BSL) is one such license. Each file indicates in\na section at the beginning of the file the name of the license that applies to\nit. All licenses used in this repository can be found in the top-level\nlicenses directory.\n"
- },
- {
- "name": "github.com/cpuguy83/go-md2man/v2",
- "path": "github.com/cpuguy83/go-md2man/v2/LICENSE.md",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Brian Goff\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/cyphar/filepath-securejoin",
- "path": "github.com/cyphar/filepath-securejoin/COPYING.md",
- "licenseText": "## COPYING ##\n\n`SPDX-License-Identifier: BSD-3-Clause AND MPL-2.0`\n\nThis project is made up of code licensed under different licenses. Which code\nyou use will have an impact on whether only one or both licenses apply to your\nusage of this library.\n\nNote that **each file** in this project individually has a code comment at the\nstart describing the license of that particular file -- this is the most\naccurate license information of this project; in case there is any conflict\nbetween this document and the comment at the start of a file, the comment shall\ntake precedence. The only purpose of this document is to work around [a known\ntechnical limitation of pkg.go.dev's license checking tool when dealing with\nnon-trivial project licenses][go75067].\n\n[go75067]: https://go.dev/issue/75067\n\n### `BSD-3-Clause` ###\n\nAt time of writing, the following files and directories are licensed under the\nBSD-3-Clause license:\n\n * `doc.go`\n * `join*.go`\n * `vfs.go`\n * `internal/consts/*.go`\n * `pathrs-lite/internal/gocompat/*.go`\n * `pathrs-lite/internal/kernelversion/*.go`\n\nThe text of the BSD-3-Clause license used by this project is the following (the\ntext is also available from the [`LICENSE.BSD`](./LICENSE.BSD) file):\n\n```\nCopyright (C) 2014-2015 Docker Inc \u0026 Go Authors. All rights reserved.\nCopyright (C) 2017-2024 SUSE LLC. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n```\n\n### `MPL-2.0` ###\n\nAll other files (unless otherwise marked) are licensed under the Mozilla Public\nLicense (version 2.0).\n\nThe text of the Mozilla Public License (version 2.0) is the following (the text\nis also available from the [`LICENSE.MPL-2.0`](./LICENSE.MPL-2.0) file):\n\n```\nMozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n (a) that the initial Contributor has attached the notice described\n in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines Covered Software with other material, in\n a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered\n Software; or\n\n (b) any new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n Form, as described in Section 3.1, and You must inform recipients of\n the Executable Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* Covered Software is provided under this License on an \"as is\" *\n* basis, without warranty of any kind, either expressed, implied, or *\n* statutory, including, without limitation, warranties that the *\n* Covered Software is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing. The entire risk as to the *\n* quality and performance of the Covered Software is with You. *\n* Should any Covered Software prove defective in any respect, You *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair, or correction. This disclaimer of warranty constitutes an *\n* essential part of this License. No use of any Covered Software is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Software as *\n* permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at https://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the Mozilla Public License, v. 2.0.\n```\n"
- },
- {
- "name": "github.com/davecgh/go-spew",
- "path": "github.com/davecgh/go-spew/LICENSE",
- "licenseText": "ISC License\n\nCopyright (c) 2012-2016 Dave Collins \u003cdave@davec.name\u003e\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
- },
- {
- "name": "github.com/dgryski/go-rendezvous",
- "path": "github.com/dgryski/go-rendezvous/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2017-2020 Damian Gryski \u003cdamian@gryski.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/dimiro1/reply",
- "path": "github.com/dimiro1/reply/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) Discourse\nCopyright (c) Claudemiro\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/dlclark/regexp2",
- "path": "github.com/dlclark/regexp2/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) Doug Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/dsnet/compress",
- "path": "github.com/dsnet/compress/LICENSE.md",
- "licenseText": "Copyright © 2015, Joe Tsai and The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n* Neither the copyright holder nor the names of its contributors may be used to\nendorse or promote products derived from this software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/dustin/go-humanize",
- "path": "github.com/dustin/go-humanize/LICENSE",
- "licenseText": "Copyright (c) 2005-2008 Dustin Sallings \u003cdustin@spy.net\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\u003chttp://www.opensource.org/licenses/mit-license.php\u003e\n"
- },
- {
- "name": "github.com/editorconfig/editorconfig-core-go/v2",
- "path": "github.com/editorconfig/editorconfig-core-go/v2/LICENSE",
- "licenseText": "MIT License\nCopyright (c) 2016 The Editorconfig Team\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/emersion/go-imap",
- "path": "github.com/emersion/go-imap/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2013 The Go-IMAP Authors\nCopyright (c) 2016 emersion\nCopyright (c) 2016 Proton Technologies AG\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/emersion/go-sasl",
- "path": "github.com/emersion/go-sasl/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2016 emersion\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/emirpasic/gods",
- "path": "github.com/emirpasic/gods/LICENSE",
- "licenseText": "Copyright (c) 2015, Emir Pasic\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------------------\n\nAVL Tree:\n\nCopyright (c) 2017 Benjamin Scher Purcell \u003cbenjapurcell@gmail.com\u003e\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
- },
- {
- "name": "github.com/ethantkoenig/rupture",
- "path": "github.com/ethantkoenig/rupture/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2018 Ethan Koenig\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/fatih/color",
- "path": "github.com/fatih/color/LICENSE.md",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2013 Fatih Arslan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/felixge/fgprof",
- "path": "github.com/felixge/fgprof/LICENSE.txt",
- "licenseText": "The MIT License (MIT)\nCopyright © 2020 Felix Geisendörfer \u003cfelix@felixge.de\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/fsnotify/fsnotify",
- "path": "github.com/fsnotify/fsnotify/LICENSE",
- "licenseText": "Copyright © 2012 The Go Authors. All rights reserved.\nCopyright © fsnotify Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or\n other materials provided with the distribution.\n* Neither the name of Google Inc. nor the names of its contributors may be used\n to endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/fxamacker/cbor/v2",
- "path": "github.com/fxamacker/cbor/v2/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2019-present Faye Amacker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
- },
- {
- "name": "github.com/git-lfs/pktline",
- "path": "github.com/git-lfs/pktline/LICENSE.md",
- "licenseText": "MIT License\n\nCopyright (c) 2014- GitHub, Inc. and Git LFS contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nNote that Git LFS uses components from other Go modules (included in `vendor/`)\nwhich are under different licenses. See those LICENSE files for details.\n"
- },
- {
- "name": "github.com/gliderlabs/ssh",
- "path": "github.com/gliderlabs/ssh/LICENSE",
- "licenseText": "Copyright (c) 2016 Glider Labs. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Glider Labs nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/go-asn1-ber/asn1-ber",
- "path": "github.com/go-asn1-ber/asn1-ber/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Michael Mitton (mmitton@gmail.com)\nPortions copyright (c) 2015-2016 go-asn1-ber Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/go-chi/chi/v5",
- "path": "github.com/go-chi/chi/v5/LICENSE",
- "licenseText": "Copyright (c) 2015-present Peter Kieltyka (https://github.com/pkieltyka), Google Inc.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/go-chi/cors",
- "path": "github.com/go-chi/cors/LICENSE",
- "licenseText": "Copyright (c) 2014 Olivier Poitrey \u003crs@dailymotion.com\u003e\nCopyright (c) 2016-Present https://github.com/go-chi authors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/go-co-op/gocron/v2",
- "path": "github.com/go-co-op/gocron/v2/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2014, 辣椒面\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/go-enry/go-enry/v2",
- "path": "github.com/go-enry/go-enry/v2/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/go-fed/httpsig",
- "path": "github.com/go-fed/httpsig/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2018, go-fed\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/go-git/gcfg",
- "path": "github.com/go-git/gcfg/LICENSE",
- "licenseText": "Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go\nAuthors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/go-git/go-billy/v5",
- "path": "github.com/go-git/go-billy/v5/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2017 Sourced Technologies S.L.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/go-git/go-git/v5",
- "path": "github.com/go-git/go-git/v5/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2018 Sourced Technologies, S.L.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/go-ini/ini",
- "path": "github.com/go-ini/ini/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright 2014 Unknwon\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/go-ldap/ldap/v3",
- "path": "github.com/go-ldap/ldap/v3/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Michael Mitton (mmitton@gmail.com)\nPortions copyright (c) 2015-2024 go-ldap Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/go-redsync/redsync/v4",
- "path": "github.com/go-redsync/redsync/v4/LICENSE",
- "licenseText": "Copyright (c) 2023, Mahmud Ridwan\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the Redsync nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/go-sql-driver/mysql",
- "path": "github.com/go-sql-driver/mysql/LICENSE",
- "licenseText": "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n (a) that the initial Contributor has attached the notice described\n in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines Covered Software with other material, in \n a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered\n Software; or\n\n (b) any new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n Form, as described in Section 3.1, and You must inform recipients of\n the Executable Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* Covered Software is provided under this License on an \"as is\" *\n* basis, without warranty of any kind, either expressed, implied, or *\n* statutory, including, without limitation, warranties that the *\n* Covered Software is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing. The entire risk as to the *\n* quality and performance of the Covered Software is with You. *\n* Should any Covered Software prove defective in any respect, You *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair, or correction. This disclaimer of warranty constitutes an *\n* essential part of this License. No use of any Covered Software is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Software as *\n* permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the Mozilla Public License, v. 2.0.\n"
- },
- {
- "name": "github.com/go-viper/mapstructure/v2",
- "path": "github.com/go-viper/mapstructure/v2/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2013 Mitchell Hashimoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/go-webauthn/webauthn",
- "path": "github.com/go-webauthn/webauthn/LICENSE",
- "licenseText": "Copyright (c) 2025 github.com/go-webauthn/webauthn authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
- },
- {
- "name": "github.com/go-webauthn/x",
- "path": "github.com/go-webauthn/x/LICENSE",
- "licenseText": "Copyright (c) 2021-2023 github.com/go-webauthn authors.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following\n disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
- },
- {
- "name": "github.com/go-webauthn/x/revoke",
- "path": "github.com/go-webauthn/x/revoke/LICENSE",
- "licenseText": "Copyright (c) 2014 CloudFlare Inc.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\nRedistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/goccy/go-json",
- "path": "github.com/goccy/go-json/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2020 Masaaki Goshima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/gogs/chardet",
- "path": "github.com/gogs/chardet/LICENSE",
- "licenseText": "Copyright (c) 2012 chardet Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nPartial of the Software is derived from ICU project. See icu-license.html for\nlicense of the derivative portions.\n"
- },
- {
- "name": "github.com/gogs/go-gogs-client",
- "path": "github.com/gogs/go-gogs-client/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Go Git Service\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/golang-jwt/jwt/v5",
- "path": "github.com/golang-jwt/jwt/v5/LICENSE",
- "licenseText": "Copyright (c) 2012 Dave Grijalva\nCopyright (c) 2021 golang-jwt maintainers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
- },
- {
- "name": "github.com/golang-sql/civil",
- "path": "github.com/golang-sql/civil/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/golang-sql/sqlexp",
- "path": "github.com/golang-sql/sqlexp/LICENSE",
- "licenseText": "Copyright (c) 2017 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/golang/groupcache",
- "path": "github.com/golang/groupcache/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/golang/snappy",
- "path": "github.com/golang/snappy/LICENSE",
- "licenseText": "Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/google/btree",
- "path": "github.com/google/btree/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/google/flatbuffers",
- "path": "github.com/google/flatbuffers/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/google/go-github/v84",
- "path": "github.com/google/go-github/v84/LICENSE",
- "licenseText": "Copyright (c) 2013 The go-github AUTHORS. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/google/go-querystring",
- "path": "github.com/google/go-querystring/LICENSE",
- "licenseText": "Copyright (c) 2013 Google. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/google/go-tpm",
- "path": "github.com/google/go-tpm/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/google/licenseclassifier/v2",
- "path": "github.com/google/licenseclassifier/v2/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/google/pprof",
- "path": "github.com/google/pprof/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/google/uuid",
- "path": "github.com/google/uuid/LICENSE",
- "licenseText": "Copyright (c) 2009,2014 Google Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/gorilla/css",
- "path": "github.com/gorilla/css/LICENSE",
- "licenseText": "Copyright (c) 2023 The Gorilla Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n\t * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\t * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\t * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/gorilla/feeds",
- "path": "github.com/gorilla/feeds/LICENSE",
- "licenseText": "Copyright (c) 2023 The Gorilla Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n\t * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\t * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\t * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/gorilla/mux",
- "path": "github.com/gorilla/mux/LICENSE",
- "licenseText": "Copyright (c) 2023 The Gorilla Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n\t * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\t * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\t * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/gorilla/securecookie",
- "path": "github.com/gorilla/securecookie/LICENSE",
- "licenseText": "Copyright (c) 2023 The Gorilla Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n\t * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\t * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\t * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/gorilla/sessions",
- "path": "github.com/gorilla/sessions/LICENSE",
- "licenseText": "Copyright (c) 2024 The Gorilla Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n\t * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\t * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\t * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/hashicorp/errwrap",
- "path": "github.com/hashicorp/errwrap/LICENSE",
- "licenseText": "Mozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. “Contributor”\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. “Contributor Version”\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor’s Contribution.\n\n1.3. “Contribution”\n\n means Covered Software of a particular Contributor.\n\n1.4. “Covered Software”\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. “Incompatible With Secondary Licenses”\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of version\n 1.1 or earlier of the License, but not also under the terms of a\n Secondary License.\n\n1.6. “Executable Form”\n\n means any form of the work other than Source Code Form.\n\n1.7. “Larger Work”\n\n means a work that combines Covered Software with other material, in a separate\n file or files, that is not Covered Software.\n\n1.8. “License”\n\n means this document.\n\n1.9. “Licensable”\n\n means having the right to grant, to the maximum extent possible, whether at the\n time of the initial grant or subsequently, any and all of the rights conveyed by\n this License.\n\n1.10. “Modifications”\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to, deletion\n from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. “Patent Claims” of a Contributor\n\n means any patent claim(s), including without limitation, method, process,\n and apparatus claims, in any patent Licensable by such Contributor that\n would be infringed, but for the grant of the License, by the making,\n using, selling, offering for sale, having made, import, or transfer of\n either its Contributions or its Contributor Version.\n\n1.12. “Secondary License”\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. “Source Code Form”\n\n means the form of the work preferred for making modifications.\n\n1.14. “You” (or “Your”)\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, “You” includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, “control” means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or as\n part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its Contributions\n or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution become\n effective for each Contribution on the date the Contributor first distributes\n such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under this\n License. No additional rights or licenses will be implied from the distribution\n or licensing of Covered Software under this License. Notwithstanding Section\n 2.1(b) above, no patent license is granted by a Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party’s\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of its\n Contributions.\n\n This License does not grant any rights in the trademarks, service marks, or\n logos of any Contributor (except as may be necessary to comply with the\n notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this License\n (see Section 10.2) or under the terms of a Secondary License (if permitted\n under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its Contributions\n are its original creation(s) or it has sufficient rights to grant the\n rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under applicable\n copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under the\n terms of this License. You must inform recipients that the Source Code Form\n of the Covered Software is governed by the terms of this License, and how\n they can obtain a copy of this License. You may not attempt to alter or\n restrict the recipients’ rights in the Source Code Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this License,\n or sublicense it under different terms, provided that the license for\n the Executable Form does not attempt to limit or alter the recipients’\n rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for the\n Covered Software. If the Larger Work is a combination of Covered Software\n with a work governed by one or more Secondary Licenses, and the Covered\n Software is not Incompatible With Secondary Licenses, this License permits\n You to additionally distribute such Covered Software under the terms of\n such Secondary License(s), so that the recipient of the Larger Work may, at\n their option, further distribute the Covered Software under the terms of\n either this License or such Secondary License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices (including\n copyright notices, patent notices, disclaimers of warranty, or limitations\n of liability) contained within the Source Code Form of the Covered\n Software, except that You may alter any license notices to the extent\n required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on behalf\n of any Contributor. You must make it absolutely clear that any such\n warranty, support, indemnity, or liability obligation is offered by You\n alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute, judicial\n order, or regulation then You must: (a) comply with the terms of this License\n to the maximum extent possible; and (b) describe the limitations and the code\n they affect. Such description must be placed in a text file included with all\n distributions of the Covered Software under this License. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing basis,\n if such Contributor fails to notify You of the non-compliance by some\n reasonable means prior to 60 days after You have come back into compliance.\n Moreover, Your grants from a particular Contributor are reinstated on an\n ongoing basis if such Contributor notifies You of the non-compliance by\n some reasonable means, this is the first time You have received notice of\n non-compliance with this License from such Contributor, and You become\n compliant prior to 30 days after Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions, counter-claims,\n and cross-claims) alleging that a Contributor Version directly or\n indirectly infringes any patent, then the rights granted to You by any and\n all Contributors for the Covered Software under Section 2.1 of this License\n shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an “as is” basis, without\n warranty of any kind, either expressed, implied, or statutory, including,\n without limitation, warranties that the Covered Software is free of defects,\n merchantable, fit for a particular purpose or non-infringing. The entire\n risk as to the quality and performance of the Covered Software is with You.\n Should any Covered Software prove defective in any respect, You (not any\n Contributor) assume the cost of any necessary servicing, repair, or\n correction. This disclaimer of warranty constitutes an essential part of this\n License. No use of any Covered Software is authorized under this License\n except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from such\n party’s negligence to the extent applicable law prohibits such limitation.\n Some jurisdictions do not allow the exclusion or limitation of incidental or\n consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts of\n a jurisdiction where the defendant maintains its principal place of business\n and such litigation shall be governed by laws of that jurisdiction, without\n reference to its conflict-of-law provisions. Nothing in this Section shall\n prevent a party’s ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject matter\n hereof. If any provision of this License is held to be unenforceable, such\n provision shall be reformed only to the extent necessary to make it\n enforceable. Any law or regulation which provides that the language of a\n contract shall be construed against the drafter shall not be used to construe\n this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version of\n the License under which You originally received the Covered Software, or\n under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a modified\n version of this License if you rename the license and remove any\n references to the name of the license steward (except to note that such\n modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n If You choose to distribute Source Code Form that is Incompatible With\n Secondary Licenses under the terms of this version of the License, the\n notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then\nYou may include the notice in a location (such as a LICENSE file in a relevant\ndirectory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - “Incompatible With Secondary Licenses” Notice\n\n This Source Code Form is “Incompatible\n With Secondary Licenses”, as defined by\n the Mozilla Public License, v. 2.0.\n\n"
- },
- {
- "name": "github.com/hashicorp/go-cleanhttp",
- "path": "github.com/hashicorp/go-cleanhttp/LICENSE",
- "licenseText": "Mozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. \"Contributor\"\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the terms of\n a Secondary License.\n\n1.6. \"Executable Form\"\n\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n\n means a work that combines Covered Software with other material, in a\n separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n\n means this document.\n\n1.9. \"Licensable\"\n\n means having the right to grant, to the maximum extent possible, whether\n at the time of the initial grant or subsequently, any and all of the\n rights conveyed by this License.\n\n1.10. \"Modifications\"\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. \"Patent Claims\" of a Contributor\n\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the License,\n by the making, using, selling, offering for sale, having made, import,\n or transfer of either its Contributions or its Contributor Version.\n\n1.12. \"Secondary License\"\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. \"Source Code Form\"\n\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, \"control\" means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution\n become effective for each Contribution on the date the Contributor first\n distributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under\n this License. No additional rights or licenses will be implied from the\n distribution or licensing of Covered Software under this License.\n Notwithstanding Section 2.1(b) above, no patent license is granted by a\n Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\n This License does not grant any rights in the trademarks, service marks,\n or logos of any Contributor (except as may be necessary to comply with\n the notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this\n License (see Section 10.2) or under the terms of a Secondary License (if\n permitted under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its\n Contributions are its original creation(s) or it has sufficient rights to\n grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under\n applicable copyright doctrines of fair use, fair dealing, or other\n equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under\n the terms of this License. You must inform recipients that the Source\n Code Form of the Covered Software is governed by the terms of this\n License, and how they can obtain a copy of this License. You may not\n attempt to alter or restrict the recipients' rights in the Source Code\n Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter the\n recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for\n the Covered Software. If the Larger Work is a combination of Covered\n Software with a work governed by one or more Secondary Licenses, and the\n Covered Software is not Incompatible With Secondary Licenses, this\n License permits You to additionally distribute such Covered Software\n under the terms of such Secondary License(s), so that the recipient of\n the Larger Work may, at their option, further distribute the Covered\n Software under the terms of either this License or such Secondary\n License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices\n (including copyright notices, patent notices, disclaimers of warranty, or\n limitations of liability) contained within the Source Code Form of the\n Covered Software, except that You may alter any license notices to the\n extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on\n behalf of any Contributor. You must make it absolutely clear that any\n such warranty, support, indemnity, or liability obligation is offered by\n You alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute,\n judicial order, or regulation then You must: (a) comply with the terms of\n this License to the maximum extent possible; and (b) describe the\n limitations and the code they affect. Such description must be placed in a\n text file included with all distributions of the Covered Software under\n this License. Except to the extent prohibited by statute or regulation,\n such description must be sufficiently detailed for a recipient of ordinary\n skill to be able to understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing\n basis, if such Contributor fails to notify You of the non-compliance by\n some reasonable means prior to 60 days after You have come back into\n compliance. Moreover, Your grants from a particular Contributor are\n reinstated on an ongoing basis if such Contributor notifies You of the\n non-compliance by some reasonable means, this is the first time You have\n received notice of non-compliance with this License from such\n Contributor, and You become compliant prior to 30 days after Your receipt\n of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions,\n counter-claims, and cross-claims) alleging that a Contributor Version\n directly or indirectly infringes any patent, then the rights granted to\n You by any and all Contributors for the Covered Software under Section\n 2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an \"as is\" basis,\n without warranty of any kind, either expressed, implied, or statutory,\n including, without limitation, warranties that the Covered Software is free\n of defects, merchantable, fit for a particular purpose or non-infringing.\n The entire risk as to the quality and performance of the Covered Software\n is with You. Should any Covered Software prove defective in any respect,\n You (not any Contributor) assume the cost of any necessary servicing,\n repair, or correction. This disclaimer of warranty constitutes an essential\n part of this License. No use of any Covered Software is authorized under\n this License except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from\n such party's negligence to the extent applicable law prohibits such\n limitation. Some jurisdictions do not allow the exclusion or limitation of\n incidental or consequential damages, so this exclusion and limitation may\n not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts\n of a jurisdiction where the defendant maintains its principal place of\n business and such litigation shall be governed by laws of that\n jurisdiction, without reference to its conflict-of-law provisions. Nothing\n in this Section shall prevent a party's ability to bring cross-claims or\n counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. Any law or regulation which provides that\n the language of a contract shall be construed against the drafter shall not\n be used to construe this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version\n of the License under which You originally received the Covered Software,\n or under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a\n modified version of this License if you rename the license and remove\n any references to the name of the license steward (except to note that\n such modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\n Licenses If You choose to distribute Source Code Form that is\n Incompatible With Secondary Licenses under the terms of this version of\n the License, the notice described in Exhibit B of this License must be\n attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file,\nthen You may include the notice in a location (such as a LICENSE file in a\nrelevant directory) where a recipient would be likely to look for such a\nnotice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n\n This Source Code Form is \"Incompatible\n With Secondary Licenses\", as defined by\n the Mozilla Public License, v. 2.0.\n\n"
- },
- {
- "name": "github.com/hashicorp/go-multierror",
- "path": "github.com/hashicorp/go-multierror/LICENSE",
- "licenseText": "Mozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. “Contributor”\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. “Contributor Version”\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor’s Contribution.\n\n1.3. “Contribution”\n\n means Covered Software of a particular Contributor.\n\n1.4. “Covered Software”\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. “Incompatible With Secondary Licenses”\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of version\n 1.1 or earlier of the License, but not also under the terms of a\n Secondary License.\n\n1.6. “Executable Form”\n\n means any form of the work other than Source Code Form.\n\n1.7. “Larger Work”\n\n means a work that combines Covered Software with other material, in a separate\n file or files, that is not Covered Software.\n\n1.8. “License”\n\n means this document.\n\n1.9. “Licensable”\n\n means having the right to grant, to the maximum extent possible, whether at the\n time of the initial grant or subsequently, any and all of the rights conveyed by\n this License.\n\n1.10. “Modifications”\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to, deletion\n from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. “Patent Claims” of a Contributor\n\n means any patent claim(s), including without limitation, method, process,\n and apparatus claims, in any patent Licensable by such Contributor that\n would be infringed, but for the grant of the License, by the making,\n using, selling, offering for sale, having made, import, or transfer of\n either its Contributions or its Contributor Version.\n\n1.12. “Secondary License”\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. “Source Code Form”\n\n means the form of the work preferred for making modifications.\n\n1.14. “You” (or “Your”)\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, “You” includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, “control” means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or as\n part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its Contributions\n or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution become\n effective for each Contribution on the date the Contributor first distributes\n such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under this\n License. No additional rights or licenses will be implied from the distribution\n or licensing of Covered Software under this License. Notwithstanding Section\n 2.1(b) above, no patent license is granted by a Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party’s\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of its\n Contributions.\n\n This License does not grant any rights in the trademarks, service marks, or\n logos of any Contributor (except as may be necessary to comply with the\n notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this License\n (see Section 10.2) or under the terms of a Secondary License (if permitted\n under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its Contributions\n are its original creation(s) or it has sufficient rights to grant the\n rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under applicable\n copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under the\n terms of this License. You must inform recipients that the Source Code Form\n of the Covered Software is governed by the terms of this License, and how\n they can obtain a copy of this License. You may not attempt to alter or\n restrict the recipients’ rights in the Source Code Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this License,\n or sublicense it under different terms, provided that the license for\n the Executable Form does not attempt to limit or alter the recipients’\n rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for the\n Covered Software. If the Larger Work is a combination of Covered Software\n with a work governed by one or more Secondary Licenses, and the Covered\n Software is not Incompatible With Secondary Licenses, this License permits\n You to additionally distribute such Covered Software under the terms of\n such Secondary License(s), so that the recipient of the Larger Work may, at\n their option, further distribute the Covered Software under the terms of\n either this License or such Secondary License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices (including\n copyright notices, patent notices, disclaimers of warranty, or limitations\n of liability) contained within the Source Code Form of the Covered\n Software, except that You may alter any license notices to the extent\n required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on behalf\n of any Contributor. You must make it absolutely clear that any such\n warranty, support, indemnity, or liability obligation is offered by You\n alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute, judicial\n order, or regulation then You must: (a) comply with the terms of this License\n to the maximum extent possible; and (b) describe the limitations and the code\n they affect. Such description must be placed in a text file included with all\n distributions of the Covered Software under this License. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing basis,\n if such Contributor fails to notify You of the non-compliance by some\n reasonable means prior to 60 days after You have come back into compliance.\n Moreover, Your grants from a particular Contributor are reinstated on an\n ongoing basis if such Contributor notifies You of the non-compliance by\n some reasonable means, this is the first time You have received notice of\n non-compliance with this License from such Contributor, and You become\n compliant prior to 30 days after Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions, counter-claims,\n and cross-claims) alleging that a Contributor Version directly or\n indirectly infringes any patent, then the rights granted to You by any and\n all Contributors for the Covered Software under Section 2.1 of this License\n shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an “as is” basis, without\n warranty of any kind, either expressed, implied, or statutory, including,\n without limitation, warranties that the Covered Software is free of defects,\n merchantable, fit for a particular purpose or non-infringing. The entire\n risk as to the quality and performance of the Covered Software is with You.\n Should any Covered Software prove defective in any respect, You (not any\n Contributor) assume the cost of any necessary servicing, repair, or\n correction. This disclaimer of warranty constitutes an essential part of this\n License. No use of any Covered Software is authorized under this License\n except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from such\n party’s negligence to the extent applicable law prohibits such limitation.\n Some jurisdictions do not allow the exclusion or limitation of incidental or\n consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts of\n a jurisdiction where the defendant maintains its principal place of business\n and such litigation shall be governed by laws of that jurisdiction, without\n reference to its conflict-of-law provisions. Nothing in this Section shall\n prevent a party’s ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject matter\n hereof. If any provision of this License is held to be unenforceable, such\n provision shall be reformed only to the extent necessary to make it\n enforceable. Any law or regulation which provides that the language of a\n contract shall be construed against the drafter shall not be used to construe\n this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version of\n the License under which You originally received the Covered Software, or\n under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a modified\n version of this License if you rename the license and remove any\n references to the name of the license steward (except to note that such\n modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n If You choose to distribute Source Code Form that is Incompatible With\n Secondary Licenses under the terms of this version of the License, the\n notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then\nYou may include the notice in a location (such as a LICENSE file in a relevant\ndirectory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - “Incompatible With Secondary Licenses” Notice\n\n This Source Code Form is “Incompatible\n With Secondary Licenses”, as defined by\n the Mozilla Public License, v. 2.0.\n"
- },
- {
- "name": "github.com/hashicorp/go-retryablehttp",
- "path": "github.com/hashicorp/go-retryablehttp/LICENSE",
- "licenseText": "Copyright (c) 2015 HashiCorp, Inc.\n\nMozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. \"Contributor\"\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the terms of\n a Secondary License.\n\n1.6. \"Executable Form\"\n\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n\n means a work that combines Covered Software with other material, in a\n separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n\n means this document.\n\n1.9. \"Licensable\"\n\n means having the right to grant, to the maximum extent possible, whether\n at the time of the initial grant or subsequently, any and all of the\n rights conveyed by this License.\n\n1.10. \"Modifications\"\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. \"Patent Claims\" of a Contributor\n\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the License,\n by the making, using, selling, offering for sale, having made, import,\n or transfer of either its Contributions or its Contributor Version.\n\n1.12. \"Secondary License\"\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. \"Source Code Form\"\n\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, \"control\" means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution\n become effective for each Contribution on the date the Contributor first\n distributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under\n this License. No additional rights or licenses will be implied from the\n distribution or licensing of Covered Software under this License.\n Notwithstanding Section 2.1(b) above, no patent license is granted by a\n Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\n This License does not grant any rights in the trademarks, service marks,\n or logos of any Contributor (except as may be necessary to comply with\n the notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this\n License (see Section 10.2) or under the terms of a Secondary License (if\n permitted under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its\n Contributions are its original creation(s) or it has sufficient rights to\n grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under\n applicable copyright doctrines of fair use, fair dealing, or other\n equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under\n the terms of this License. You must inform recipients that the Source\n Code Form of the Covered Software is governed by the terms of this\n License, and how they can obtain a copy of this License. You may not\n attempt to alter or restrict the recipients' rights in the Source Code\n Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter the\n recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for\n the Covered Software. If the Larger Work is a combination of Covered\n Software with a work governed by one or more Secondary Licenses, and the\n Covered Software is not Incompatible With Secondary Licenses, this\n License permits You to additionally distribute such Covered Software\n under the terms of such Secondary License(s), so that the recipient of\n the Larger Work may, at their option, further distribute the Covered\n Software under the terms of either this License or such Secondary\n License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices\n (including copyright notices, patent notices, disclaimers of warranty, or\n limitations of liability) contained within the Source Code Form of the\n Covered Software, except that You may alter any license notices to the\n extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on\n behalf of any Contributor. You must make it absolutely clear that any\n such warranty, support, indemnity, or liability obligation is offered by\n You alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute,\n judicial order, or regulation then You must: (a) comply with the terms of\n this License to the maximum extent possible; and (b) describe the\n limitations and the code they affect. Such description must be placed in a\n text file included with all distributions of the Covered Software under\n this License. Except to the extent prohibited by statute or regulation,\n such description must be sufficiently detailed for a recipient of ordinary\n skill to be able to understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing\n basis, if such Contributor fails to notify You of the non-compliance by\n some reasonable means prior to 60 days after You have come back into\n compliance. Moreover, Your grants from a particular Contributor are\n reinstated on an ongoing basis if such Contributor notifies You of the\n non-compliance by some reasonable means, this is the first time You have\n received notice of non-compliance with this License from such\n Contributor, and You become compliant prior to 30 days after Your receipt\n of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions,\n counter-claims, and cross-claims) alleging that a Contributor Version\n directly or indirectly infringes any patent, then the rights granted to\n You by any and all Contributors for the Covered Software under Section\n 2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an \"as is\" basis,\n without warranty of any kind, either expressed, implied, or statutory,\n including, without limitation, warranties that the Covered Software is free\n of defects, merchantable, fit for a particular purpose or non-infringing.\n The entire risk as to the quality and performance of the Covered Software\n is with You. Should any Covered Software prove defective in any respect,\n You (not any Contributor) assume the cost of any necessary servicing,\n repair, or correction. This disclaimer of warranty constitutes an essential\n part of this License. No use of any Covered Software is authorized under\n this License except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from\n such party's negligence to the extent applicable law prohibits such\n limitation. Some jurisdictions do not allow the exclusion or limitation of\n incidental or consequential damages, so this exclusion and limitation may\n not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts\n of a jurisdiction where the defendant maintains its principal place of\n business and such litigation shall be governed by laws of that\n jurisdiction, without reference to its conflict-of-law provisions. Nothing\n in this Section shall prevent a party's ability to bring cross-claims or\n counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. Any law or regulation which provides that\n the language of a contract shall be construed against the drafter shall not\n be used to construe this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version\n of the License under which You originally received the Covered Software,\n or under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a\n modified version of this License if you rename the license and remove\n any references to the name of the license steward (except to note that\n such modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\n Licenses If You choose to distribute Source Code Form that is\n Incompatible With Secondary Licenses under the terms of this version of\n the License, the notice described in Exhibit B of this License must be\n attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file,\nthen You may include the notice in a location (such as a LICENSE file in a\nrelevant directory) where a recipient would be likely to look for such a\nnotice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n\n This Source Code Form is \"Incompatible\n With Secondary Licenses\", as defined by\n the Mozilla Public License, v. 2.0.\n\n"
- },
- {
- "name": "github.com/hashicorp/go-version",
- "path": "github.com/hashicorp/go-version/LICENSE",
- "licenseText": "Copyright IBM Corp. 2014, 2025\n\nMozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. “Contributor”\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. “Contributor Version”\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor’s Contribution.\n\n1.3. “Contribution”\n\n means Covered Software of a particular Contributor.\n\n1.4. “Covered Software”\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. “Incompatible With Secondary Licenses”\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of version\n 1.1 or earlier of the License, but not also under the terms of a\n Secondary License.\n\n1.6. “Executable Form”\n\n means any form of the work other than Source Code Form.\n\n1.7. “Larger Work”\n\n means a work that combines Covered Software with other material, in a separate\n file or files, that is not Covered Software.\n\n1.8. “License”\n\n means this document.\n\n1.9. “Licensable”\n\n means having the right to grant, to the maximum extent possible, whether at the\n time of the initial grant or subsequently, any and all of the rights conveyed by\n this License.\n\n1.10. “Modifications”\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to, deletion\n from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. “Patent Claims” of a Contributor\n\n means any patent claim(s), including without limitation, method, process,\n and apparatus claims, in any patent Licensable by such Contributor that\n would be infringed, but for the grant of the License, by the making,\n using, selling, offering for sale, having made, import, or transfer of\n either its Contributions or its Contributor Version.\n\n1.12. “Secondary License”\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. “Source Code Form”\n\n means the form of the work preferred for making modifications.\n\n1.14. “You” (or “Your”)\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, “You” includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, “control” means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or as\n part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its Contributions\n or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution become\n effective for each Contribution on the date the Contributor first distributes\n such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under this\n License. No additional rights or licenses will be implied from the distribution\n or licensing of Covered Software under this License. Notwithstanding Section\n 2.1(b) above, no patent license is granted by a Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party’s\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of its\n Contributions.\n\n This License does not grant any rights in the trademarks, service marks, or\n logos of any Contributor (except as may be necessary to comply with the\n notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this License\n (see Section 10.2) or under the terms of a Secondary License (if permitted\n under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its Contributions\n are its original creation(s) or it has sufficient rights to grant the\n rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under applicable\n copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under the\n terms of this License. You must inform recipients that the Source Code Form\n of the Covered Software is governed by the terms of this License, and how\n they can obtain a copy of this License. You may not attempt to alter or\n restrict the recipients’ rights in the Source Code Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this License,\n or sublicense it under different terms, provided that the license for\n the Executable Form does not attempt to limit or alter the recipients’\n rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for the\n Covered Software. If the Larger Work is a combination of Covered Software\n with a work governed by one or more Secondary Licenses, and the Covered\n Software is not Incompatible With Secondary Licenses, this License permits\n You to additionally distribute such Covered Software under the terms of\n such Secondary License(s), so that the recipient of the Larger Work may, at\n their option, further distribute the Covered Software under the terms of\n either this License or such Secondary License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices (including\n copyright notices, patent notices, disclaimers of warranty, or limitations\n of liability) contained within the Source Code Form of the Covered\n Software, except that You may alter any license notices to the extent\n required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on behalf\n of any Contributor. You must make it absolutely clear that any such\n warranty, support, indemnity, or liability obligation is offered by You\n alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute, judicial\n order, or regulation then You must: (a) comply with the terms of this License\n to the maximum extent possible; and (b) describe the limitations and the code\n they affect. Such description must be placed in a text file included with all\n distributions of the Covered Software under this License. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing basis,\n if such Contributor fails to notify You of the non-compliance by some\n reasonable means prior to 60 days after You have come back into compliance.\n Moreover, Your grants from a particular Contributor are reinstated on an\n ongoing basis if such Contributor notifies You of the non-compliance by\n some reasonable means, this is the first time You have received notice of\n non-compliance with this License from such Contributor, and You become\n compliant prior to 30 days after Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions, counter-claims,\n and cross-claims) alleging that a Contributor Version directly or\n indirectly infringes any patent, then the rights granted to You by any and\n all Contributors for the Covered Software under Section 2.1 of this License\n shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an “as is” basis, without\n warranty of any kind, either expressed, implied, or statutory, including,\n without limitation, warranties that the Covered Software is free of defects,\n merchantable, fit for a particular purpose or non-infringing. The entire\n risk as to the quality and performance of the Covered Software is with You.\n Should any Covered Software prove defective in any respect, You (not any\n Contributor) assume the cost of any necessary servicing, repair, or\n correction. This disclaimer of warranty constitutes an essential part of this\n License. No use of any Covered Software is authorized under this License\n except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from such\n party’s negligence to the extent applicable law prohibits such limitation.\n Some jurisdictions do not allow the exclusion or limitation of incidental or\n consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts of\n a jurisdiction where the defendant maintains its principal place of business\n and such litigation shall be governed by laws of that jurisdiction, without\n reference to its conflict-of-law provisions. Nothing in this Section shall\n prevent a party’s ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject matter\n hereof. If any provision of this License is held to be unenforceable, such\n provision shall be reformed only to the extent necessary to make it\n enforceable. Any law or regulation which provides that the language of a\n contract shall be construed against the drafter shall not be used to construe\n this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version of\n the License under which You originally received the Covered Software, or\n under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a modified\n version of this License if you rename the license and remove any\n references to the name of the license steward (except to note that such\n modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n If You choose to distribute Source Code Form that is Incompatible With\n Secondary Licenses under the terms of this version of the License, the\n notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then\nYou may include the notice in a location (such as a LICENSE file in a relevant\ndirectory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - “Incompatible With Secondary Licenses” Notice\n\n This Source Code Form is “Incompatible\n With Secondary Licenses”, as defined by\n the Mozilla Public License, v. 2.0.\n\n"
- },
- {
- "name": "github.com/hashicorp/golang-lru/v2",
- "path": "github.com/hashicorp/golang-lru/v2/LICENSE",
- "licenseText": "Copyright (c) 2014 HashiCorp, Inc.\n\nMozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. \"Contributor\"\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the terms of\n a Secondary License.\n\n1.6. \"Executable Form\"\n\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n\n means a work that combines Covered Software with other material, in a\n separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n\n means this document.\n\n1.9. \"Licensable\"\n\n means having the right to grant, to the maximum extent possible, whether\n at the time of the initial grant or subsequently, any and all of the\n rights conveyed by this License.\n\n1.10. \"Modifications\"\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. \"Patent Claims\" of a Contributor\n\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the License,\n by the making, using, selling, offering for sale, having made, import,\n or transfer of either its Contributions or its Contributor Version.\n\n1.12. \"Secondary License\"\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. \"Source Code Form\"\n\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, \"control\" means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution\n become effective for each Contribution on the date the Contributor first\n distributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under\n this License. No additional rights or licenses will be implied from the\n distribution or licensing of Covered Software under this License.\n Notwithstanding Section 2.1(b) above, no patent license is granted by a\n Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\n This License does not grant any rights in the trademarks, service marks,\n or logos of any Contributor (except as may be necessary to comply with\n the notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this\n License (see Section 10.2) or under the terms of a Secondary License (if\n permitted under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its\n Contributions are its original creation(s) or it has sufficient rights to\n grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under\n applicable copyright doctrines of fair use, fair dealing, or other\n equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under\n the terms of this License. You must inform recipients that the Source\n Code Form of the Covered Software is governed by the terms of this\n License, and how they can obtain a copy of this License. You may not\n attempt to alter or restrict the recipients' rights in the Source Code\n Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter the\n recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for\n the Covered Software. If the Larger Work is a combination of Covered\n Software with a work governed by one or more Secondary Licenses, and the\n Covered Software is not Incompatible With Secondary Licenses, this\n License permits You to additionally distribute such Covered Software\n under the terms of such Secondary License(s), so that the recipient of\n the Larger Work may, at their option, further distribute the Covered\n Software under the terms of either this License or such Secondary\n License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices\n (including copyright notices, patent notices, disclaimers of warranty, or\n limitations of liability) contained within the Source Code Form of the\n Covered Software, except that You may alter any license notices to the\n extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on\n behalf of any Contributor. You must make it absolutely clear that any\n such warranty, support, indemnity, or liability obligation is offered by\n You alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute,\n judicial order, or regulation then You must: (a) comply with the terms of\n this License to the maximum extent possible; and (b) describe the\n limitations and the code they affect. Such description must be placed in a\n text file included with all distributions of the Covered Software under\n this License. Except to the extent prohibited by statute or regulation,\n such description must be sufficiently detailed for a recipient of ordinary\n skill to be able to understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing\n basis, if such Contributor fails to notify You of the non-compliance by\n some reasonable means prior to 60 days after You have come back into\n compliance. Moreover, Your grants from a particular Contributor are\n reinstated on an ongoing basis if such Contributor notifies You of the\n non-compliance by some reasonable means, this is the first time You have\n received notice of non-compliance with this License from such\n Contributor, and You become compliant prior to 30 days after Your receipt\n of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions,\n counter-claims, and cross-claims) alleging that a Contributor Version\n directly or indirectly infringes any patent, then the rights granted to\n You by any and all Contributors for the Covered Software under Section\n 2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an \"as is\" basis,\n without warranty of any kind, either expressed, implied, or statutory,\n including, without limitation, warranties that the Covered Software is free\n of defects, merchantable, fit for a particular purpose or non-infringing.\n The entire risk as to the quality and performance of the Covered Software\n is with You. Should any Covered Software prove defective in any respect,\n You (not any Contributor) assume the cost of any necessary servicing,\n repair, or correction. This disclaimer of warranty constitutes an essential\n part of this License. No use of any Covered Software is authorized under\n this License except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from\n such party's negligence to the extent applicable law prohibits such\n limitation. Some jurisdictions do not allow the exclusion or limitation of\n incidental or consequential damages, so this exclusion and limitation may\n not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts\n of a jurisdiction where the defendant maintains its principal place of\n business and such litigation shall be governed by laws of that\n jurisdiction, without reference to its conflict-of-law provisions. Nothing\n in this Section shall prevent a party's ability to bring cross-claims or\n counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. Any law or regulation which provides that\n the language of a contract shall be construed against the drafter shall not\n be used to construe this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version\n of the License under which You originally received the Covered Software,\n or under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a\n modified version of this License if you rename the license and remove\n any references to the name of the license steward (except to note that\n such modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\n Licenses If You choose to distribute Source Code Form that is\n Incompatible With Secondary Licenses under the terms of this version of\n the License, the notice described in Exhibit B of this License must be\n attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file,\nthen You may include the notice in a location (such as a LICENSE file in a\nrelevant directory) where a recipient would be likely to look for such a\nnotice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n\n This Source Code Form is \"Incompatible\n With Secondary Licenses\", as defined by\n the Mozilla Public License, v. 2.0.\n"
- },
- {
- "name": "github.com/hashicorp/golang-lru/v2/simplelru",
- "path": "github.com/hashicorp/golang-lru/v2/simplelru/LICENSE_list",
- "licenseText": "This license applies to simplelru/list.go\n\nCopyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/huandu/xstrings",
- "path": "github.com/huandu/xstrings/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Huan Du\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/inbucket/html2text",
- "path": "github.com/inbucket/html2text/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Jay Taylor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/jaytaylor/html2text",
- "path": "github.com/jaytaylor/html2text/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Jay Taylor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/jbenet/go-context",
- "path": "github.com/jbenet/go-context/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Juan Batiz-Benet\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/jhillyerd/enmime/v2",
- "path": "github.com/jhillyerd/enmime/v2/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2012-2016 James Hillyerd, All Rights Reserved\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/jonboulle/clockwork",
- "path": "github.com/jonboulle/clockwork/LICENSE",
- "licenseText": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/josharian/intern",
- "path": "github.com/josharian/intern/license.md",
- "licenseText": "MIT License\n\nCopyright (c) 2019 Josh Bleecher Snyder\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/json-iterator/go",
- "path": "github.com/json-iterator/go/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2016 json-iterator\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/kballard/go-shellquote",
- "path": "github.com/kballard/go-shellquote/LICENSE",
- "licenseText": "Copyright (C) 2014 Kevin Ballard\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\nOR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/kevinburke/ssh_config",
- "path": "github.com/kevinburke/ssh_config/LICENSE",
- "licenseText": "Copyright (c) 2017 Kevin Burke.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n===================\n\nThe lexer and parser borrow heavily from github.com/pelletier/go-toml. The\nlicense for that project is copied below.\n\nThe MIT License (MIT)\n\nCopyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/klauspost/compress",
- "path": "github.com/klauspost/compress/LICENSE",
- "licenseText": "Copyright (c) 2012 The Go Authors. All rights reserved.\nCopyright (c) 2019 Klaus Post. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n------------------\n\nFiles: gzhttp/*\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2016-2017 The New York Times Company\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n------------------\n\nFiles: s2/cmd/internal/readahead/*\n\nThe MIT License (MIT)\n\nCopyright (c) 2015 Klaus Post\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n---------------------\nFiles: snappy/*\nFiles: internal/snapref/*\n\nCopyright (c) 2011 The Snappy-Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-----------------\n\nFiles: s2/cmd/internal/filepathx/*\n\nCopyright 2016 The filepathx Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/klauspost/compress/gzhttp",
- "path": "github.com/klauspost/compress/gzhttp/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2016-2017 The New York Times Company\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/klauspost/compress/internal/snapref",
- "path": "github.com/klauspost/compress/internal/snapref/LICENSE",
- "licenseText": "Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/klauspost/compress/s2",
- "path": "github.com/klauspost/compress/s2/LICENSE",
- "licenseText": "Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.\nCopyright (c) 2019 Klaus Post. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/klauspost/compress/zstd/internal/xxhash",
- "path": "github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt",
- "licenseText": "Copyright (c) 2016 Caleb Spare\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/klauspost/cpuid/v2",
- "path": "github.com/klauspost/cpuid/v2/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Klaus Post\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/klauspost/crc32",
- "path": "github.com/klauspost/crc32/LICENSE",
- "licenseText": "Copyright (c) 2012 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/klauspost/pgzip",
- "path": "github.com/klauspost/pgzip/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Klaus Post\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/lib/pq",
- "path": "github.com/lib/pq/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2011-2013, 'pq' Contributors. Portions Copyright (c) 2011 Blake Mizerany\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/libdns/libdns",
- "path": "github.com/libdns/libdns/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2020 Matthew Holt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/mailru/easyjson",
- "path": "github.com/mailru/easyjson/LICENSE",
- "licenseText": "Copyright (c) 2016 Mail.Ru Group\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/markbates/going",
- "path": "github.com/markbates/going/LICENSE.txt",
- "licenseText": "Copyright (c) 2014 Mark Bates\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/markbates/goth",
- "path": "github.com/markbates/goth/LICENSE.txt",
- "licenseText": "Copyright (c) 2014 Mark Bates\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/mattn/go-colorable",
- "path": "github.com/mattn/go-colorable/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2016 Yasuhiro Matsumoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/mattn/go-isatty",
- "path": "github.com/mattn/go-isatty/LICENSE",
- "licenseText": "Copyright (c) Yasuhiro MATSUMOTO \u003cmattn.jp@gmail.com\u003e\n\nMIT License (Expat)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/mattn/go-runewidth",
- "path": "github.com/mattn/go-runewidth/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2016 Yasuhiro Matsumoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/mattn/go-shellwords",
- "path": "github.com/mattn/go-shellwords/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2017 Yasuhiro Matsumoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/meilisearch/meilisearch-go",
- "path": "github.com/meilisearch/meilisearch-go/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2020-2025 Meili SAS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/mholt/acmez/v3",
- "path": "github.com/mholt/acmez/v3/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/mholt/archives",
- "path": "github.com/mholt/archives/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2016 Matthew Holt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
- },
- {
- "name": "github.com/microcosm-cc/bluemonday",
- "path": "github.com/microcosm-cc/bluemonday/LICENSE.md",
- "licenseText": "Copyright (c) 2014, David Kitchen \u003cdavid@buro9.com\u003e\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the organisation (Microcosm) nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/microsoft/go-mssqldb",
- "path": "github.com/microsoft/go-mssqldb/LICENSE.txt",
- "licenseText": "Copyright (c) 2012 The Go Authors. All rights reserved.\nCopyright (c) Microsoft Corporation.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/microsoft/go-mssqldb/internal/github.com/swisscom/mssql-always-encrypted",
- "path": "github.com/microsoft/go-mssqldb/internal/github.com/swisscom/mssql-always-encrypted/LICENSE.txt",
- "licenseText": "Copyright (c) 2021 Swisscom (Switzerland) Ltd\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n"
- },
- {
- "name": "github.com/miekg/dns",
- "path": "github.com/miekg/dns/LICENSE",
- "licenseText": "BSD 3-Clause License\n\nCopyright (c) 2009, The Go Authors. Extensions copyright (c) 2011, Miek Gieben. \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/mikelolasagasti/xz",
- "path": "github.com/mikelolasagasti/xz/LICENSE",
- "licenseText": "Copyright (C) 2015-2017 Michael Cross \u003chttps://github.com/xi2\u003e\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n"
- },
- {
- "name": "github.com/minio/crc64nvme",
- "path": "github.com/minio/crc64nvme/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/minio/md5-simd",
- "path": "github.com/minio/md5-simd/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/minio/minio-go/v7",
- "path": "github.com/minio/minio-go/v7/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/minio/minlz",
- "path": "github.com/minio/minlz/LICENSE",
- "licenseText": "\r\n Apache License\r\n Version 2.0, January 2004\r\n http://www.apache.org/licenses/\r\n\r\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n 1. Definitions.\r\n\r\n \"License\" shall mean the terms and conditions for use, reproduction,\r\n and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n \"Licensor\" shall mean the copyright owner or entity authorized by\r\n the copyright owner that is granting the License.\r\n\r\n \"Legal Entity\" shall mean the union of the acting entity and all\r\n other entities that control, are controlled by, or are under common\r\n control with that entity. For the purposes of this definition,\r\n \"control\" means (i) the power, direct or indirect, to cause the\r\n direction or management of such entity, whether by contract or\r\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\r\n outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\r\n exercising permissions granted by this License.\r\n\r\n \"Source\" form shall mean the preferred form for making modifications,\r\n including but not limited to software source code, documentation\r\n source, and configuration files.\r\n\r\n \"Object\" form shall mean any form resulting from mechanical\r\n transformation or translation of a Source form, including but\r\n not limited to compiled object code, generated documentation,\r\n and conversions to other media types.\r\n\r\n \"Work\" shall mean the work of authorship, whether in Source or\r\n Object form, made available under the License, as indicated by a\r\n copyright notice that is included in or attached to the work\r\n (an example is provided in the Appendix below).\r\n\r\n \"Derivative Works\" shall mean any work, whether in Source or Object\r\n form, that is based on (or derived from) the Work and for which the\r\n editorial revisions, annotations, elaborations, or other modifications\r\n represent, as a whole, an original work of authorship. For the purposes\r\n of this License, Derivative Works shall not include works that remain\r\n separable from, or merely link (or bind by name) to the interfaces of,\r\n the Work and Derivative Works thereof.\r\n\r\n \"Contribution\" shall mean any work of authorship, including\r\n the original version of the Work and any modifications or additions\r\n to that Work or Derivative Works thereof, that is intentionally\r\n submitted to Licensor for inclusion in the Work by the copyright owner\r\n or by an individual or Legal Entity authorized to submit on behalf of\r\n the copyright owner. For the purposes of this definition, \"submitted\"\r\n means any form of electronic, verbal, or written communication sent\r\n to the Licensor or its representatives, including but not limited to\r\n communication on electronic mailing lists, source code control systems,\r\n and issue tracking systems that are managed by, or on behalf of, the\r\n Licensor for the purpose of discussing and improving the Work, but\r\n excluding communication that is conspicuously marked or otherwise\r\n designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\r\n on behalf of whom a Contribution has been received by Licensor and\r\n subsequently incorporated within the Work.\r\n\r\n 2. Grant of Copyright License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n copyright license to reproduce, prepare Derivative Works of,\r\n publicly display, publicly perform, sublicense, and distribute the\r\n Work and such Derivative Works in Source or Object form.\r\n\r\n 3. Grant of Patent License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n (except as stated in this section) patent license to make, have made,\r\n use, offer to sell, sell, import, and otherwise transfer the Work,\r\n where such license applies only to those patent claims licensable\r\n by such Contributor that are necessarily infringed by their\r\n Contribution(s) alone or by combination of their Contribution(s)\r\n with the Work to which such Contribution(s) was submitted. If You\r\n institute patent litigation against any entity (including a\r\n cross-claim or counterclaim in a lawsuit) alleging that the Work\r\n or a Contribution incorporated within the Work constitutes direct\r\n or contributory patent infringement, then any patent licenses\r\n granted to You under this License for that Work shall terminate\r\n as of the date such litigation is filed.\r\n\r\n 4. Redistribution. You may reproduce and distribute copies of the\r\n Work or Derivative Works thereof in any medium, with or without\r\n modifications, and in Source or Object form, provided that You\r\n meet the following conditions:\r\n\r\n (a) You must give any other recipients of the Work or\r\n Derivative Works a copy of this License; and\r\n\r\n (b) You must cause any modified files to carry prominent notices\r\n stating that You changed the files; and\r\n\r\n (c) You must retain, in the Source form of any Derivative Works\r\n that You distribute, all copyright, patent, trademark, and\r\n attribution notices from the Source form of the Work,\r\n excluding those notices that do not pertain to any part of\r\n the Derivative Works; and\r\n\r\n (d) If the Work includes a \"NOTICE\" text file as part of its\r\n distribution, then any Derivative Works that You distribute must\r\n include a readable copy of the attribution notices contained\r\n within such NOTICE file, excluding those notices that do not\r\n pertain to any part of the Derivative Works, in at least one\r\n of the following places: within a NOTICE text file distributed\r\n as part of the Derivative Works; within the Source form or\r\n documentation, if provided along with the Derivative Works; or,\r\n within a display generated by the Derivative Works, if and\r\n wherever such third-party notices normally appear. The contents\r\n of the NOTICE file are for informational purposes only and\r\n do not modify the License. You may add Your own attribution\r\n notices within Derivative Works that You distribute, alongside\r\n or as an addendum to the NOTICE text from the Work, provided\r\n that such additional attribution notices cannot be construed\r\n as modifying the License.\r\n\r\n You may add Your own copyright statement to Your modifications and\r\n may provide additional or different license terms and conditions\r\n for use, reproduction, or distribution of Your modifications, or\r\n for any such Derivative Works as a whole, provided Your use,\r\n reproduction, and distribution of the Work otherwise complies with\r\n the conditions stated in this License.\r\n\r\n 5. Submission of Contributions. Unless You explicitly state otherwise,\r\n any Contribution intentionally submitted for inclusion in the Work\r\n by You to the Licensor shall be under the terms and conditions of\r\n this License, without any additional terms or conditions.\r\n Notwithstanding the above, nothing herein shall supersede or modify\r\n the terms of any separate license agreement you may have executed\r\n with Licensor regarding such Contributions.\r\n\r\n 6. Trademarks. This License does not grant permission to use the trade\r\n names, trademarks, service marks, or product names of the Licensor,\r\n except as required for reasonable and customary use in describing the\r\n origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n 7. Disclaimer of Warranty. Unless required by applicable law or\r\n agreed to in writing, Licensor provides the Work (and each\r\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n implied, including, without limitation, any warranties or conditions\r\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r\n PARTICULAR PURPOSE. You are solely responsible for determining the\r\n appropriateness of using or redistributing the Work and assume any\r\n risks associated with Your exercise of permissions under this License.\r\n\r\n 8. Limitation of Liability. In no event and under no legal theory,\r\n whether in tort (including negligence), contract, or otherwise,\r\n unless required by applicable law (such as deliberate and grossly\r\n negligent acts) or agreed to in writing, shall any Contributor be\r\n liable to You for damages, including any direct, indirect, special,\r\n incidental, or consequential damages of any character arising as a\r\n result of this License or out of the use or inability to use the\r\n Work (including but not limited to damages for loss of goodwill,\r\n work stoppage, computer failure or malfunction, or any and all\r\n other commercial damages or losses), even if such Contributor\r\n has been advised of the possibility of such damages.\r\n\r\n 9. Accepting Warranty or Additional Liability. While redistributing\r\n the Work or Derivative Works thereof, You may choose to offer,\r\n and charge a fee for, acceptance of support, warranty, indemnity,\r\n or other liability obligations and/or rights consistent with this\r\n License. However, in accepting such obligations, You may act only\r\n on Your own behalf and on Your sole responsibility, not on behalf\r\n of any other Contributor, and only if You agree to indemnify,\r\n defend, and hold each Contributor harmless for any liability\r\n incurred by, or claims asserted against, such Contributor by reason\r\n of your accepting any such warranty or additional liability.\r\n\r\nEND OF TERMS AND CONDITIONS"
- },
- {
- "name": "github.com/modern-go/concurrent",
- "path": "github.com/modern-go/concurrent/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/modern-go/reflect2",
- "path": "github.com/modern-go/reflect2/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/mschoch/smat",
- "path": "github.com/mschoch/smat/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/munnerz/goautoneg",
- "path": "github.com/munnerz/goautoneg/LICENSE",
- "licenseText": "Copyright (c) 2011, Open Knowledge Foundation Ltd.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n Neither the name of the Open Knowledge Foundation Ltd. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/nektos/act",
- "path": "github.com/nektos/act/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2022 The Gitea Authors\nCopyright (c) 2019\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/niklasfasching/go-org",
- "path": "github.com/niklasfasching/go-org/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2018 Niklas Fasching\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/nwaples/rardecode/v2",
- "path": "github.com/nwaples/rardecode/v2/LICENSE",
- "licenseText": "Copyright (c) 2015, Nicholas Waples\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/olekukonko/cat",
- "path": "github.com/olekukonko/cat/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2025 Oleku Konko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/olekukonko/errors",
- "path": "github.com/olekukonko/errors/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2025 Oleku Konko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/olekukonko/ll",
- "path": "github.com/olekukonko/ll/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2025 Oleku Konko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/olekukonko/tablewriter",
- "path": "github.com/olekukonko/tablewriter/LICENSE.md",
- "licenseText": "Copyright (C) 2014 by Oleku Konko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/olivere/elastic/v7",
- "path": "github.com/olivere/elastic/v7/LICENSE",
- "licenseText": "The MIT License (MIT)\nCopyright © 2012-2015 Oliver Eilhard\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the “Software”), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/olivere/elastic/v7/uritemplates",
- "path": "github.com/olivere/elastic/v7/uritemplates/LICENSE",
- "licenseText": "Copyright (c) 2013 Joshua Tacoma\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/opencontainers/go-digest",
- "path": "github.com/opencontainers/go-digest/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n https://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n Copyright 2019, 2020 OCI Contributors\n Copyright 2016 Docker, Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n https://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/opencontainers/image-spec",
- "path": "github.com/opencontainers/image-spec/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n Copyright 2016 The Linux Foundation.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/philhofer/fwd",
- "path": "github.com/philhofer/fwd/LICENSE.md",
- "licenseText": "Copyright (c) 2014-2015, Philip Hofer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
- },
- {
- "name": "github.com/pierrec/lz4/v4",
- "path": "github.com/pierrec/lz4/v4/LICENSE",
- "licenseText": "Copyright (c) 2015, Pierre Curto\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of xxHash nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
- },
- {
- "name": "github.com/pjbgf/sha1cd",
- "path": "github.com/pjbgf/sha1cd/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2023 pjbgf\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/pkg/errors",
- "path": "github.com/pkg/errors/LICENSE",
- "licenseText": "Copyright (c) 2015, Dave Cheney \u003cdave@cheney.net\u003e\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/pmezard/go-difflib",
- "path": "github.com/pmezard/go-difflib/LICENSE",
- "licenseText": "Copyright (c) 2013, Patrick Mezard\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n The names of its contributors may not be used to endorse or promote\nproducts derived from this software without specific prior written\npermission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/pquerna/otp",
- "path": "github.com/pquerna/otp/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/prometheus/client_golang",
- "path": "github.com/prometheus/client_golang/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/prometheus/client_golang/internal/github.com/golang/gddo",
- "path": "github.com/prometheus/client_golang/internal/github.com/golang/gddo/LICENSE",
- "licenseText": "Copyright (c) 2013 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/prometheus/client_model",
- "path": "github.com/prometheus/client_model/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/prometheus/common",
- "path": "github.com/prometheus/common/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/prometheus/procfs",
- "path": "github.com/prometheus/procfs/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/redis/go-redis/v9",
- "path": "github.com/redis/go-redis/v9/LICENSE",
- "licenseText": "Copyright (c) 2013 The github.com/redis/go-redis Authors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/rhysd/actionlint",
- "path": "github.com/rhysd/actionlint/LICENSE.txt",
- "licenseText": "the MIT License\n\nCopyright (c) 2021 rhysd\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\nTHE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
- },
- {
- "name": "github.com/robfig/cron/v3",
- "path": "github.com/robfig/cron/v3/LICENSE",
- "licenseText": "Copyright (C) 2012 Rob Figueiredo\nAll Rights Reserved.\n\nMIT LICENSE\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "github.com/rs/xid",
- "path": "github.com/rs/xid/LICENSE",
- "licenseText": "Copyright (c) 2015 Olivier Poitrey \u003crs@dailymotion.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/russross/blackfriday/v2",
- "path": "github.com/russross/blackfriday/v2/LICENSE.txt",
- "licenseText": "Blackfriday is distributed under the Simplified BSD License:\n\n\u003e Copyright © 2011 Russ Ross\n\u003e All rights reserved.\n\u003e\n\u003e Redistribution and use in source and binary forms, with or without\n\u003e modification, are permitted provided that the following conditions\n\u003e are met:\n\u003e\n\u003e 1. Redistributions of source code must retain the above copyright\n\u003e notice, this list of conditions and the following disclaimer.\n\u003e\n\u003e 2. Redistributions in binary form must reproduce the above\n\u003e copyright notice, this list of conditions and the following\n\u003e disclaimer in the documentation and/or other materials provided with\n\u003e the distribution.\n\u003e\n\u003e THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\u003e \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\u003e LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n\u003e FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n\u003e COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n\u003e INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n\u003e BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\u003e LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n\u003e CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n\u003e LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\n\u003e ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n\u003e POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/santhosh-tekuri/jsonschema/v6",
- "path": "github.com/santhosh-tekuri/jsonschema/v6/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability."
- },
- {
- "name": "github.com/sassoftware/go-rpmutils",
- "path": "github.com/sassoftware/go-rpmutils/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/sergi/go-diff",
- "path": "github.com/sergi/go-diff/LICENSE",
- "licenseText": "Copyright (c) 2012-2016 The go-diff Authors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\n"
- },
- {
- "name": "github.com/shopspring/decimal",
- "path": "github.com/shopspring/decimal/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 Spring, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n- Based on https://github.com/oguzbilgic/fpd, which has the following license:\n\"\"\"\nThe MIT License (MIT)\n\nCopyright (c) 2013 Oguz Bilgic\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\"\"\"\n"
- },
- {
- "name": "github.com/sirupsen/logrus",
- "path": "github.com/sirupsen/logrus/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Eskildsen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/skeema/knownhosts",
- "path": "github.com/skeema/knownhosts/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/sorairolake/lzip-go",
- "path": "github.com/sorairolake/lzip-go/LICENSE-APACHE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "github.com/spf13/afero",
- "path": "github.com/spf13/afero/LICENSE.txt",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n"
- },
- {
- "name": "github.com/ssor/bom",
- "path": "github.com/ssor/bom/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2017 Asher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/stretchr/testify",
- "path": "github.com/stretchr/testify/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/syndtr/goleveldb",
- "path": "github.com/syndtr/goleveldb/LICENSE",
- "licenseText": "Copyright 2012 Suryandaru Triandana \u003csyndtr@gmail.com\u003e\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/tinylib/msgp",
- "path": "github.com/tinylib/msgp/LICENSE",
- "licenseText": "Copyright (c) 2014 Philip Hofer\nPortions Copyright (c) 2009 The Go Authors (license at http://golang.org) where indicated\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
- },
- {
- "name": "github.com/tstranex/u2f",
- "path": "github.com/tstranex/u2f/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 The Go FIDO U2F Library Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "github.com/ulikunitz/xz",
- "path": "github.com/ulikunitz/xz/LICENSE",
- "licenseText": "Copyright (c) 2014-2022 Ulrich Kunitz\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* My name, Ulrich Kunitz, may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "github.com/unknwon/com",
- "path": "github.com/unknwon/com/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License."
- },
- {
- "name": "github.com/urfave/cli-docs/v3",
- "path": "github.com/urfave/cli-docs/v3/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2023 urfave/cli maintainers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/urfave/cli/v3",
- "path": "github.com/urfave/cli/v3/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2023 urfave/cli maintainers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/wneessen/go-mail",
- "path": "github.com/wneessen/go-mail/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2022-2025 The go-mail Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/wneessen/go-mail/smtp",
- "path": "github.com/wneessen/go-mail/smtp/LICENSE",
- "licenseText": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
- },
- {
- "name": "github.com/x448/float16",
- "path": "github.com/x448/float16/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2019 Montgomery Edwards⁴⁴⁸ and Faye Amacker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
- },
- {
- "name": "github.com/xanzy/ssh-agent",
- "path": "github.com/xanzy/ssh-agent/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n"
- },
- {
- "name": "github.com/xi2/xz",
- "path": "github.com/xi2/xz/LICENSE",
- "licenseText": "Licensing of github.com/xi2/xz\n==============================\n\n This Go package is a modified version of\n\n XZ Embedded \u003chttp://tukaani.org/xz/embedded.html\u003e\n\n The contents of the testdata directory are modified versions of\n the test files from\n\n XZ Utils \u003chttp://tukaani.org/xz/\u003e\n\n All the files in this package have been written by Michael Cross,\n Lasse Collin and/or Igor PavLov. All these files have been put\n into the public domain. You can do whatever you want with these\n files.\n\n This software is provided \"as is\", without any warranty.\n"
- },
- {
- "name": "github.com/yohcop/openid-go",
- "path": "github.com/yohcop/openid-go/LICENSE",
- "licenseText": "Copyright 2015 Yohann Coppel\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
- },
- {
- "name": "github.com/yuin/goldmark-highlighting/v2",
- "path": "github.com/yuin/goldmark-highlighting/v2/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2019 Yusuke Inuzuka\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/yuin/goldmark",
- "path": "github.com/yuin/goldmark/LICENSE",
- "licenseText": "MIT License\n\nCopyright (c) 2019 Yusuke Inuzuka\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
- },
- {
- "name": "github.com/zeebo/blake3",
- "path": "github.com/zeebo/blake3/LICENSE",
- "licenseText": "This work is released into the public domain with CC0 1.0.\n\n-------------------------------------------------------------------------------\n\nCreative Commons Legal Code\n\nCC0 1.0 Universal\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS\n PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\n THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED\n HEREUNDER.\n\nStatement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator\nand subsequent owner(s) (each and all, an \"owner\") of an original work of\nauthorship and/or a database (each, a \"Work\").\n\nCertain owners wish to permanently relinquish those rights to a Work for\nthe purpose of contributing to a commons of creative, cultural and\nscientific works (\"Commons\") that the public can reliably and without fear\nof later claims of infringement build upon, modify, incorporate in other\nworks, reuse and redistribute as freely as possible in any form whatsoever\nand for any purposes, including without limitation commercial purposes.\nThese owners may contribute to the Commons to promote the ideal of a free\nculture and the further production of creative, cultural and scientific\nworks, or to gain reputation or greater distribution for their Work in\npart through the use and efforts of others.\n\nFor these and/or other purposes and motivations, and without any\nexpectation of additional consideration or compensation, the person\nassociating CC0 with a Work (the \"Affirmer\"), to the extent that he or she\nis an owner of Copyright and Related Rights in the Work, voluntarily\nelects to apply CC0 to the Work and publicly distribute the Work under its\nterms, with knowledge of his or her Copyright and Related Rights in the\nWork and the meaning and intended legal effect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\nprotected by copyright and related or neighboring rights (\"Copyright and\nRelated Rights\"). Copyright and Related Rights include, but are not\nlimited to, the following:\n\n i. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n ii. moral rights retained by the original author(s) and/or performer(s);\niii. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n iv. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n v. rights protecting the extraction, dissemination, use and reuse of data\n in a Work;\n vi. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\nvii. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention\nof, applicable law, Affirmer hereby overtly, fully, permanently,\nirrevocably and unconditionally waives, abandons, and surrenders all of\nAffirmer's Copyright and Related Rights and associated claims and causes\nof action, whether now known or unknown (including existing as well as\nfuture claims and causes of action), in the Work (i) in all territories\nworldwide, (ii) for the maximum duration provided by applicable law or\ntreaty (including future time extensions), (iii) in any current or future\nmedium and for any number of copies, and (iv) for any purpose whatsoever,\nincluding without limitation commercial, advertising or promotional\npurposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each\nmember of the public at large and to the detriment of Affirmer's heirs and\nsuccessors, fully intending that such Waiver shall not be subject to\nrevocation, rescission, cancellation, termination, or any other legal or\nequitable action to disrupt the quiet enjoyment of the Work by the public\nas contemplated by Affirmer's express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason\nbe judged legally invalid or ineffective under applicable law, then the\nWaiver shall be preserved to the maximum extent permitted taking into\naccount Affirmer's express Statement of Purpose. In addition, to the\nextent the Waiver is so judged Affirmer hereby grants to each affected\nperson a royalty-free, non transferable, non sublicensable, non exclusive,\nirrevocable and unconditional license to exercise Affirmer's Copyright and\nRelated Rights in the Work (i) in all territories worldwide, (ii) for the\nmaximum duration provided by applicable law or treaty (including future\ntime extensions), (iii) in any current or future medium and for any number\nof copies, and (iv) for any purpose whatsoever, including without\nlimitation commercial, advertising or promotional purposes (the\n\"License\"). The License shall be deemed effective as of the date CC0 was\napplied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder\nof the License, and in such case Affirmer hereby affirms that he or she\nwill not (i) exercise any of his or her remaining Copyright and Related\nRights in the Work or (ii) assert any associated claims and causes of\naction with respect to the Work, in either case contrary to Affirmer's\nexpress Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\n a. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n b. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy, or\n the present or absence of errors, whether or not discoverable, all to\n the greatest extent permissible under applicable law.\n c. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person's Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the\n Work.\n d. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n"
- },
- {
- "name": "gitlab.com/gitlab-org/api/client-go",
- "path": "gitlab.com/gitlab-org/api/client-go/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "go.etcd.io/bbolt",
- "path": "go.etcd.io/bbolt/LICENSE",
- "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2013 Ben Johnson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
- },
- {
- "name": "go.uber.org/atomic",
- "path": "go.uber.org/atomic/LICENSE.txt",
- "licenseText": "Copyright (c) 2016 Uber Technologies, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "go.uber.org/multierr",
- "path": "go.uber.org/multierr/LICENSE.txt",
- "licenseText": "Copyright (c) 2017-2021 Uber Technologies, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "go.uber.org/zap",
- "path": "go.uber.org/zap/LICENSE",
- "licenseText": "Copyright (c) 2016-2024 Uber Technologies, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "go.uber.org/zap/exp",
- "path": "go.uber.org/zap/exp/LICENSE",
- "licenseText": "Copyright (c) 2016-2024 Uber Technologies, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "go.yaml.in/yaml/v2",
- "path": "go.yaml.in/yaml/v2/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "go.yaml.in/yaml/v3",
- "path": "go.yaml.in/yaml/v3/LICENSE",
- "licenseText": "\nThis project is covered by two different licenses: MIT and Apache.\n\n#### MIT License ####\n\nThe following files were ported to Go from C files of libyaml, and thus\nare still covered by their original MIT license, with the additional\ncopyright staring in 2011 when the project was ported over:\n\n apic.go emitterc.go parserc.go readerc.go scannerc.go\n writerc.go yamlh.go yamlprivateh.go\n\nCopyright (c) 2006-2010 Kirill Simonov\nCopyright (c) 2006-2011 Kirill Simonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n### Apache License ###\n\nAll the remaining project files are covered by the Apache license:\n\nCopyright (c) 2011-2019 Canonical Ltd\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
- },
- {
- "name": "go.yaml.in/yaml/v4",
- "path": "go.yaml.in/yaml/v4/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2025 - The go-yaml Project Contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "go4.org",
- "path": "go4.org/LICENSE",
- "licenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n"
- },
- {
- "name": "golang.org/x/crypto",
- "path": "golang.org/x/crypto/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/image",
- "path": "golang.org/x/image/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/mod",
- "path": "golang.org/x/mod/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/net",
- "path": "golang.org/x/net/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/oauth2",
- "path": "golang.org/x/oauth2/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/sync",
- "path": "golang.org/x/sync/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/sys",
- "path": "golang.org/x/sys/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/text",
- "path": "golang.org/x/text/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "golang.org/x/time",
- "path": "golang.org/x/time/LICENSE",
- "licenseText": "Copyright 2009 The Go Authors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google LLC nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "google.golang.org/genproto/googleapis/rpc",
- "path": "google.golang.org/genproto/googleapis/rpc/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "google.golang.org/grpc",
- "path": "google.golang.org/grpc/LICENSE",
- "licenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "google.golang.org/protobuf",
- "path": "google.golang.org/protobuf/LICENSE",
- "licenseText": "Copyright (c) 2018 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "gopkg.in/ini.v1",
- "path": "gopkg.in/ini.v1/LICENSE",
- "licenseText": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright 2014 Unknwon\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
- },
- {
- "name": "gopkg.in/warnings.v0",
- "path": "gopkg.in/warnings.v0/LICENSE",
- "licenseText": "Copyright (c) 2016 Péter Surányi.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "gopkg.in/yaml.v3",
- "path": "gopkg.in/yaml.v3/LICENSE",
- "licenseText": "\nThis project is covered by two different licenses: MIT and Apache.\n\n#### MIT License ####\n\nThe following files were ported to Go from C files of libyaml, and thus\nare still covered by their original MIT license, with the additional\ncopyright staring in 2011 when the project was ported over:\n\n apic.go emitterc.go parserc.go readerc.go scannerc.go\n writerc.go yamlh.go yamlprivateh.go\n\nCopyright (c) 2006-2010 Kirill Simonov\nCopyright (c) 2006-2011 Kirill Simonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n### Apache License ###\n\nAll the remaining project files are covered by the Apache license:\n\nCopyright (c) 2011-2019 Canonical Ltd\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
- },
- {
- "name": "mvdan.cc/xurls/v2",
- "path": "mvdan.cc/xurls/v2/LICENSE",
- "licenseText": "Copyright (c) 2015, Daniel Martí. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of the copyright holder nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "strk.kbt.io/projects/go/libravatar",
- "path": "strk.kbt.io/projects/go/libravatar/LICENSE",
- "licenseText": "Copyright (c) 2016 Sandro Santilli \u003cstrk@kbt.io\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
- },
- {
- "name": "xorm.io/builder",
- "path": "xorm.io/builder/LICENSE",
- "licenseText": "Copyright (c) 2016 The Xorm Authors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the {organization} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- },
- {
- "name": "xorm.io/xorm",
- "path": "xorm.io/xorm/LICENSE",
- "licenseText": "Copyright (c) 2013 - 2015 The Xorm Authors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the {organization} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
- }
-]
diff --git a/modules/svg/svg.go b/modules/svg/svg.go
index 234b1f8c1303a..3c0ee77422309 100644
--- a/modules/svg/svg.go
+++ b/modules/svg/svg.go
@@ -40,11 +40,7 @@ const defaultSize = 16
// Init discovers SVG icons and populates the `svgIcons` variable
func Init() error {
const svgAssetsPath = "assets/img/svg"
- files, err := public.AssetFS().ListFiles(svgAssetsPath)
- if err != nil {
- return err
- }
-
+ files, _ := public.AssetFS().ListFiles(svgAssetsPath)
svgIcons = make(map[string]svgIconItem, len(files))
for _, file := range files {
if path.Ext(file) != ".svg" {
diff --git a/options/fileicon/material-icon-rules.json b/options/fileicon/material-icon-rules.json
deleted file mode 100644
index 57dc1b4c29c88..0000000000000
--- a/options/fileicon/material-icon-rules.json
+++ /dev/null
@@ -1,13051 +0,0 @@
-{
- "folderNames": {
- "rust": "folder-rust",
- ".rust": "folder-rust",
- "_rust": "folder-rust",
- "-rust": "folder-rust",
- "__rust__": "folder-rust",
- "bot": "folder-robot",
- ".bot": "folder-robot",
- "_bot": "folder-robot",
- "-bot": "folder-robot",
- "__bot__": "folder-robot",
- "bots": "folder-robot",
- ".bots": "folder-robot",
- "_bots": "folder-robot",
- "-bots": "folder-robot",
- "__bots__": "folder-robot",
- "robot": "folder-robot",
- ".robot": "folder-robot",
- "_robot": "folder-robot",
- "-robot": "folder-robot",
- "__robot__": "folder-robot",
- "robots": "folder-robot",
- ".robots": "folder-robot",
- "_robots": "folder-robot",
- "-robots": "folder-robot",
- "__robots__": "folder-robot",
- "agent": "folder-robot",
- ".agent": "folder-robot",
- "_agent": "folder-robot",
- "-agent": "folder-robot",
- "__agent__": "folder-robot",
- "agents": "folder-robot",
- ".agents": "folder-robot",
- "_agents": "folder-robot",
- "-agents": "folder-robot",
- "__agents__": "folder-robot",
- "src": "folder-src",
- ".src": "folder-src",
- "_src": "folder-src",
- "-src": "folder-src",
- "__src__": "folder-src",
- "srcs": "folder-src",
- ".srcs": "folder-src",
- "_srcs": "folder-src",
- "-srcs": "folder-src",
- "__srcs__": "folder-src",
- "source": "folder-src",
- ".source": "folder-src",
- "_source": "folder-src",
- "-source": "folder-src",
- "__source__": "folder-src",
- "sources": "folder-src",
- ".sources": "folder-src",
- "_sources": "folder-src",
- "-sources": "folder-src",
- "__sources__": "folder-src",
- "code": "folder-src",
- ".code": "folder-src",
- "_code": "folder-src",
- "-code": "folder-src",
- "__code__": "folder-src",
- "dist": "folder-dist",
- ".dist": "folder-dist",
- "_dist": "folder-dist",
- "-dist": "folder-dist",
- "__dist__": "folder-dist",
- "out": "folder-dist",
- ".out": "folder-dist",
- "_out": "folder-dist",
- "-out": "folder-dist",
- "__out__": "folder-dist",
- "output": "folder-dist",
- ".output": "folder-dist",
- "_output": "folder-dist",
- "-output": "folder-dist",
- "__output__": "folder-dist",
- "outputs": "folder-dist",
- ".outputs": "folder-dist",
- "_outputs": "folder-dist",
- "-outputs": "folder-dist",
- "__outputs__": "folder-dist",
- "build": "folder-dist",
- ".build": "folder-dist",
- "_build": "folder-dist",
- "-build": "folder-dist",
- "__build__": "folder-dist",
- "builds": "folder-dist",
- ".builds": "folder-dist",
- "_builds": "folder-dist",
- "-builds": "folder-dist",
- "__builds__": "folder-dist",
- "release": "folder-dist",
- ".release": "folder-dist",
- "_release": "folder-dist",
- "-release": "folder-dist",
- "__release__": "folder-dist",
- "bin": "folder-dist",
- ".bin": "folder-dist",
- "_bin": "folder-dist",
- "-bin": "folder-dist",
- "__bin__": "folder-dist",
- "distribution": "folder-dist",
- ".distribution": "folder-dist",
- "_distribution": "folder-dist",
- "-distribution": "folder-dist",
- "__distribution__": "folder-dist",
- "built": "folder-dist",
- ".built": "folder-dist",
- "_built": "folder-dist",
- "-built": "folder-dist",
- "__built__": "folder-dist",
- "compiled": "folder-dist",
- ".compiled": "folder-dist",
- "_compiled": "folder-dist",
- "-compiled": "folder-dist",
- "__compiled__": "folder-dist",
- "css": "folder-css",
- ".css": "folder-css",
- "_css": "folder-css",
- "-css": "folder-css",
- "__css__": "folder-css",
- "stylesheet": "folder-css",
- ".stylesheet": "folder-css",
- "_stylesheet": "folder-css",
- "-stylesheet": "folder-css",
- "__stylesheet__": "folder-css",
- "stylesheets": "folder-css",
- ".stylesheets": "folder-css",
- "_stylesheets": "folder-css",
- "-stylesheets": "folder-css",
- "__stylesheets__": "folder-css",
- "style": "folder-css",
- ".style": "folder-css",
- "_style": "folder-css",
- "-style": "folder-css",
- "__style__": "folder-css",
- "styles": "folder-css",
- ".styles": "folder-css",
- "_styles": "folder-css",
- "-styles": "folder-css",
- "__styles__": "folder-css",
- "sass": "folder-sass",
- ".sass": "folder-sass",
- "_sass": "folder-sass",
- "-sass": "folder-sass",
- "__sass__": "folder-sass",
- "scss": "folder-sass",
- ".scss": "folder-sass",
- "_scss": "folder-sass",
- "-scss": "folder-sass",
- "__scss__": "folder-sass",
- "tv": "folder-television",
- ".tv": "folder-television",
- "_tv": "folder-television",
- "-tv": "folder-television",
- "__tv__": "folder-television",
- "television": "folder-television",
- ".television": "folder-television",
- "_television": "folder-television",
- "-television": "folder-television",
- "__television__": "folder-television",
- "desktop": "folder-desktop",
- ".desktop": "folder-desktop",
- "_desktop": "folder-desktop",
- "-desktop": "folder-desktop",
- "__desktop__": "folder-desktop",
- "display": "folder-desktop",
- ".display": "folder-desktop",
- "_display": "folder-desktop",
- "-display": "folder-desktop",
- "__display__": "folder-desktop",
- "console": "folder-console",
- ".console": "folder-console",
- "_console": "folder-console",
- "-console": "folder-console",
- "__console__": "folder-console",
- "xbox": "folder-console",
- ".xbox": "folder-console",
- "_xbox": "folder-console",
- "-xbox": "folder-console",
- "__xbox__": "folder-console",
- "ps4": "folder-console",
- ".ps4": "folder-console",
- "_ps4": "folder-console",
- "-ps4": "folder-console",
- "__ps4__": "folder-console",
- "ps5": "folder-console",
- ".ps5": "folder-console",
- "_ps5": "folder-console",
- "-ps5": "folder-console",
- "__ps5__": "folder-console",
- "switch": "folder-console",
- ".switch": "folder-console",
- "_switch": "folder-console",
- "-switch": "folder-console",
- "__switch__": "folder-console",
- "game": "folder-console",
- ".game": "folder-console",
- "_game": "folder-console",
- "-game": "folder-console",
- "__game__": "folder-console",
- "games": "folder-console",
- ".games": "folder-console",
- "_games": "folder-console",
- "-games": "folder-console",
- "__games__": "folder-console",
- "images": "folder-images",
- ".images": "folder-images",
- "_images": "folder-images",
- "-images": "folder-images",
- "__images__": "folder-images",
- "image": "folder-images",
- ".image": "folder-images",
- "_image": "folder-images",
- "-image": "folder-images",
- "__image__": "folder-images",
- "imgs": "folder-images",
- ".imgs": "folder-images",
- "_imgs": "folder-images",
- "-imgs": "folder-images",
- "__imgs__": "folder-images",
- "img": "folder-images",
- ".img": "folder-images",
- "_img": "folder-images",
- "-img": "folder-images",
- "__img__": "folder-images",
- "icons": "folder-images",
- ".icons": "folder-images",
- "_icons": "folder-images",
- "-icons": "folder-images",
- "__icons__": "folder-images",
- "icon": "folder-images",
- ".icon": "folder-images",
- "_icon": "folder-images",
- "-icon": "folder-images",
- "__icon__": "folder-images",
- "icos": "folder-images",
- ".icos": "folder-images",
- "_icos": "folder-images",
- "-icos": "folder-images",
- "__icos__": "folder-images",
- "ico": "folder-images",
- ".ico": "folder-images",
- "_ico": "folder-images",
- "-ico": "folder-images",
- "__ico__": "folder-images",
- "figures": "folder-images",
- ".figures": "folder-images",
- "_figures": "folder-images",
- "-figures": "folder-images",
- "__figures__": "folder-images",
- "figure": "folder-images",
- ".figure": "folder-images",
- "_figure": "folder-images",
- "-figure": "folder-images",
- "__figure__": "folder-images",
- "figs": "folder-images",
- ".figs": "folder-images",
- "_figs": "folder-images",
- "-figs": "folder-images",
- "__figs__": "folder-images",
- "fig": "folder-images",
- ".fig": "folder-images",
- "_fig": "folder-images",
- "-fig": "folder-images",
- "__fig__": "folder-images",
- "screenshot": "folder-images",
- ".screenshot": "folder-images",
- "_screenshot": "folder-images",
- "-screenshot": "folder-images",
- "__screenshot__": "folder-images",
- "screenshots": "folder-images",
- ".screenshots": "folder-images",
- "_screenshots": "folder-images",
- "-screenshots": "folder-images",
- "__screenshots__": "folder-images",
- "screengrab": "folder-images",
- ".screengrab": "folder-images",
- "_screengrab": "folder-images",
- "-screengrab": "folder-images",
- "__screengrab__": "folder-images",
- "screengrabs": "folder-images",
- ".screengrabs": "folder-images",
- "_screengrabs": "folder-images",
- "-screengrabs": "folder-images",
- "__screengrabs__": "folder-images",
- "pic": "folder-images",
- ".pic": "folder-images",
- "_pic": "folder-images",
- "-pic": "folder-images",
- "__pic__": "folder-images",
- "pics": "folder-images",
- ".pics": "folder-images",
- "_pics": "folder-images",
- "-pics": "folder-images",
- "__pics__": "folder-images",
- "picture": "folder-images",
- ".picture": "folder-images",
- "_picture": "folder-images",
- "-picture": "folder-images",
- "__picture__": "folder-images",
- "pictures": "folder-images",
- ".pictures": "folder-images",
- "_pictures": "folder-images",
- "-pictures": "folder-images",
- "__pictures__": "folder-images",
- "photo": "folder-images",
- ".photo": "folder-images",
- "_photo": "folder-images",
- "-photo": "folder-images",
- "__photo__": "folder-images",
- "photos": "folder-images",
- ".photos": "folder-images",
- "_photos": "folder-images",
- "-photos": "folder-images",
- "__photos__": "folder-images",
- "photograph": "folder-images",
- ".photograph": "folder-images",
- "_photograph": "folder-images",
- "-photograph": "folder-images",
- "__photograph__": "folder-images",
- "photographs": "folder-images",
- ".photographs": "folder-images",
- "_photographs": "folder-images",
- "-photographs": "folder-images",
- "__photographs__": "folder-images",
- "texture": "folder-images",
- ".texture": "folder-images",
- "_texture": "folder-images",
- "-texture": "folder-images",
- "__texture__": "folder-images",
- "textures": "folder-images",
- ".textures": "folder-images",
- "_textures": "folder-images",
- "-textures": "folder-images",
- "__textures__": "folder-images",
- "script": "folder-scripts",
- ".script": "folder-scripts",
- "_script": "folder-scripts",
- "-script": "folder-scripts",
- "__script__": "folder-scripts",
- "scripts": "folder-scripts",
- ".scripts": "folder-scripts",
- "_scripts": "folder-scripts",
- "-scripts": "folder-scripts",
- "__scripts__": "folder-scripts",
- "scripting": "folder-scripts",
- ".scripting": "folder-scripts",
- "_scripting": "folder-scripts",
- "-scripting": "folder-scripts",
- "__scripting__": "folder-scripts",
- "node": "folder-node",
- ".node": "folder-node",
- "_node": "folder-node",
- "-node": "folder-node",
- "__node__": "folder-node",
- "nodejs": "folder-node",
- ".nodejs": "folder-node",
- "_nodejs": "folder-node",
- "-nodejs": "folder-node",
- "__nodejs__": "folder-node",
- "node_modules": "folder-node",
- ".node_modules": "folder-node",
- "_node_modules": "folder-node",
- "-node_modules": "folder-node",
- "__node_modules__": "folder-node",
- "js": "folder-javascript",
- ".js": "folder-javascript",
- "_js": "folder-javascript",
- "-js": "folder-javascript",
- "__js__": "folder-javascript",
- "javascript": "folder-javascript",
- ".javascript": "folder-javascript",
- "_javascript": "folder-javascript",
- "-javascript": "folder-javascript",
- "__javascript__": "folder-javascript",
- "javascripts": "folder-javascript",
- ".javascripts": "folder-javascript",
- "_javascripts": "folder-javascript",
- "-javascripts": "folder-javascript",
- "__javascripts__": "folder-javascript",
- "cjs": "folder-javascript",
- ".cjs": "folder-javascript",
- "_cjs": "folder-javascript",
- "-cjs": "folder-javascript",
- "__cjs__": "folder-javascript",
- "mjs": "folder-javascript",
- ".mjs": "folder-javascript",
- "_mjs": "folder-javascript",
- "-mjs": "folder-javascript",
- "__mjs__": "folder-javascript",
- "json": "folder-json",
- ".json": "folder-json",
- "_json": "folder-json",
- "-json": "folder-json",
- "__json__": "folder-json",
- "jsons": "folder-json",
- ".jsons": "folder-json",
- "_jsons": "folder-json",
- "-jsons": "folder-json",
- "__jsons__": "folder-json",
- "jsonc": "folder-json",
- ".jsonc": "folder-json",
- "_jsonc": "folder-json",
- "-jsonc": "folder-json",
- "__jsonc__": "folder-json",
- "jsonl": "folder-json",
- ".jsonl": "folder-json",
- "_jsonl": "folder-json",
- "-jsonl": "folder-json",
- "__jsonl__": "folder-json",
- "font": "folder-font",
- ".font": "folder-font",
- "_font": "folder-font",
- "-font": "folder-font",
- "__font__": "folder-font",
- "fonts": "folder-font",
- ".fonts": "folder-font",
- "_fonts": "folder-font",
- "-fonts": "folder-font",
- "__fonts__": "folder-font",
- "typeface": "folder-font",
- ".typeface": "folder-font",
- "_typeface": "folder-font",
- "-typeface": "folder-font",
- "__typeface__": "folder-font",
- "typefaces": "folder-font",
- ".typefaces": "folder-font",
- "_typefaces": "folder-font",
- "-typefaces": "folder-font",
- "__typefaces__": "folder-font",
- "bower_components": "folder-bower",
- ".bower_components": "folder-bower",
- "_bower_components": "folder-bower",
- "-bower_components": "folder-bower",
- "__bower_components__": "folder-bower",
- "test": "folder-test",
- ".test": "folder-test",
- "_test": "folder-test",
- "-test": "folder-test",
- "__test__": "folder-test",
- "tests": "folder-test",
- ".tests": "folder-test",
- "_tests": "folder-test",
- "-tests": "folder-test",
- "__tests__": "folder-test",
- "testing": "folder-test",
- ".testing": "folder-test",
- "_testing": "folder-test",
- "-testing": "folder-test",
- "__testing__": "folder-test",
- "snapshots": "folder-test",
- ".snapshots": "folder-test",
- "_snapshots": "folder-test",
- "-snapshots": "folder-test",
- "__snapshots__": "folder-test",
- "spec": "folder-test",
- ".spec": "folder-test",
- "_spec": "folder-test",
- "-spec": "folder-test",
- "__spec__": "folder-test",
- "specs": "folder-test",
- ".specs": "folder-test",
- "_specs": "folder-test",
- "-specs": "folder-test",
- "__specs__": "folder-test",
- "testfiles": "folder-test",
- ".testfiles": "folder-test",
- "_testfiles": "folder-test",
- "-testfiles": "folder-test",
- "__testfiles__": "folder-test",
- "directive": "folder-directive",
- ".directive": "folder-directive",
- "_directive": "folder-directive",
- "-directive": "folder-directive",
- "__directive__": "folder-directive",
- "directives": "folder-directive",
- ".directives": "folder-directive",
- "_directives": "folder-directive",
- "-directives": "folder-directive",
- "__directives__": "folder-directive",
- "jinja": "folder-jinja",
- ".jinja": "folder-jinja",
- "_jinja": "folder-jinja",
- "-jinja": "folder-jinja",
- "__jinja__": "folder-jinja",
- "jinja2": "folder-jinja",
- ".jinja2": "folder-jinja",
- "_jinja2": "folder-jinja",
- "-jinja2": "folder-jinja",
- "__jinja2__": "folder-jinja",
- "j2": "folder-jinja",
- ".j2": "folder-jinja",
- "_j2": "folder-jinja",
- "-j2": "folder-jinja",
- "__j2__": "folder-jinja",
- "markdown": "folder-markdown",
- ".markdown": "folder-markdown",
- "_markdown": "folder-markdown",
- "-markdown": "folder-markdown",
- "__markdown__": "folder-markdown",
- "md": "folder-markdown",
- ".md": "folder-markdown",
- "_md": "folder-markdown",
- "-md": "folder-markdown",
- "__md__": "folder-markdown",
- "pdm-plugins": "folder-pdm",
- ".pdm-plugins": "folder-pdm",
- "_pdm-plugins": "folder-pdm",
- "-pdm-plugins": "folder-pdm",
- "__pdm-plugins__": "folder-pdm",
- "pdm-build": "folder-pdm",
- ".pdm-build": "folder-pdm",
- "_pdm-build": "folder-pdm",
- "-pdm-build": "folder-pdm",
- "__pdm-build__": "folder-pdm",
- "php": "folder-php",
- ".php": "folder-php",
- "_php": "folder-php",
- "-php": "folder-php",
- "__php__": "folder-php",
- "phpmailer": "folder-phpmailer",
- ".phpmailer": "folder-phpmailer",
- "_phpmailer": "folder-phpmailer",
- "-phpmailer": "folder-phpmailer",
- "__phpmailer__": "folder-phpmailer",
- "sublime": "folder-sublime",
- ".sublime": "folder-sublime",
- "_sublime": "folder-sublime",
- "-sublime": "folder-sublime",
- "__sublime__": "folder-sublime",
- "doc": "folder-docs",
- ".doc": "folder-docs",
- "_doc": "folder-docs",
- "-doc": "folder-docs",
- "__doc__": "folder-docs",
- "docs": "folder-docs",
- ".docs": "folder-docs",
- "_docs": "folder-docs",
- "-docs": "folder-docs",
- "__docs__": "folder-docs",
- "document": "folder-docs",
- ".document": "folder-docs",
- "_document": "folder-docs",
- "-document": "folder-docs",
- "__document__": "folder-docs",
- "documents": "folder-docs",
- ".documents": "folder-docs",
- "_documents": "folder-docs",
- "-documents": "folder-docs",
- "__documents__": "folder-docs",
- "documentation": "folder-docs",
- ".documentation": "folder-docs",
- "_documentation": "folder-docs",
- "-documentation": "folder-docs",
- "__documentation__": "folder-docs",
- "post": "folder-docs",
- ".post": "folder-docs",
- "_post": "folder-docs",
- "-post": "folder-docs",
- "__post__": "folder-docs",
- "posts": "folder-docs",
- ".posts": "folder-docs",
- "_posts": "folder-docs",
- "-posts": "folder-docs",
- "__posts__": "folder-docs",
- "article": "folder-docs",
- ".article": "folder-docs",
- "_article": "folder-docs",
- "-article": "folder-docs",
- "__article__": "folder-docs",
- "articles": "folder-docs",
- ".articles": "folder-docs",
- "_articles": "folder-docs",
- "-articles": "folder-docs",
- "__articles__": "folder-docs",
- "wiki": "folder-docs",
- ".wiki": "folder-docs",
- "_wiki": "folder-docs",
- "-wiki": "folder-docs",
- "__wiki__": "folder-docs",
- "news": "folder-docs",
- ".news": "folder-docs",
- "_news": "folder-docs",
- "-news": "folder-docs",
- "__news__": "folder-docs",
- "blog": "folder-docs",
- ".blog": "folder-docs",
- "_blog": "folder-docs",
- "-blog": "folder-docs",
- "__blog__": "folder-docs",
- "knowledge": "folder-docs",
- ".knowledge": "folder-docs",
- "_knowledge": "folder-docs",
- "-knowledge": "folder-docs",
- "__knowledge__": "folder-docs",
- "diary": "folder-docs",
- ".diary": "folder-docs",
- "_diary": "folder-docs",
- "-diary": "folder-docs",
- "__diary__": "folder-docs",
- "note": "folder-docs",
- ".note": "folder-docs",
- "_note": "folder-docs",
- "-note": "folder-docs",
- "__note__": "folder-docs",
- "notes": "folder-docs",
- ".notes": "folder-docs",
- "_notes": "folder-docs",
- "-notes": "folder-docs",
- "__notes__": "folder-docs",
- "github/workflows": "folder-gh-workflows",
- ".github/workflows": "folder-gh-workflows",
- "_github/workflows": "folder-gh-workflows",
- "-github/workflows": "folder-gh-workflows",
- "__github/workflows__": "folder-gh-workflows",
- "git": "folder-git",
- ".git": "folder-git",
- "_git": "folder-git",
- "-git": "folder-git",
- "__git__": "folder-git",
- "patches": "folder-git",
- ".patches": "folder-git",
- "_patches": "folder-git",
- "-patches": "folder-git",
- "__patches__": "folder-git",
- "githooks": "folder-git",
- ".githooks": "folder-git",
- "_githooks": "folder-git",
- "-githooks": "folder-git",
- "__githooks__": "folder-git",
- "submodules": "folder-git",
- ".submodules": "folder-git",
- "_submodules": "folder-git",
- "-submodules": "folder-git",
- "__submodules__": "folder-git",
- "github": "folder-github",
- ".github": "folder-github",
- "_github": "folder-github",
- "-github": "folder-github",
- "__github__": "folder-github",
- "gitea": "folder-gitea",
- ".gitea": "folder-gitea",
- "_gitea": "folder-gitea",
- "-gitea": "folder-gitea",
- "__gitea__": "folder-gitea",
- "gitlab": "folder-gitlab",
- ".gitlab": "folder-gitlab",
- "_gitlab": "folder-gitlab",
- "-gitlab": "folder-gitlab",
- "__gitlab__": "folder-gitlab",
- "forgejo": "folder-forgejo",
- ".forgejo": "folder-forgejo",
- "_forgejo": "folder-forgejo",
- "-forgejo": "folder-forgejo",
- "__forgejo__": "folder-forgejo",
- "vscode": "folder-vscode",
- ".vscode": "folder-vscode",
- "_vscode": "folder-vscode",
- "-vscode": "folder-vscode",
- "__vscode__": "folder-vscode",
- "vscode-test": "folder-vscode",
- ".vscode-test": "folder-vscode",
- "_vscode-test": "folder-vscode",
- "-vscode-test": "folder-vscode",
- "__vscode-test__": "folder-vscode",
- "view": "folder-views",
- ".view": "folder-views",
- "_view": "folder-views",
- "-view": "folder-views",
- "__view__": "folder-views",
- "views": "folder-views",
- ".views": "folder-views",
- "_views": "folder-views",
- "-views": "folder-views",
- "__views__": "folder-views",
- "screen": "folder-views",
- ".screen": "folder-views",
- "_screen": "folder-views",
- "-screen": "folder-views",
- "__screen__": "folder-views",
- "screens": "folder-views",
- ".screens": "folder-views",
- "_screens": "folder-views",
- "-screens": "folder-views",
- "__screens__": "folder-views",
- "page": "folder-views",
- ".page": "folder-views",
- "_page": "folder-views",
- "-page": "folder-views",
- "__page__": "folder-views",
- "pages": "folder-views",
- ".pages": "folder-views",
- "_pages": "folder-views",
- "-pages": "folder-views",
- "__pages__": "folder-views",
- "public_html": "folder-views",
- ".public_html": "folder-views",
- "_public_html": "folder-views",
- "-public_html": "folder-views",
- "__public_html__": "folder-views",
- "html": "folder-views",
- ".html": "folder-views",
- "_html": "folder-views",
- "-html": "folder-views",
- "__html__": "folder-views",
- "vue": "folder-vue",
- ".vue": "folder-vue",
- "_vue": "folder-vue",
- "-vue": "folder-vue",
- "__vue__": "folder-vue",
- "vuepress": "folder-vuepress",
- ".vuepress": "folder-vuepress",
- "_vuepress": "folder-vuepress",
- "-vuepress": "folder-vuepress",
- "__vuepress__": "folder-vuepress",
- "expo": "folder-expo",
- ".expo": "folder-expo",
- "_expo": "folder-expo",
- "-expo": "folder-expo",
- "__expo__": "folder-expo",
- "expo-shared": "folder-expo",
- ".expo-shared": "folder-expo",
- "_expo-shared": "folder-expo",
- "-expo-shared": "folder-expo",
- "__expo-shared__": "folder-expo",
- "cfg": "folder-config",
- ".cfg": "folder-config",
- "_cfg": "folder-config",
- "-cfg": "folder-config",
- "__cfg__": "folder-config",
- "cfgs": "folder-config",
- ".cfgs": "folder-config",
- "_cfgs": "folder-config",
- "-cfgs": "folder-config",
- "__cfgs__": "folder-config",
- "conf": "folder-config",
- ".conf": "folder-config",
- "_conf": "folder-config",
- "-conf": "folder-config",
- "__conf__": "folder-config",
- "confs": "folder-config",
- ".confs": "folder-config",
- "_confs": "folder-config",
- "-confs": "folder-config",
- "__confs__": "folder-config",
- "config": "folder-config",
- ".config": "folder-config",
- "_config": "folder-config",
- "-config": "folder-config",
- "__config__": "folder-config",
- "configs": "folder-config",
- ".configs": "folder-config",
- "_configs": "folder-config",
- "-configs": "folder-config",
- "__configs__": "folder-config",
- "configuration": "folder-config",
- ".configuration": "folder-config",
- "_configuration": "folder-config",
- "-configuration": "folder-config",
- "__configuration__": "folder-config",
- "configurations": "folder-config",
- ".configurations": "folder-config",
- "_configurations": "folder-config",
- "-configurations": "folder-config",
- "__configurations__": "folder-config",
- "setting": "folder-config",
- ".setting": "folder-config",
- "_setting": "folder-config",
- "-setting": "folder-config",
- "__setting__": "folder-config",
- "settings": "folder-config",
- ".settings": "folder-config",
- "_settings": "folder-config",
- "-settings": "folder-config",
- "__settings__": "folder-config",
- "meta-inf": "folder-config",
- ".meta-inf": "folder-config",
- "_meta-inf": "folder-config",
- "-meta-inf": "folder-config",
- "__meta-inf__": "folder-config",
- "option": "folder-config",
- ".option": "folder-config",
- "_option": "folder-config",
- "-option": "folder-config",
- "__option__": "folder-config",
- "options": "folder-config",
- ".options": "folder-config",
- "_options": "folder-config",
- "-options": "folder-config",
- "__options__": "folder-config",
- "pref": "folder-config",
- ".pref": "folder-config",
- "_pref": "folder-config",
- "-pref": "folder-config",
- "__pref__": "folder-config",
- "prefs": "folder-config",
- ".prefs": "folder-config",
- "_prefs": "folder-config",
- "-prefs": "folder-config",
- "__prefs__": "folder-config",
- "preference": "folder-config",
- ".preference": "folder-config",
- "_preference": "folder-config",
- "-preference": "folder-config",
- "__preference__": "folder-config",
- "preferences": "folder-config",
- ".preferences": "folder-config",
- "_preferences": "folder-config",
- "-preferences": "folder-config",
- "__preferences__": "folder-config",
- "props": "folder-config",
- ".props": "folder-config",
- "_props": "folder-config",
- "-props": "folder-config",
- "__props__": "folder-config",
- "properties": "folder-config",
- ".properties": "folder-config",
- "_properties": "folder-config",
- "-properties": "folder-config",
- "__properties__": "folder-config",
- "i18n": "folder-i18n",
- ".i18n": "folder-i18n",
- "_i18n": "folder-i18n",
- "-i18n": "folder-i18n",
- "__i18n__": "folder-i18n",
- "internationalization": "folder-i18n",
- ".internationalization": "folder-i18n",
- "_internationalization": "folder-i18n",
- "-internationalization": "folder-i18n",
- "__internationalization__": "folder-i18n",
- "lang": "folder-i18n",
- ".lang": "folder-i18n",
- "_lang": "folder-i18n",
- "-lang": "folder-i18n",
- "__lang__": "folder-i18n",
- "langs": "folder-i18n",
- ".langs": "folder-i18n",
- "_langs": "folder-i18n",
- "-langs": "folder-i18n",
- "__langs__": "folder-i18n",
- "language": "folder-i18n",
- ".language": "folder-i18n",
- "_language": "folder-i18n",
- "-language": "folder-i18n",
- "__language__": "folder-i18n",
- "languages": "folder-i18n",
- ".languages": "folder-i18n",
- "_languages": "folder-i18n",
- "-languages": "folder-i18n",
- "__languages__": "folder-i18n",
- "locale": "folder-i18n",
- ".locale": "folder-i18n",
- "_locale": "folder-i18n",
- "-locale": "folder-i18n",
- "__locale__": "folder-i18n",
- "locales": "folder-i18n",
- ".locales": "folder-i18n",
- "_locales": "folder-i18n",
- "-locales": "folder-i18n",
- "__locales__": "folder-i18n",
- "l10n": "folder-i18n",
- ".l10n": "folder-i18n",
- "_l10n": "folder-i18n",
- "-l10n": "folder-i18n",
- "__l10n__": "folder-i18n",
- "localization": "folder-i18n",
- ".localization": "folder-i18n",
- "_localization": "folder-i18n",
- "-localization": "folder-i18n",
- "__localization__": "folder-i18n",
- "translation": "folder-i18n",
- ".translation": "folder-i18n",
- "_translation": "folder-i18n",
- "-translation": "folder-i18n",
- "__translation__": "folder-i18n",
- "translate": "folder-i18n",
- ".translate": "folder-i18n",
- "_translate": "folder-i18n",
- "-translate": "folder-i18n",
- "__translate__": "folder-i18n",
- "translations": "folder-i18n",
- ".translations": "folder-i18n",
- "_translations": "folder-i18n",
- "-translations": "folder-i18n",
- "__translations__": "folder-i18n",
- "tx": "folder-i18n",
- ".tx": "folder-i18n",
- "_tx": "folder-i18n",
- "-tx": "folder-i18n",
- "__tx__": "folder-i18n",
- "components": "folder-components",
- ".components": "folder-components",
- "_components": "folder-components",
- "-components": "folder-components",
- "__components__": "folder-components",
- "widget": "folder-components",
- ".widget": "folder-components",
- "_widget": "folder-components",
- "-widget": "folder-components",
- "__widget__": "folder-components",
- "widgets": "folder-components",
- ".widgets": "folder-components",
- "_widgets": "folder-components",
- "-widgets": "folder-components",
- "__widgets__": "folder-components",
- "fragments": "folder-components",
- ".fragments": "folder-components",
- "_fragments": "folder-components",
- "-fragments": "folder-components",
- "__fragments__": "folder-components",
- "verdaccio": "folder-verdaccio",
- ".verdaccio": "folder-verdaccio",
- "_verdaccio": "folder-verdaccio",
- "-verdaccio": "folder-verdaccio",
- "__verdaccio__": "folder-verdaccio",
- "aurelia_project": "folder-aurelia",
- ".aurelia_project": "folder-aurelia",
- "_aurelia_project": "folder-aurelia",
- "-aurelia_project": "folder-aurelia",
- "__aurelia_project__": "folder-aurelia",
- "resource": "folder-resource",
- ".resource": "folder-resource",
- "_resource": "folder-resource",
- "-resource": "folder-resource",
- "__resource__": "folder-resource",
- "resources": "folder-resource",
- ".resources": "folder-resource",
- "_resources": "folder-resource",
- "-resources": "folder-resource",
- "__resources__": "folder-resource",
- "res": "folder-resource",
- ".res": "folder-resource",
- "_res": "folder-resource",
- "-res": "folder-resource",
- "__res__": "folder-resource",
- "asset": "folder-resource",
- ".asset": "folder-resource",
- "_asset": "folder-resource",
- "-asset": "folder-resource",
- "__asset__": "folder-resource",
- "assets": "folder-resource",
- ".assets": "folder-resource",
- "_assets": "folder-resource",
- "-assets": "folder-resource",
- "__assets__": "folder-resource",
- "static": "folder-resource",
- ".static": "folder-resource",
- "_static": "folder-resource",
- "-static": "folder-resource",
- "__static__": "folder-resource",
- "report": "folder-resource",
- ".report": "folder-resource",
- "_report": "folder-resource",
- "-report": "folder-resource",
- "__report__": "folder-resource",
- "reports": "folder-resource",
- ".reports": "folder-resource",
- "_reports": "folder-resource",
- "-reports": "folder-resource",
- "__reports__": "folder-resource",
- "lib": "folder-lib",
- ".lib": "folder-lib",
- "_lib": "folder-lib",
- "-lib": "folder-lib",
- "__lib__": "folder-lib",
- "libs": "folder-lib",
- ".libs": "folder-lib",
- "_libs": "folder-lib",
- "-libs": "folder-lib",
- "__libs__": "folder-lib",
- "library": "folder-lib",
- ".library": "folder-lib",
- "_library": "folder-lib",
- "-library": "folder-lib",
- "__library__": "folder-lib",
- "libraries": "folder-lib",
- ".libraries": "folder-lib",
- "_libraries": "folder-lib",
- "-libraries": "folder-lib",
- "__libraries__": "folder-lib",
- "vendor": "folder-lib",
- ".vendor": "folder-lib",
- "_vendor": "folder-lib",
- "-vendor": "folder-lib",
- "__vendor__": "folder-lib",
- "vendors": "folder-lib",
- ".vendors": "folder-lib",
- "_vendors": "folder-lib",
- "-vendors": "folder-lib",
- "__vendors__": "folder-lib",
- "third-party": "folder-lib",
- ".third-party": "folder-lib",
- "_third-party": "folder-lib",
- "-third-party": "folder-lib",
- "__third-party__": "folder-lib",
- "lib64": "folder-lib",
- ".lib64": "folder-lib",
- "_lib64": "folder-lib",
- "-lib64": "folder-lib",
- "__lib64__": "folder-lib",
- "themes": "folder-theme",
- ".themes": "folder-theme",
- "_themes": "folder-theme",
- "-themes": "folder-theme",
- "__themes__": "folder-theme",
- "theme": "folder-theme",
- ".theme": "folder-theme",
- "_theme": "folder-theme",
- "-theme": "folder-theme",
- "__theme__": "folder-theme",
- "color": "folder-theme",
- ".color": "folder-theme",
- "_color": "folder-theme",
- "-color": "folder-theme",
- "__color__": "folder-theme",
- "colors": "folder-theme",
- ".colors": "folder-theme",
- "_colors": "folder-theme",
- "-colors": "folder-theme",
- "__colors__": "folder-theme",
- "colour": "folder-theme",
- ".colour": "folder-theme",
- "_colour": "folder-theme",
- "-colour": "folder-theme",
- "__colour__": "folder-theme",
- "colours": "folder-theme",
- ".colours": "folder-theme",
- "_colours": "folder-theme",
- "-colours": "folder-theme",
- "__colours__": "folder-theme",
- "design": "folder-theme",
- ".design": "folder-theme",
- "_design": "folder-theme",
- "-design": "folder-theme",
- "__design__": "folder-theme",
- "designs": "folder-theme",
- ".designs": "folder-theme",
- "_designs": "folder-theme",
- "-designs": "folder-theme",
- "__designs__": "folder-theme",
- "palette": "folder-theme",
- ".palette": "folder-theme",
- "_palette": "folder-theme",
- "-palette": "folder-theme",
- "__palette__": "folder-theme",
- "palettes": "folder-theme",
- ".palettes": "folder-theme",
- "_palettes": "folder-theme",
- "-palettes": "folder-theme",
- "__palettes__": "folder-theme",
- "webpack": "folder-webpack",
- ".webpack": "folder-webpack",
- "_webpack": "folder-webpack",
- "-webpack": "folder-webpack",
- "__webpack__": "folder-webpack",
- "global": "folder-global",
- ".global": "folder-global",
- "_global": "folder-global",
- "-global": "folder-global",
- "__global__": "folder-global",
- "public": "folder-public",
- ".public": "folder-public",
- "_public": "folder-public",
- "-public": "folder-public",
- "__public__": "folder-public",
- "www": "folder-public",
- ".www": "folder-public",
- "_www": "folder-public",
- "-www": "folder-public",
- "__www__": "folder-public",
- "wwwroot": "folder-public",
- ".wwwroot": "folder-public",
- "_wwwroot": "folder-public",
- "-wwwroot": "folder-public",
- "__wwwroot__": "folder-public",
- "web": "folder-public",
- ".web": "folder-public",
- "_web": "folder-public",
- "-web": "folder-public",
- "__web__": "folder-public",
- "website": "folder-public",
- ".website": "folder-public",
- "_website": "folder-public",
- "-website": "folder-public",
- "__website__": "folder-public",
- "websites": "folder-public",
- ".websites": "folder-public",
- "_websites": "folder-public",
- "-websites": "folder-public",
- "__websites__": "folder-public",
- "site": "folder-public",
- ".site": "folder-public",
- "_site": "folder-public",
- "-site": "folder-public",
- "__site__": "folder-public",
- "browser": "folder-public",
- ".browser": "folder-public",
- "_browser": "folder-public",
- "-browser": "folder-public",
- "__browser__": "folder-public",
- "browsers": "folder-public",
- ".browsers": "folder-public",
- "_browsers": "folder-public",
- "-browsers": "folder-public",
- "__browsers__": "folder-public",
- "proxy": "folder-public",
- ".proxy": "folder-public",
- "_proxy": "folder-public",
- "-proxy": "folder-public",
- "__proxy__": "folder-public",
- "inc": "folder-include",
- ".inc": "folder-include",
- "_inc": "folder-include",
- "-inc": "folder-include",
- "__inc__": "folder-include",
- "include": "folder-include",
- ".include": "folder-include",
- "_include": "folder-include",
- "-include": "folder-include",
- "__include__": "folder-include",
- "includes": "folder-include",
- ".includes": "folder-include",
- "_includes": "folder-include",
- "-includes": "folder-include",
- "__includes__": "folder-include",
- "partial": "folder-include",
- ".partial": "folder-include",
- "_partial": "folder-include",
- "-partial": "folder-include",
- "__partial__": "folder-include",
- "partials": "folder-include",
- ".partials": "folder-include",
- "_partials": "folder-include",
- "-partials": "folder-include",
- "__partials__": "folder-include",
- "inc64": "folder-include",
- ".inc64": "folder-include",
- "_inc64": "folder-include",
- "-inc64": "folder-include",
- "__inc64__": "folder-include",
- "docker": "folder-docker",
- ".docker": "folder-docker",
- "_docker": "folder-docker",
- "-docker": "folder-docker",
- "__docker__": "folder-docker",
- "dockerfiles": "folder-docker",
- ".dockerfiles": "folder-docker",
- "_dockerfiles": "folder-docker",
- "-dockerfiles": "folder-docker",
- "__dockerfiles__": "folder-docker",
- "dockerhub": "folder-docker",
- ".dockerhub": "folder-docker",
- "_dockerhub": "folder-docker",
- "-dockerhub": "folder-docker",
- "__dockerhub__": "folder-docker",
- "nginx": "folder-nginx",
- ".nginx": "folder-nginx",
- "_nginx": "folder-nginx",
- "-nginx": "folder-nginx",
- "__nginx__": "folder-nginx",
- "astro": "folder-astro",
- ".astro": "folder-astro",
- "_astro": "folder-astro",
- "-astro": "folder-astro",
- "__astro__": "folder-astro",
- "db": "folder-database",
- ".db": "folder-database",
- "_db": "folder-database",
- "-db": "folder-database",
- "__db__": "folder-database",
- "data": "folder-database",
- ".data": "folder-database",
- "_data": "folder-database",
- "-data": "folder-database",
- "__data__": "folder-database",
- "database": "folder-database",
- ".database": "folder-database",
- "_database": "folder-database",
- "-database": "folder-database",
- "__database__": "folder-database",
- "databases": "folder-database",
- ".databases": "folder-database",
- "_databases": "folder-database",
- "-databases": "folder-database",
- "__databases__": "folder-database",
- "sql": "folder-database",
- ".sql": "folder-database",
- "_sql": "folder-database",
- "-sql": "folder-database",
- "__sql__": "folder-database",
- "migrations": "folder-migrations",
- ".migrations": "folder-migrations",
- "_migrations": "folder-migrations",
- "-migrations": "folder-migrations",
- "__migrations__": "folder-migrations",
- "migration": "folder-migrations",
- ".migration": "folder-migrations",
- "_migration": "folder-migrations",
- "-migration": "folder-migrations",
- "__migration__": "folder-migrations",
- "log": "folder-log",
- ".log": "folder-log",
- "_log": "folder-log",
- "-log": "folder-log",
- "__log__": "folder-log",
- "logs": "folder-log",
- ".logs": "folder-log",
- "_logs": "folder-log",
- "-logs": "folder-log",
- "__logs__": "folder-log",
- "logging": "folder-log",
- ".logging": "folder-log",
- "_logging": "folder-log",
- "-logging": "folder-log",
- "__logging__": "folder-log",
- "target": "folder-target",
- ".target": "folder-target",
- "_target": "folder-target",
- "-target": "folder-target",
- "__target__": "folder-target",
- "temp": "folder-temp",
- ".temp": "folder-temp",
- "_temp": "folder-temp",
- "-temp": "folder-temp",
- "__temp__": "folder-temp",
- "tmp": "folder-temp",
- ".tmp": "folder-temp",
- "_tmp": "folder-temp",
- "-tmp": "folder-temp",
- "__tmp__": "folder-temp",
- "cached": "folder-temp",
- ".cached": "folder-temp",
- "_cached": "folder-temp",
- "-cached": "folder-temp",
- "__cached__": "folder-temp",
- "cache": "folder-temp",
- ".cache": "folder-temp",
- "_cache": "folder-temp",
- "-cache": "folder-temp",
- "__cache__": "folder-temp",
- "aws": "folder-aws",
- ".aws": "folder-aws",
- "_aws": "folder-aws",
- "-aws": "folder-aws",
- "__aws__": "folder-aws",
- "azure": "folder-aws",
- ".azure": "folder-aws",
- "_azure": "folder-aws",
- "-azure": "folder-aws",
- "__azure__": "folder-aws",
- "gcp": "folder-aws",
- ".gcp": "folder-aws",
- "_gcp": "folder-aws",
- "-gcp": "folder-aws",
- "__gcp__": "folder-aws",
- "aud": "folder-audio",
- ".aud": "folder-audio",
- "_aud": "folder-audio",
- "-aud": "folder-audio",
- "__aud__": "folder-audio",
- "auds": "folder-audio",
- ".auds": "folder-audio",
- "_auds": "folder-audio",
- "-auds": "folder-audio",
- "__auds__": "folder-audio",
- "audio": "folder-audio",
- ".audio": "folder-audio",
- "_audio": "folder-audio",
- "-audio": "folder-audio",
- "__audio__": "folder-audio",
- "audios": "folder-audio",
- ".audios": "folder-audio",
- "_audios": "folder-audio",
- "-audios": "folder-audio",
- "__audios__": "folder-audio",
- "music": "folder-audio",
- ".music": "folder-audio",
- "_music": "folder-audio",
- "-music": "folder-audio",
- "__music__": "folder-audio",
- "song": "folder-audio",
- ".song": "folder-audio",
- "_song": "folder-audio",
- "-song": "folder-audio",
- "__song__": "folder-audio",
- "songs": "folder-audio",
- ".songs": "folder-audio",
- "_songs": "folder-audio",
- "-songs": "folder-audio",
- "__songs__": "folder-audio",
- "sound": "folder-audio",
- ".sound": "folder-audio",
- "_sound": "folder-audio",
- "-sound": "folder-audio",
- "__sound__": "folder-audio",
- "sounds": "folder-audio",
- ".sounds": "folder-audio",
- "_sounds": "folder-audio",
- "-sounds": "folder-audio",
- "__sounds__": "folder-audio",
- "voice": "folder-audio",
- ".voice": "folder-audio",
- "_voice": "folder-audio",
- "-voice": "folder-audio",
- "__voice__": "folder-audio",
- "voices": "folder-audio",
- ".voices": "folder-audio",
- "_voices": "folder-audio",
- "-voices": "folder-audio",
- "__voices__": "folder-audio",
- "recordings": "folder-audio",
- ".recordings": "folder-audio",
- "_recordings": "folder-audio",
- "-recordings": "folder-audio",
- "__recordings__": "folder-audio",
- "playlist": "folder-audio",
- ".playlist": "folder-audio",
- "_playlist": "folder-audio",
- "-playlist": "folder-audio",
- "__playlist__": "folder-audio",
- "playlists": "folder-audio",
- ".playlists": "folder-audio",
- "_playlists": "folder-audio",
- "-playlists": "folder-audio",
- "__playlists__": "folder-audio",
- "vid": "folder-video",
- ".vid": "folder-video",
- "_vid": "folder-video",
- "-vid": "folder-video",
- "__vid__": "folder-video",
- "vids": "folder-video",
- ".vids": "folder-video",
- "_vids": "folder-video",
- "-vids": "folder-video",
- "__vids__": "folder-video",
- "video": "folder-video",
- ".video": "folder-video",
- "_video": "folder-video",
- "-video": "folder-video",
- "__video__": "folder-video",
- "videos": "folder-video",
- ".videos": "folder-video",
- "_videos": "folder-video",
- "-videos": "folder-video",
- "__videos__": "folder-video",
- "movie": "folder-video",
- ".movie": "folder-video",
- "_movie": "folder-video",
- "-movie": "folder-video",
- "__movie__": "folder-video",
- "movies": "folder-video",
- ".movies": "folder-video",
- "_movies": "folder-video",
- "-movies": "folder-video",
- "__movies__": "folder-video",
- "media": "folder-video",
- ".media": "folder-video",
- "_media": "folder-video",
- "-media": "folder-video",
- "__media__": "folder-video",
- "kubernetes": "folder-kubernetes",
- ".kubernetes": "folder-kubernetes",
- "_kubernetes": "folder-kubernetes",
- "-kubernetes": "folder-kubernetes",
- "__kubernetes__": "folder-kubernetes",
- "k8s": "folder-kubernetes",
- ".k8s": "folder-kubernetes",
- "_k8s": "folder-kubernetes",
- "-k8s": "folder-kubernetes",
- "__k8s__": "folder-kubernetes",
- "import": "folder-import",
- ".import": "folder-import",
- "_import": "folder-import",
- "-import": "folder-import",
- "__import__": "folder-import",
- "imports": "folder-import",
- ".imports": "folder-import",
- "_imports": "folder-import",
- "-imports": "folder-import",
- "__imports__": "folder-import",
- "imported": "folder-import",
- ".imported": "folder-import",
- "_imported": "folder-import",
- "-imported": "folder-import",
- "__imported__": "folder-import",
- "export": "folder-export",
- ".export": "folder-export",
- "_export": "folder-export",
- "-export": "folder-export",
- "__export__": "folder-export",
- "exports": "folder-export",
- ".exports": "folder-export",
- "_exports": "folder-export",
- "-exports": "folder-export",
- "__exports__": "folder-export",
- "exported": "folder-export",
- ".exported": "folder-export",
- "_exported": "folder-export",
- "-exported": "folder-export",
- "__exported__": "folder-export",
- "wakatime": "folder-wakatime",
- ".wakatime": "folder-wakatime",
- "_wakatime": "folder-wakatime",
- "-wakatime": "folder-wakatime",
- "__wakatime__": "folder-wakatime",
- "circleci": "folder-circleci",
- ".circleci": "folder-circleci",
- "_circleci": "folder-circleci",
- "-circleci": "folder-circleci",
- "__circleci__": "folder-circleci",
- "wordpress-org": "folder-wordpress",
- ".wordpress-org": "folder-wordpress",
- "_wordpress-org": "folder-wordpress",
- "-wordpress-org": "folder-wordpress",
- "__wordpress-org__": "folder-wordpress",
- "wp-content": "folder-wordpress",
- ".wp-content": "folder-wordpress",
- "_wp-content": "folder-wordpress",
- "-wp-content": "folder-wordpress",
- "__wp-content__": "folder-wordpress",
- "gradle": "folder-gradle",
- ".gradle": "folder-gradle",
- "_gradle": "folder-gradle",
- "-gradle": "folder-gradle",
- "__gradle__": "folder-gradle",
- "coverage": "folder-coverage",
- ".coverage": "folder-coverage",
- "_coverage": "folder-coverage",
- "-coverage": "folder-coverage",
- "__coverage__": "folder-coverage",
- "nyc-output": "folder-coverage",
- ".nyc-output": "folder-coverage",
- "_nyc-output": "folder-coverage",
- "-nyc-output": "folder-coverage",
- "__nyc-output__": "folder-coverage",
- "nyc_output": "folder-coverage",
- ".nyc_output": "folder-coverage",
- "_nyc_output": "folder-coverage",
- "-nyc_output": "folder-coverage",
- "__nyc_output__": "folder-coverage",
- "e2e": "folder-coverage",
- ".e2e": "folder-coverage",
- "_e2e": "folder-coverage",
- "-e2e": "folder-coverage",
- "__e2e__": "folder-coverage",
- "it": "folder-coverage",
- ".it": "folder-coverage",
- "_it": "folder-coverage",
- "-it": "folder-coverage",
- "__it__": "folder-coverage",
- "integration-test": "folder-coverage",
- ".integration-test": "folder-coverage",
- "_integration-test": "folder-coverage",
- "-integration-test": "folder-coverage",
- "__integration-test__": "folder-coverage",
- "integration-tests": "folder-coverage",
- ".integration-tests": "folder-coverage",
- "_integration-tests": "folder-coverage",
- "-integration-tests": "folder-coverage",
- "__integration-tests__": "folder-coverage",
- "class": "folder-class",
- ".class": "folder-class",
- "_class": "folder-class",
- "-class": "folder-class",
- "__class__": "folder-class",
- "classes": "folder-class",
- ".classes": "folder-class",
- "_classes": "folder-class",
- "-classes": "folder-class",
- "__classes__": "folder-class",
- "model": "folder-class",
- ".model": "folder-class",
- "_model": "folder-class",
- "-model": "folder-class",
- "__model__": "folder-class",
- "models": "folder-class",
- ".models": "folder-class",
- "_models": "folder-class",
- "-models": "folder-class",
- "__models__": "folder-class",
- "schemas": "folder-class",
- ".schemas": "folder-class",
- "_schemas": "folder-class",
- "-schemas": "folder-class",
- "__schemas__": "folder-class",
- "schema": "folder-class",
- ".schema": "folder-class",
- "_schema": "folder-class",
- "-schema": "folder-class",
- "__schema__": "folder-class",
- "other": "folder-other",
- ".other": "folder-other",
- "_other": "folder-other",
- "-other": "folder-other",
- "__other__": "folder-other",
- "others": "folder-other",
- ".others": "folder-other",
- "_others": "folder-other",
- "-others": "folder-other",
- "__others__": "folder-other",
- "misc": "folder-other",
- ".misc": "folder-other",
- "_misc": "folder-other",
- "-misc": "folder-other",
- "__misc__": "folder-other",
- "miscellaneous": "folder-other",
- ".miscellaneous": "folder-other",
- "_miscellaneous": "folder-other",
- "-miscellaneous": "folder-other",
- "__miscellaneous__": "folder-other",
- "extra": "folder-other",
- ".extra": "folder-other",
- "_extra": "folder-other",
- "-extra": "folder-other",
- "__extra__": "folder-other",
- "extras": "folder-other",
- ".extras": "folder-other",
- "_extras": "folder-other",
- "-extras": "folder-other",
- "__extras__": "folder-other",
- "etc": "folder-other",
- ".etc": "folder-other",
- "_etc": "folder-other",
- "-etc": "folder-other",
- "__etc__": "folder-other",
- "lua": "folder-lua",
- ".lua": "folder-lua",
- "_lua": "folder-lua",
- "-lua": "folder-lua",
- "__lua__": "folder-lua",
- "turbo": "folder-turborepo",
- ".turbo": "folder-turborepo",
- "_turbo": "folder-turborepo",
- "-turbo": "folder-turborepo",
- "__turbo__": "folder-turborepo",
- "typescript": "folder-typescript",
- ".typescript": "folder-typescript",
- "_typescript": "folder-typescript",
- "-typescript": "folder-typescript",
- "__typescript__": "folder-typescript",
- "ts": "folder-typescript",
- ".ts": "folder-typescript",
- "_ts": "folder-typescript",
- "-ts": "folder-typescript",
- "__ts__": "folder-typescript",
- "typings": "folder-typescript",
- ".typings": "folder-typescript",
- "_typings": "folder-typescript",
- "-typings": "folder-typescript",
- "__typings__": "folder-typescript",
- "@types": "folder-typescript",
- ".@types": "folder-typescript",
- "_@types": "folder-typescript",
- "-@types": "folder-typescript",
- "__@types__": "folder-typescript",
- "types": "folder-typescript",
- ".types": "folder-typescript",
- "_types": "folder-typescript",
- "-types": "folder-typescript",
- "__types__": "folder-typescript",
- "cts": "folder-typescript",
- ".cts": "folder-typescript",
- "_cts": "folder-typescript",
- "-cts": "folder-typescript",
- "__cts__": "folder-typescript",
- "mts": "folder-typescript",
- ".mts": "folder-typescript",
- "_mts": "folder-typescript",
- "-mts": "folder-typescript",
- "__mts__": "folder-typescript",
- "graphql": "folder-graphql",
- ".graphql": "folder-graphql",
- "_graphql": "folder-graphql",
- "-graphql": "folder-graphql",
- "__graphql__": "folder-graphql",
- "gql": "folder-graphql",
- ".gql": "folder-graphql",
- "_gql": "folder-graphql",
- "-gql": "folder-graphql",
- "__gql__": "folder-graphql",
- "routes": "folder-routes",
- ".routes": "folder-routes",
- "_routes": "folder-routes",
- "-routes": "folder-routes",
- "__routes__": "folder-routes",
- "router": "folder-routes",
- ".router": "folder-routes",
- "_router": "folder-routes",
- "-router": "folder-routes",
- "__router__": "folder-routes",
- "routers": "folder-routes",
- ".routers": "folder-routes",
- "_routers": "folder-routes",
- "-routers": "folder-routes",
- "__routers__": "folder-routes",
- "navigation": "folder-routes",
- ".navigation": "folder-routes",
- "_navigation": "folder-routes",
- "-navigation": "folder-routes",
- "__navigation__": "folder-routes",
- "navigations": "folder-routes",
- ".navigations": "folder-routes",
- "_navigations": "folder-routes",
- "-navigations": "folder-routes",
- "__navigations__": "folder-routes",
- "routing": "folder-routes",
- ".routing": "folder-routes",
- "_routing": "folder-routes",
- "-routing": "folder-routes",
- "__routing__": "folder-routes",
- "ci": "folder-ci",
- ".ci": "folder-ci",
- "_ci": "folder-ci",
- "-ci": "folder-ci",
- "__ci__": "folder-ci",
- "eslint": "folder-eslint",
- ".eslint": "folder-eslint",
- "_eslint": "folder-eslint",
- "-eslint": "folder-eslint",
- "__eslint__": "folder-eslint",
- "eslint-plugin": "folder-eslint",
- ".eslint-plugin": "folder-eslint",
- "_eslint-plugin": "folder-eslint",
- "-eslint-plugin": "folder-eslint",
- "__eslint-plugin__": "folder-eslint",
- "eslint-plugins": "folder-eslint",
- ".eslint-plugins": "folder-eslint",
- "_eslint-plugins": "folder-eslint",
- "-eslint-plugins": "folder-eslint",
- "__eslint-plugins__": "folder-eslint",
- "eslint-config": "folder-eslint",
- ".eslint-config": "folder-eslint",
- "_eslint-config": "folder-eslint",
- "-eslint-config": "folder-eslint",
- "__eslint-config__": "folder-eslint",
- "eslint-configs": "folder-eslint",
- ".eslint-configs": "folder-eslint",
- "_eslint-configs": "folder-eslint",
- "-eslint-configs": "folder-eslint",
- "__eslint-configs__": "folder-eslint",
- "benchmark": "folder-benchmark",
- ".benchmark": "folder-benchmark",
- "_benchmark": "folder-benchmark",
- "-benchmark": "folder-benchmark",
- "__benchmark__": "folder-benchmark",
- "benchmarks": "folder-benchmark",
- ".benchmarks": "folder-benchmark",
- "_benchmarks": "folder-benchmark",
- "-benchmarks": "folder-benchmark",
- "__benchmarks__": "folder-benchmark",
- "bench": "folder-benchmark",
- ".bench": "folder-benchmark",
- "_bench": "folder-benchmark",
- "-bench": "folder-benchmark",
- "__bench__": "folder-benchmark",
- "benches": "folder-benchmark",
- ".benches": "folder-benchmark",
- "_benches": "folder-benchmark",
- "-benches": "folder-benchmark",
- "__benches__": "folder-benchmark",
- "performance": "folder-benchmark",
- ".performance": "folder-benchmark",
- "_performance": "folder-benchmark",
- "-performance": "folder-benchmark",
- "__performance__": "folder-benchmark",
- "perf": "folder-benchmark",
- ".perf": "folder-benchmark",
- "_perf": "folder-benchmark",
- "-perf": "folder-benchmark",
- "__perf__": "folder-benchmark",
- "profiling": "folder-benchmark",
- ".profiling": "folder-benchmark",
- "_profiling": "folder-benchmark",
- "-profiling": "folder-benchmark",
- "__profiling__": "folder-benchmark",
- "measure": "folder-benchmark",
- ".measure": "folder-benchmark",
- "_measure": "folder-benchmark",
- "-measure": "folder-benchmark",
- "__measure__": "folder-benchmark",
- "measures": "folder-benchmark",
- ".measures": "folder-benchmark",
- "_measures": "folder-benchmark",
- "-measures": "folder-benchmark",
- "__measures__": "folder-benchmark",
- "measurement": "folder-benchmark",
- ".measurement": "folder-benchmark",
- "_measurement": "folder-benchmark",
- "-measurement": "folder-benchmark",
- "__measurement__": "folder-benchmark",
- "messages": "folder-messages",
- ".messages": "folder-messages",
- "_messages": "folder-messages",
- "-messages": "folder-messages",
- "__messages__": "folder-messages",
- "messaging": "folder-messages",
- ".messaging": "folder-messages",
- "_messaging": "folder-messages",
- "-messaging": "folder-messages",
- "__messaging__": "folder-messages",
- "forum": "folder-messages",
- ".forum": "folder-messages",
- "_forum": "folder-messages",
- "-forum": "folder-messages",
- "__forum__": "folder-messages",
- "chat": "folder-messages",
- ".chat": "folder-messages",
- "_chat": "folder-messages",
- "-chat": "folder-messages",
- "__chat__": "folder-messages",
- "chats": "folder-messages",
- ".chats": "folder-messages",
- "_chats": "folder-messages",
- "-chats": "folder-messages",
- "__chats__": "folder-messages",
- "conversation": "folder-messages",
- ".conversation": "folder-messages",
- "_conversation": "folder-messages",
- "-conversation": "folder-messages",
- "__conversation__": "folder-messages",
- "conversations": "folder-messages",
- ".conversations": "folder-messages",
- "_conversations": "folder-messages",
- "-conversations": "folder-messages",
- "__conversations__": "folder-messages",
- "dialog": "folder-messages",
- ".dialog": "folder-messages",
- "_dialog": "folder-messages",
- "-dialog": "folder-messages",
- "__dialog__": "folder-messages",
- "dialogs": "folder-messages",
- ".dialogs": "folder-messages",
- "_dialogs": "folder-messages",
- "-dialogs": "folder-messages",
- "__dialogs__": "folder-messages",
- "less": "folder-less",
- ".less": "folder-less",
- "_less": "folder-less",
- "-less": "folder-less",
- "__less__": "folder-less",
- "gulp": "folder-gulp",
- ".gulp": "folder-gulp",
- "_gulp": "folder-gulp",
- "-gulp": "folder-gulp",
- "__gulp__": "folder-gulp",
- "gulp-tasks": "folder-gulp",
- ".gulp-tasks": "folder-gulp",
- "_gulp-tasks": "folder-gulp",
- "-gulp-tasks": "folder-gulp",
- "__gulp-tasks__": "folder-gulp",
- "gulpfile.js": "folder-gulp",
- ".gulpfile.js": "folder-gulp",
- "_gulpfile.js": "folder-gulp",
- "-gulpfile.js": "folder-gulp",
- "__gulpfile.js__": "folder-gulp",
- "gulpfile.mjs": "folder-gulp",
- ".gulpfile.mjs": "folder-gulp",
- "_gulpfile.mjs": "folder-gulp",
- "-gulpfile.mjs": "folder-gulp",
- "__gulpfile.mjs__": "folder-gulp",
- "gulpfile.ts": "folder-gulp",
- ".gulpfile.ts": "folder-gulp",
- "_gulpfile.ts": "folder-gulp",
- "-gulpfile.ts": "folder-gulp",
- "__gulpfile.ts__": "folder-gulp",
- "gulpfile.babel.js": "folder-gulp",
- ".gulpfile.babel.js": "folder-gulp",
- "_gulpfile.babel.js": "folder-gulp",
- "-gulpfile.babel.js": "folder-gulp",
- "__gulpfile.babel.js__": "folder-gulp",
- "gulpfiles": "folder-gulp",
- ".gulpfiles": "folder-gulp",
- "_gulpfiles": "folder-gulp",
- "-gulpfiles": "folder-gulp",
- "__gulpfiles__": "folder-gulp",
- "python": "folder-python",
- ".python": "folder-python",
- "_python": "folder-python",
- "-python": "folder-python",
- "__python__": "folder-python",
- "pycache": "folder-python",
- ".pycache": "folder-python",
- "_pycache": "folder-python",
- "-pycache": "folder-python",
- "__pycache__": "folder-python",
- "pytest_cache": "folder-python",
- ".pytest_cache": "folder-python",
- "_pytest_cache": "folder-python",
- "-pytest_cache": "folder-python",
- "__pytest_cache__": "folder-python",
- "r": "folder-r",
- ".r": "folder-r",
- "_r": "folder-r",
- "-r": "folder-r",
- "__r__": "folder-r",
- "sandbox": "folder-sandbox",
- ".sandbox": "folder-sandbox",
- "_sandbox": "folder-sandbox",
- "-sandbox": "folder-sandbox",
- "__sandbox__": "folder-sandbox",
- "sandboxes": "folder-sandbox",
- ".sandboxes": "folder-sandbox",
- "_sandboxes": "folder-sandbox",
- "-sandboxes": "folder-sandbox",
- "__sandboxes__": "folder-sandbox",
- "playground": "folder-sandbox",
- ".playground": "folder-sandbox",
- "_playground": "folder-sandbox",
- "-playground": "folder-sandbox",
- "__playground__": "folder-sandbox",
- "playgrounds": "folder-sandbox",
- ".playgrounds": "folder-sandbox",
- "_playgrounds": "folder-sandbox",
- "-playgrounds": "folder-sandbox",
- "__playgrounds__": "folder-sandbox",
- "scons": "folder-scons",
- ".scons": "folder-scons",
- "_scons": "folder-scons",
- "-scons": "folder-scons",
- "__scons__": "folder-scons",
- "sconf_temp": "folder-scons",
- ".sconf_temp": "folder-scons",
- "_sconf_temp": "folder-scons",
- "-sconf_temp": "folder-scons",
- "__sconf_temp__": "folder-scons",
- "scons_cache": "folder-scons",
- ".scons_cache": "folder-scons",
- "_scons_cache": "folder-scons",
- "-scons_cache": "folder-scons",
- "__scons_cache__": "folder-scons",
- "mojo": "folder-mojo",
- ".mojo": "folder-mojo",
- "_mojo": "folder-mojo",
- "-mojo": "folder-mojo",
- "__mojo__": "folder-mojo",
- "moon": "folder-moon",
- ".moon": "folder-moon",
- "_moon": "folder-moon",
- "-moon": "folder-moon",
- "__moon__": "folder-moon",
- "debug": "folder-debug",
- ".debug": "folder-debug",
- "_debug": "folder-debug",
- "-debug": "folder-debug",
- "__debug__": "folder-debug",
- "debugger": "folder-debug",
- ".debugger": "folder-debug",
- "_debugger": "folder-debug",
- "-debugger": "folder-debug",
- "__debugger__": "folder-debug",
- "debugging": "folder-debug",
- ".debugging": "folder-debug",
- "_debugging": "folder-debug",
- "-debugging": "folder-debug",
- "__debugging__": "folder-debug",
- "fastlane": "folder-fastlane",
- ".fastlane": "folder-fastlane",
- "_fastlane": "folder-fastlane",
- "-fastlane": "folder-fastlane",
- "__fastlane__": "folder-fastlane",
- "plugin": "folder-plugin",
- ".plugin": "folder-plugin",
- "_plugin": "folder-plugin",
- "-plugin": "folder-plugin",
- "__plugin__": "folder-plugin",
- "plugins": "folder-plugin",
- ".plugins": "folder-plugin",
- "_plugins": "folder-plugin",
- "-plugins": "folder-plugin",
- "__plugins__": "folder-plugin",
- "mod": "folder-plugin",
- ".mod": "folder-plugin",
- "_mod": "folder-plugin",
- "-mod": "folder-plugin",
- "__mod__": "folder-plugin",
- "mods": "folder-plugin",
- ".mods": "folder-plugin",
- "_mods": "folder-plugin",
- "-mods": "folder-plugin",
- "__mods__": "folder-plugin",
- "modding": "folder-plugin",
- ".modding": "folder-plugin",
- "_modding": "folder-plugin",
- "-modding": "folder-plugin",
- "__modding__": "folder-plugin",
- "extension": "folder-plugin",
- ".extension": "folder-plugin",
- "_extension": "folder-plugin",
- "-extension": "folder-plugin",
- "__extension__": "folder-plugin",
- "extensions": "folder-plugin",
- ".extensions": "folder-plugin",
- "_extensions": "folder-plugin",
- "-extensions": "folder-plugin",
- "__extensions__": "folder-plugin",
- "addon": "folder-plugin",
- ".addon": "folder-plugin",
- "_addon": "folder-plugin",
- "-addon": "folder-plugin",
- "__addon__": "folder-plugin",
- "addons": "folder-plugin",
- ".addons": "folder-plugin",
- "_addons": "folder-plugin",
- "-addons": "folder-plugin",
- "__addons__": "folder-plugin",
- "addin": "folder-plugin",
- ".addin": "folder-plugin",
- "_addin": "folder-plugin",
- "-addin": "folder-plugin",
- "__addin__": "folder-plugin",
- "addins": "folder-plugin",
- ".addins": "folder-plugin",
- "_addins": "folder-plugin",
- "-addins": "folder-plugin",
- "__addins__": "folder-plugin",
- "module": "folder-plugin",
- ".module": "folder-plugin",
- "_module": "folder-plugin",
- "-module": "folder-plugin",
- "__module__": "folder-plugin",
- "modules": "folder-plugin",
- ".modules": "folder-plugin",
- "_modules": "folder-plugin",
- "-modules": "folder-plugin",
- "__modules__": "folder-plugin",
- "middleware": "folder-middleware",
- ".middleware": "folder-middleware",
- "_middleware": "folder-middleware",
- "-middleware": "folder-middleware",
- "__middleware__": "folder-middleware",
- "middlewares": "folder-middleware",
- ".middlewares": "folder-middleware",
- "_middlewares": "folder-middleware",
- "-middlewares": "folder-middleware",
- "__middlewares__": "folder-middleware",
- "controller": "folder-controller",
- ".controller": "folder-controller",
- "_controller": "folder-controller",
- "-controller": "folder-controller",
- "__controller__": "folder-controller",
- "controllers": "folder-controller",
- ".controllers": "folder-controller",
- "_controllers": "folder-controller",
- "-controllers": "folder-controller",
- "__controllers__": "folder-controller",
- "controls": "folder-controller",
- ".controls": "folder-controller",
- "_controls": "folder-controller",
- "-controls": "folder-controller",
- "__controls__": "folder-controller",
- "service": "folder-controller",
- ".service": "folder-controller",
- "_service": "folder-controller",
- "-service": "folder-controller",
- "__service__": "folder-controller",
- "services": "folder-controller",
- ".services": "folder-controller",
- "_services": "folder-controller",
- "-services": "folder-controller",
- "__services__": "folder-controller",
- "provider": "folder-controller",
- ".provider": "folder-controller",
- "_provider": "folder-controller",
- "-provider": "folder-controller",
- "__provider__": "folder-controller",
- "providers": "folder-controller",
- ".providers": "folder-controller",
- "_providers": "folder-controller",
- "-providers": "folder-controller",
- "__providers__": "folder-controller",
- "handler": "folder-controller",
- ".handler": "folder-controller",
- "_handler": "folder-controller",
- "-handler": "folder-controller",
- "__handler__": "folder-controller",
- "handlers": "folder-controller",
- ".handlers": "folder-controller",
- "_handlers": "folder-controller",
- "-handlers": "folder-controller",
- "__handlers__": "folder-controller",
- "ansible": "folder-ansible",
- ".ansible": "folder-ansible",
- "_ansible": "folder-ansible",
- "-ansible": "folder-ansible",
- "__ansible__": "folder-ansible",
- "server": "folder-server",
- ".server": "folder-server",
- "_server": "folder-server",
- "-server": "folder-server",
- "__server__": "folder-server",
- "servers": "folder-server",
- ".servers": "folder-server",
- "_servers": "folder-server",
- "-servers": "folder-server",
- "__servers__": "folder-server",
- "backend": "folder-server",
- ".backend": "folder-server",
- "_backend": "folder-server",
- "-backend": "folder-server",
- "__backend__": "folder-server",
- "backends": "folder-server",
- ".backends": "folder-server",
- "_backends": "folder-server",
- "-backends": "folder-server",
- "__backends__": "folder-server",
- "inventory": "folder-server",
- ".inventory": "folder-server",
- "_inventory": "folder-server",
- "-inventory": "folder-server",
- "__inventory__": "folder-server",
- "inventories": "folder-server",
- ".inventories": "folder-server",
- "_inventories": "folder-server",
- "-inventories": "folder-server",
- "__inventories__": "folder-server",
- "infrastructure": "folder-server",
- ".infrastructure": "folder-server",
- "_infrastructure": "folder-server",
- "-infrastructure": "folder-server",
- "__infrastructure__": "folder-server",
- "infra": "folder-server",
- ".infra": "folder-server",
- "_infra": "folder-server",
- "-infra": "folder-server",
- "__infra__": "folder-server",
- "client": "folder-client",
- ".client": "folder-client",
- "_client": "folder-client",
- "-client": "folder-client",
- "__client__": "folder-client",
- "clients": "folder-client",
- ".clients": "folder-client",
- "_clients": "folder-client",
- "-clients": "folder-client",
- "__clients__": "folder-client",
- "frontend": "folder-client",
- ".frontend": "folder-client",
- "_frontend": "folder-client",
- "-frontend": "folder-client",
- "__frontend__": "folder-client",
- "frontends": "folder-client",
- ".frontends": "folder-client",
- "_frontends": "folder-client",
- "-frontends": "folder-client",
- "__frontends__": "folder-client",
- "pwa": "folder-client",
- ".pwa": "folder-client",
- "_pwa": "folder-client",
- "-pwa": "folder-client",
- "__pwa__": "folder-client",
- "spa": "folder-client",
- ".spa": "folder-client",
- "_spa": "folder-client",
- "-spa": "folder-client",
- "__spa__": "folder-client",
- "tasks": "folder-tasks",
- ".tasks": "folder-tasks",
- "_tasks": "folder-tasks",
- "-tasks": "folder-tasks",
- "__tasks__": "folder-tasks",
- "tickets": "folder-tasks",
- ".tickets": "folder-tasks",
- "_tickets": "folder-tasks",
- "-tickets": "folder-tasks",
- "__tickets__": "folder-tasks",
- "android": "folder-android",
- ".android": "folder-android",
- "_android": "folder-android",
- "-android": "folder-android",
- "__android__": "folder-android",
- "ios": "folder-ios",
- ".ios": "folder-ios",
- "_ios": "folder-ios",
- "-ios": "folder-ios",
- "__ios__": "folder-ios",
- "presentation": "folder-ui",
- ".presentation": "folder-ui",
- "_presentation": "folder-ui",
- "-presentation": "folder-ui",
- "__presentation__": "folder-ui",
- "gui": "folder-ui",
- ".gui": "folder-ui",
- "_gui": "folder-ui",
- "-gui": "folder-ui",
- "__gui__": "folder-ui",
- "ui": "folder-ui",
- ".ui": "folder-ui",
- "_ui": "folder-ui",
- "-ui": "folder-ui",
- "__ui__": "folder-ui",
- "ux": "folder-ui",
- ".ux": "folder-ui",
- "_ux": "folder-ui",
- "-ux": "folder-ui",
- "__ux__": "folder-ui",
- "uploads": "folder-upload",
- ".uploads": "folder-upload",
- "_uploads": "folder-upload",
- "-uploads": "folder-upload",
- "__uploads__": "folder-upload",
- "upload": "folder-upload",
- ".upload": "folder-upload",
- "_upload": "folder-upload",
- "-upload": "folder-upload",
- "__upload__": "folder-upload",
- "downloads": "folder-download",
- ".downloads": "folder-download",
- "_downloads": "folder-download",
- "-downloads": "folder-download",
- "__downloads__": "folder-download",
- "download": "folder-download",
- ".download": "folder-download",
- "_download": "folder-download",
- "-download": "folder-download",
- "__download__": "folder-download",
- "downloader": "folder-download",
- ".downloader": "folder-download",
- "_downloader": "folder-download",
- "-downloader": "folder-download",
- "__downloader__": "folder-download",
- "downloaders": "folder-download",
- ".downloaders": "folder-download",
- "_downloaders": "folder-download",
- "-downloaders": "folder-download",
- "__downloaders__": "folder-download",
- "tools": "folder-tools",
- ".tools": "folder-tools",
- "_tools": "folder-tools",
- "-tools": "folder-tools",
- "__tools__": "folder-tools",
- "toolkit": "folder-tools",
- ".toolkit": "folder-tools",
- "_toolkit": "folder-tools",
- "-toolkit": "folder-tools",
- "__toolkit__": "folder-tools",
- "toolkits": "folder-tools",
- ".toolkits": "folder-tools",
- "_toolkits": "folder-tools",
- "-toolkits": "folder-tools",
- "__toolkits__": "folder-tools",
- "toolbox": "folder-tools",
- ".toolbox": "folder-tools",
- "_toolbox": "folder-tools",
- "-toolbox": "folder-tools",
- "__toolbox__": "folder-tools",
- "toolboxes": "folder-tools",
- ".toolboxes": "folder-tools",
- "_toolboxes": "folder-tools",
- "-toolboxes": "folder-tools",
- "__toolboxes__": "folder-tools",
- "tooling": "folder-tools",
- ".tooling": "folder-tools",
- "_tooling": "folder-tools",
- "-tooling": "folder-tools",
- "__tooling__": "folder-tools",
- "devtools": "folder-tools",
- ".devtools": "folder-tools",
- "_devtools": "folder-tools",
- "-devtools": "folder-tools",
- "__devtools__": "folder-tools",
- "kit": "folder-tools",
- ".kit": "folder-tools",
- "_kit": "folder-tools",
- "-kit": "folder-tools",
- "__kit__": "folder-tools",
- "kits": "folder-tools",
- ".kits": "folder-tools",
- "_kits": "folder-tools",
- "-kits": "folder-tools",
- "__kits__": "folder-tools",
- "helpers": "folder-helper",
- ".helpers": "folder-helper",
- "_helpers": "folder-helper",
- "-helpers": "folder-helper",
- "__helpers__": "folder-helper",
- "helper": "folder-helper",
- ".helper": "folder-helper",
- "_helper": "folder-helper",
- "-helper": "folder-helper",
- "__helper__": "folder-helper",
- "serverless": "folder-serverless",
- ".serverless": "folder-serverless",
- "_serverless": "folder-serverless",
- "-serverless": "folder-serverless",
- "__serverless__": "folder-serverless",
- "api": "folder-api",
- ".api": "folder-api",
- "_api": "folder-api",
- "-api": "folder-api",
- "__api__": "folder-api",
- "apis": "folder-api",
- ".apis": "folder-api",
- "_apis": "folder-api",
- "-apis": "folder-api",
- "__apis__": "folder-api",
- "restapi": "folder-api",
- ".restapi": "folder-api",
- "_restapi": "folder-api",
- "-restapi": "folder-api",
- "__restapi__": "folder-api",
- "app": "folder-app",
- ".app": "folder-app",
- "_app": "folder-app",
- "-app": "folder-app",
- "__app__": "folder-app",
- "apps": "folder-app",
- ".apps": "folder-app",
- "_apps": "folder-app",
- "-apps": "folder-app",
- "__apps__": "folder-app",
- "application": "folder-app",
- ".application": "folder-app",
- "_application": "folder-app",
- "-application": "folder-app",
- "__application__": "folder-app",
- "applications": "folder-app",
- ".applications": "folder-app",
- "_applications": "folder-app",
- "-applications": "folder-app",
- "__applications__": "folder-app",
- "apollo": "folder-apollo",
- ".apollo": "folder-apollo",
- "_apollo": "folder-apollo",
- "-apollo": "folder-apollo",
- "__apollo__": "folder-apollo",
- "apollo-client": "folder-apollo",
- ".apollo-client": "folder-apollo",
- "_apollo-client": "folder-apollo",
- "-apollo-client": "folder-apollo",
- "__apollo-client__": "folder-apollo",
- "apollo-cache": "folder-apollo",
- ".apollo-cache": "folder-apollo",
- "_apollo-cache": "folder-apollo",
- "-apollo-cache": "folder-apollo",
- "__apollo-cache__": "folder-apollo",
- "apollo-config": "folder-apollo",
- ".apollo-config": "folder-apollo",
- "_apollo-config": "folder-apollo",
- "-apollo-config": "folder-apollo",
- "__apollo-config__": "folder-apollo",
- "arc": "folder-archive",
- ".arc": "folder-archive",
- "_arc": "folder-archive",
- "-arc": "folder-archive",
- "__arc__": "folder-archive",
- "arcs": "folder-archive",
- ".arcs": "folder-archive",
- "_arcs": "folder-archive",
- "-arcs": "folder-archive",
- "__arcs__": "folder-archive",
- "archive": "folder-archive",
- ".archive": "folder-archive",
- "_archive": "folder-archive",
- "-archive": "folder-archive",
- "__archive__": "folder-archive",
- "archives": "folder-archive",
- ".archives": "folder-archive",
- "_archives": "folder-archive",
- "-archives": "folder-archive",
- "__archives__": "folder-archive",
- "archival": "folder-archive",
- ".archival": "folder-archive",
- "_archival": "folder-archive",
- "-archival": "folder-archive",
- "__archival__": "folder-archive",
- "bkp": "folder-backup",
- ".bkp": "folder-backup",
- "_bkp": "folder-backup",
- "-bkp": "folder-backup",
- "__bkp__": "folder-backup",
- "bkps": "folder-backup",
- ".bkps": "folder-backup",
- "_bkps": "folder-backup",
- "-bkps": "folder-backup",
- "__bkps__": "folder-backup",
- "bak": "folder-backup",
- ".bak": "folder-backup",
- "_bak": "folder-backup",
- "-bak": "folder-backup",
- "__bak__": "folder-backup",
- "baks": "folder-backup",
- ".baks": "folder-backup",
- "_baks": "folder-backup",
- "-baks": "folder-backup",
- "__baks__": "folder-backup",
- "backup": "folder-backup",
- ".backup": "folder-backup",
- "_backup": "folder-backup",
- "-backup": "folder-backup",
- "__backup__": "folder-backup",
- "backups": "folder-backup",
- ".backups": "folder-backup",
- "_backups": "folder-backup",
- "-backups": "folder-backup",
- "__backups__": "folder-backup",
- "back-up": "folder-backup",
- ".back-up": "folder-backup",
- "_back-up": "folder-backup",
- "-back-up": "folder-backup",
- "__back-up__": "folder-backup",
- "back-ups": "folder-backup",
- ".back-ups": "folder-backup",
- "_back-ups": "folder-backup",
- "-back-ups": "folder-backup",
- "__back-ups__": "folder-backup",
- "history": "folder-backup",
- ".history": "folder-backup",
- "_history": "folder-backup",
- "-history": "folder-backup",
- "__history__": "folder-backup",
- "histories": "folder-backup",
- ".histories": "folder-backup",
- "_histories": "folder-backup",
- "-histories": "folder-backup",
- "__histories__": "folder-backup",
- "batch": "folder-batch",
- ".batch": "folder-batch",
- "_batch": "folder-batch",
- "-batch": "folder-batch",
- "__batch__": "folder-batch",
- "batchs": "folder-batch",
- ".batchs": "folder-batch",
- "_batchs": "folder-batch",
- "-batchs": "folder-batch",
- "__batchs__": "folder-batch",
- "batches": "folder-batch",
- ".batches": "folder-batch",
- "_batches": "folder-batch",
- "-batches": "folder-batch",
- "__batches__": "folder-batch",
- "buildkite": "folder-buildkite",
- ".buildkite": "folder-buildkite",
- "_buildkite": "folder-buildkite",
- "-buildkite": "folder-buildkite",
- "__buildkite__": "folder-buildkite",
- "cluster": "folder-cluster",
- ".cluster": "folder-cluster",
- "_cluster": "folder-cluster",
- "-cluster": "folder-cluster",
- "__cluster__": "folder-cluster",
- "clusters": "folder-cluster",
- ".clusters": "folder-cluster",
- "_clusters": "folder-cluster",
- "-clusters": "folder-cluster",
- "__clusters__": "folder-cluster",
- "command": "folder-command",
- ".command": "folder-command",
- "_command": "folder-command",
- "-command": "folder-command",
- "__command__": "folder-command",
- "commands": "folder-command",
- ".commands": "folder-command",
- "_commands": "folder-command",
- "-commands": "folder-command",
- "__commands__": "folder-command",
- "commandline": "folder-command",
- ".commandline": "folder-command",
- "_commandline": "folder-command",
- "-commandline": "folder-command",
- "__commandline__": "folder-command",
- "cmd": "folder-command",
- ".cmd": "folder-command",
- "_cmd": "folder-command",
- "-cmd": "folder-command",
- "__cmd__": "folder-command",
- "cli": "folder-command",
- ".cli": "folder-command",
- "_cli": "folder-command",
- "-cli": "folder-command",
- "__cli__": "folder-command",
- "clis": "folder-command",
- ".clis": "folder-command",
- "_clis": "folder-command",
- "-clis": "folder-command",
- "__clis__": "folder-command",
- "constant": "folder-constant",
- ".constant": "folder-constant",
- "_constant": "folder-constant",
- "-constant": "folder-constant",
- "__constant__": "folder-constant",
- "constants": "folder-constant",
- ".constants": "folder-constant",
- "_constants": "folder-constant",
- "-constants": "folder-constant",
- "__constants__": "folder-constant",
- "const": "folder-constant",
- ".const": "folder-constant",
- "_const": "folder-constant",
- "-const": "folder-constant",
- "__const__": "folder-constant",
- "consts": "folder-constant",
- ".consts": "folder-constant",
- "_consts": "folder-constant",
- "-consts": "folder-constant",
- "__consts__": "folder-constant",
- "container": "folder-container",
- ".container": "folder-container",
- "_container": "folder-container",
- "-container": "folder-container",
- "__container__": "folder-container",
- "containers": "folder-container",
- ".containers": "folder-container",
- "_containers": "folder-container",
- "-containers": "folder-container",
- "__containers__": "folder-container",
- "devcontainer": "folder-container",
- ".devcontainer": "folder-container",
- "_devcontainer": "folder-container",
- "-devcontainer": "folder-container",
- "__devcontainer__": "folder-container",
- "content": "folder-content",
- ".content": "folder-content",
- "_content": "folder-content",
- "-content": "folder-content",
- "__content__": "folder-content",
- "contents": "folder-content",
- ".contents": "folder-content",
- "_contents": "folder-content",
- "-contents": "folder-content",
- "__contents__": "folder-content",
- "context": "folder-context",
- ".context": "folder-context",
- "_context": "folder-context",
- "-context": "folder-context",
- "__context__": "folder-context",
- "contexts": "folder-context",
- ".contexts": "folder-context",
- "_contexts": "folder-context",
- "-contexts": "folder-context",
- "__contexts__": "folder-context",
- "core": "folder-core",
- ".core": "folder-core",
- "_core": "folder-core",
- "-core": "folder-core",
- "__core__": "folder-core",
- "delta": "folder-delta",
- ".delta": "folder-delta",
- "_delta": "folder-delta",
- "-delta": "folder-delta",
- "__delta__": "folder-delta",
- "deltas": "folder-delta",
- ".deltas": "folder-delta",
- "_deltas": "folder-delta",
- "-deltas": "folder-delta",
- "__deltas__": "folder-delta",
- "changes": "folder-delta",
- ".changes": "folder-delta",
- "_changes": "folder-delta",
- "-changes": "folder-delta",
- "__changes__": "folder-delta",
- "dump": "folder-dump",
- ".dump": "folder-dump",
- "_dump": "folder-dump",
- "-dump": "folder-dump",
- "__dump__": "folder-dump",
- "dumps": "folder-dump",
- ".dumps": "folder-dump",
- "_dumps": "folder-dump",
- "-dumps": "folder-dump",
- "__dumps__": "folder-dump",
- "demo": "folder-examples",
- ".demo": "folder-examples",
- "_demo": "folder-examples",
- "-demo": "folder-examples",
- "__demo__": "folder-examples",
- "demos": "folder-examples",
- ".demos": "folder-examples",
- "_demos": "folder-examples",
- "-demos": "folder-examples",
- "__demos__": "folder-examples",
- "example": "folder-examples",
- ".example": "folder-examples",
- "_example": "folder-examples",
- "-example": "folder-examples",
- "__example__": "folder-examples",
- "examples": "folder-examples",
- ".examples": "folder-examples",
- "_examples": "folder-examples",
- "-examples": "folder-examples",
- "__examples__": "folder-examples",
- "sample": "folder-examples",
- ".sample": "folder-examples",
- "_sample": "folder-examples",
- "-sample": "folder-examples",
- "__sample__": "folder-examples",
- "samples": "folder-examples",
- ".samples": "folder-examples",
- "_samples": "folder-examples",
- "-samples": "folder-examples",
- "__samples__": "folder-examples",
- "sample-data": "folder-examples",
- ".sample-data": "folder-examples",
- "_sample-data": "folder-examples",
- "-sample-data": "folder-examples",
- "__sample-data__": "folder-examples",
- "env": "folder-environment",
- ".env": "folder-environment",
- "_env": "folder-environment",
- "-env": "folder-environment",
- "__env__": "folder-environment",
- "envs": "folder-environment",
- ".envs": "folder-environment",
- "_envs": "folder-environment",
- "-envs": "folder-environment",
- "__envs__": "folder-environment",
- "environment": "folder-environment",
- ".environment": "folder-environment",
- "_environment": "folder-environment",
- "-environment": "folder-environment",
- "__environment__": "folder-environment",
- "environments": "folder-environment",
- ".environments": "folder-environment",
- "_environments": "folder-environment",
- "-environments": "folder-environment",
- "__environments__": "folder-environment",
- "venv": "folder-environment",
- ".venv": "folder-environment",
- "_venv": "folder-environment",
- "-venv": "folder-environment",
- "__venv__": "folder-environment",
- "func": "folder-functions",
- ".func": "folder-functions",
- "_func": "folder-functions",
- "-func": "folder-functions",
- "__func__": "folder-functions",
- "funcs": "folder-functions",
- ".funcs": "folder-functions",
- "_funcs": "folder-functions",
- "-funcs": "folder-functions",
- "__funcs__": "folder-functions",
- "function": "folder-functions",
- ".function": "folder-functions",
- "_function": "folder-functions",
- "-function": "folder-functions",
- "__function__": "folder-functions",
- "functions": "folder-functions",
- ".functions": "folder-functions",
- "_functions": "folder-functions",
- "-functions": "folder-functions",
- "__functions__": "folder-functions",
- "lambda": "folder-functions",
- ".lambda": "folder-functions",
- "_lambda": "folder-functions",
- "-lambda": "folder-functions",
- "__lambda__": "folder-functions",
- "lambdas": "folder-functions",
- ".lambdas": "folder-functions",
- "_lambdas": "folder-functions",
- "-lambdas": "folder-functions",
- "__lambdas__": "folder-functions",
- "logic": "folder-functions",
- ".logic": "folder-functions",
- "_logic": "folder-functions",
- "-logic": "folder-functions",
- "__logic__": "folder-functions",
- "math": "folder-functions",
- ".math": "folder-functions",
- "_math": "folder-functions",
- "-math": "folder-functions",
- "__math__": "folder-functions",
- "maths": "folder-functions",
- ".maths": "folder-functions",
- "_maths": "folder-functions",
- "-maths": "folder-functions",
- "__maths__": "folder-functions",
- "calc": "folder-functions",
- ".calc": "folder-functions",
- "_calc": "folder-functions",
- "-calc": "folder-functions",
- "__calc__": "folder-functions",
- "calcs": "folder-functions",
- ".calcs": "folder-functions",
- "_calcs": "folder-functions",
- "-calcs": "folder-functions",
- "__calcs__": "folder-functions",
- "calculation": "folder-functions",
- ".calculation": "folder-functions",
- "_calculation": "folder-functions",
- "-calculation": "folder-functions",
- "__calculation__": "folder-functions",
- "calculations": "folder-functions",
- ".calculations": "folder-functions",
- "_calculations": "folder-functions",
- "-calculations": "folder-functions",
- "__calculations__": "folder-functions",
- "composable": "folder-functions",
- ".composable": "folder-functions",
- "_composable": "folder-functions",
- "-composable": "folder-functions",
- "__composable__": "folder-functions",
- "composables": "folder-functions",
- ".composables": "folder-functions",
- "_composables": "folder-functions",
- "-composables": "folder-functions",
- "__composables__": "folder-functions",
- "generator": "folder-generator",
- ".generator": "folder-generator",
- "_generator": "folder-generator",
- "-generator": "folder-generator",
- "__generator__": "folder-generator",
- "generators": "folder-generator",
- ".generators": "folder-generator",
- "_generators": "folder-generator",
- "-generators": "folder-generator",
- "__generators__": "folder-generator",
- "generated": "folder-generator",
- ".generated": "folder-generator",
- "_generated": "folder-generator",
- "-generated": "folder-generator",
- "__generated__": "folder-generator",
- "cfn-gen": "folder-generator",
- ".cfn-gen": "folder-generator",
- "_cfn-gen": "folder-generator",
- "-cfn-gen": "folder-generator",
- "__cfn-gen__": "folder-generator",
- "gen": "folder-generator",
- ".gen": "folder-generator",
- "_gen": "folder-generator",
- "-gen": "folder-generator",
- "__gen__": "folder-generator",
- "gens": "folder-generator",
- ".gens": "folder-generator",
- "_gens": "folder-generator",
- "-gens": "folder-generator",
- "__gens__": "folder-generator",
- "auto": "folder-generator",
- ".auto": "folder-generator",
- "_auto": "folder-generator",
- "-auto": "folder-generator",
- "__auto__": "folder-generator",
- "hook": "folder-hook",
- ".hook": "folder-hook",
- "_hook": "folder-hook",
- "-hook": "folder-hook",
- "__hook__": "folder-hook",
- "hooks": "folder-hook",
- ".hooks": "folder-hook",
- "_hooks": "folder-hook",
- "-hooks": "folder-hook",
- "__hooks__": "folder-hook",
- "trigger": "folder-trigger",
- ".trigger": "folder-trigger",
- "_trigger": "folder-trigger",
- "-trigger": "folder-trigger",
- "__trigger__": "folder-trigger",
- "triggers": "folder-trigger",
- ".triggers": "folder-trigger",
- "_triggers": "folder-trigger",
- "-triggers": "folder-trigger",
- "__triggers__": "folder-trigger",
- "job": "folder-job",
- ".job": "folder-job",
- "_job": "folder-job",
- "-job": "folder-job",
- "__job__": "folder-job",
- "jobs": "folder-job",
- ".jobs": "folder-job",
- "_jobs": "folder-job",
- "-jobs": "folder-job",
- "__jobs__": "folder-job",
- "key": "folder-keys",
- ".key": "folder-keys",
- "_key": "folder-keys",
- "-key": "folder-keys",
- "__key__": "folder-keys",
- "keys": "folder-keys",
- ".keys": "folder-keys",
- "_keys": "folder-keys",
- "-keys": "folder-keys",
- "__keys__": "folder-keys",
- "token": "folder-keys",
- ".token": "folder-keys",
- "_token": "folder-keys",
- "-token": "folder-keys",
- "__token__": "folder-keys",
- "tokens": "folder-keys",
- ".tokens": "folder-keys",
- "_tokens": "folder-keys",
- "-tokens": "folder-keys",
- "__tokens__": "folder-keys",
- "jwt": "folder-keys",
- ".jwt": "folder-keys",
- "_jwt": "folder-keys",
- "-jwt": "folder-keys",
- "__jwt__": "folder-keys",
- "secret": "folder-keys",
- ".secret": "folder-keys",
- "_secret": "folder-keys",
- "-secret": "folder-keys",
- "__secret__": "folder-keys",
- "secrets": "folder-keys",
- ".secrets": "folder-keys",
- "_secrets": "folder-keys",
- "-secrets": "folder-keys",
- "__secrets__": "folder-keys",
- "layout": "folder-layout",
- ".layout": "folder-layout",
- "_layout": "folder-layout",
- "-layout": "folder-layout",
- "__layout__": "folder-layout",
- "layouts": "folder-layout",
- ".layouts": "folder-layout",
- "_layouts": "folder-layout",
- "-layouts": "folder-layout",
- "__layouts__": "folder-layout",
- "mail": "folder-mail",
- ".mail": "folder-mail",
- "_mail": "folder-mail",
- "-mail": "folder-mail",
- "__mail__": "folder-mail",
- "mails": "folder-mail",
- ".mails": "folder-mail",
- "_mails": "folder-mail",
- "-mails": "folder-mail",
- "__mails__": "folder-mail",
- "email": "folder-mail",
- ".email": "folder-mail",
- "_email": "folder-mail",
- "-email": "folder-mail",
- "__email__": "folder-mail",
- "emails": "folder-mail",
- ".emails": "folder-mail",
- "_emails": "folder-mail",
- "-emails": "folder-mail",
- "__emails__": "folder-mail",
- "smtp": "folder-mail",
- ".smtp": "folder-mail",
- "_smtp": "folder-mail",
- "-smtp": "folder-mail",
- "__smtp__": "folder-mail",
- "mailers": "folder-mail",
- ".mailers": "folder-mail",
- "_mailers": "folder-mail",
- "-mailers": "folder-mail",
- "__mailers__": "folder-mail",
- "mappings": "folder-mappings",
- ".mappings": "folder-mappings",
- "_mappings": "folder-mappings",
- "-mappings": "folder-mappings",
- "__mappings__": "folder-mappings",
- "mapping": "folder-mappings",
- ".mapping": "folder-mappings",
- "_mapping": "folder-mappings",
- "-mapping": "folder-mappings",
- "__mapping__": "folder-mappings",
- "meta": "folder-meta",
- ".meta": "folder-meta",
- "_meta": "folder-meta",
- "-meta": "folder-meta",
- "__meta__": "folder-meta",
- "metadata": "folder-meta",
- ".metadata": "folder-meta",
- "_metadata": "folder-meta",
- "-metadata": "folder-meta",
- "__metadata__": "folder-meta",
- "changesets": "folder-changesets",
- ".changesets": "folder-changesets",
- "_changesets": "folder-changesets",
- "-changesets": "folder-changesets",
- "__changesets__": "folder-changesets",
- "changeset": "folder-changesets",
- ".changeset": "folder-changesets",
- "_changeset": "folder-changesets",
- "-changeset": "folder-changesets",
- "__changeset__": "folder-changesets",
- "package": "folder-packages",
- ".package": "folder-packages",
- "_package": "folder-packages",
- "-package": "folder-packages",
- "__package__": "folder-packages",
- "packages": "folder-packages",
- ".packages": "folder-packages",
- "_packages": "folder-packages",
- "-packages": "folder-packages",
- "__packages__": "folder-packages",
- "pkg": "folder-packages",
- ".pkg": "folder-packages",
- "_pkg": "folder-packages",
- "-pkg": "folder-packages",
- "__pkg__": "folder-packages",
- "pkgs": "folder-packages",
- ".pkgs": "folder-packages",
- "_pkgs": "folder-packages",
- "-pkgs": "folder-packages",
- "__pkgs__": "folder-packages",
- "serverpackages": "folder-packages",
- ".serverpackages": "folder-packages",
- "_serverpackages": "folder-packages",
- "-serverpackages": "folder-packages",
- "__serverpackages__": "folder-packages",
- "devpackages": "folder-packages",
- ".devpackages": "folder-packages",
- "_devpackages": "folder-packages",
- "-devpackages": "folder-packages",
- "__devpackages__": "folder-packages",
- "dependencies": "folder-packages",
- ".dependencies": "folder-packages",
- "_dependencies": "folder-packages",
- "-dependencies": "folder-packages",
- "__dependencies__": "folder-packages",
- "shared": "folder-shared",
- ".shared": "folder-shared",
- "_shared": "folder-shared",
- "-shared": "folder-shared",
- "__shared__": "folder-shared",
- "common": "folder-shared",
- ".common": "folder-shared",
- "_common": "folder-shared",
- "-common": "folder-shared",
- "__common__": "folder-shared",
- "glsl": "folder-shader",
- ".glsl": "folder-shader",
- "_glsl": "folder-shader",
- "-glsl": "folder-shader",
- "__glsl__": "folder-shader",
- "hlsl": "folder-shader",
- ".hlsl": "folder-shader",
- "_hlsl": "folder-shader",
- "-hlsl": "folder-shader",
- "__hlsl__": "folder-shader",
- "shader": "folder-shader",
- ".shader": "folder-shader",
- "_shader": "folder-shader",
- "-shader": "folder-shader",
- "__shader__": "folder-shader",
- "shaders": "folder-shader",
- ".shaders": "folder-shader",
- "_shaders": "folder-shader",
- "-shaders": "folder-shader",
- "__shaders__": "folder-shader",
- "stack": "folder-stack",
- ".stack": "folder-stack",
- "_stack": "folder-stack",
- "-stack": "folder-stack",
- "__stack__": "folder-stack",
- "stacks": "folder-stack",
- ".stacks": "folder-stack",
- "_stacks": "folder-stack",
- "-stacks": "folder-stack",
- "__stacks__": "folder-stack",
- "template": "folder-template",
- ".template": "folder-template",
- "_template": "folder-template",
- "-template": "folder-template",
- "__template__": "folder-template",
- "templates": "folder-template",
- ".templates": "folder-template",
- "_templates": "folder-template",
- "-templates": "folder-template",
- "__templates__": "folder-template",
- "github/issue_template": "folder-template",
- ".github/issue_template": "folder-template",
- "_github/issue_template": "folder-template",
- "-github/issue_template": "folder-template",
- "__github/issue_template__": "folder-template",
- "github/pull_request_template": "folder-template",
- ".github/pull_request_template": "folder-template",
- "_github/pull_request_template": "folder-template",
- "-github/pull_request_template": "folder-template",
- "__github/pull_request_template__": "folder-template",
- "util": "folder-utils",
- ".util": "folder-utils",
- "_util": "folder-utils",
- "-util": "folder-utils",
- "__util__": "folder-utils",
- "utils": "folder-utils",
- ".utils": "folder-utils",
- "_utils": "folder-utils",
- "-utils": "folder-utils",
- "__utils__": "folder-utils",
- "utility": "folder-utils",
- ".utility": "folder-utils",
- "_utility": "folder-utils",
- "-utility": "folder-utils",
- "__utility__": "folder-utils",
- "utilities": "folder-utils",
- ".utilities": "folder-utils",
- "_utilities": "folder-utils",
- "-utilities": "folder-utils",
- "__utilities__": "folder-utils",
- "supabase": "folder-supabase",
- ".supabase": "folder-supabase",
- "_supabase": "folder-supabase",
- "-supabase": "folder-supabase",
- "__supabase__": "folder-supabase",
- "private": "folder-private",
- ".private": "folder-private",
- "_private": "folder-private",
- "-private": "folder-private",
- "__private__": "folder-private",
- "linux": "folder-linux",
- ".linux": "folder-linux",
- "_linux": "folder-linux",
- "-linux": "folder-linux",
- "__linux__": "folder-linux",
- "linuxbsd": "folder-linux",
- ".linuxbsd": "folder-linux",
- "_linuxbsd": "folder-linux",
- "-linuxbsd": "folder-linux",
- "__linuxbsd__": "folder-linux",
- "unix": "folder-linux",
- ".unix": "folder-linux",
- "_unix": "folder-linux",
- "-unix": "folder-linux",
- "__unix__": "folder-linux",
- "wsl": "folder-linux",
- ".wsl": "folder-linux",
- "_wsl": "folder-linux",
- "-wsl": "folder-linux",
- "__wsl__": "folder-linux",
- "ubuntu": "folder-linux",
- ".ubuntu": "folder-linux",
- "_ubuntu": "folder-linux",
- "-ubuntu": "folder-linux",
- "__ubuntu__": "folder-linux",
- "deb": "folder-linux",
- ".deb": "folder-linux",
- "_deb": "folder-linux",
- "-deb": "folder-linux",
- "__deb__": "folder-linux",
- "debian": "folder-linux",
- ".debian": "folder-linux",
- "_debian": "folder-linux",
- "-debian": "folder-linux",
- "__debian__": "folder-linux",
- "deepin": "folder-linux",
- ".deepin": "folder-linux",
- "_deepin": "folder-linux",
- "-deepin": "folder-linux",
- "__deepin__": "folder-linux",
- "centos": "folder-linux",
- ".centos": "folder-linux",
- "_centos": "folder-linux",
- "-centos": "folder-linux",
- "__centos__": "folder-linux",
- "popos": "folder-linux",
- ".popos": "folder-linux",
- "_popos": "folder-linux",
- "-popos": "folder-linux",
- "__popos__": "folder-linux",
- "mint": "folder-linux",
- ".mint": "folder-linux",
- "_mint": "folder-linux",
- "-mint": "folder-linux",
- "__mint__": "folder-linux",
- "windows": "folder-windows",
- ".windows": "folder-windows",
- "_windows": "folder-windows",
- "-windows": "folder-windows",
- "__windows__": "folder-windows",
- "win": "folder-windows",
- ".win": "folder-windows",
- "_win": "folder-windows",
- "-win": "folder-windows",
- "__win__": "folder-windows",
- "win32": "folder-windows",
- ".win32": "folder-windows",
- "_win32": "folder-windows",
- "-win32": "folder-windows",
- "__win32__": "folder-windows",
- "windows11": "folder-windows",
- ".windows11": "folder-windows",
- "_windows11": "folder-windows",
- "-windows11": "folder-windows",
- "__windows11__": "folder-windows",
- "windows10": "folder-windows",
- ".windows10": "folder-windows",
- "_windows10": "folder-windows",
- "-windows10": "folder-windows",
- "__windows10__": "folder-windows",
- "windowsxp": "folder-windows",
- ".windowsxp": "folder-windows",
- "_windowsxp": "folder-windows",
- "-windowsxp": "folder-windows",
- "__windowsxp__": "folder-windows",
- "windowsnt": "folder-windows",
- ".windowsnt": "folder-windows",
- "_windowsnt": "folder-windows",
- "-windowsnt": "folder-windows",
- "__windowsnt__": "folder-windows",
- "win11": "folder-windows",
- ".win11": "folder-windows",
- "_win11": "folder-windows",
- "-win11": "folder-windows",
- "__win11__": "folder-windows",
- "win10": "folder-windows",
- ".win10": "folder-windows",
- "_win10": "folder-windows",
- "-win10": "folder-windows",
- "__win10__": "folder-windows",
- "winxp": "folder-windows",
- ".winxp": "folder-windows",
- "_winxp": "folder-windows",
- "-winxp": "folder-windows",
- "__winxp__": "folder-windows",
- "winnt": "folder-windows",
- ".winnt": "folder-windows",
- "_winnt": "folder-windows",
- "-winnt": "folder-windows",
- "__winnt__": "folder-windows",
- "macos": "folder-macos",
- ".macos": "folder-macos",
- "_macos": "folder-macos",
- "-macos": "folder-macos",
- "__macos__": "folder-macos",
- "mac": "folder-macos",
- ".mac": "folder-macos",
- "_mac": "folder-macos",
- "-mac": "folder-macos",
- "__mac__": "folder-macos",
- "osx": "folder-macos",
- ".osx": "folder-macos",
- "_osx": "folder-macos",
- "-osx": "folder-macos",
- "__osx__": "folder-macos",
- "ds_store": "folder-macos",
- ".ds_store": "folder-macos",
- "_ds_store": "folder-macos",
- "-ds_store": "folder-macos",
- "__ds_store__": "folder-macos",
- "iphone": "folder-macos",
- ".iphone": "folder-macos",
- "_iphone": "folder-macos",
- "-iphone": "folder-macos",
- "__iphone__": "folder-macos",
- "ipad": "folder-macos",
- ".ipad": "folder-macos",
- "_ipad": "folder-macos",
- "-ipad": "folder-macos",
- "__ipad__": "folder-macos",
- "ipod": "folder-macos",
- ".ipod": "folder-macos",
- "_ipod": "folder-macos",
- "-ipod": "folder-macos",
- "__ipod__": "folder-macos",
- "macbook": "folder-macos",
- ".macbook": "folder-macos",
- "_macbook": "folder-macos",
- "-macbook": "folder-macos",
- "__macbook__": "folder-macos",
- "macbook-air": "folder-macos",
- ".macbook-air": "folder-macos",
- "_macbook-air": "folder-macos",
- "-macbook-air": "folder-macos",
- "__macbook-air__": "folder-macos",
- "macosx": "folder-macos",
- ".macosx": "folder-macos",
- "_macosx": "folder-macos",
- "-macosx": "folder-macos",
- "__macosx__": "folder-macos",
- "apple": "folder-macos",
- ".apple": "folder-macos",
- "_apple": "folder-macos",
- "-apple": "folder-macos",
- "__apple__": "folder-macos",
- "error": "folder-error",
- ".error": "folder-error",
- "_error": "folder-error",
- "-error": "folder-error",
- "__error__": "folder-error",
- "errors": "folder-error",
- ".errors": "folder-error",
- "_errors": "folder-error",
- "-errors": "folder-error",
- "__errors__": "folder-error",
- "err": "folder-error",
- ".err": "folder-error",
- "_err": "folder-error",
- "-err": "folder-error",
- "__err__": "folder-error",
- "errs": "folder-error",
- ".errs": "folder-error",
- "_errs": "folder-error",
- "-errs": "folder-error",
- "__errs__": "folder-error",
- "crash": "folder-error",
- ".crash": "folder-error",
- "_crash": "folder-error",
- "-crash": "folder-error",
- "__crash__": "folder-error",
- "crashes": "folder-error",
- ".crashes": "folder-error",
- "_crashes": "folder-error",
- "-crashes": "folder-error",
- "__crashes__": "folder-error",
- "event": "folder-event",
- ".event": "folder-event",
- "_event": "folder-event",
- "-event": "folder-event",
- "__event__": "folder-event",
- "events": "folder-event",
- ".events": "folder-event",
- "_events": "folder-event",
- "-events": "folder-event",
- "__events__": "folder-event",
- "auth": "folder-secure",
- ".auth": "folder-secure",
- "_auth": "folder-secure",
- "-auth": "folder-secure",
- "__auth__": "folder-secure",
- "authentication": "folder-secure",
- ".authentication": "folder-secure",
- "_authentication": "folder-secure",
- "-authentication": "folder-secure",
- "__authentication__": "folder-secure",
- "secure": "folder-secure",
- ".secure": "folder-secure",
- "_secure": "folder-secure",
- "-secure": "folder-secure",
- "__secure__": "folder-secure",
- "security": "folder-secure",
- ".security": "folder-secure",
- "_security": "folder-secure",
- "-security": "folder-secure",
- "__security__": "folder-secure",
- "cert": "folder-secure",
- ".cert": "folder-secure",
- "_cert": "folder-secure",
- "-cert": "folder-secure",
- "__cert__": "folder-secure",
- "certs": "folder-secure",
- ".certs": "folder-secure",
- "_certs": "folder-secure",
- "-certs": "folder-secure",
- "__certs__": "folder-secure",
- "certificate": "folder-secure",
- ".certificate": "folder-secure",
- "_certificate": "folder-secure",
- "-certificate": "folder-secure",
- "__certificate__": "folder-secure",
- "certificates": "folder-secure",
- ".certificates": "folder-secure",
- "_certificates": "folder-secure",
- "-certificates": "folder-secure",
- "__certificates__": "folder-secure",
- "ssl": "folder-secure",
- ".ssl": "folder-secure",
- "_ssl": "folder-secure",
- "-ssl": "folder-secure",
- "__ssl__": "folder-secure",
- "cipher": "folder-secure",
- ".cipher": "folder-secure",
- "_cipher": "folder-secure",
- "-cipher": "folder-secure",
- "__cipher__": "folder-secure",
- "cypher": "folder-secure",
- ".cypher": "folder-secure",
- "_cypher": "folder-secure",
- "-cypher": "folder-secure",
- "__cypher__": "folder-secure",
- "tls": "folder-secure",
- ".tls": "folder-secure",
- "_tls": "folder-secure",
- "-tls": "folder-secure",
- "__tls__": "folder-secure",
- "custom": "folder-custom",
- ".custom": "folder-custom",
- "_custom": "folder-custom",
- "-custom": "folder-custom",
- "__custom__": "folder-custom",
- "customs": "folder-custom",
- ".customs": "folder-custom",
- "_customs": "folder-custom",
- "-customs": "folder-custom",
- "__customs__": "folder-custom",
- "draft": "folder-mock",
- ".draft": "folder-mock",
- "_draft": "folder-mock",
- "-draft": "folder-mock",
- "__draft__": "folder-mock",
- "drafts": "folder-mock",
- ".drafts": "folder-mock",
- "_drafts": "folder-mock",
- "-drafts": "folder-mock",
- "__drafts__": "folder-mock",
- "mock": "folder-mock",
- ".mock": "folder-mock",
- "_mock": "folder-mock",
- "-mock": "folder-mock",
- "__mock__": "folder-mock",
- "mocks": "folder-mock",
- ".mocks": "folder-mock",
- "_mocks": "folder-mock",
- "-mocks": "folder-mock",
- "__mocks__": "folder-mock",
- "fixture": "folder-mock",
- ".fixture": "folder-mock",
- "_fixture": "folder-mock",
- "-fixture": "folder-mock",
- "__fixture__": "folder-mock",
- "fixtures": "folder-mock",
- ".fixtures": "folder-mock",
- "_fixtures": "folder-mock",
- "-fixtures": "folder-mock",
- "__fixtures__": "folder-mock",
- "concept": "folder-mock",
- ".concept": "folder-mock",
- "_concept": "folder-mock",
- "-concept": "folder-mock",
- "__concept__": "folder-mock",
- "concepts": "folder-mock",
- ".concepts": "folder-mock",
- "_concepts": "folder-mock",
- "-concepts": "folder-mock",
- "__concepts__": "folder-mock",
- "sketch": "folder-mock",
- ".sketch": "folder-mock",
- "_sketch": "folder-mock",
- "-sketch": "folder-mock",
- "__sketch__": "folder-mock",
- "sketches": "folder-mock",
- ".sketches": "folder-mock",
- "_sketches": "folder-mock",
- "-sketches": "folder-mock",
- "__sketches__": "folder-mock",
- "syntax": "folder-syntax",
- ".syntax": "folder-syntax",
- "_syntax": "folder-syntax",
- "-syntax": "folder-syntax",
- "__syntax__": "folder-syntax",
- "syntaxes": "folder-syntax",
- ".syntaxes": "folder-syntax",
- "_syntaxes": "folder-syntax",
- "-syntaxes": "folder-syntax",
- "__syntaxes__": "folder-syntax",
- "spellcheck": "folder-syntax",
- ".spellcheck": "folder-syntax",
- "_spellcheck": "folder-syntax",
- "-spellcheck": "folder-syntax",
- "__spellcheck__": "folder-syntax",
- "spellcheckers": "folder-syntax",
- ".spellcheckers": "folder-syntax",
- "_spellcheckers": "folder-syntax",
- "-spellcheckers": "folder-syntax",
- "__spellcheckers__": "folder-syntax",
- "vm": "folder-vm",
- ".vm": "folder-vm",
- "_vm": "folder-vm",
- "-vm": "folder-vm",
- "__vm__": "folder-vm",
- "vms": "folder-vm",
- ".vms": "folder-vm",
- "_vms": "folder-vm",
- "-vms": "folder-vm",
- "__vms__": "folder-vm",
- "stylus": "folder-stylus",
- ".stylus": "folder-stylus",
- "_stylus": "folder-stylus",
- "-stylus": "folder-stylus",
- "__stylus__": "folder-stylus",
- "flow-typed": "folder-flow",
- ".flow-typed": "folder-flow",
- "_flow-typed": "folder-flow",
- "-flow-typed": "folder-flow",
- "__flow-typed__": "folder-flow",
- "rule": "folder-rules",
- ".rule": "folder-rules",
- "_rule": "folder-rules",
- "-rule": "folder-rules",
- "__rule__": "folder-rules",
- "rules": "folder-rules",
- ".rules": "folder-rules",
- "_rules": "folder-rules",
- "-rules": "folder-rules",
- "__rules__": "folder-rules",
- "validation": "folder-rules",
- ".validation": "folder-rules",
- "_validation": "folder-rules",
- "-validation": "folder-rules",
- "__validation__": "folder-rules",
- "validations": "folder-rules",
- ".validations": "folder-rules",
- "_validations": "folder-rules",
- "-validations": "folder-rules",
- "__validations__": "folder-rules",
- "validator": "folder-rules",
- ".validator": "folder-rules",
- "_validator": "folder-rules",
- "-validator": "folder-rules",
- "__validator__": "folder-rules",
- "validators": "folder-rules",
- ".validators": "folder-rules",
- "_validators": "folder-rules",
- "-validators": "folder-rules",
- "__validators__": "folder-rules",
- "review": "folder-review",
- ".review": "folder-review",
- "_review": "folder-review",
- "-review": "folder-review",
- "__review__": "folder-review",
- "reviews": "folder-review",
- ".reviews": "folder-review",
- "_reviews": "folder-review",
- "-reviews": "folder-review",
- "__reviews__": "folder-review",
- "revisal": "folder-review",
- ".revisal": "folder-review",
- "_revisal": "folder-review",
- "-revisal": "folder-review",
- "__revisal__": "folder-review",
- "revisals": "folder-review",
- ".revisals": "folder-review",
- "_revisals": "folder-review",
- "-revisals": "folder-review",
- "__revisals__": "folder-review",
- "reviewed": "folder-review",
- ".reviewed": "folder-review",
- "_reviewed": "folder-review",
- "-reviewed": "folder-review",
- "__reviewed__": "folder-review",
- "preview": "folder-review",
- ".preview": "folder-review",
- "_preview": "folder-review",
- "-preview": "folder-review",
- "__preview__": "folder-review",
- "previews": "folder-review",
- ".previews": "folder-review",
- "_previews": "folder-review",
- "-previews": "folder-review",
- "__previews__": "folder-review",
- "anim": "folder-animation",
- ".anim": "folder-animation",
- "_anim": "folder-animation",
- "-anim": "folder-animation",
- "__anim__": "folder-animation",
- "anims": "folder-animation",
- ".anims": "folder-animation",
- "_anims": "folder-animation",
- "-anims": "folder-animation",
- "__anims__": "folder-animation",
- "animation": "folder-animation",
- ".animation": "folder-animation",
- "_animation": "folder-animation",
- "-animation": "folder-animation",
- "__animation__": "folder-animation",
- "animations": "folder-animation",
- ".animations": "folder-animation",
- "_animations": "folder-animation",
- "-animations": "folder-animation",
- "__animations__": "folder-animation",
- "animated": "folder-animation",
- ".animated": "folder-animation",
- "_animated": "folder-animation",
- "-animated": "folder-animation",
- "__animated__": "folder-animation",
- "motion": "folder-animation",
- ".motion": "folder-animation",
- "_motion": "folder-animation",
- "-motion": "folder-animation",
- "__motion__": "folder-animation",
- "motions": "folder-animation",
- ".motions": "folder-animation",
- "_motions": "folder-animation",
- "-motions": "folder-animation",
- "__motions__": "folder-animation",
- "transition": "folder-animation",
- ".transition": "folder-animation",
- "_transition": "folder-animation",
- "-transition": "folder-animation",
- "__transition__": "folder-animation",
- "transitions": "folder-animation",
- ".transitions": "folder-animation",
- "_transitions": "folder-animation",
- "-transitions": "folder-animation",
- "__transitions__": "folder-animation",
- "easing": "folder-animation",
- ".easing": "folder-animation",
- "_easing": "folder-animation",
- "-easing": "folder-animation",
- "__easing__": "folder-animation",
- "easings": "folder-animation",
- ".easings": "folder-animation",
- "_easings": "folder-animation",
- "-easings": "folder-animation",
- "__easings__": "folder-animation",
- "guard": "folder-guard",
- ".guard": "folder-guard",
- "_guard": "folder-guard",
- "-guard": "folder-guard",
- "__guard__": "folder-guard",
- "guards": "folder-guard",
- ".guards": "folder-guard",
- "_guards": "folder-guard",
- "-guards": "folder-guard",
- "__guards__": "folder-guard",
- "prisma": "folder-prisma",
- ".prisma": "folder-prisma",
- "_prisma": "folder-prisma",
- "-prisma": "folder-prisma",
- "__prisma__": "folder-prisma",
- "prisma/schema": "folder-prisma",
- ".prisma/schema": "folder-prisma",
- "_prisma/schema": "folder-prisma",
- "-prisma/schema": "folder-prisma",
- "__prisma/schema__": "folder-prisma",
- "pipe": "folder-pipe",
- ".pipe": "folder-pipe",
- "_pipe": "folder-pipe",
- "-pipe": "folder-pipe",
- "__pipe__": "folder-pipe",
- "pipes": "folder-pipe",
- ".pipes": "folder-pipe",
- "_pipes": "folder-pipe",
- "-pipes": "folder-pipe",
- "__pipes__": "folder-pipe",
- "pipeline": "folder-pipe",
- ".pipeline": "folder-pipe",
- "_pipeline": "folder-pipe",
- "-pipeline": "folder-pipe",
- "__pipeline__": "folder-pipe",
- "pipelines": "folder-pipe",
- ".pipelines": "folder-pipe",
- "_pipelines": "folder-pipe",
- "-pipelines": "folder-pipe",
- "__pipelines__": "folder-pipe",
- "interceptor": "folder-interceptor",
- ".interceptor": "folder-interceptor",
- "_interceptor": "folder-interceptor",
- "-interceptor": "folder-interceptor",
- "__interceptor__": "folder-interceptor",
- "interceptors": "folder-interceptor",
- ".interceptors": "folder-interceptor",
- "_interceptors": "folder-interceptor",
- "-interceptors": "folder-interceptor",
- "__interceptors__": "folder-interceptor",
- "svg": "folder-svg",
- ".svg": "folder-svg",
- "_svg": "folder-svg",
- "-svg": "folder-svg",
- "__svg__": "folder-svg",
- "svgs": "folder-svg",
- ".svgs": "folder-svg",
- "_svgs": "folder-svg",
- "-svgs": "folder-svg",
- "__svgs__": "folder-svg",
- "vector": "folder-svg",
- ".vector": "folder-svg",
- "_vector": "folder-svg",
- "-vector": "folder-svg",
- "__vector__": "folder-svg",
- "vectors": "folder-svg",
- ".vectors": "folder-svg",
- "_vectors": "folder-svg",
- "-vectors": "folder-svg",
- "__vectors__": "folder-svg",
- "nuxt": "folder-nuxt",
- ".nuxt": "folder-nuxt",
- "_nuxt": "folder-nuxt",
- "-nuxt": "folder-nuxt",
- "__nuxt__": "folder-nuxt",
- "terraform": "folder-terraform",
- ".terraform": "folder-terraform",
- "_terraform": "folder-terraform",
- "-terraform": "folder-terraform",
- "__terraform__": "folder-terraform",
- "mobile": "folder-mobile",
- ".mobile": "folder-mobile",
- "_mobile": "folder-mobile",
- "-mobile": "folder-mobile",
- "__mobile__": "folder-mobile",
- "mobiles": "folder-mobile",
- ".mobiles": "folder-mobile",
- "_mobiles": "folder-mobile",
- "-mobiles": "folder-mobile",
- "__mobiles__": "folder-mobile",
- "portable": "folder-mobile",
- ".portable": "folder-mobile",
- "_portable": "folder-mobile",
- "-portable": "folder-mobile",
- "__portable__": "folder-mobile",
- "portability": "folder-mobile",
- ".portability": "folder-mobile",
- "_portability": "folder-mobile",
- "-portability": "folder-mobile",
- "__portability__": "folder-mobile",
- "phone": "folder-mobile",
- ".phone": "folder-mobile",
- "_phone": "folder-mobile",
- "-phone": "folder-mobile",
- "__phone__": "folder-mobile",
- "phones": "folder-mobile",
- ".phones": "folder-mobile",
- "_phones": "folder-mobile",
- "-phones": "folder-mobile",
- "__phones__": "folder-mobile",
- "stencil": "folder-stencil",
- ".stencil": "folder-stencil",
- "_stencil": "folder-stencil",
- "-stencil": "folder-stencil",
- "__stencil__": "folder-stencil",
- "firebase": "folder-firebase",
- ".firebase": "folder-firebase",
- "_firebase": "folder-firebase",
- "-firebase": "folder-firebase",
- "__firebase__": "folder-firebase",
- "firestore": "folder-firestore",
- ".firestore": "folder-firestore",
- "_firestore": "folder-firestore",
- "-firestore": "folder-firestore",
- "__firestore__": "folder-firestore",
- "cloud-firestore": "folder-firestore",
- ".cloud-firestore": "folder-firestore",
- "_cloud-firestore": "folder-firestore",
- "-cloud-firestore": "folder-firestore",
- "__cloud-firestore__": "folder-firestore",
- "firebase-firestore": "folder-firestore",
- ".firebase-firestore": "folder-firestore",
- "_firebase-firestore": "folder-firestore",
- "-firebase-firestore": "folder-firestore",
- "__firebase-firestore__": "folder-firestore",
- "cloud-functions": "folder-cloud-functions",
- ".cloud-functions": "folder-cloud-functions",
- "_cloud-functions": "folder-cloud-functions",
- "-cloud-functions": "folder-cloud-functions",
- "__cloud-functions__": "folder-cloud-functions",
- "cloudfunctions": "folder-cloud-functions",
- ".cloudfunctions": "folder-cloud-functions",
- "_cloudfunctions": "folder-cloud-functions",
- "-cloudfunctions": "folder-cloud-functions",
- "__cloudfunctions__": "folder-cloud-functions",
- "firebase-cloud-functions": "folder-cloud-functions",
- ".firebase-cloud-functions": "folder-cloud-functions",
- "_firebase-cloud-functions": "folder-cloud-functions",
- "-firebase-cloud-functions": "folder-cloud-functions",
- "__firebase-cloud-functions__": "folder-cloud-functions",
- "firebase-cloudfunctions": "folder-cloud-functions",
- ".firebase-cloudfunctions": "folder-cloud-functions",
- "_firebase-cloudfunctions": "folder-cloud-functions",
- "-firebase-cloudfunctions": "folder-cloud-functions",
- "__firebase-cloudfunctions__": "folder-cloud-functions",
- "svelte": "folder-svelte",
- ".svelte": "folder-svelte",
- "_svelte": "folder-svelte",
- "-svelte": "folder-svelte",
- "__svelte__": "folder-svelte",
- "svelte-kit": "folder-svelte",
- ".svelte-kit": "folder-svelte",
- "_svelte-kit": "folder-svelte",
- "-svelte-kit": "folder-svelte",
- "__svelte-kit__": "folder-svelte",
- "update": "folder-update",
- ".update": "folder-update",
- "_update": "folder-update",
- "-update": "folder-update",
- "__update__": "folder-update",
- "updates": "folder-update",
- ".updates": "folder-update",
- "_updates": "folder-update",
- "-updates": "folder-update",
- "__updates__": "folder-update",
- "upgrade": "folder-update",
- ".upgrade": "folder-update",
- "_upgrade": "folder-update",
- "-upgrade": "folder-update",
- "__upgrade__": "folder-update",
- "upgrades": "folder-update",
- ".upgrades": "folder-update",
- "_upgrades": "folder-update",
- "-upgrades": "folder-update",
- "__upgrades__": "folder-update",
- "idea": "folder-intellij",
- ".idea": "folder-intellij",
- "_idea": "folder-intellij",
- "-idea": "folder-intellij",
- "__idea__": "folder-intellij",
- "azure-pipelines": "folder-azure-pipelines",
- ".azure-pipelines": "folder-azure-pipelines",
- "_azure-pipelines": "folder-azure-pipelines",
- "-azure-pipelines": "folder-azure-pipelines",
- "__azure-pipelines__": "folder-azure-pipelines",
- "azure-pipelines-ci": "folder-azure-pipelines",
- ".azure-pipelines-ci": "folder-azure-pipelines",
- "_azure-pipelines-ci": "folder-azure-pipelines",
- "-azure-pipelines-ci": "folder-azure-pipelines",
- "__azure-pipelines-ci__": "folder-azure-pipelines",
- "mjml": "folder-mjml",
- ".mjml": "folder-mjml",
- "_mjml": "folder-mjml",
- "-mjml": "folder-mjml",
- "__mjml__": "folder-mjml",
- "admin": "folder-admin",
- ".admin": "folder-admin",
- "_admin": "folder-admin",
- "-admin": "folder-admin",
- "__admin__": "folder-admin",
- "admins": "folder-admin",
- ".admins": "folder-admin",
- "_admins": "folder-admin",
- "-admins": "folder-admin",
- "__admins__": "folder-admin",
- "manager": "folder-admin",
- ".manager": "folder-admin",
- "_manager": "folder-admin",
- "-manager": "folder-admin",
- "__manager__": "folder-admin",
- "managers": "folder-admin",
- ".managers": "folder-admin",
- "_managers": "folder-admin",
- "-managers": "folder-admin",
- "__managers__": "folder-admin",
- "moderator": "folder-admin",
- ".moderator": "folder-admin",
- "_moderator": "folder-admin",
- "-moderator": "folder-admin",
- "__moderator__": "folder-admin",
- "moderators": "folder-admin",
- ".moderators": "folder-admin",
- "_moderators": "folder-admin",
- "-moderators": "folder-admin",
- "__moderators__": "folder-admin",
- "jupyter": "folder-jupyter",
- ".jupyter": "folder-jupyter",
- "_jupyter": "folder-jupyter",
- "-jupyter": "folder-jupyter",
- "__jupyter__": "folder-jupyter",
- "notebook": "folder-jupyter",
- ".notebook": "folder-jupyter",
- "_notebook": "folder-jupyter",
- "-notebook": "folder-jupyter",
- "__notebook__": "folder-jupyter",
- "notebooks": "folder-jupyter",
- ".notebooks": "folder-jupyter",
- "_notebooks": "folder-jupyter",
- "-notebooks": "folder-jupyter",
- "__notebooks__": "folder-jupyter",
- "ipynb": "folder-jupyter",
- ".ipynb": "folder-jupyter",
- "_ipynb": "folder-jupyter",
- "-ipynb": "folder-jupyter",
- "__ipynb__": "folder-jupyter",
- "scala": "folder-scala",
- ".scala": "folder-scala",
- "_scala": "folder-scala",
- "-scala": "folder-scala",
- "__scala__": "folder-scala",
- "connection": "folder-connection",
- ".connection": "folder-connection",
- "_connection": "folder-connection",
- "-connection": "folder-connection",
- "__connection__": "folder-connection",
- "connections": "folder-connection",
- ".connections": "folder-connection",
- "_connections": "folder-connection",
- "-connections": "folder-connection",
- "__connections__": "folder-connection",
- "integration": "folder-connection",
- ".integration": "folder-connection",
- "_integration": "folder-connection",
- "-integration": "folder-connection",
- "__integration__": "folder-connection",
- "integrations": "folder-connection",
- ".integrations": "folder-connection",
- "_integrations": "folder-connection",
- "-integrations": "folder-connection",
- "__integrations__": "folder-connection",
- "remote": "folder-connection",
- ".remote": "folder-connection",
- "_remote": "folder-connection",
- "-remote": "folder-connection",
- "__remote__": "folder-connection",
- "remotes": "folder-connection",
- ".remotes": "folder-connection",
- "_remotes": "folder-connection",
- "-remotes": "folder-connection",
- "__remotes__": "folder-connection",
- "quasar": "folder-quasar",
- ".quasar": "folder-quasar",
- "_quasar": "folder-quasar",
- "-quasar": "folder-quasar",
- "__quasar__": "folder-quasar",
- "next": "folder-next",
- ".next": "folder-next",
- "_next": "folder-next",
- "-next": "folder-next",
- "__next__": "folder-next",
- "dal": "folder-dal",
- ".dal": "folder-dal",
- "_dal": "folder-dal",
- "-dal": "folder-dal",
- "__dal__": "folder-dal",
- "data-access": "folder-dal",
- ".data-access": "folder-dal",
- "_data-access": "folder-dal",
- "-data-access": "folder-dal",
- "__data-access__": "folder-dal",
- "data-access-layer": "folder-dal",
- ".data-access-layer": "folder-dal",
- "_data-access-layer": "folder-dal",
- "-data-access-layer": "folder-dal",
- "__data-access-layer__": "folder-dal",
- "cobol": "folder-cobol",
- ".cobol": "folder-cobol",
- "_cobol": "folder-cobol",
- "-cobol": "folder-cobol",
- "__cobol__": "folder-cobol",
- "yarn": "folder-yarn",
- ".yarn": "folder-yarn",
- "_yarn": "folder-yarn",
- "-yarn": "folder-yarn",
- "__yarn__": "folder-yarn",
- "husky": "folder-husky",
- ".husky": "folder-husky",
- "_husky": "folder-husky",
- "-husky": "folder-husky",
- "__husky__": "folder-husky",
- "storybook": "folder-storybook",
- ".storybook": "folder-storybook",
- "_storybook": "folder-storybook",
- "-storybook": "folder-storybook",
- "__storybook__": "folder-storybook",
- "stories": "folder-storybook",
- ".stories": "folder-storybook",
- "_stories": "folder-storybook",
- "-stories": "folder-storybook",
- "__stories__": "folder-storybook",
- "base": "folder-base",
- ".base": "folder-base",
- "_base": "folder-base",
- "-base": "folder-base",
- "__base__": "folder-base",
- "bases": "folder-base",
- ".bases": "folder-base",
- "_bases": "folder-base",
- "-bases": "folder-base",
- "__bases__": "folder-base",
- "cart": "folder-cart",
- ".cart": "folder-cart",
- "_cart": "folder-cart",
- "-cart": "folder-cart",
- "__cart__": "folder-cart",
- "shopping-cart": "folder-cart",
- ".shopping-cart": "folder-cart",
- "_shopping-cart": "folder-cart",
- "-shopping-cart": "folder-cart",
- "__shopping-cart__": "folder-cart",
- "shopping": "folder-cart",
- ".shopping": "folder-cart",
- "_shopping": "folder-cart",
- "-shopping": "folder-cart",
- "__shopping__": "folder-cart",
- "shop": "folder-cart",
- ".shop": "folder-cart",
- "_shop": "folder-cart",
- "-shop": "folder-cart",
- "__shop__": "folder-cart",
- "home": "folder-home",
- ".home": "folder-home",
- "_home": "folder-home",
- "-home": "folder-home",
- "__home__": "folder-home",
- "start": "folder-home",
- ".start": "folder-home",
- "_start": "folder-home",
- "-start": "folder-home",
- "__start__": "folder-home",
- "main": "folder-home",
- ".main": "folder-home",
- "_main": "folder-home",
- "-main": "folder-home",
- "__main__": "folder-home",
- "landing": "folder-home",
- ".landing": "folder-home",
- "_landing": "folder-home",
- "-landing": "folder-home",
- "__landing__": "folder-home",
- "project": "folder-project",
- ".project": "folder-project",
- "_project": "folder-project",
- "-project": "folder-project",
- "__project__": "folder-project",
- "projects": "folder-project",
- ".projects": "folder-project",
- "_projects": "folder-project",
- "-projects": "folder-project",
- "__projects__": "folder-project",
- "proj": "folder-project",
- ".proj": "folder-project",
- "_proj": "folder-project",
- "-proj": "folder-project",
- "__proj__": "folder-project",
- "projs": "folder-project",
- ".projs": "folder-project",
- "_projs": "folder-project",
- "-projs": "folder-project",
- "__projs__": "folder-project",
- "prompt": "folder-prompts",
- ".prompt": "folder-prompts",
- "_prompt": "folder-prompts",
- "-prompt": "folder-prompts",
- "__prompt__": "folder-prompts",
- "prompts": "folder-prompts",
- ".prompts": "folder-prompts",
- "_prompts": "folder-prompts",
- "-prompts": "folder-prompts",
- "__prompts__": "folder-prompts",
- "interface": "folder-interface",
- ".interface": "folder-interface",
- "_interface": "folder-interface",
- "-interface": "folder-interface",
- "__interface__": "folder-interface",
- "interfaces": "folder-interface",
- ".interfaces": "folder-interface",
- "_interfaces": "folder-interface",
- "-interfaces": "folder-interface",
- "__interfaces__": "folder-interface",
- "netlify": "folder-netlify",
- ".netlify": "folder-netlify",
- "_netlify": "folder-netlify",
- "-netlify": "folder-netlify",
- "__netlify__": "folder-netlify",
- "enum": "folder-enum",
- ".enum": "folder-enum",
- "_enum": "folder-enum",
- "-enum": "folder-enum",
- "__enum__": "folder-enum",
- "enums": "folder-enum",
- ".enums": "folder-enum",
- "_enums": "folder-enum",
- "-enums": "folder-enum",
- "__enums__": "folder-enum",
- "pact": "folder-contract",
- ".pact": "folder-contract",
- "_pact": "folder-contract",
- "-pact": "folder-contract",
- "__pact__": "folder-contract",
- "pacts": "folder-contract",
- ".pacts": "folder-contract",
- "_pacts": "folder-contract",
- "-pacts": "folder-contract",
- "__pacts__": "folder-contract",
- "contract": "folder-contract",
- ".contract": "folder-contract",
- "_contract": "folder-contract",
- "-contract": "folder-contract",
- "__contract__": "folder-contract",
- "contracts": "folder-contract",
- ".contracts": "folder-contract",
- "_contracts": "folder-contract",
- "-contracts": "folder-contract",
- "__contracts__": "folder-contract",
- "contract-testing": "folder-contract",
- ".contract-testing": "folder-contract",
- "_contract-testing": "folder-contract",
- "-contract-testing": "folder-contract",
- "__contract-testing__": "folder-contract",
- "contract-test": "folder-contract",
- ".contract-test": "folder-contract",
- "_contract-test": "folder-contract",
- "-contract-test": "folder-contract",
- "__contract-test__": "folder-contract",
- "contract-tests": "folder-contract",
- ".contract-tests": "folder-contract",
- "_contract-tests": "folder-contract",
- "-contract-tests": "folder-contract",
- "__contract-tests__": "folder-contract",
- "helm": "folder-helm",
- ".helm": "folder-helm",
- "_helm": "folder-helm",
- "-helm": "folder-helm",
- "__helm__": "folder-helm",
- "helmchart": "folder-helm",
- ".helmchart": "folder-helm",
- "_helmchart": "folder-helm",
- "-helmchart": "folder-helm",
- "__helmchart__": "folder-helm",
- "helmcharts": "folder-helm",
- ".helmcharts": "folder-helm",
- "_helmcharts": "folder-helm",
- "-helmcharts": "folder-helm",
- "__helmcharts__": "folder-helm",
- "queue": "folder-queue",
- ".queue": "folder-queue",
- "_queue": "folder-queue",
- "-queue": "folder-queue",
- "__queue__": "folder-queue",
- "queues": "folder-queue",
- ".queues": "folder-queue",
- "_queues": "folder-queue",
- "-queues": "folder-queue",
- "__queues__": "folder-queue",
- "bull": "folder-queue",
- ".bull": "folder-queue",
- "_bull": "folder-queue",
- "-bull": "folder-queue",
- "__bull__": "folder-queue",
- "mq": "folder-queue",
- ".mq": "folder-queue",
- "_mq": "folder-queue",
- "-mq": "folder-queue",
- "__mq__": "folder-queue",
- "vercel": "folder-vercel",
- ".vercel": "folder-vercel",
- "_vercel": "folder-vercel",
- "-vercel": "folder-vercel",
- "__vercel__": "folder-vercel",
- "now": "folder-vercel",
- ".now": "folder-vercel",
- "_now": "folder-vercel",
- "-now": "folder-vercel",
- "__now__": "folder-vercel",
- "cypress": "folder-cypress",
- ".cypress": "folder-cypress",
- "_cypress": "folder-cypress",
- "-cypress": "folder-cypress",
- "__cypress__": "folder-cypress",
- "decorator": "folder-decorators",
- ".decorator": "folder-decorators",
- "_decorator": "folder-decorators",
- "-decorator": "folder-decorators",
- "__decorator__": "folder-decorators",
- "decorators": "folder-decorators",
- ".decorators": "folder-decorators",
- "_decorators": "folder-decorators",
- "-decorators": "folder-decorators",
- "__decorators__": "folder-decorators",
- "java": "folder-java",
- ".java": "folder-java",
- "_java": "folder-java",
- "-java": "folder-java",
- "__java__": "folder-java",
- "resolver": "folder-resolver",
- ".resolver": "folder-resolver",
- "_resolver": "folder-resolver",
- "-resolver": "folder-resolver",
- "__resolver__": "folder-resolver",
- "resolvers": "folder-resolver",
- ".resolvers": "folder-resolver",
- "_resolvers": "folder-resolver",
- "-resolvers": "folder-resolver",
- "__resolvers__": "folder-resolver",
- "angular": "folder-angular",
- ".angular": "folder-angular",
- "_angular": "folder-angular",
- "-angular": "folder-angular",
- "__angular__": "folder-angular",
- "unity": "folder-unity",
- ".unity": "folder-unity",
- "_unity": "folder-unity",
- "-unity": "folder-unity",
- "__unity__": "folder-unity",
- "pdf": "folder-pdf",
- ".pdf": "folder-pdf",
- "_pdf": "folder-pdf",
- "-pdf": "folder-pdf",
- "__pdf__": "folder-pdf",
- "pdfs": "folder-pdf",
- ".pdfs": "folder-pdf",
- "_pdfs": "folder-pdf",
- "-pdfs": "folder-pdf",
- "__pdfs__": "folder-pdf",
- "protobuf": "folder-proto",
- ".protobuf": "folder-proto",
- "_protobuf": "folder-proto",
- "-protobuf": "folder-proto",
- "__protobuf__": "folder-proto",
- "protobufs": "folder-proto",
- ".protobufs": "folder-proto",
- "_protobufs": "folder-proto",
- "-protobufs": "folder-proto",
- "__protobufs__": "folder-proto",
- "proto": "folder-proto",
- ".proto": "folder-proto",
- "_proto": "folder-proto",
- "-proto": "folder-proto",
- "protos": "folder-proto",
- ".protos": "folder-proto",
- "_protos": "folder-proto",
- "-protos": "folder-proto",
- "__protos__": "folder-proto",
- "plastic": "folder-plastic",
- ".plastic": "folder-plastic",
- "_plastic": "folder-plastic",
- "-plastic": "folder-plastic",
- "__plastic__": "folder-plastic",
- "gamemaker": "folder-gamemaker",
- ".gamemaker": "folder-gamemaker",
- "_gamemaker": "folder-gamemaker",
- "-gamemaker": "folder-gamemaker",
- "__gamemaker__": "folder-gamemaker",
- "gamemaker2": "folder-gamemaker",
- ".gamemaker2": "folder-gamemaker",
- "_gamemaker2": "folder-gamemaker",
- "-gamemaker2": "folder-gamemaker",
- "__gamemaker2__": "folder-gamemaker",
- "hg": "folder-mercurial",
- ".hg": "folder-mercurial",
- "_hg": "folder-mercurial",
- "-hg": "folder-mercurial",
- "__hg__": "folder-mercurial",
- "hghooks": "folder-mercurial",
- ".hghooks": "folder-mercurial",
- "_hghooks": "folder-mercurial",
- "-hghooks": "folder-mercurial",
- "__hghooks__": "folder-mercurial",
- "hgext": "folder-mercurial",
- ".hgext": "folder-mercurial",
- "_hgext": "folder-mercurial",
- "-hgext": "folder-mercurial",
- "__hgext__": "folder-mercurial",
- "godot": "folder-godot",
- ".godot": "folder-godot",
- "_godot": "folder-godot",
- "-godot": "folder-godot",
- "__godot__": "folder-godot",
- "godot-cpp": "folder-godot",
- ".godot-cpp": "folder-godot",
- "_godot-cpp": "folder-godot",
- "-godot-cpp": "folder-godot",
- "__godot-cpp__": "folder-godot",
- "lottie": "folder-lottie",
- ".lottie": "folder-lottie",
- "_lottie": "folder-lottie",
- "-lottie": "folder-lottie",
- "__lottie__": "folder-lottie",
- "lotties": "folder-lottie",
- ".lotties": "folder-lottie",
- "_lotties": "folder-lottie",
- "-lotties": "folder-lottie",
- "__lotties__": "folder-lottie",
- "lottiefiles": "folder-lottie",
- ".lottiefiles": "folder-lottie",
- "_lottiefiles": "folder-lottie",
- "-lottiefiles": "folder-lottie",
- "__lottiefiles__": "folder-lottie",
- "taskfile": "folder-taskfile",
- ".taskfile": "folder-taskfile",
- "_taskfile": "folder-taskfile",
- "-taskfile": "folder-taskfile",
- "__taskfile__": "folder-taskfile",
- "taskfiles": "folder-taskfile",
- ".taskfiles": "folder-taskfile",
- "_taskfiles": "folder-taskfile",
- "-taskfiles": "folder-taskfile",
- "__taskfiles__": "folder-taskfile",
- "drizzle": "folder-drizzle",
- ".drizzle": "folder-drizzle",
- "_drizzle": "folder-drizzle",
- "-drizzle": "folder-drizzle",
- "__drizzle__": "folder-drizzle",
- "cloudflare": "folder-cloudflare",
- ".cloudflare": "folder-cloudflare",
- "_cloudflare": "folder-cloudflare",
- "-cloudflare": "folder-cloudflare",
- "__cloudflare__": "folder-cloudflare",
- "seeds": "folder-seeders",
- ".seeds": "folder-seeders",
- "_seeds": "folder-seeders",
- "-seeds": "folder-seeders",
- "__seeds__": "folder-seeders",
- "seeders": "folder-seeders",
- ".seeders": "folder-seeders",
- "_seeders": "folder-seeders",
- "-seeders": "folder-seeders",
- "__seeders__": "folder-seeders",
- "seed": "folder-seeders",
- ".seed": "folder-seeders",
- "_seed": "folder-seeders",
- "-seed": "folder-seeders",
- "__seed__": "folder-seeders",
- "seeding": "folder-seeders",
- ".seeding": "folder-seeders",
- "_seeding": "folder-seeders",
- "-seeding": "folder-seeders",
- "__seeding__": "folder-seeders",
- "store": "folder-store",
- ".store": "folder-store",
- "_store": "folder-store",
- "-store": "folder-store",
- "__store__": "folder-store",
- "stores": "folder-store",
- ".stores": "folder-store",
- "_stores": "folder-store",
- "-stores": "folder-store",
- "__stores__": "folder-store",
- "bicep": "folder-bicep",
- ".bicep": "folder-bicep",
- "_bicep": "folder-bicep",
- "-bicep": "folder-bicep",
- "__bicep__": "folder-bicep",
- "snap": "folder-snapcraft",
- ".snap": "folder-snapcraft",
- "_snap": "folder-snapcraft",
- "-snap": "folder-snapcraft",
- "__snap__": "folder-snapcraft",
- "snapcraft": "folder-snapcraft",
- ".snapcraft": "folder-snapcraft",
- "_snapcraft": "folder-snapcraft",
- "-snapcraft": "folder-snapcraft",
- "__snapcraft__": "folder-snapcraft",
- "dev": "folder-development",
- ".dev": "folder-development",
- "_dev": "folder-development",
- "-dev": "folder-development",
- "__dev__": "folder-development",
- "development": "folder-development",
- ".development": "folder-development",
- "_development": "folder-development",
- "-development": "folder-development",
- "__development__": "folder-development",
- "flutter": "folder-flutter",
- ".flutter": "folder-flutter",
- "_flutter": "folder-flutter",
- "-flutter": "folder-flutter",
- "__flutter__": "folder-flutter",
- "snippet": "folder-snippet",
- ".snippet": "folder-snippet",
- "_snippet": "folder-snippet",
- "-snippet": "folder-snippet",
- "__snippet__": "folder-snippet",
- "snippets": "folder-snippet",
- ".snippets": "folder-snippet",
- "_snippets": "folder-snippet",
- "-snippets": "folder-snippet",
- "__snippets__": "folder-snippet",
- "element": "folder-element",
- ".element": "folder-element",
- "_element": "folder-element",
- "-element": "folder-element",
- "__element__": "folder-element",
- "elements": "folder-element",
- ".elements": "folder-element",
- "_elements": "folder-element",
- "-elements": "folder-element",
- "__elements__": "folder-element",
- "src-tauri": "folder-src-tauri",
- ".src-tauri": "folder-src-tauri",
- "_src-tauri": "folder-src-tauri",
- "-src-tauri": "folder-src-tauri",
- "__src-tauri__": "folder-src-tauri",
- "favicon": "folder-favicon",
- ".favicon": "folder-favicon",
- "_favicon": "folder-favicon",
- "-favicon": "folder-favicon",
- "__favicon__": "folder-favicon",
- "favicons": "folder-favicon",
- ".favicons": "folder-favicon",
- "_favicons": "folder-favicon",
- "-favicons": "folder-favicon",
- "__favicons__": "folder-favicon",
- "feature": "folder-features",
- ".feature": "folder-features",
- "_feature": "folder-features",
- "-feature": "folder-features",
- "__feature__": "folder-features",
- "features": "folder-features",
- ".features": "folder-features",
- "_features": "folder-features",
- "-features": "folder-features",
- "__features__": "folder-features",
- "feat": "folder-features",
- ".feat": "folder-features",
- "_feat": "folder-features",
- "-feat": "folder-features",
- "__feat__": "folder-features",
- "feats": "folder-features",
- ".feats": "folder-features",
- "_feats": "folder-features",
- "-feats": "folder-features",
- "__feats__": "folder-features",
- "lefthook": "folder-lefthook",
- ".lefthook": "folder-lefthook",
- "_lefthook": "folder-lefthook",
- "-lefthook": "folder-lefthook",
- "__lefthook__": "folder-lefthook",
- "lefthook-local": "folder-lefthook",
- ".lefthook-local": "folder-lefthook",
- "_lefthook-local": "folder-lefthook",
- "-lefthook-local": "folder-lefthook",
- "__lefthook-local__": "folder-lefthook",
- "bloc": "folder-bloc",
- ".bloc": "folder-bloc",
- "_bloc": "folder-bloc",
- "-bloc": "folder-bloc",
- "__bloc__": "folder-bloc",
- "cubit": "folder-bloc",
- ".cubit": "folder-bloc",
- "_cubit": "folder-bloc",
- "-cubit": "folder-bloc",
- "__cubit__": "folder-bloc",
- "blocs": "folder-bloc",
- ".blocs": "folder-bloc",
- "_blocs": "folder-bloc",
- "-blocs": "folder-bloc",
- "__blocs__": "folder-bloc",
- "cubits": "folder-bloc",
- ".cubits": "folder-bloc",
- "_cubits": "folder-bloc",
- "-cubits": "folder-bloc",
- "__cubits__": "folder-bloc",
- "powershell": "folder-powershell",
- ".powershell": "folder-powershell",
- "_powershell": "folder-powershell",
- "-powershell": "folder-powershell",
- "__powershell__": "folder-powershell",
- "ps": "folder-powershell",
- ".ps": "folder-powershell",
- "_ps": "folder-powershell",
- "-ps": "folder-powershell",
- "__ps__": "folder-powershell",
- "ps1": "folder-powershell",
- ".ps1": "folder-powershell",
- "_ps1": "folder-powershell",
- "-ps1": "folder-powershell",
- "__ps1__": "folder-powershell",
- "repository": "folder-repository",
- ".repository": "folder-repository",
- "_repository": "folder-repository",
- "-repository": "folder-repository",
- "__repository__": "folder-repository",
- "repositories": "folder-repository",
- ".repositories": "folder-repository",
- "_repositories": "folder-repository",
- "-repositories": "folder-repository",
- "__repositories__": "folder-repository",
- "repo": "folder-repository",
- ".repo": "folder-repository",
- "_repo": "folder-repository",
- "-repo": "folder-repository",
- "__repo__": "folder-repository",
- "repos": "folder-repository",
- ".repos": "folder-repository",
- "_repos": "folder-repository",
- "-repos": "folder-repository",
- "__repos__": "folder-repository",
- "luau": "folder-luau",
- ".luau": "folder-luau",
- "_luau": "folder-luau",
- "-luau": "folder-luau",
- "__luau__": "folder-luau",
- "obsidian": "folder-obsidian",
- ".obsidian": "folder-obsidian",
- "_obsidian": "folder-obsidian",
- "-obsidian": "folder-obsidian",
- "__obsidian__": "folder-obsidian",
- "trash": "folder-trash",
- ".trash": "folder-trash",
- "_trash": "folder-trash",
- "-trash": "folder-trash",
- "__trash__": "folder-trash",
- "cline_docs": "folder-cline",
- ".cline_docs": "folder-cline",
- "_cline_docs": "folder-cline",
- "-cline_docs": "folder-cline",
- "__cline_docs__": "folder-cline",
- "liquibase": "folder-liquibase",
- ".liquibase": "folder-liquibase",
- "_liquibase": "folder-liquibase",
- "-liquibase": "folder-liquibase",
- "__liquibase__": "folder-liquibase",
- "dart": "folder-dart",
- ".dart": "folder-dart",
- "_dart": "folder-dart",
- "-dart": "folder-dart",
- "__dart__": "folder-dart",
- "dart_tool": "folder-dart",
- ".dart_tool": "folder-dart",
- "_dart_tool": "folder-dart",
- "-dart_tool": "folder-dart",
- "__dart_tool__": "folder-dart",
- "dart_tools": "folder-dart",
- ".dart_tools": "folder-dart",
- "_dart_tools": "folder-dart",
- "-dart_tools": "folder-dart",
- "__dart_tools__": "folder-dart",
- "zeabur": "folder-zeabur",
- ".zeabur": "folder-zeabur",
- "_zeabur": "folder-zeabur",
- "-zeabur": "folder-zeabur",
- "__zeabur__": "folder-zeabur",
- "kusto": "folder-kusto",
- ".kusto": "folder-kusto",
- "_kusto": "folder-kusto",
- "-kusto": "folder-kusto",
- "__kusto__": "folder-kusto",
- "kql": "folder-kusto",
- ".kql": "folder-kusto",
- "_kql": "folder-kusto",
- "-kql": "folder-kusto",
- "__kql__": "folder-kusto",
- "policy": "folder-policy",
- ".policy": "folder-policy",
- "_policy": "folder-policy",
- "-policy": "folder-policy",
- "__policy__": "folder-policy",
- "policies": "folder-policy",
- ".policies": "folder-policy",
- "_policies": "folder-policy",
- "-policies": "folder-policy",
- "__policies__": "folder-policy",
- "attachment": "folder-attachment",
- ".attachment": "folder-attachment",
- "_attachment": "folder-attachment",
- "-attachment": "folder-attachment",
- "__attachment__": "folder-attachment",
- "attachments": "folder-attachment",
- ".attachments": "folder-attachment",
- "_attachments": "folder-attachment",
- "-attachments": "folder-attachment",
- "__attachments__": "folder-attachment",
- "bibliography": "folder-bibliography",
- ".bibliography": "folder-bibliography",
- "_bibliography": "folder-bibliography",
- "-bibliography": "folder-bibliography",
- "__bibliography__": "folder-bibliography",
- "bibliographies": "folder-bibliography",
- ".bibliographies": "folder-bibliography",
- "_bibliographies": "folder-bibliography",
- "-bibliographies": "folder-bibliography",
- "__bibliographies__": "folder-bibliography",
- "book": "folder-bibliography",
- ".book": "folder-bibliography",
- "_book": "folder-bibliography",
- "-book": "folder-bibliography",
- "__book__": "folder-bibliography",
- "books": "folder-bibliography",
- ".books": "folder-bibliography",
- "_books": "folder-bibliography",
- "-books": "folder-bibliography",
- "__books__": "folder-bibliography",
- "link": "folder-link",
- ".link": "folder-link",
- "_link": "folder-link",
- "-link": "folder-link",
- "__link__": "folder-link",
- "links": "folder-link",
- ".links": "folder-link",
- "_links": "folder-link",
- "-links": "folder-link",
- "__links__": "folder-link",
- "pytorch": "folder-pytorch",
- ".pytorch": "folder-pytorch",
- "_pytorch": "folder-pytorch",
- "-pytorch": "folder-pytorch",
- "__pytorch__": "folder-pytorch",
- "torch": "folder-pytorch",
- ".torch": "folder-pytorch",
- "_torch": "folder-pytorch",
- "-torch": "folder-pytorch",
- "__torch__": "folder-pytorch",
- "blender": "folder-blender",
- ".blender": "folder-blender",
- "_blender": "folder-blender",
- "-blender": "folder-blender",
- "__blender__": "folder-blender",
- "blender-assets": "folder-blender",
- ".blender-assets": "folder-blender",
- "_blender-assets": "folder-blender",
- "-blender-assets": "folder-blender",
- "__blender-assets__": "folder-blender",
- "blender-files": "folder-blender",
- ".blender-files": "folder-blender",
- "_blender-files": "folder-blender",
- "-blender-files": "folder-blender",
- "__blender-files__": "folder-blender",
- "blender-project": "folder-blender",
- ".blender-project": "folder-blender",
- "_blender-project": "folder-blender",
- "-blender-project": "folder-blender",
- "__blender-project__": "folder-blender",
- "blender-models": "folder-blender",
- ".blender-models": "folder-blender",
- "_blender-models": "folder-blender",
- "-blender-models": "folder-blender",
- "__blender-models__": "folder-blender",
- "atoms": "folder-atom",
- ".atoms": "folder-atom",
- "_atoms": "folder-atom",
- "-atoms": "folder-atom",
- "__atoms__": "folder-atom",
- "atom": "folder-atom",
- ".atom": "folder-atom",
- "_atom": "folder-atom",
- "-atom": "folder-atom",
- "__atom__": "folder-atom",
- "molecules": "folder-molecule",
- ".molecules": "folder-molecule",
- "_molecules": "folder-molecule",
- "-molecules": "folder-molecule",
- "__molecules__": "folder-molecule",
- "molecule": "folder-molecule",
- ".molecule": "folder-molecule",
- "_molecule": "folder-molecule",
- "-molecule": "folder-molecule",
- "__molecule__": "folder-molecule",
- "organisms": "folder-organism",
- ".organisms": "folder-organism",
- "_organisms": "folder-organism",
- "-organisms": "folder-organism",
- "__organisms__": "folder-organism",
- "organism": "folder-organism",
- ".organism": "folder-organism",
- "_organism": "folder-organism",
- "-organism": "folder-organism",
- "__organism__": "folder-organism",
- ".claude": "folder-claude",
- "..claude": "folder-claude",
- "_.claude": "folder-claude",
- "-.claude": "folder-claude",
- "__.claude__": "folder-claude",
- ".cursor": "folder-cursor",
- "..cursor": "folder-cursor",
- "_.cursor": "folder-cursor",
- "-.cursor": "folder-cursor",
- "__.cursor__": "folder-cursor",
- ".gemini": "folder-gemini-ai",
- "..gemini": "folder-gemini-ai",
- "_.gemini": "folder-gemini-ai",
- "-.gemini": "folder-gemini-ai",
- "__.gemini__": "folder-gemini-ai",
- "gemini": "folder-gemini-ai",
- "_gemini": "folder-gemini-ai",
- "-gemini": "folder-gemini-ai",
- "__gemini__": "folder-gemini-ai",
- "gemini-ai": "folder-gemini-ai",
- ".gemini-ai": "folder-gemini-ai",
- "_gemini-ai": "folder-gemini-ai",
- "-gemini-ai": "folder-gemini-ai",
- "__gemini-ai__": "folder-gemini-ai",
- "geminiai": "folder-gemini-ai",
- ".geminiai": "folder-gemini-ai",
- "_geminiai": "folder-gemini-ai",
- "-geminiai": "folder-gemini-ai",
- "__geminiai__": "folder-gemini-ai",
- "input": "folder-input",
- ".input": "folder-input",
- "_input": "folder-input",
- "-input": "folder-input",
- "__input__": "folder-input",
- "inputs": "folder-input",
- ".inputs": "folder-input",
- "_inputs": "folder-input",
- "-inputs": "folder-input",
- "__inputs__": "folder-input",
- "io": "folder-input",
- ".io": "folder-input",
- "_io": "folder-input",
- "-io": "folder-input",
- "__io__": "folder-input",
- "in": "folder-input",
- ".in": "folder-input",
- "_in": "folder-input",
- "-in": "folder-input",
- "__in__": "folder-input",
- "salt": "folder-salt",
- ".salt": "folder-salt",
- "_salt": "folder-salt",
- "-salt": "folder-salt",
- "__salt__": "folder-salt",
- "saltstack": "folder-salt",
- ".saltstack": "folder-salt",
- "_saltstack": "folder-salt",
- "-saltstack": "folder-salt",
- "__saltstack__": "folder-salt",
- "simulations": "folder-simulations",
- ".simulations": "folder-simulations",
- "_simulations": "folder-simulations",
- "-simulations": "folder-simulations",
- "__simulations__": "folder-simulations",
- "simulation": "folder-simulations",
- ".simulation": "folder-simulations",
- "_simulation": "folder-simulations",
- "-simulation": "folder-simulations",
- "__simulation__": "folder-simulations",
- "sim": "folder-simulations",
- ".sim": "folder-simulations",
- "_sim": "folder-simulations",
- "-sim": "folder-simulations",
- "__sim__": "folder-simulations",
- "sims": "folder-simulations",
- ".sims": "folder-simulations",
- "_sims": "folder-simulations",
- "-sims": "folder-simulations",
- "__sims__": "folder-simulations",
- "metro": "folder-metro",
- ".metro": "folder-metro",
- "_metro": "folder-metro",
- "-metro": "folder-metro",
- "__metro__": "folder-metro",
- "filter": "folder-filter",
- ".filter": "folder-filter",
- "_filter": "folder-filter",
- "-filter": "folder-filter",
- "__filter__": "folder-filter",
- "filters": "folder-filter",
- ".filters": "folder-filter",
- "_filters": "folder-filter",
- "-filters": "folder-filter",
- "__filters__": "folder-filter",
- "toc": "folder-toc",
- ".toc": "folder-toc",
- "_toc": "folder-toc",
- "-toc": "folder-toc",
- "__toc__": "folder-toc",
- "table-of-contents": "folder-toc",
- ".table-of-contents": "folder-toc",
- "_table-of-contents": "folder-toc",
- "-table-of-contents": "folder-toc",
- "__table-of-contents__": "folder-toc",
- "cue": "folder-cue",
- ".cue": "folder-cue",
- "_cue": "folder-cue",
- "-cue": "folder-cue",
- "__cue__": "folder-cue",
- "cues": "folder-cue",
- ".cues": "folder-cue",
- "_cues": "folder-cue",
- "-cues": "folder-cue",
- "__cues__": "folder-cue",
- "license": "folder-license",
- ".license": "folder-license",
- "_license": "folder-license",
- "-license": "folder-license",
- "__license__": "folder-license",
- "licenses": "folder-license",
- ".licenses": "folder-license",
- "_licenses": "folder-license",
- "-licenses": "folder-license",
- "__licenses__": "folder-license",
- "form": "folder-form",
- ".form": "folder-form",
- "_form": "folder-form",
- "-form": "folder-form",
- "__form__": "folder-form",
- "forms": "folder-form",
- ".forms": "folder-form",
- "_forms": "folder-form",
- "-forms": "folder-form",
- "__forms__": "folder-form",
- "deprecated": "folder-deprecated",
- ".deprecated": "folder-deprecated",
- "_deprecated": "folder-deprecated",
- "-deprecated": "folder-deprecated",
- "__deprecated__": "folder-deprecated",
- "scrap": "folder-scrap",
- ".scrap": "folder-scrap",
- "_scrap": "folder-scrap",
- "-scrap": "folder-scrap",
- "__scrap__": "folder-scrap",
- "skill": "folder-skills",
- ".skill": "folder-skills",
- "_skill": "folder-skills",
- "-skill": "folder-skills",
- "__skill__": "folder-skills",
- "skills": "folder-skills",
- ".skills": "folder-skills",
- "_skills": "folder-skills",
- "-skills": "folder-skills",
- "__skills__": "folder-skills",
- "instruction": "folder-instructions",
- ".instruction": "folder-instructions",
- "_instruction": "folder-instructions",
- "-instruction": "folder-instructions",
- "__instruction__": "folder-instructions",
- "instructions": "folder-instructions",
- ".instructions": "folder-instructions",
- "_instructions": "folder-instructions",
- "-instructions": "folder-instructions",
- "__instructions__": "folder-instructions"
- },
- "folderNamesExpanded": {
- "rust": "folder-rust-open",
- ".rust": "folder-rust-open",
- "_rust": "folder-rust-open",
- "-rust": "folder-rust-open",
- "__rust__": "folder-rust-open",
- "bot": "folder-robot-open",
- ".bot": "folder-robot-open",
- "_bot": "folder-robot-open",
- "-bot": "folder-robot-open",
- "__bot__": "folder-robot-open",
- "bots": "folder-robot-open",
- ".bots": "folder-robot-open",
- "_bots": "folder-robot-open",
- "-bots": "folder-robot-open",
- "__bots__": "folder-robot-open",
- "robot": "folder-robot-open",
- ".robot": "folder-robot-open",
- "_robot": "folder-robot-open",
- "-robot": "folder-robot-open",
- "__robot__": "folder-robot-open",
- "robots": "folder-robot-open",
- ".robots": "folder-robot-open",
- "_robots": "folder-robot-open",
- "-robots": "folder-robot-open",
- "__robots__": "folder-robot-open",
- "agent": "folder-robot-open",
- ".agent": "folder-robot-open",
- "_agent": "folder-robot-open",
- "-agent": "folder-robot-open",
- "__agent__": "folder-robot-open",
- "agents": "folder-robot-open",
- ".agents": "folder-robot-open",
- "_agents": "folder-robot-open",
- "-agents": "folder-robot-open",
- "__agents__": "folder-robot-open",
- "src": "folder-src-open",
- ".src": "folder-src-open",
- "_src": "folder-src-open",
- "-src": "folder-src-open",
- "__src__": "folder-src-open",
- "srcs": "folder-src-open",
- ".srcs": "folder-src-open",
- "_srcs": "folder-src-open",
- "-srcs": "folder-src-open",
- "__srcs__": "folder-src-open",
- "source": "folder-src-open",
- ".source": "folder-src-open",
- "_source": "folder-src-open",
- "-source": "folder-src-open",
- "__source__": "folder-src-open",
- "sources": "folder-src-open",
- ".sources": "folder-src-open",
- "_sources": "folder-src-open",
- "-sources": "folder-src-open",
- "__sources__": "folder-src-open",
- "code": "folder-src-open",
- ".code": "folder-src-open",
- "_code": "folder-src-open",
- "-code": "folder-src-open",
- "__code__": "folder-src-open",
- "dist": "folder-dist-open",
- ".dist": "folder-dist-open",
- "_dist": "folder-dist-open",
- "-dist": "folder-dist-open",
- "__dist__": "folder-dist-open",
- "out": "folder-dist-open",
- ".out": "folder-dist-open",
- "_out": "folder-dist-open",
- "-out": "folder-dist-open",
- "__out__": "folder-dist-open",
- "output": "folder-dist-open",
- ".output": "folder-dist-open",
- "_output": "folder-dist-open",
- "-output": "folder-dist-open",
- "__output__": "folder-dist-open",
- "outputs": "folder-dist-open",
- ".outputs": "folder-dist-open",
- "_outputs": "folder-dist-open",
- "-outputs": "folder-dist-open",
- "__outputs__": "folder-dist-open",
- "build": "folder-dist-open",
- ".build": "folder-dist-open",
- "_build": "folder-dist-open",
- "-build": "folder-dist-open",
- "__build__": "folder-dist-open",
- "builds": "folder-dist-open",
- ".builds": "folder-dist-open",
- "_builds": "folder-dist-open",
- "-builds": "folder-dist-open",
- "__builds__": "folder-dist-open",
- "release": "folder-dist-open",
- ".release": "folder-dist-open",
- "_release": "folder-dist-open",
- "-release": "folder-dist-open",
- "__release__": "folder-dist-open",
- "bin": "folder-dist-open",
- ".bin": "folder-dist-open",
- "_bin": "folder-dist-open",
- "-bin": "folder-dist-open",
- "__bin__": "folder-dist-open",
- "distribution": "folder-dist-open",
- ".distribution": "folder-dist-open",
- "_distribution": "folder-dist-open",
- "-distribution": "folder-dist-open",
- "__distribution__": "folder-dist-open",
- "built": "folder-dist-open",
- ".built": "folder-dist-open",
- "_built": "folder-dist-open",
- "-built": "folder-dist-open",
- "__built__": "folder-dist-open",
- "compiled": "folder-dist-open",
- ".compiled": "folder-dist-open",
- "_compiled": "folder-dist-open",
- "-compiled": "folder-dist-open",
- "__compiled__": "folder-dist-open",
- "css": "folder-css-open",
- ".css": "folder-css-open",
- "_css": "folder-css-open",
- "-css": "folder-css-open",
- "__css__": "folder-css-open",
- "stylesheet": "folder-css-open",
- ".stylesheet": "folder-css-open",
- "_stylesheet": "folder-css-open",
- "-stylesheet": "folder-css-open",
- "__stylesheet__": "folder-css-open",
- "stylesheets": "folder-css-open",
- ".stylesheets": "folder-css-open",
- "_stylesheets": "folder-css-open",
- "-stylesheets": "folder-css-open",
- "__stylesheets__": "folder-css-open",
- "style": "folder-css-open",
- ".style": "folder-css-open",
- "_style": "folder-css-open",
- "-style": "folder-css-open",
- "__style__": "folder-css-open",
- "styles": "folder-css-open",
- ".styles": "folder-css-open",
- "_styles": "folder-css-open",
- "-styles": "folder-css-open",
- "__styles__": "folder-css-open",
- "sass": "folder-sass-open",
- ".sass": "folder-sass-open",
- "_sass": "folder-sass-open",
- "-sass": "folder-sass-open",
- "__sass__": "folder-sass-open",
- "scss": "folder-sass-open",
- ".scss": "folder-sass-open",
- "_scss": "folder-sass-open",
- "-scss": "folder-sass-open",
- "__scss__": "folder-sass-open",
- "tv": "folder-television-open",
- ".tv": "folder-television-open",
- "_tv": "folder-television-open",
- "-tv": "folder-television-open",
- "__tv__": "folder-television-open",
- "television": "folder-television-open",
- ".television": "folder-television-open",
- "_television": "folder-television-open",
- "-television": "folder-television-open",
- "__television__": "folder-television-open",
- "desktop": "folder-desktop-open",
- ".desktop": "folder-desktop-open",
- "_desktop": "folder-desktop-open",
- "-desktop": "folder-desktop-open",
- "__desktop__": "folder-desktop-open",
- "display": "folder-desktop-open",
- ".display": "folder-desktop-open",
- "_display": "folder-desktop-open",
- "-display": "folder-desktop-open",
- "__display__": "folder-desktop-open",
- "console": "folder-console-open",
- ".console": "folder-console-open",
- "_console": "folder-console-open",
- "-console": "folder-console-open",
- "__console__": "folder-console-open",
- "xbox": "folder-console-open",
- ".xbox": "folder-console-open",
- "_xbox": "folder-console-open",
- "-xbox": "folder-console-open",
- "__xbox__": "folder-console-open",
- "ps4": "folder-console-open",
- ".ps4": "folder-console-open",
- "_ps4": "folder-console-open",
- "-ps4": "folder-console-open",
- "__ps4__": "folder-console-open",
- "ps5": "folder-console-open",
- ".ps5": "folder-console-open",
- "_ps5": "folder-console-open",
- "-ps5": "folder-console-open",
- "__ps5__": "folder-console-open",
- "switch": "folder-console-open",
- ".switch": "folder-console-open",
- "_switch": "folder-console-open",
- "-switch": "folder-console-open",
- "__switch__": "folder-console-open",
- "game": "folder-console-open",
- ".game": "folder-console-open",
- "_game": "folder-console-open",
- "-game": "folder-console-open",
- "__game__": "folder-console-open",
- "games": "folder-console-open",
- ".games": "folder-console-open",
- "_games": "folder-console-open",
- "-games": "folder-console-open",
- "__games__": "folder-console-open",
- "images": "folder-images-open",
- ".images": "folder-images-open",
- "_images": "folder-images-open",
- "-images": "folder-images-open",
- "__images__": "folder-images-open",
- "image": "folder-images-open",
- ".image": "folder-images-open",
- "_image": "folder-images-open",
- "-image": "folder-images-open",
- "__image__": "folder-images-open",
- "imgs": "folder-images-open",
- ".imgs": "folder-images-open",
- "_imgs": "folder-images-open",
- "-imgs": "folder-images-open",
- "__imgs__": "folder-images-open",
- "img": "folder-images-open",
- ".img": "folder-images-open",
- "_img": "folder-images-open",
- "-img": "folder-images-open",
- "__img__": "folder-images-open",
- "icons": "folder-images-open",
- ".icons": "folder-images-open",
- "_icons": "folder-images-open",
- "-icons": "folder-images-open",
- "__icons__": "folder-images-open",
- "icon": "folder-images-open",
- ".icon": "folder-images-open",
- "_icon": "folder-images-open",
- "-icon": "folder-images-open",
- "__icon__": "folder-images-open",
- "icos": "folder-images-open",
- ".icos": "folder-images-open",
- "_icos": "folder-images-open",
- "-icos": "folder-images-open",
- "__icos__": "folder-images-open",
- "ico": "folder-images-open",
- ".ico": "folder-images-open",
- "_ico": "folder-images-open",
- "-ico": "folder-images-open",
- "__ico__": "folder-images-open",
- "figures": "folder-images-open",
- ".figures": "folder-images-open",
- "_figures": "folder-images-open",
- "-figures": "folder-images-open",
- "__figures__": "folder-images-open",
- "figure": "folder-images-open",
- ".figure": "folder-images-open",
- "_figure": "folder-images-open",
- "-figure": "folder-images-open",
- "__figure__": "folder-images-open",
- "figs": "folder-images-open",
- ".figs": "folder-images-open",
- "_figs": "folder-images-open",
- "-figs": "folder-images-open",
- "__figs__": "folder-images-open",
- "fig": "folder-images-open",
- ".fig": "folder-images-open",
- "_fig": "folder-images-open",
- "-fig": "folder-images-open",
- "__fig__": "folder-images-open",
- "screenshot": "folder-images-open",
- ".screenshot": "folder-images-open",
- "_screenshot": "folder-images-open",
- "-screenshot": "folder-images-open",
- "__screenshot__": "folder-images-open",
- "screenshots": "folder-images-open",
- ".screenshots": "folder-images-open",
- "_screenshots": "folder-images-open",
- "-screenshots": "folder-images-open",
- "__screenshots__": "folder-images-open",
- "screengrab": "folder-images-open",
- ".screengrab": "folder-images-open",
- "_screengrab": "folder-images-open",
- "-screengrab": "folder-images-open",
- "__screengrab__": "folder-images-open",
- "screengrabs": "folder-images-open",
- ".screengrabs": "folder-images-open",
- "_screengrabs": "folder-images-open",
- "-screengrabs": "folder-images-open",
- "__screengrabs__": "folder-images-open",
- "pic": "folder-images-open",
- ".pic": "folder-images-open",
- "_pic": "folder-images-open",
- "-pic": "folder-images-open",
- "__pic__": "folder-images-open",
- "pics": "folder-images-open",
- ".pics": "folder-images-open",
- "_pics": "folder-images-open",
- "-pics": "folder-images-open",
- "__pics__": "folder-images-open",
- "picture": "folder-images-open",
- ".picture": "folder-images-open",
- "_picture": "folder-images-open",
- "-picture": "folder-images-open",
- "__picture__": "folder-images-open",
- "pictures": "folder-images-open",
- ".pictures": "folder-images-open",
- "_pictures": "folder-images-open",
- "-pictures": "folder-images-open",
- "__pictures__": "folder-images-open",
- "photo": "folder-images-open",
- ".photo": "folder-images-open",
- "_photo": "folder-images-open",
- "-photo": "folder-images-open",
- "__photo__": "folder-images-open",
- "photos": "folder-images-open",
- ".photos": "folder-images-open",
- "_photos": "folder-images-open",
- "-photos": "folder-images-open",
- "__photos__": "folder-images-open",
- "photograph": "folder-images-open",
- ".photograph": "folder-images-open",
- "_photograph": "folder-images-open",
- "-photograph": "folder-images-open",
- "__photograph__": "folder-images-open",
- "photographs": "folder-images-open",
- ".photographs": "folder-images-open",
- "_photographs": "folder-images-open",
- "-photographs": "folder-images-open",
- "__photographs__": "folder-images-open",
- "texture": "folder-images-open",
- ".texture": "folder-images-open",
- "_texture": "folder-images-open",
- "-texture": "folder-images-open",
- "__texture__": "folder-images-open",
- "textures": "folder-images-open",
- ".textures": "folder-images-open",
- "_textures": "folder-images-open",
- "-textures": "folder-images-open",
- "__textures__": "folder-images-open",
- "script": "folder-scripts-open",
- ".script": "folder-scripts-open",
- "_script": "folder-scripts-open",
- "-script": "folder-scripts-open",
- "__script__": "folder-scripts-open",
- "scripts": "folder-scripts-open",
- ".scripts": "folder-scripts-open",
- "_scripts": "folder-scripts-open",
- "-scripts": "folder-scripts-open",
- "__scripts__": "folder-scripts-open",
- "scripting": "folder-scripts-open",
- ".scripting": "folder-scripts-open",
- "_scripting": "folder-scripts-open",
- "-scripting": "folder-scripts-open",
- "__scripting__": "folder-scripts-open",
- "node": "folder-node-open",
- ".node": "folder-node-open",
- "_node": "folder-node-open",
- "-node": "folder-node-open",
- "__node__": "folder-node-open",
- "nodejs": "folder-node-open",
- ".nodejs": "folder-node-open",
- "_nodejs": "folder-node-open",
- "-nodejs": "folder-node-open",
- "__nodejs__": "folder-node-open",
- "node_modules": "folder-node-open",
- ".node_modules": "folder-node-open",
- "_node_modules": "folder-node-open",
- "-node_modules": "folder-node-open",
- "__node_modules__": "folder-node-open",
- "js": "folder-javascript-open",
- ".js": "folder-javascript-open",
- "_js": "folder-javascript-open",
- "-js": "folder-javascript-open",
- "__js__": "folder-javascript-open",
- "javascript": "folder-javascript-open",
- ".javascript": "folder-javascript-open",
- "_javascript": "folder-javascript-open",
- "-javascript": "folder-javascript-open",
- "__javascript__": "folder-javascript-open",
- "javascripts": "folder-javascript-open",
- ".javascripts": "folder-javascript-open",
- "_javascripts": "folder-javascript-open",
- "-javascripts": "folder-javascript-open",
- "__javascripts__": "folder-javascript-open",
- "cjs": "folder-javascript-open",
- ".cjs": "folder-javascript-open",
- "_cjs": "folder-javascript-open",
- "-cjs": "folder-javascript-open",
- "__cjs__": "folder-javascript-open",
- "mjs": "folder-javascript-open",
- ".mjs": "folder-javascript-open",
- "_mjs": "folder-javascript-open",
- "-mjs": "folder-javascript-open",
- "__mjs__": "folder-javascript-open",
- "json": "folder-json-open",
- ".json": "folder-json-open",
- "_json": "folder-json-open",
- "-json": "folder-json-open",
- "__json__": "folder-json-open",
- "jsons": "folder-json-open",
- ".jsons": "folder-json-open",
- "_jsons": "folder-json-open",
- "-jsons": "folder-json-open",
- "__jsons__": "folder-json-open",
- "jsonc": "folder-json-open",
- ".jsonc": "folder-json-open",
- "_jsonc": "folder-json-open",
- "-jsonc": "folder-json-open",
- "__jsonc__": "folder-json-open",
- "jsonl": "folder-json-open",
- ".jsonl": "folder-json-open",
- "_jsonl": "folder-json-open",
- "-jsonl": "folder-json-open",
- "__jsonl__": "folder-json-open",
- "font": "folder-font-open",
- ".font": "folder-font-open",
- "_font": "folder-font-open",
- "-font": "folder-font-open",
- "__font__": "folder-font-open",
- "fonts": "folder-font-open",
- ".fonts": "folder-font-open",
- "_fonts": "folder-font-open",
- "-fonts": "folder-font-open",
- "__fonts__": "folder-font-open",
- "typeface": "folder-font-open",
- ".typeface": "folder-font-open",
- "_typeface": "folder-font-open",
- "-typeface": "folder-font-open",
- "__typeface__": "folder-font-open",
- "typefaces": "folder-font-open",
- ".typefaces": "folder-font-open",
- "_typefaces": "folder-font-open",
- "-typefaces": "folder-font-open",
- "__typefaces__": "folder-font-open",
- "bower_components": "folder-bower-open",
- ".bower_components": "folder-bower-open",
- "_bower_components": "folder-bower-open",
- "-bower_components": "folder-bower-open",
- "__bower_components__": "folder-bower-open",
- "test": "folder-test-open",
- ".test": "folder-test-open",
- "_test": "folder-test-open",
- "-test": "folder-test-open",
- "__test__": "folder-test-open",
- "tests": "folder-test-open",
- ".tests": "folder-test-open",
- "_tests": "folder-test-open",
- "-tests": "folder-test-open",
- "__tests__": "folder-test-open",
- "testing": "folder-test-open",
- ".testing": "folder-test-open",
- "_testing": "folder-test-open",
- "-testing": "folder-test-open",
- "__testing__": "folder-test-open",
- "snapshots": "folder-test-open",
- ".snapshots": "folder-test-open",
- "_snapshots": "folder-test-open",
- "-snapshots": "folder-test-open",
- "__snapshots__": "folder-test-open",
- "spec": "folder-test-open",
- ".spec": "folder-test-open",
- "_spec": "folder-test-open",
- "-spec": "folder-test-open",
- "__spec__": "folder-test-open",
- "specs": "folder-test-open",
- ".specs": "folder-test-open",
- "_specs": "folder-test-open",
- "-specs": "folder-test-open",
- "__specs__": "folder-test-open",
- "testfiles": "folder-test-open",
- ".testfiles": "folder-test-open",
- "_testfiles": "folder-test-open",
- "-testfiles": "folder-test-open",
- "__testfiles__": "folder-test-open",
- "directive": "folder-directive-open",
- ".directive": "folder-directive-open",
- "_directive": "folder-directive-open",
- "-directive": "folder-directive-open",
- "__directive__": "folder-directive-open",
- "directives": "folder-directive-open",
- ".directives": "folder-directive-open",
- "_directives": "folder-directive-open",
- "-directives": "folder-directive-open",
- "__directives__": "folder-directive-open",
- "jinja": "folder-jinja-open",
- ".jinja": "folder-jinja-open",
- "_jinja": "folder-jinja-open",
- "-jinja": "folder-jinja-open",
- "__jinja__": "folder-jinja-open",
- "jinja2": "folder-jinja-open",
- ".jinja2": "folder-jinja-open",
- "_jinja2": "folder-jinja-open",
- "-jinja2": "folder-jinja-open",
- "__jinja2__": "folder-jinja-open",
- "j2": "folder-jinja-open",
- ".j2": "folder-jinja-open",
- "_j2": "folder-jinja-open",
- "-j2": "folder-jinja-open",
- "__j2__": "folder-jinja-open",
- "markdown": "folder-markdown-open",
- ".markdown": "folder-markdown-open",
- "_markdown": "folder-markdown-open",
- "-markdown": "folder-markdown-open",
- "__markdown__": "folder-markdown-open",
- "md": "folder-markdown-open",
- ".md": "folder-markdown-open",
- "_md": "folder-markdown-open",
- "-md": "folder-markdown-open",
- "__md__": "folder-markdown-open",
- "pdm-plugins": "folder-pdm-open",
- ".pdm-plugins": "folder-pdm-open",
- "_pdm-plugins": "folder-pdm-open",
- "-pdm-plugins": "folder-pdm-open",
- "__pdm-plugins__": "folder-pdm-open",
- "pdm-build": "folder-pdm-open",
- ".pdm-build": "folder-pdm-open",
- "_pdm-build": "folder-pdm-open",
- "-pdm-build": "folder-pdm-open",
- "__pdm-build__": "folder-pdm-open",
- "php": "folder-php-open",
- ".php": "folder-php-open",
- "_php": "folder-php-open",
- "-php": "folder-php-open",
- "__php__": "folder-php-open",
- "phpmailer": "folder-phpmailer-open",
- ".phpmailer": "folder-phpmailer-open",
- "_phpmailer": "folder-phpmailer-open",
- "-phpmailer": "folder-phpmailer-open",
- "__phpmailer__": "folder-phpmailer-open",
- "sublime": "folder-sublime-open",
- ".sublime": "folder-sublime-open",
- "_sublime": "folder-sublime-open",
- "-sublime": "folder-sublime-open",
- "__sublime__": "folder-sublime-open",
- "doc": "folder-docs-open",
- ".doc": "folder-docs-open",
- "_doc": "folder-docs-open",
- "-doc": "folder-docs-open",
- "__doc__": "folder-docs-open",
- "docs": "folder-docs-open",
- ".docs": "folder-docs-open",
- "_docs": "folder-docs-open",
- "-docs": "folder-docs-open",
- "__docs__": "folder-docs-open",
- "document": "folder-docs-open",
- ".document": "folder-docs-open",
- "_document": "folder-docs-open",
- "-document": "folder-docs-open",
- "__document__": "folder-docs-open",
- "documents": "folder-docs-open",
- ".documents": "folder-docs-open",
- "_documents": "folder-docs-open",
- "-documents": "folder-docs-open",
- "__documents__": "folder-docs-open",
- "documentation": "folder-docs-open",
- ".documentation": "folder-docs-open",
- "_documentation": "folder-docs-open",
- "-documentation": "folder-docs-open",
- "__documentation__": "folder-docs-open",
- "post": "folder-docs-open",
- ".post": "folder-docs-open",
- "_post": "folder-docs-open",
- "-post": "folder-docs-open",
- "__post__": "folder-docs-open",
- "posts": "folder-docs-open",
- ".posts": "folder-docs-open",
- "_posts": "folder-docs-open",
- "-posts": "folder-docs-open",
- "__posts__": "folder-docs-open",
- "article": "folder-docs-open",
- ".article": "folder-docs-open",
- "_article": "folder-docs-open",
- "-article": "folder-docs-open",
- "__article__": "folder-docs-open",
- "articles": "folder-docs-open",
- ".articles": "folder-docs-open",
- "_articles": "folder-docs-open",
- "-articles": "folder-docs-open",
- "__articles__": "folder-docs-open",
- "wiki": "folder-docs-open",
- ".wiki": "folder-docs-open",
- "_wiki": "folder-docs-open",
- "-wiki": "folder-docs-open",
- "__wiki__": "folder-docs-open",
- "news": "folder-docs-open",
- ".news": "folder-docs-open",
- "_news": "folder-docs-open",
- "-news": "folder-docs-open",
- "__news__": "folder-docs-open",
- "blog": "folder-docs-open",
- ".blog": "folder-docs-open",
- "_blog": "folder-docs-open",
- "-blog": "folder-docs-open",
- "__blog__": "folder-docs-open",
- "knowledge": "folder-docs-open",
- ".knowledge": "folder-docs-open",
- "_knowledge": "folder-docs-open",
- "-knowledge": "folder-docs-open",
- "__knowledge__": "folder-docs-open",
- "diary": "folder-docs-open",
- ".diary": "folder-docs-open",
- "_diary": "folder-docs-open",
- "-diary": "folder-docs-open",
- "__diary__": "folder-docs-open",
- "note": "folder-docs-open",
- ".note": "folder-docs-open",
- "_note": "folder-docs-open",
- "-note": "folder-docs-open",
- "__note__": "folder-docs-open",
- "notes": "folder-docs-open",
- ".notes": "folder-docs-open",
- "_notes": "folder-docs-open",
- "-notes": "folder-docs-open",
- "__notes__": "folder-docs-open",
- "github/workflows": "folder-gh-workflows-open",
- ".github/workflows": "folder-gh-workflows-open",
- "_github/workflows": "folder-gh-workflows-open",
- "-github/workflows": "folder-gh-workflows-open",
- "__github/workflows__": "folder-gh-workflows-open",
- "git": "folder-git-open",
- ".git": "folder-git-open",
- "_git": "folder-git-open",
- "-git": "folder-git-open",
- "__git__": "folder-git-open",
- "patches": "folder-git-open",
- ".patches": "folder-git-open",
- "_patches": "folder-git-open",
- "-patches": "folder-git-open",
- "__patches__": "folder-git-open",
- "githooks": "folder-git-open",
- ".githooks": "folder-git-open",
- "_githooks": "folder-git-open",
- "-githooks": "folder-git-open",
- "__githooks__": "folder-git-open",
- "submodules": "folder-git-open",
- ".submodules": "folder-git-open",
- "_submodules": "folder-git-open",
- "-submodules": "folder-git-open",
- "__submodules__": "folder-git-open",
- "github": "folder-github-open",
- ".github": "folder-github-open",
- "_github": "folder-github-open",
- "-github": "folder-github-open",
- "__github__": "folder-github-open",
- "gitea": "folder-gitea-open",
- ".gitea": "folder-gitea-open",
- "_gitea": "folder-gitea-open",
- "-gitea": "folder-gitea-open",
- "__gitea__": "folder-gitea-open",
- "gitlab": "folder-gitlab-open",
- ".gitlab": "folder-gitlab-open",
- "_gitlab": "folder-gitlab-open",
- "-gitlab": "folder-gitlab-open",
- "__gitlab__": "folder-gitlab-open",
- "forgejo": "folder-forgejo-open",
- ".forgejo": "folder-forgejo-open",
- "_forgejo": "folder-forgejo-open",
- "-forgejo": "folder-forgejo-open",
- "__forgejo__": "folder-forgejo-open",
- "vscode": "folder-vscode-open",
- ".vscode": "folder-vscode-open",
- "_vscode": "folder-vscode-open",
- "-vscode": "folder-vscode-open",
- "__vscode__": "folder-vscode-open",
- "vscode-test": "folder-vscode-open",
- ".vscode-test": "folder-vscode-open",
- "_vscode-test": "folder-vscode-open",
- "-vscode-test": "folder-vscode-open",
- "__vscode-test__": "folder-vscode-open",
- "view": "folder-views-open",
- ".view": "folder-views-open",
- "_view": "folder-views-open",
- "-view": "folder-views-open",
- "__view__": "folder-views-open",
- "views": "folder-views-open",
- ".views": "folder-views-open",
- "_views": "folder-views-open",
- "-views": "folder-views-open",
- "__views__": "folder-views-open",
- "screen": "folder-views-open",
- ".screen": "folder-views-open",
- "_screen": "folder-views-open",
- "-screen": "folder-views-open",
- "__screen__": "folder-views-open",
- "screens": "folder-views-open",
- ".screens": "folder-views-open",
- "_screens": "folder-views-open",
- "-screens": "folder-views-open",
- "__screens__": "folder-views-open",
- "page": "folder-views-open",
- ".page": "folder-views-open",
- "_page": "folder-views-open",
- "-page": "folder-views-open",
- "__page__": "folder-views-open",
- "pages": "folder-views-open",
- ".pages": "folder-views-open",
- "_pages": "folder-views-open",
- "-pages": "folder-views-open",
- "__pages__": "folder-views-open",
- "public_html": "folder-views-open",
- ".public_html": "folder-views-open",
- "_public_html": "folder-views-open",
- "-public_html": "folder-views-open",
- "__public_html__": "folder-views-open",
- "html": "folder-views-open",
- ".html": "folder-views-open",
- "_html": "folder-views-open",
- "-html": "folder-views-open",
- "__html__": "folder-views-open",
- "vue": "folder-vue-open",
- ".vue": "folder-vue-open",
- "_vue": "folder-vue-open",
- "-vue": "folder-vue-open",
- "__vue__": "folder-vue-open",
- "vuepress": "folder-vuepress-open",
- ".vuepress": "folder-vuepress-open",
- "_vuepress": "folder-vuepress-open",
- "-vuepress": "folder-vuepress-open",
- "__vuepress__": "folder-vuepress-open",
- "expo": "folder-expo-open",
- ".expo": "folder-expo-open",
- "_expo": "folder-expo-open",
- "-expo": "folder-expo-open",
- "__expo__": "folder-expo-open",
- "expo-shared": "folder-expo-open",
- ".expo-shared": "folder-expo-open",
- "_expo-shared": "folder-expo-open",
- "-expo-shared": "folder-expo-open",
- "__expo-shared__": "folder-expo-open",
- "cfg": "folder-config-open",
- ".cfg": "folder-config-open",
- "_cfg": "folder-config-open",
- "-cfg": "folder-config-open",
- "__cfg__": "folder-config-open",
- "cfgs": "folder-config-open",
- ".cfgs": "folder-config-open",
- "_cfgs": "folder-config-open",
- "-cfgs": "folder-config-open",
- "__cfgs__": "folder-config-open",
- "conf": "folder-config-open",
- ".conf": "folder-config-open",
- "_conf": "folder-config-open",
- "-conf": "folder-config-open",
- "__conf__": "folder-config-open",
- "confs": "folder-config-open",
- ".confs": "folder-config-open",
- "_confs": "folder-config-open",
- "-confs": "folder-config-open",
- "__confs__": "folder-config-open",
- "config": "folder-config-open",
- ".config": "folder-config-open",
- "_config": "folder-config-open",
- "-config": "folder-config-open",
- "__config__": "folder-config-open",
- "configs": "folder-config-open",
- ".configs": "folder-config-open",
- "_configs": "folder-config-open",
- "-configs": "folder-config-open",
- "__configs__": "folder-config-open",
- "configuration": "folder-config-open",
- ".configuration": "folder-config-open",
- "_configuration": "folder-config-open",
- "-configuration": "folder-config-open",
- "__configuration__": "folder-config-open",
- "configurations": "folder-config-open",
- ".configurations": "folder-config-open",
- "_configurations": "folder-config-open",
- "-configurations": "folder-config-open",
- "__configurations__": "folder-config-open",
- "setting": "folder-config-open",
- ".setting": "folder-config-open",
- "_setting": "folder-config-open",
- "-setting": "folder-config-open",
- "__setting__": "folder-config-open",
- "settings": "folder-config-open",
- ".settings": "folder-config-open",
- "_settings": "folder-config-open",
- "-settings": "folder-config-open",
- "__settings__": "folder-config-open",
- "META-INF": "folder-config-open",
- ".META-INF": "folder-config-open",
- "_META-INF": "folder-config-open",
- "-META-INF": "folder-config-open",
- "__META-INF__": "folder-config-open",
- "option": "folder-config-open",
- ".option": "folder-config-open",
- "_option": "folder-config-open",
- "-option": "folder-config-open",
- "__option__": "folder-config-open",
- "options": "folder-config-open",
- ".options": "folder-config-open",
- "_options": "folder-config-open",
- "-options": "folder-config-open",
- "__options__": "folder-config-open",
- "pref": "folder-config-open",
- ".pref": "folder-config-open",
- "_pref": "folder-config-open",
- "-pref": "folder-config-open",
- "__pref__": "folder-config-open",
- "prefs": "folder-config-open",
- ".prefs": "folder-config-open",
- "_prefs": "folder-config-open",
- "-prefs": "folder-config-open",
- "__prefs__": "folder-config-open",
- "preference": "folder-config-open",
- ".preference": "folder-config-open",
- "_preference": "folder-config-open",
- "-preference": "folder-config-open",
- "__preference__": "folder-config-open",
- "preferences": "folder-config-open",
- ".preferences": "folder-config-open",
- "_preferences": "folder-config-open",
- "-preferences": "folder-config-open",
- "__preferences__": "folder-config-open",
- "props": "folder-config-open",
- ".props": "folder-config-open",
- "_props": "folder-config-open",
- "-props": "folder-config-open",
- "__props__": "folder-config-open",
- "properties": "folder-config-open",
- ".properties": "folder-config-open",
- "_properties": "folder-config-open",
- "-properties": "folder-config-open",
- "__properties__": "folder-config-open",
- "i18n": "folder-i18n-open",
- ".i18n": "folder-i18n-open",
- "_i18n": "folder-i18n-open",
- "-i18n": "folder-i18n-open",
- "__i18n__": "folder-i18n-open",
- "internationalization": "folder-i18n-open",
- ".internationalization": "folder-i18n-open",
- "_internationalization": "folder-i18n-open",
- "-internationalization": "folder-i18n-open",
- "__internationalization__": "folder-i18n-open",
- "lang": "folder-i18n-open",
- ".lang": "folder-i18n-open",
- "_lang": "folder-i18n-open",
- "-lang": "folder-i18n-open",
- "__lang__": "folder-i18n-open",
- "langs": "folder-i18n-open",
- ".langs": "folder-i18n-open",
- "_langs": "folder-i18n-open",
- "-langs": "folder-i18n-open",
- "__langs__": "folder-i18n-open",
- "language": "folder-i18n-open",
- ".language": "folder-i18n-open",
- "_language": "folder-i18n-open",
- "-language": "folder-i18n-open",
- "__language__": "folder-i18n-open",
- "languages": "folder-i18n-open",
- ".languages": "folder-i18n-open",
- "_languages": "folder-i18n-open",
- "-languages": "folder-i18n-open",
- "__languages__": "folder-i18n-open",
- "locale": "folder-i18n-open",
- ".locale": "folder-i18n-open",
- "_locale": "folder-i18n-open",
- "-locale": "folder-i18n-open",
- "__locale__": "folder-i18n-open",
- "locales": "folder-i18n-open",
- ".locales": "folder-i18n-open",
- "_locales": "folder-i18n-open",
- "-locales": "folder-i18n-open",
- "__locales__": "folder-i18n-open",
- "l10n": "folder-i18n-open",
- ".l10n": "folder-i18n-open",
- "_l10n": "folder-i18n-open",
- "-l10n": "folder-i18n-open",
- "__l10n__": "folder-i18n-open",
- "localization": "folder-i18n-open",
- ".localization": "folder-i18n-open",
- "_localization": "folder-i18n-open",
- "-localization": "folder-i18n-open",
- "__localization__": "folder-i18n-open",
- "translation": "folder-i18n-open",
- ".translation": "folder-i18n-open",
- "_translation": "folder-i18n-open",
- "-translation": "folder-i18n-open",
- "__translation__": "folder-i18n-open",
- "translate": "folder-i18n-open",
- ".translate": "folder-i18n-open",
- "_translate": "folder-i18n-open",
- "-translate": "folder-i18n-open",
- "__translate__": "folder-i18n-open",
- "translations": "folder-i18n-open",
- ".translations": "folder-i18n-open",
- "_translations": "folder-i18n-open",
- "-translations": "folder-i18n-open",
- "__translations__": "folder-i18n-open",
- "tx": "folder-i18n-open",
- ".tx": "folder-i18n-open",
- "_tx": "folder-i18n-open",
- "-tx": "folder-i18n-open",
- "__tx__": "folder-i18n-open",
- "components": "folder-components-open",
- ".components": "folder-components-open",
- "_components": "folder-components-open",
- "-components": "folder-components-open",
- "__components__": "folder-components-open",
- "widget": "folder-components-open",
- ".widget": "folder-components-open",
- "_widget": "folder-components-open",
- "-widget": "folder-components-open",
- "__widget__": "folder-components-open",
- "widgets": "folder-components-open",
- ".widgets": "folder-components-open",
- "_widgets": "folder-components-open",
- "-widgets": "folder-components-open",
- "__widgets__": "folder-components-open",
- "fragments": "folder-components-open",
- ".fragments": "folder-components-open",
- "_fragments": "folder-components-open",
- "-fragments": "folder-components-open",
- "__fragments__": "folder-components-open",
- "verdaccio": "folder-verdaccio-open",
- ".verdaccio": "folder-verdaccio-open",
- "_verdaccio": "folder-verdaccio-open",
- "-verdaccio": "folder-verdaccio-open",
- "__verdaccio__": "folder-verdaccio-open",
- "aurelia_project": "folder-aurelia-open",
- ".aurelia_project": "folder-aurelia-open",
- "_aurelia_project": "folder-aurelia-open",
- "-aurelia_project": "folder-aurelia-open",
- "__aurelia_project__": "folder-aurelia-open",
- "resource": "folder-resource-open",
- ".resource": "folder-resource-open",
- "_resource": "folder-resource-open",
- "-resource": "folder-resource-open",
- "__resource__": "folder-resource-open",
- "resources": "folder-resource-open",
- ".resources": "folder-resource-open",
- "_resources": "folder-resource-open",
- "-resources": "folder-resource-open",
- "__resources__": "folder-resource-open",
- "res": "folder-resource-open",
- ".res": "folder-resource-open",
- "_res": "folder-resource-open",
- "-res": "folder-resource-open",
- "__res__": "folder-resource-open",
- "asset": "folder-resource-open",
- ".asset": "folder-resource-open",
- "_asset": "folder-resource-open",
- "-asset": "folder-resource-open",
- "__asset__": "folder-resource-open",
- "assets": "folder-resource-open",
- ".assets": "folder-resource-open",
- "_assets": "folder-resource-open",
- "-assets": "folder-resource-open",
- "__assets__": "folder-resource-open",
- "static": "folder-resource-open",
- ".static": "folder-resource-open",
- "_static": "folder-resource-open",
- "-static": "folder-resource-open",
- "__static__": "folder-resource-open",
- "report": "folder-resource-open",
- ".report": "folder-resource-open",
- "_report": "folder-resource-open",
- "-report": "folder-resource-open",
- "__report__": "folder-resource-open",
- "reports": "folder-resource-open",
- ".reports": "folder-resource-open",
- "_reports": "folder-resource-open",
- "-reports": "folder-resource-open",
- "__reports__": "folder-resource-open",
- "lib": "folder-lib-open",
- ".lib": "folder-lib-open",
- "_lib": "folder-lib-open",
- "-lib": "folder-lib-open",
- "__lib__": "folder-lib-open",
- "libs": "folder-lib-open",
- ".libs": "folder-lib-open",
- "_libs": "folder-lib-open",
- "-libs": "folder-lib-open",
- "__libs__": "folder-lib-open",
- "library": "folder-lib-open",
- ".library": "folder-lib-open",
- "_library": "folder-lib-open",
- "-library": "folder-lib-open",
- "__library__": "folder-lib-open",
- "libraries": "folder-lib-open",
- ".libraries": "folder-lib-open",
- "_libraries": "folder-lib-open",
- "-libraries": "folder-lib-open",
- "__libraries__": "folder-lib-open",
- "vendor": "folder-lib-open",
- ".vendor": "folder-lib-open",
- "_vendor": "folder-lib-open",
- "-vendor": "folder-lib-open",
- "__vendor__": "folder-lib-open",
- "vendors": "folder-lib-open",
- ".vendors": "folder-lib-open",
- "_vendors": "folder-lib-open",
- "-vendors": "folder-lib-open",
- "__vendors__": "folder-lib-open",
- "third-party": "folder-lib-open",
- ".third-party": "folder-lib-open",
- "_third-party": "folder-lib-open",
- "-third-party": "folder-lib-open",
- "__third-party__": "folder-lib-open",
- "lib64": "folder-lib-open",
- ".lib64": "folder-lib-open",
- "_lib64": "folder-lib-open",
- "-lib64": "folder-lib-open",
- "__lib64__": "folder-lib-open",
- "themes": "folder-theme-open",
- ".themes": "folder-theme-open",
- "_themes": "folder-theme-open",
- "-themes": "folder-theme-open",
- "__themes__": "folder-theme-open",
- "theme": "folder-theme-open",
- ".theme": "folder-theme-open",
- "_theme": "folder-theme-open",
- "-theme": "folder-theme-open",
- "__theme__": "folder-theme-open",
- "color": "folder-theme-open",
- ".color": "folder-theme-open",
- "_color": "folder-theme-open",
- "-color": "folder-theme-open",
- "__color__": "folder-theme-open",
- "colors": "folder-theme-open",
- ".colors": "folder-theme-open",
- "_colors": "folder-theme-open",
- "-colors": "folder-theme-open",
- "__colors__": "folder-theme-open",
- "colour": "folder-theme-open",
- ".colour": "folder-theme-open",
- "_colour": "folder-theme-open",
- "-colour": "folder-theme-open",
- "__colour__": "folder-theme-open",
- "colours": "folder-theme-open",
- ".colours": "folder-theme-open",
- "_colours": "folder-theme-open",
- "-colours": "folder-theme-open",
- "__colours__": "folder-theme-open",
- "design": "folder-theme-open",
- ".design": "folder-theme-open",
- "_design": "folder-theme-open",
- "-design": "folder-theme-open",
- "__design__": "folder-theme-open",
- "designs": "folder-theme-open",
- ".designs": "folder-theme-open",
- "_designs": "folder-theme-open",
- "-designs": "folder-theme-open",
- "__designs__": "folder-theme-open",
- "palette": "folder-theme-open",
- ".palette": "folder-theme-open",
- "_palette": "folder-theme-open",
- "-palette": "folder-theme-open",
- "__palette__": "folder-theme-open",
- "palettes": "folder-theme-open",
- ".palettes": "folder-theme-open",
- "_palettes": "folder-theme-open",
- "-palettes": "folder-theme-open",
- "__palettes__": "folder-theme-open",
- "webpack": "folder-webpack-open",
- ".webpack": "folder-webpack-open",
- "_webpack": "folder-webpack-open",
- "-webpack": "folder-webpack-open",
- "__webpack__": "folder-webpack-open",
- "global": "folder-global-open",
- ".global": "folder-global-open",
- "_global": "folder-global-open",
- "-global": "folder-global-open",
- "__global__": "folder-global-open",
- "public": "folder-public-open",
- ".public": "folder-public-open",
- "_public": "folder-public-open",
- "-public": "folder-public-open",
- "__public__": "folder-public-open",
- "www": "folder-public-open",
- ".www": "folder-public-open",
- "_www": "folder-public-open",
- "-www": "folder-public-open",
- "__www__": "folder-public-open",
- "wwwroot": "folder-public-open",
- ".wwwroot": "folder-public-open",
- "_wwwroot": "folder-public-open",
- "-wwwroot": "folder-public-open",
- "__wwwroot__": "folder-public-open",
- "web": "folder-public-open",
- ".web": "folder-public-open",
- "_web": "folder-public-open",
- "-web": "folder-public-open",
- "__web__": "folder-public-open",
- "website": "folder-public-open",
- ".website": "folder-public-open",
- "_website": "folder-public-open",
- "-website": "folder-public-open",
- "__website__": "folder-public-open",
- "websites": "folder-public-open",
- ".websites": "folder-public-open",
- "_websites": "folder-public-open",
- "-websites": "folder-public-open",
- "__websites__": "folder-public-open",
- "site": "folder-public-open",
- ".site": "folder-public-open",
- "_site": "folder-public-open",
- "-site": "folder-public-open",
- "__site__": "folder-public-open",
- "browser": "folder-public-open",
- ".browser": "folder-public-open",
- "_browser": "folder-public-open",
- "-browser": "folder-public-open",
- "__browser__": "folder-public-open",
- "browsers": "folder-public-open",
- ".browsers": "folder-public-open",
- "_browsers": "folder-public-open",
- "-browsers": "folder-public-open",
- "__browsers__": "folder-public-open",
- "proxy": "folder-public-open",
- ".proxy": "folder-public-open",
- "_proxy": "folder-public-open",
- "-proxy": "folder-public-open",
- "__proxy__": "folder-public-open",
- "inc": "folder-include-open",
- ".inc": "folder-include-open",
- "_inc": "folder-include-open",
- "-inc": "folder-include-open",
- "__inc__": "folder-include-open",
- "include": "folder-include-open",
- ".include": "folder-include-open",
- "_include": "folder-include-open",
- "-include": "folder-include-open",
- "__include__": "folder-include-open",
- "includes": "folder-include-open",
- ".includes": "folder-include-open",
- "_includes": "folder-include-open",
- "-includes": "folder-include-open",
- "__includes__": "folder-include-open",
- "partial": "folder-include-open",
- ".partial": "folder-include-open",
- "_partial": "folder-include-open",
- "-partial": "folder-include-open",
- "__partial__": "folder-include-open",
- "partials": "folder-include-open",
- ".partials": "folder-include-open",
- "_partials": "folder-include-open",
- "-partials": "folder-include-open",
- "__partials__": "folder-include-open",
- "inc64": "folder-include-open",
- ".inc64": "folder-include-open",
- "_inc64": "folder-include-open",
- "-inc64": "folder-include-open",
- "__inc64__": "folder-include-open",
- "docker": "folder-docker-open",
- ".docker": "folder-docker-open",
- "_docker": "folder-docker-open",
- "-docker": "folder-docker-open",
- "__docker__": "folder-docker-open",
- "dockerfiles": "folder-docker-open",
- ".dockerfiles": "folder-docker-open",
- "_dockerfiles": "folder-docker-open",
- "-dockerfiles": "folder-docker-open",
- "__dockerfiles__": "folder-docker-open",
- "dockerhub": "folder-docker-open",
- ".dockerhub": "folder-docker-open",
- "_dockerhub": "folder-docker-open",
- "-dockerhub": "folder-docker-open",
- "__dockerhub__": "folder-docker-open",
- "nginx": "folder-nginx-open",
- ".nginx": "folder-nginx-open",
- "_nginx": "folder-nginx-open",
- "-nginx": "folder-nginx-open",
- "__nginx__": "folder-nginx-open",
- "astro": "folder-astro-open",
- ".astro": "folder-astro-open",
- "_astro": "folder-astro-open",
- "-astro": "folder-astro-open",
- "__astro__": "folder-astro-open",
- "db": "folder-database-open",
- ".db": "folder-database-open",
- "_db": "folder-database-open",
- "-db": "folder-database-open",
- "__db__": "folder-database-open",
- "data": "folder-database-open",
- ".data": "folder-database-open",
- "_data": "folder-database-open",
- "-data": "folder-database-open",
- "__data__": "folder-database-open",
- "database": "folder-database-open",
- ".database": "folder-database-open",
- "_database": "folder-database-open",
- "-database": "folder-database-open",
- "__database__": "folder-database-open",
- "databases": "folder-database-open",
- ".databases": "folder-database-open",
- "_databases": "folder-database-open",
- "-databases": "folder-database-open",
- "__databases__": "folder-database-open",
- "sql": "folder-database-open",
- ".sql": "folder-database-open",
- "_sql": "folder-database-open",
- "-sql": "folder-database-open",
- "__sql__": "folder-database-open",
- "migrations": "folder-migrations-open",
- ".migrations": "folder-migrations-open",
- "_migrations": "folder-migrations-open",
- "-migrations": "folder-migrations-open",
- "__migrations__": "folder-migrations-open",
- "migration": "folder-migrations-open",
- ".migration": "folder-migrations-open",
- "_migration": "folder-migrations-open",
- "-migration": "folder-migrations-open",
- "__migration__": "folder-migrations-open",
- "log": "folder-log-open",
- ".log": "folder-log-open",
- "_log": "folder-log-open",
- "-log": "folder-log-open",
- "__log__": "folder-log-open",
- "logs": "folder-log-open",
- ".logs": "folder-log-open",
- "_logs": "folder-log-open",
- "-logs": "folder-log-open",
- "__logs__": "folder-log-open",
- "logging": "folder-log-open",
- ".logging": "folder-log-open",
- "_logging": "folder-log-open",
- "-logging": "folder-log-open",
- "__logging__": "folder-log-open",
- "target": "folder-target-open",
- ".target": "folder-target-open",
- "_target": "folder-target-open",
- "-target": "folder-target-open",
- "__target__": "folder-target-open",
- "temp": "folder-temp-open",
- ".temp": "folder-temp-open",
- "_temp": "folder-temp-open",
- "-temp": "folder-temp-open",
- "__temp__": "folder-temp-open",
- "tmp": "folder-temp-open",
- ".tmp": "folder-temp-open",
- "_tmp": "folder-temp-open",
- "-tmp": "folder-temp-open",
- "__tmp__": "folder-temp-open",
- "cached": "folder-temp-open",
- ".cached": "folder-temp-open",
- "_cached": "folder-temp-open",
- "-cached": "folder-temp-open",
- "__cached__": "folder-temp-open",
- "cache": "folder-temp-open",
- ".cache": "folder-temp-open",
- "_cache": "folder-temp-open",
- "-cache": "folder-temp-open",
- "__cache__": "folder-temp-open",
- "aws": "folder-aws-open",
- ".aws": "folder-aws-open",
- "_aws": "folder-aws-open",
- "-aws": "folder-aws-open",
- "__aws__": "folder-aws-open",
- "azure": "folder-aws-open",
- ".azure": "folder-aws-open",
- "_azure": "folder-aws-open",
- "-azure": "folder-aws-open",
- "__azure__": "folder-aws-open",
- "gcp": "folder-aws-open",
- ".gcp": "folder-aws-open",
- "_gcp": "folder-aws-open",
- "-gcp": "folder-aws-open",
- "__gcp__": "folder-aws-open",
- "aud": "folder-audio-open",
- ".aud": "folder-audio-open",
- "_aud": "folder-audio-open",
- "-aud": "folder-audio-open",
- "__aud__": "folder-audio-open",
- "auds": "folder-audio-open",
- ".auds": "folder-audio-open",
- "_auds": "folder-audio-open",
- "-auds": "folder-audio-open",
- "__auds__": "folder-audio-open",
- "audio": "folder-audio-open",
- ".audio": "folder-audio-open",
- "_audio": "folder-audio-open",
- "-audio": "folder-audio-open",
- "__audio__": "folder-audio-open",
- "audios": "folder-audio-open",
- ".audios": "folder-audio-open",
- "_audios": "folder-audio-open",
- "-audios": "folder-audio-open",
- "__audios__": "folder-audio-open",
- "music": "folder-audio-open",
- ".music": "folder-audio-open",
- "_music": "folder-audio-open",
- "-music": "folder-audio-open",
- "__music__": "folder-audio-open",
- "song": "folder-audio-open",
- ".song": "folder-audio-open",
- "_song": "folder-audio-open",
- "-song": "folder-audio-open",
- "__song__": "folder-audio-open",
- "songs": "folder-audio-open",
- ".songs": "folder-audio-open",
- "_songs": "folder-audio-open",
- "-songs": "folder-audio-open",
- "__songs__": "folder-audio-open",
- "sound": "folder-audio-open",
- ".sound": "folder-audio-open",
- "_sound": "folder-audio-open",
- "-sound": "folder-audio-open",
- "__sound__": "folder-audio-open",
- "sounds": "folder-audio-open",
- ".sounds": "folder-audio-open",
- "_sounds": "folder-audio-open",
- "-sounds": "folder-audio-open",
- "__sounds__": "folder-audio-open",
- "voice": "folder-audio-open",
- ".voice": "folder-audio-open",
- "_voice": "folder-audio-open",
- "-voice": "folder-audio-open",
- "__voice__": "folder-audio-open",
- "voices": "folder-audio-open",
- ".voices": "folder-audio-open",
- "_voices": "folder-audio-open",
- "-voices": "folder-audio-open",
- "__voices__": "folder-audio-open",
- "recordings": "folder-audio-open",
- ".recordings": "folder-audio-open",
- "_recordings": "folder-audio-open",
- "-recordings": "folder-audio-open",
- "__recordings__": "folder-audio-open",
- "playlist": "folder-audio-open",
- ".playlist": "folder-audio-open",
- "_playlist": "folder-audio-open",
- "-playlist": "folder-audio-open",
- "__playlist__": "folder-audio-open",
- "playlists": "folder-audio-open",
- ".playlists": "folder-audio-open",
- "_playlists": "folder-audio-open",
- "-playlists": "folder-audio-open",
- "__playlists__": "folder-audio-open",
- "vid": "folder-video-open",
- ".vid": "folder-video-open",
- "_vid": "folder-video-open",
- "-vid": "folder-video-open",
- "__vid__": "folder-video-open",
- "vids": "folder-video-open",
- ".vids": "folder-video-open",
- "_vids": "folder-video-open",
- "-vids": "folder-video-open",
- "__vids__": "folder-video-open",
- "video": "folder-video-open",
- ".video": "folder-video-open",
- "_video": "folder-video-open",
- "-video": "folder-video-open",
- "__video__": "folder-video-open",
- "videos": "folder-video-open",
- ".videos": "folder-video-open",
- "_videos": "folder-video-open",
- "-videos": "folder-video-open",
- "__videos__": "folder-video-open",
- "movie": "folder-video-open",
- ".movie": "folder-video-open",
- "_movie": "folder-video-open",
- "-movie": "folder-video-open",
- "__movie__": "folder-video-open",
- "movies": "folder-video-open",
- ".movies": "folder-video-open",
- "_movies": "folder-video-open",
- "-movies": "folder-video-open",
- "__movies__": "folder-video-open",
- "media": "folder-video-open",
- ".media": "folder-video-open",
- "_media": "folder-video-open",
- "-media": "folder-video-open",
- "__media__": "folder-video-open",
- "kubernetes": "folder-kubernetes-open",
- ".kubernetes": "folder-kubernetes-open",
- "_kubernetes": "folder-kubernetes-open",
- "-kubernetes": "folder-kubernetes-open",
- "__kubernetes__": "folder-kubernetes-open",
- "k8s": "folder-kubernetes-open",
- ".k8s": "folder-kubernetes-open",
- "_k8s": "folder-kubernetes-open",
- "-k8s": "folder-kubernetes-open",
- "__k8s__": "folder-kubernetes-open",
- "import": "folder-import-open",
- ".import": "folder-import-open",
- "_import": "folder-import-open",
- "-import": "folder-import-open",
- "__import__": "folder-import-open",
- "imports": "folder-import-open",
- ".imports": "folder-import-open",
- "_imports": "folder-import-open",
- "-imports": "folder-import-open",
- "__imports__": "folder-import-open",
- "imported": "folder-import-open",
- ".imported": "folder-import-open",
- "_imported": "folder-import-open",
- "-imported": "folder-import-open",
- "__imported__": "folder-import-open",
- "export": "folder-export-open",
- ".export": "folder-export-open",
- "_export": "folder-export-open",
- "-export": "folder-export-open",
- "__export__": "folder-export-open",
- "exports": "folder-export-open",
- ".exports": "folder-export-open",
- "_exports": "folder-export-open",
- "-exports": "folder-export-open",
- "__exports__": "folder-export-open",
- "exported": "folder-export-open",
- ".exported": "folder-export-open",
- "_exported": "folder-export-open",
- "-exported": "folder-export-open",
- "__exported__": "folder-export-open",
- "wakatime": "folder-wakatime-open",
- ".wakatime": "folder-wakatime-open",
- "_wakatime": "folder-wakatime-open",
- "-wakatime": "folder-wakatime-open",
- "__wakatime__": "folder-wakatime-open",
- "circleci": "folder-circleci-open",
- ".circleci": "folder-circleci-open",
- "_circleci": "folder-circleci-open",
- "-circleci": "folder-circleci-open",
- "__circleci__": "folder-circleci-open",
- "wordpress-org": "folder-wordpress-open",
- ".wordpress-org": "folder-wordpress-open",
- "_wordpress-org": "folder-wordpress-open",
- "-wordpress-org": "folder-wordpress-open",
- "__wordpress-org__": "folder-wordpress-open",
- "wp-content": "folder-wordpress-open",
- ".wp-content": "folder-wordpress-open",
- "_wp-content": "folder-wordpress-open",
- "-wp-content": "folder-wordpress-open",
- "__wp-content__": "folder-wordpress-open",
- "gradle": "folder-gradle-open",
- ".gradle": "folder-gradle-open",
- "_gradle": "folder-gradle-open",
- "-gradle": "folder-gradle-open",
- "__gradle__": "folder-gradle-open",
- "coverage": "folder-coverage-open",
- ".coverage": "folder-coverage-open",
- "_coverage": "folder-coverage-open",
- "-coverage": "folder-coverage-open",
- "__coverage__": "folder-coverage-open",
- "nyc-output": "folder-coverage-open",
- ".nyc-output": "folder-coverage-open",
- "_nyc-output": "folder-coverage-open",
- "-nyc-output": "folder-coverage-open",
- "__nyc-output__": "folder-coverage-open",
- "nyc_output": "folder-coverage-open",
- ".nyc_output": "folder-coverage-open",
- "_nyc_output": "folder-coverage-open",
- "-nyc_output": "folder-coverage-open",
- "__nyc_output__": "folder-coverage-open",
- "e2e": "folder-coverage-open",
- ".e2e": "folder-coverage-open",
- "_e2e": "folder-coverage-open",
- "-e2e": "folder-coverage-open",
- "__e2e__": "folder-coverage-open",
- "it": "folder-coverage-open",
- ".it": "folder-coverage-open",
- "_it": "folder-coverage-open",
- "-it": "folder-coverage-open",
- "__it__": "folder-coverage-open",
- "integration-test": "folder-coverage-open",
- ".integration-test": "folder-coverage-open",
- "_integration-test": "folder-coverage-open",
- "-integration-test": "folder-coverage-open",
- "__integration-test__": "folder-coverage-open",
- "integration-tests": "folder-coverage-open",
- ".integration-tests": "folder-coverage-open",
- "_integration-tests": "folder-coverage-open",
- "-integration-tests": "folder-coverage-open",
- "__integration-tests__": "folder-coverage-open",
- "class": "folder-class-open",
- ".class": "folder-class-open",
- "_class": "folder-class-open",
- "-class": "folder-class-open",
- "__class__": "folder-class-open",
- "classes": "folder-class-open",
- ".classes": "folder-class-open",
- "_classes": "folder-class-open",
- "-classes": "folder-class-open",
- "__classes__": "folder-class-open",
- "model": "folder-class-open",
- ".model": "folder-class-open",
- "_model": "folder-class-open",
- "-model": "folder-class-open",
- "__model__": "folder-class-open",
- "models": "folder-class-open",
- ".models": "folder-class-open",
- "_models": "folder-class-open",
- "-models": "folder-class-open",
- "__models__": "folder-class-open",
- "schemas": "folder-class-open",
- ".schemas": "folder-class-open",
- "_schemas": "folder-class-open",
- "-schemas": "folder-class-open",
- "__schemas__": "folder-class-open",
- "schema": "folder-class-open",
- ".schema": "folder-class-open",
- "_schema": "folder-class-open",
- "-schema": "folder-class-open",
- "__schema__": "folder-class-open",
- "other": "folder-other-open",
- ".other": "folder-other-open",
- "_other": "folder-other-open",
- "-other": "folder-other-open",
- "__other__": "folder-other-open",
- "others": "folder-other-open",
- ".others": "folder-other-open",
- "_others": "folder-other-open",
- "-others": "folder-other-open",
- "__others__": "folder-other-open",
- "misc": "folder-other-open",
- ".misc": "folder-other-open",
- "_misc": "folder-other-open",
- "-misc": "folder-other-open",
- "__misc__": "folder-other-open",
- "miscellaneous": "folder-other-open",
- ".miscellaneous": "folder-other-open",
- "_miscellaneous": "folder-other-open",
- "-miscellaneous": "folder-other-open",
- "__miscellaneous__": "folder-other-open",
- "extra": "folder-other-open",
- ".extra": "folder-other-open",
- "_extra": "folder-other-open",
- "-extra": "folder-other-open",
- "__extra__": "folder-other-open",
- "extras": "folder-other-open",
- ".extras": "folder-other-open",
- "_extras": "folder-other-open",
- "-extras": "folder-other-open",
- "__extras__": "folder-other-open",
- "etc": "folder-other-open",
- ".etc": "folder-other-open",
- "_etc": "folder-other-open",
- "-etc": "folder-other-open",
- "__etc__": "folder-other-open",
- "lua": "folder-lua-open",
- ".lua": "folder-lua-open",
- "_lua": "folder-lua-open",
- "-lua": "folder-lua-open",
- "__lua__": "folder-lua-open",
- "turbo": "folder-turborepo-open",
- ".turbo": "folder-turborepo-open",
- "_turbo": "folder-turborepo-open",
- "-turbo": "folder-turborepo-open",
- "__turbo__": "folder-turborepo-open",
- "typescript": "folder-typescript-open",
- ".typescript": "folder-typescript-open",
- "_typescript": "folder-typescript-open",
- "-typescript": "folder-typescript-open",
- "__typescript__": "folder-typescript-open",
- "ts": "folder-typescript-open",
- ".ts": "folder-typescript-open",
- "_ts": "folder-typescript-open",
- "-ts": "folder-typescript-open",
- "__ts__": "folder-typescript-open",
- "typings": "folder-typescript-open",
- ".typings": "folder-typescript-open",
- "_typings": "folder-typescript-open",
- "-typings": "folder-typescript-open",
- "__typings__": "folder-typescript-open",
- "@types": "folder-typescript-open",
- ".@types": "folder-typescript-open",
- "_@types": "folder-typescript-open",
- "-@types": "folder-typescript-open",
- "__@types__": "folder-typescript-open",
- "types": "folder-typescript-open",
- ".types": "folder-typescript-open",
- "_types": "folder-typescript-open",
- "-types": "folder-typescript-open",
- "__types__": "folder-typescript-open",
- "cts": "folder-typescript-open",
- ".cts": "folder-typescript-open",
- "_cts": "folder-typescript-open",
- "-cts": "folder-typescript-open",
- "__cts__": "folder-typescript-open",
- "mts": "folder-typescript-open",
- ".mts": "folder-typescript-open",
- "_mts": "folder-typescript-open",
- "-mts": "folder-typescript-open",
- "__mts__": "folder-typescript-open",
- "graphql": "folder-graphql-open",
- ".graphql": "folder-graphql-open",
- "_graphql": "folder-graphql-open",
- "-graphql": "folder-graphql-open",
- "__graphql__": "folder-graphql-open",
- "gql": "folder-graphql-open",
- ".gql": "folder-graphql-open",
- "_gql": "folder-graphql-open",
- "-gql": "folder-graphql-open",
- "__gql__": "folder-graphql-open",
- "routes": "folder-routes-open",
- ".routes": "folder-routes-open",
- "_routes": "folder-routes-open",
- "-routes": "folder-routes-open",
- "__routes__": "folder-routes-open",
- "router": "folder-routes-open",
- ".router": "folder-routes-open",
- "_router": "folder-routes-open",
- "-router": "folder-routes-open",
- "__router__": "folder-routes-open",
- "routers": "folder-routes-open",
- ".routers": "folder-routes-open",
- "_routers": "folder-routes-open",
- "-routers": "folder-routes-open",
- "__routers__": "folder-routes-open",
- "navigation": "folder-routes-open",
- ".navigation": "folder-routes-open",
- "_navigation": "folder-routes-open",
- "-navigation": "folder-routes-open",
- "__navigation__": "folder-routes-open",
- "navigations": "folder-routes-open",
- ".navigations": "folder-routes-open",
- "_navigations": "folder-routes-open",
- "-navigations": "folder-routes-open",
- "__navigations__": "folder-routes-open",
- "routing": "folder-routes-open",
- ".routing": "folder-routes-open",
- "_routing": "folder-routes-open",
- "-routing": "folder-routes-open",
- "__routing__": "folder-routes-open",
- "ci": "folder-ci-open",
- ".ci": "folder-ci-open",
- "_ci": "folder-ci-open",
- "-ci": "folder-ci-open",
- "__ci__": "folder-ci-open",
- "eslint": "folder-eslint-open",
- ".eslint": "folder-eslint-open",
- "_eslint": "folder-eslint-open",
- "-eslint": "folder-eslint-open",
- "__eslint__": "folder-eslint-open",
- "eslint-plugin": "folder-eslint-open",
- ".eslint-plugin": "folder-eslint-open",
- "_eslint-plugin": "folder-eslint-open",
- "-eslint-plugin": "folder-eslint-open",
- "__eslint-plugin__": "folder-eslint-open",
- "eslint-plugins": "folder-eslint-open",
- ".eslint-plugins": "folder-eslint-open",
- "_eslint-plugins": "folder-eslint-open",
- "-eslint-plugins": "folder-eslint-open",
- "__eslint-plugins__": "folder-eslint-open",
- "eslint-config": "folder-eslint-open",
- ".eslint-config": "folder-eslint-open",
- "_eslint-config": "folder-eslint-open",
- "-eslint-config": "folder-eslint-open",
- "__eslint-config__": "folder-eslint-open",
- "eslint-configs": "folder-eslint-open",
- ".eslint-configs": "folder-eslint-open",
- "_eslint-configs": "folder-eslint-open",
- "-eslint-configs": "folder-eslint-open",
- "__eslint-configs__": "folder-eslint-open",
- "benchmark": "folder-benchmark-open",
- ".benchmark": "folder-benchmark-open",
- "_benchmark": "folder-benchmark-open",
- "-benchmark": "folder-benchmark-open",
- "__benchmark__": "folder-benchmark-open",
- "benchmarks": "folder-benchmark-open",
- ".benchmarks": "folder-benchmark-open",
- "_benchmarks": "folder-benchmark-open",
- "-benchmarks": "folder-benchmark-open",
- "__benchmarks__": "folder-benchmark-open",
- "bench": "folder-benchmark-open",
- ".bench": "folder-benchmark-open",
- "_bench": "folder-benchmark-open",
- "-bench": "folder-benchmark-open",
- "__bench__": "folder-benchmark-open",
- "benches": "folder-benchmark-open",
- ".benches": "folder-benchmark-open",
- "_benches": "folder-benchmark-open",
- "-benches": "folder-benchmark-open",
- "__benches__": "folder-benchmark-open",
- "performance": "folder-benchmark-open",
- ".performance": "folder-benchmark-open",
- "_performance": "folder-benchmark-open",
- "-performance": "folder-benchmark-open",
- "__performance__": "folder-benchmark-open",
- "perf": "folder-benchmark-open",
- ".perf": "folder-benchmark-open",
- "_perf": "folder-benchmark-open",
- "-perf": "folder-benchmark-open",
- "__perf__": "folder-benchmark-open",
- "profiling": "folder-benchmark-open",
- ".profiling": "folder-benchmark-open",
- "_profiling": "folder-benchmark-open",
- "-profiling": "folder-benchmark-open",
- "__profiling__": "folder-benchmark-open",
- "measure": "folder-benchmark-open",
- ".measure": "folder-benchmark-open",
- "_measure": "folder-benchmark-open",
- "-measure": "folder-benchmark-open",
- "__measure__": "folder-benchmark-open",
- "measures": "folder-benchmark-open",
- ".measures": "folder-benchmark-open",
- "_measures": "folder-benchmark-open",
- "-measures": "folder-benchmark-open",
- "__measures__": "folder-benchmark-open",
- "measurement": "folder-benchmark-open",
- ".measurement": "folder-benchmark-open",
- "_measurement": "folder-benchmark-open",
- "-measurement": "folder-benchmark-open",
- "__measurement__": "folder-benchmark-open",
- "messages": "folder-messages-open",
- ".messages": "folder-messages-open",
- "_messages": "folder-messages-open",
- "-messages": "folder-messages-open",
- "__messages__": "folder-messages-open",
- "messaging": "folder-messages-open",
- ".messaging": "folder-messages-open",
- "_messaging": "folder-messages-open",
- "-messaging": "folder-messages-open",
- "__messaging__": "folder-messages-open",
- "forum": "folder-messages-open",
- ".forum": "folder-messages-open",
- "_forum": "folder-messages-open",
- "-forum": "folder-messages-open",
- "__forum__": "folder-messages-open",
- "chat": "folder-messages-open",
- ".chat": "folder-messages-open",
- "_chat": "folder-messages-open",
- "-chat": "folder-messages-open",
- "__chat__": "folder-messages-open",
- "chats": "folder-messages-open",
- ".chats": "folder-messages-open",
- "_chats": "folder-messages-open",
- "-chats": "folder-messages-open",
- "__chats__": "folder-messages-open",
- "conversation": "folder-messages-open",
- ".conversation": "folder-messages-open",
- "_conversation": "folder-messages-open",
- "-conversation": "folder-messages-open",
- "__conversation__": "folder-messages-open",
- "conversations": "folder-messages-open",
- ".conversations": "folder-messages-open",
- "_conversations": "folder-messages-open",
- "-conversations": "folder-messages-open",
- "__conversations__": "folder-messages-open",
- "dialog": "folder-messages-open",
- ".dialog": "folder-messages-open",
- "_dialog": "folder-messages-open",
- "-dialog": "folder-messages-open",
- "__dialog__": "folder-messages-open",
- "dialogs": "folder-messages-open",
- ".dialogs": "folder-messages-open",
- "_dialogs": "folder-messages-open",
- "-dialogs": "folder-messages-open",
- "__dialogs__": "folder-messages-open",
- "less": "folder-less-open",
- ".less": "folder-less-open",
- "_less": "folder-less-open",
- "-less": "folder-less-open",
- "__less__": "folder-less-open",
- "gulp": "folder-gulp-open",
- ".gulp": "folder-gulp-open",
- "_gulp": "folder-gulp-open",
- "-gulp": "folder-gulp-open",
- "__gulp__": "folder-gulp-open",
- "gulp-tasks": "folder-gulp-open",
- ".gulp-tasks": "folder-gulp-open",
- "_gulp-tasks": "folder-gulp-open",
- "-gulp-tasks": "folder-gulp-open",
- "__gulp-tasks__": "folder-gulp-open",
- "gulpfile.js": "folder-gulp-open",
- ".gulpfile.js": "folder-gulp-open",
- "_gulpfile.js": "folder-gulp-open",
- "-gulpfile.js": "folder-gulp-open",
- "__gulpfile.js__": "folder-gulp-open",
- "gulpfile.mjs": "folder-gulp-open",
- ".gulpfile.mjs": "folder-gulp-open",
- "_gulpfile.mjs": "folder-gulp-open",
- "-gulpfile.mjs": "folder-gulp-open",
- "__gulpfile.mjs__": "folder-gulp-open",
- "gulpfile.ts": "folder-gulp-open",
- ".gulpfile.ts": "folder-gulp-open",
- "_gulpfile.ts": "folder-gulp-open",
- "-gulpfile.ts": "folder-gulp-open",
- "__gulpfile.ts__": "folder-gulp-open",
- "gulpfile.babel.js": "folder-gulp-open",
- ".gulpfile.babel.js": "folder-gulp-open",
- "_gulpfile.babel.js": "folder-gulp-open",
- "-gulpfile.babel.js": "folder-gulp-open",
- "__gulpfile.babel.js__": "folder-gulp-open",
- "gulpfiles": "folder-gulp-open",
- ".gulpfiles": "folder-gulp-open",
- "_gulpfiles": "folder-gulp-open",
- "-gulpfiles": "folder-gulp-open",
- "__gulpfiles__": "folder-gulp-open",
- "python": "folder-python-open",
- ".python": "folder-python-open",
- "_python": "folder-python-open",
- "-python": "folder-python-open",
- "__python__": "folder-python-open",
- "pycache": "folder-python-open",
- ".pycache": "folder-python-open",
- "_pycache": "folder-python-open",
- "-pycache": "folder-python-open",
- "__pycache__": "folder-python-open",
- "pytest_cache": "folder-python-open",
- ".pytest_cache": "folder-python-open",
- "_pytest_cache": "folder-python-open",
- "-pytest_cache": "folder-python-open",
- "__pytest_cache__": "folder-python-open",
- "r": "folder-r-open",
- ".r": "folder-r-open",
- "_r": "folder-r-open",
- "-r": "folder-r-open",
- "__r__": "folder-r-open",
- "sandbox": "folder-sandbox-open",
- ".sandbox": "folder-sandbox-open",
- "_sandbox": "folder-sandbox-open",
- "-sandbox": "folder-sandbox-open",
- "__sandbox__": "folder-sandbox-open",
- "sandboxes": "folder-sandbox-open",
- ".sandboxes": "folder-sandbox-open",
- "_sandboxes": "folder-sandbox-open",
- "-sandboxes": "folder-sandbox-open",
- "__sandboxes__": "folder-sandbox-open",
- "playground": "folder-sandbox-open",
- ".playground": "folder-sandbox-open",
- "_playground": "folder-sandbox-open",
- "-playground": "folder-sandbox-open",
- "__playground__": "folder-sandbox-open",
- "playgrounds": "folder-sandbox-open",
- ".playgrounds": "folder-sandbox-open",
- "_playgrounds": "folder-sandbox-open",
- "-playgrounds": "folder-sandbox-open",
- "__playgrounds__": "folder-sandbox-open",
- "scons": "folder-scons-open",
- ".scons": "folder-scons-open",
- "_scons": "folder-scons-open",
- "-scons": "folder-scons-open",
- "__scons__": "folder-scons-open",
- "sconf_temp": "folder-scons-open",
- ".sconf_temp": "folder-scons-open",
- "_sconf_temp": "folder-scons-open",
- "-sconf_temp": "folder-scons-open",
- "__sconf_temp__": "folder-scons-open",
- "scons_cache": "folder-scons-open",
- ".scons_cache": "folder-scons-open",
- "_scons_cache": "folder-scons-open",
- "-scons_cache": "folder-scons-open",
- "__scons_cache__": "folder-scons-open",
- "mojo": "folder-mojo-open",
- ".mojo": "folder-mojo-open",
- "_mojo": "folder-mojo-open",
- "-mojo": "folder-mojo-open",
- "__mojo__": "folder-mojo-open",
- "moon": "folder-moon-open",
- ".moon": "folder-moon-open",
- "_moon": "folder-moon-open",
- "-moon": "folder-moon-open",
- "__moon__": "folder-moon-open",
- "debug": "folder-debug-open",
- ".debug": "folder-debug-open",
- "_debug": "folder-debug-open",
- "-debug": "folder-debug-open",
- "__debug__": "folder-debug-open",
- "debugger": "folder-debug-open",
- ".debugger": "folder-debug-open",
- "_debugger": "folder-debug-open",
- "-debugger": "folder-debug-open",
- "__debugger__": "folder-debug-open",
- "debugging": "folder-debug-open",
- ".debugging": "folder-debug-open",
- "_debugging": "folder-debug-open",
- "-debugging": "folder-debug-open",
- "__debugging__": "folder-debug-open",
- "fastlane": "folder-fastlane-open",
- ".fastlane": "folder-fastlane-open",
- "_fastlane": "folder-fastlane-open",
- "-fastlane": "folder-fastlane-open",
- "__fastlane__": "folder-fastlane-open",
- "plugin": "folder-plugin-open",
- ".plugin": "folder-plugin-open",
- "_plugin": "folder-plugin-open",
- "-plugin": "folder-plugin-open",
- "__plugin__": "folder-plugin-open",
- "plugins": "folder-plugin-open",
- ".plugins": "folder-plugin-open",
- "_plugins": "folder-plugin-open",
- "-plugins": "folder-plugin-open",
- "__plugins__": "folder-plugin-open",
- "mod": "folder-plugin-open",
- ".mod": "folder-plugin-open",
- "_mod": "folder-plugin-open",
- "-mod": "folder-plugin-open",
- "__mod__": "folder-plugin-open",
- "mods": "folder-plugin-open",
- ".mods": "folder-plugin-open",
- "_mods": "folder-plugin-open",
- "-mods": "folder-plugin-open",
- "__mods__": "folder-plugin-open",
- "modding": "folder-plugin-open",
- ".modding": "folder-plugin-open",
- "_modding": "folder-plugin-open",
- "-modding": "folder-plugin-open",
- "__modding__": "folder-plugin-open",
- "extension": "folder-plugin-open",
- ".extension": "folder-plugin-open",
- "_extension": "folder-plugin-open",
- "-extension": "folder-plugin-open",
- "__extension__": "folder-plugin-open",
- "extensions": "folder-plugin-open",
- ".extensions": "folder-plugin-open",
- "_extensions": "folder-plugin-open",
- "-extensions": "folder-plugin-open",
- "__extensions__": "folder-plugin-open",
- "addon": "folder-plugin-open",
- ".addon": "folder-plugin-open",
- "_addon": "folder-plugin-open",
- "-addon": "folder-plugin-open",
- "__addon__": "folder-plugin-open",
- "addons": "folder-plugin-open",
- ".addons": "folder-plugin-open",
- "_addons": "folder-plugin-open",
- "-addons": "folder-plugin-open",
- "__addons__": "folder-plugin-open",
- "addin": "folder-plugin-open",
- ".addin": "folder-plugin-open",
- "_addin": "folder-plugin-open",
- "-addin": "folder-plugin-open",
- "__addin__": "folder-plugin-open",
- "addins": "folder-plugin-open",
- ".addins": "folder-plugin-open",
- "_addins": "folder-plugin-open",
- "-addins": "folder-plugin-open",
- "__addins__": "folder-plugin-open",
- "module": "folder-plugin-open",
- ".module": "folder-plugin-open",
- "_module": "folder-plugin-open",
- "-module": "folder-plugin-open",
- "__module__": "folder-plugin-open",
- "modules": "folder-plugin-open",
- ".modules": "folder-plugin-open",
- "_modules": "folder-plugin-open",
- "-modules": "folder-plugin-open",
- "__modules__": "folder-plugin-open",
- "middleware": "folder-middleware-open",
- ".middleware": "folder-middleware-open",
- "_middleware": "folder-middleware-open",
- "-middleware": "folder-middleware-open",
- "__middleware__": "folder-middleware-open",
- "middlewares": "folder-middleware-open",
- ".middlewares": "folder-middleware-open",
- "_middlewares": "folder-middleware-open",
- "-middlewares": "folder-middleware-open",
- "__middlewares__": "folder-middleware-open",
- "controller": "folder-controller-open",
- ".controller": "folder-controller-open",
- "_controller": "folder-controller-open",
- "-controller": "folder-controller-open",
- "__controller__": "folder-controller-open",
- "controllers": "folder-controller-open",
- ".controllers": "folder-controller-open",
- "_controllers": "folder-controller-open",
- "-controllers": "folder-controller-open",
- "__controllers__": "folder-controller-open",
- "controls": "folder-controller-open",
- ".controls": "folder-controller-open",
- "_controls": "folder-controller-open",
- "-controls": "folder-controller-open",
- "__controls__": "folder-controller-open",
- "service": "folder-controller-open",
- ".service": "folder-controller-open",
- "_service": "folder-controller-open",
- "-service": "folder-controller-open",
- "__service__": "folder-controller-open",
- "services": "folder-controller-open",
- ".services": "folder-controller-open",
- "_services": "folder-controller-open",
- "-services": "folder-controller-open",
- "__services__": "folder-controller-open",
- "provider": "folder-controller-open",
- ".provider": "folder-controller-open",
- "_provider": "folder-controller-open",
- "-provider": "folder-controller-open",
- "__provider__": "folder-controller-open",
- "providers": "folder-controller-open",
- ".providers": "folder-controller-open",
- "_providers": "folder-controller-open",
- "-providers": "folder-controller-open",
- "__providers__": "folder-controller-open",
- "handler": "folder-controller-open",
- ".handler": "folder-controller-open",
- "_handler": "folder-controller-open",
- "-handler": "folder-controller-open",
- "__handler__": "folder-controller-open",
- "handlers": "folder-controller-open",
- ".handlers": "folder-controller-open",
- "_handlers": "folder-controller-open",
- "-handlers": "folder-controller-open",
- "__handlers__": "folder-controller-open",
- "ansible": "folder-ansible-open",
- ".ansible": "folder-ansible-open",
- "_ansible": "folder-ansible-open",
- "-ansible": "folder-ansible-open",
- "__ansible__": "folder-ansible-open",
- "server": "folder-server-open",
- ".server": "folder-server-open",
- "_server": "folder-server-open",
- "-server": "folder-server-open",
- "__server__": "folder-server-open",
- "servers": "folder-server-open",
- ".servers": "folder-server-open",
- "_servers": "folder-server-open",
- "-servers": "folder-server-open",
- "__servers__": "folder-server-open",
- "backend": "folder-server-open",
- ".backend": "folder-server-open",
- "_backend": "folder-server-open",
- "-backend": "folder-server-open",
- "__backend__": "folder-server-open",
- "backends": "folder-server-open",
- ".backends": "folder-server-open",
- "_backends": "folder-server-open",
- "-backends": "folder-server-open",
- "__backends__": "folder-server-open",
- "inventory": "folder-server-open",
- ".inventory": "folder-server-open",
- "_inventory": "folder-server-open",
- "-inventory": "folder-server-open",
- "__inventory__": "folder-server-open",
- "inventories": "folder-server-open",
- ".inventories": "folder-server-open",
- "_inventories": "folder-server-open",
- "-inventories": "folder-server-open",
- "__inventories__": "folder-server-open",
- "infrastructure": "folder-server-open",
- ".infrastructure": "folder-server-open",
- "_infrastructure": "folder-server-open",
- "-infrastructure": "folder-server-open",
- "__infrastructure__": "folder-server-open",
- "infra": "folder-server-open",
- ".infra": "folder-server-open",
- "_infra": "folder-server-open",
- "-infra": "folder-server-open",
- "__infra__": "folder-server-open",
- "client": "folder-client-open",
- ".client": "folder-client-open",
- "_client": "folder-client-open",
- "-client": "folder-client-open",
- "__client__": "folder-client-open",
- "clients": "folder-client-open",
- ".clients": "folder-client-open",
- "_clients": "folder-client-open",
- "-clients": "folder-client-open",
- "__clients__": "folder-client-open",
- "frontend": "folder-client-open",
- ".frontend": "folder-client-open",
- "_frontend": "folder-client-open",
- "-frontend": "folder-client-open",
- "__frontend__": "folder-client-open",
- "frontends": "folder-client-open",
- ".frontends": "folder-client-open",
- "_frontends": "folder-client-open",
- "-frontends": "folder-client-open",
- "__frontends__": "folder-client-open",
- "pwa": "folder-client-open",
- ".pwa": "folder-client-open",
- "_pwa": "folder-client-open",
- "-pwa": "folder-client-open",
- "__pwa__": "folder-client-open",
- "spa": "folder-client-open",
- ".spa": "folder-client-open",
- "_spa": "folder-client-open",
- "-spa": "folder-client-open",
- "__spa__": "folder-client-open",
- "tasks": "folder-tasks-open",
- ".tasks": "folder-tasks-open",
- "_tasks": "folder-tasks-open",
- "-tasks": "folder-tasks-open",
- "__tasks__": "folder-tasks-open",
- "tickets": "folder-tasks-open",
- ".tickets": "folder-tasks-open",
- "_tickets": "folder-tasks-open",
- "-tickets": "folder-tasks-open",
- "__tickets__": "folder-tasks-open",
- "android": "folder-android-open",
- ".android": "folder-android-open",
- "_android": "folder-android-open",
- "-android": "folder-android-open",
- "__android__": "folder-android-open",
- "ios": "folder-ios-open",
- ".ios": "folder-ios-open",
- "_ios": "folder-ios-open",
- "-ios": "folder-ios-open",
- "__ios__": "folder-ios-open",
- "presentation": "folder-ui-open",
- ".presentation": "folder-ui-open",
- "_presentation": "folder-ui-open",
- "-presentation": "folder-ui-open",
- "__presentation__": "folder-ui-open",
- "gui": "folder-ui-open",
- ".gui": "folder-ui-open",
- "_gui": "folder-ui-open",
- "-gui": "folder-ui-open",
- "__gui__": "folder-ui-open",
- "ui": "folder-ui-open",
- ".ui": "folder-ui-open",
- "_ui": "folder-ui-open",
- "-ui": "folder-ui-open",
- "__ui__": "folder-ui-open",
- "ux": "folder-ui-open",
- ".ux": "folder-ui-open",
- "_ux": "folder-ui-open",
- "-ux": "folder-ui-open",
- "__ux__": "folder-ui-open",
- "uploads": "folder-upload-open",
- ".uploads": "folder-upload-open",
- "_uploads": "folder-upload-open",
- "-uploads": "folder-upload-open",
- "__uploads__": "folder-upload-open",
- "upload": "folder-upload-open",
- ".upload": "folder-upload-open",
- "_upload": "folder-upload-open",
- "-upload": "folder-upload-open",
- "__upload__": "folder-upload-open",
- "downloads": "folder-download-open",
- ".downloads": "folder-download-open",
- "_downloads": "folder-download-open",
- "-downloads": "folder-download-open",
- "__downloads__": "folder-download-open",
- "download": "folder-download-open",
- ".download": "folder-download-open",
- "_download": "folder-download-open",
- "-download": "folder-download-open",
- "__download__": "folder-download-open",
- "downloader": "folder-download-open",
- ".downloader": "folder-download-open",
- "_downloader": "folder-download-open",
- "-downloader": "folder-download-open",
- "__downloader__": "folder-download-open",
- "downloaders": "folder-download-open",
- ".downloaders": "folder-download-open",
- "_downloaders": "folder-download-open",
- "-downloaders": "folder-download-open",
- "__downloaders__": "folder-download-open",
- "tools": "folder-tools-open",
- ".tools": "folder-tools-open",
- "_tools": "folder-tools-open",
- "-tools": "folder-tools-open",
- "__tools__": "folder-tools-open",
- "toolkit": "folder-tools-open",
- ".toolkit": "folder-tools-open",
- "_toolkit": "folder-tools-open",
- "-toolkit": "folder-tools-open",
- "__toolkit__": "folder-tools-open",
- "toolkits": "folder-tools-open",
- ".toolkits": "folder-tools-open",
- "_toolkits": "folder-tools-open",
- "-toolkits": "folder-tools-open",
- "__toolkits__": "folder-tools-open",
- "toolbox": "folder-tools-open",
- ".toolbox": "folder-tools-open",
- "_toolbox": "folder-tools-open",
- "-toolbox": "folder-tools-open",
- "__toolbox__": "folder-tools-open",
- "toolboxes": "folder-tools-open",
- ".toolboxes": "folder-tools-open",
- "_toolboxes": "folder-tools-open",
- "-toolboxes": "folder-tools-open",
- "__toolboxes__": "folder-tools-open",
- "tooling": "folder-tools-open",
- ".tooling": "folder-tools-open",
- "_tooling": "folder-tools-open",
- "-tooling": "folder-tools-open",
- "__tooling__": "folder-tools-open",
- "devtools": "folder-tools-open",
- ".devtools": "folder-tools-open",
- "_devtools": "folder-tools-open",
- "-devtools": "folder-tools-open",
- "__devtools__": "folder-tools-open",
- "kit": "folder-tools-open",
- ".kit": "folder-tools-open",
- "_kit": "folder-tools-open",
- "-kit": "folder-tools-open",
- "__kit__": "folder-tools-open",
- "kits": "folder-tools-open",
- ".kits": "folder-tools-open",
- "_kits": "folder-tools-open",
- "-kits": "folder-tools-open",
- "__kits__": "folder-tools-open",
- "helpers": "folder-helper-open",
- ".helpers": "folder-helper-open",
- "_helpers": "folder-helper-open",
- "-helpers": "folder-helper-open",
- "__helpers__": "folder-helper-open",
- "helper": "folder-helper-open",
- ".helper": "folder-helper-open",
- "_helper": "folder-helper-open",
- "-helper": "folder-helper-open",
- "__helper__": "folder-helper-open",
- "serverless": "folder-serverless-open",
- ".serverless": "folder-serverless-open",
- "_serverless": "folder-serverless-open",
- "-serverless": "folder-serverless-open",
- "__serverless__": "folder-serverless-open",
- "api": "folder-api-open",
- ".api": "folder-api-open",
- "_api": "folder-api-open",
- "-api": "folder-api-open",
- "__api__": "folder-api-open",
- "apis": "folder-api-open",
- ".apis": "folder-api-open",
- "_apis": "folder-api-open",
- "-apis": "folder-api-open",
- "__apis__": "folder-api-open",
- "restapi": "folder-api-open",
- ".restapi": "folder-api-open",
- "_restapi": "folder-api-open",
- "-restapi": "folder-api-open",
- "__restapi__": "folder-api-open",
- "app": "folder-app-open",
- ".app": "folder-app-open",
- "_app": "folder-app-open",
- "-app": "folder-app-open",
- "__app__": "folder-app-open",
- "apps": "folder-app-open",
- ".apps": "folder-app-open",
- "_apps": "folder-app-open",
- "-apps": "folder-app-open",
- "__apps__": "folder-app-open",
- "application": "folder-app-open",
- ".application": "folder-app-open",
- "_application": "folder-app-open",
- "-application": "folder-app-open",
- "__application__": "folder-app-open",
- "applications": "folder-app-open",
- ".applications": "folder-app-open",
- "_applications": "folder-app-open",
- "-applications": "folder-app-open",
- "__applications__": "folder-app-open",
- "apollo": "folder-apollo-open",
- ".apollo": "folder-apollo-open",
- "_apollo": "folder-apollo-open",
- "-apollo": "folder-apollo-open",
- "__apollo__": "folder-apollo-open",
- "apollo-client": "folder-apollo-open",
- ".apollo-client": "folder-apollo-open",
- "_apollo-client": "folder-apollo-open",
- "-apollo-client": "folder-apollo-open",
- "__apollo-client__": "folder-apollo-open",
- "apollo-cache": "folder-apollo-open",
- ".apollo-cache": "folder-apollo-open",
- "_apollo-cache": "folder-apollo-open",
- "-apollo-cache": "folder-apollo-open",
- "__apollo-cache__": "folder-apollo-open",
- "apollo-config": "folder-apollo-open",
- ".apollo-config": "folder-apollo-open",
- "_apollo-config": "folder-apollo-open",
- "-apollo-config": "folder-apollo-open",
- "__apollo-config__": "folder-apollo-open",
- "arc": "folder-archive-open",
- ".arc": "folder-archive-open",
- "_arc": "folder-archive-open",
- "-arc": "folder-archive-open",
- "__arc__": "folder-archive-open",
- "arcs": "folder-archive-open",
- ".arcs": "folder-archive-open",
- "_arcs": "folder-archive-open",
- "-arcs": "folder-archive-open",
- "__arcs__": "folder-archive-open",
- "archive": "folder-archive-open",
- ".archive": "folder-archive-open",
- "_archive": "folder-archive-open",
- "-archive": "folder-archive-open",
- "__archive__": "folder-archive-open",
- "archives": "folder-archive-open",
- ".archives": "folder-archive-open",
- "_archives": "folder-archive-open",
- "-archives": "folder-archive-open",
- "__archives__": "folder-archive-open",
- "archival": "folder-archive-open",
- ".archival": "folder-archive-open",
- "_archival": "folder-archive-open",
- "-archival": "folder-archive-open",
- "__archival__": "folder-archive-open",
- "bkp": "folder-backup-open",
- ".bkp": "folder-backup-open",
- "_bkp": "folder-backup-open",
- "-bkp": "folder-backup-open",
- "__bkp__": "folder-backup-open",
- "bkps": "folder-backup-open",
- ".bkps": "folder-backup-open",
- "_bkps": "folder-backup-open",
- "-bkps": "folder-backup-open",
- "__bkps__": "folder-backup-open",
- "bak": "folder-backup-open",
- ".bak": "folder-backup-open",
- "_bak": "folder-backup-open",
- "-bak": "folder-backup-open",
- "__bak__": "folder-backup-open",
- "baks": "folder-backup-open",
- ".baks": "folder-backup-open",
- "_baks": "folder-backup-open",
- "-baks": "folder-backup-open",
- "__baks__": "folder-backup-open",
- "backup": "folder-backup-open",
- ".backup": "folder-backup-open",
- "_backup": "folder-backup-open",
- "-backup": "folder-backup-open",
- "__backup__": "folder-backup-open",
- "backups": "folder-backup-open",
- ".backups": "folder-backup-open",
- "_backups": "folder-backup-open",
- "-backups": "folder-backup-open",
- "__backups__": "folder-backup-open",
- "back-up": "folder-backup-open",
- ".back-up": "folder-backup-open",
- "_back-up": "folder-backup-open",
- "-back-up": "folder-backup-open",
- "__back-up__": "folder-backup-open",
- "back-ups": "folder-backup-open",
- ".back-ups": "folder-backup-open",
- "_back-ups": "folder-backup-open",
- "-back-ups": "folder-backup-open",
- "__back-ups__": "folder-backup-open",
- "history": "folder-backup-open",
- ".history": "folder-backup-open",
- "_history": "folder-backup-open",
- "-history": "folder-backup-open",
- "__history__": "folder-backup-open",
- "histories": "folder-backup-open",
- ".histories": "folder-backup-open",
- "_histories": "folder-backup-open",
- "-histories": "folder-backup-open",
- "__histories__": "folder-backup-open",
- "batch": "folder-batch-open",
- ".batch": "folder-batch-open",
- "_batch": "folder-batch-open",
- "-batch": "folder-batch-open",
- "__batch__": "folder-batch-open",
- "batchs": "folder-batch-open",
- ".batchs": "folder-batch-open",
- "_batchs": "folder-batch-open",
- "-batchs": "folder-batch-open",
- "__batchs__": "folder-batch-open",
- "batches": "folder-batch-open",
- ".batches": "folder-batch-open",
- "_batches": "folder-batch-open",
- "-batches": "folder-batch-open",
- "__batches__": "folder-batch-open",
- "buildkite": "folder-buildkite-open",
- ".buildkite": "folder-buildkite-open",
- "_buildkite": "folder-buildkite-open",
- "-buildkite": "folder-buildkite-open",
- "__buildkite__": "folder-buildkite-open",
- "cluster": "folder-cluster-open",
- ".cluster": "folder-cluster-open",
- "_cluster": "folder-cluster-open",
- "-cluster": "folder-cluster-open",
- "__cluster__": "folder-cluster-open",
- "clusters": "folder-cluster-open",
- ".clusters": "folder-cluster-open",
- "_clusters": "folder-cluster-open",
- "-clusters": "folder-cluster-open",
- "__clusters__": "folder-cluster-open",
- "command": "folder-command-open",
- ".command": "folder-command-open",
- "_command": "folder-command-open",
- "-command": "folder-command-open",
- "__command__": "folder-command-open",
- "commands": "folder-command-open",
- ".commands": "folder-command-open",
- "_commands": "folder-command-open",
- "-commands": "folder-command-open",
- "__commands__": "folder-command-open",
- "commandline": "folder-command-open",
- ".commandline": "folder-command-open",
- "_commandline": "folder-command-open",
- "-commandline": "folder-command-open",
- "__commandline__": "folder-command-open",
- "cmd": "folder-command-open",
- ".cmd": "folder-command-open",
- "_cmd": "folder-command-open",
- "-cmd": "folder-command-open",
- "__cmd__": "folder-command-open",
- "cli": "folder-command-open",
- ".cli": "folder-command-open",
- "_cli": "folder-command-open",
- "-cli": "folder-command-open",
- "__cli__": "folder-command-open",
- "clis": "folder-command-open",
- ".clis": "folder-command-open",
- "_clis": "folder-command-open",
- "-clis": "folder-command-open",
- "__clis__": "folder-command-open",
- "constant": "folder-constant-open",
- ".constant": "folder-constant-open",
- "_constant": "folder-constant-open",
- "-constant": "folder-constant-open",
- "__constant__": "folder-constant-open",
- "constants": "folder-constant-open",
- ".constants": "folder-constant-open",
- "_constants": "folder-constant-open",
- "-constants": "folder-constant-open",
- "__constants__": "folder-constant-open",
- "const": "folder-constant-open",
- ".const": "folder-constant-open",
- "_const": "folder-constant-open",
- "-const": "folder-constant-open",
- "__const__": "folder-constant-open",
- "consts": "folder-constant-open",
- ".consts": "folder-constant-open",
- "_consts": "folder-constant-open",
- "-consts": "folder-constant-open",
- "__consts__": "folder-constant-open",
- "container": "folder-container-open",
- ".container": "folder-container-open",
- "_container": "folder-container-open",
- "-container": "folder-container-open",
- "__container__": "folder-container-open",
- "containers": "folder-container-open",
- ".containers": "folder-container-open",
- "_containers": "folder-container-open",
- "-containers": "folder-container-open",
- "__containers__": "folder-container-open",
- "devcontainer": "folder-container-open",
- ".devcontainer": "folder-container-open",
- "_devcontainer": "folder-container-open",
- "-devcontainer": "folder-container-open",
- "__devcontainer__": "folder-container-open",
- "content": "folder-content-open",
- ".content": "folder-content-open",
- "_content": "folder-content-open",
- "-content": "folder-content-open",
- "__content__": "folder-content-open",
- "contents": "folder-content-open",
- ".contents": "folder-content-open",
- "_contents": "folder-content-open",
- "-contents": "folder-content-open",
- "__contents__": "folder-content-open",
- "context": "folder-context-open",
- ".context": "folder-context-open",
- "_context": "folder-context-open",
- "-context": "folder-context-open",
- "__context__": "folder-context-open",
- "contexts": "folder-context-open",
- ".contexts": "folder-context-open",
- "_contexts": "folder-context-open",
- "-contexts": "folder-context-open",
- "__contexts__": "folder-context-open",
- "core": "folder-core-open",
- ".core": "folder-core-open",
- "_core": "folder-core-open",
- "-core": "folder-core-open",
- "__core__": "folder-core-open",
- "delta": "folder-delta-open",
- ".delta": "folder-delta-open",
- "_delta": "folder-delta-open",
- "-delta": "folder-delta-open",
- "__delta__": "folder-delta-open",
- "deltas": "folder-delta-open",
- ".deltas": "folder-delta-open",
- "_deltas": "folder-delta-open",
- "-deltas": "folder-delta-open",
- "__deltas__": "folder-delta-open",
- "changes": "folder-delta-open",
- ".changes": "folder-delta-open",
- "_changes": "folder-delta-open",
- "-changes": "folder-delta-open",
- "__changes__": "folder-delta-open",
- "dump": "folder-dump-open",
- ".dump": "folder-dump-open",
- "_dump": "folder-dump-open",
- "-dump": "folder-dump-open",
- "__dump__": "folder-dump-open",
- "dumps": "folder-dump-open",
- ".dumps": "folder-dump-open",
- "_dumps": "folder-dump-open",
- "-dumps": "folder-dump-open",
- "__dumps__": "folder-dump-open",
- "demo": "folder-examples-open",
- ".demo": "folder-examples-open",
- "_demo": "folder-examples-open",
- "-demo": "folder-examples-open",
- "__demo__": "folder-examples-open",
- "demos": "folder-examples-open",
- ".demos": "folder-examples-open",
- "_demos": "folder-examples-open",
- "-demos": "folder-examples-open",
- "__demos__": "folder-examples-open",
- "example": "folder-examples-open",
- ".example": "folder-examples-open",
- "_example": "folder-examples-open",
- "-example": "folder-examples-open",
- "__example__": "folder-examples-open",
- "examples": "folder-examples-open",
- ".examples": "folder-examples-open",
- "_examples": "folder-examples-open",
- "-examples": "folder-examples-open",
- "__examples__": "folder-examples-open",
- "sample": "folder-examples-open",
- ".sample": "folder-examples-open",
- "_sample": "folder-examples-open",
- "-sample": "folder-examples-open",
- "__sample__": "folder-examples-open",
- "samples": "folder-examples-open",
- ".samples": "folder-examples-open",
- "_samples": "folder-examples-open",
- "-samples": "folder-examples-open",
- "__samples__": "folder-examples-open",
- "sample-data": "folder-examples-open",
- ".sample-data": "folder-examples-open",
- "_sample-data": "folder-examples-open",
- "-sample-data": "folder-examples-open",
- "__sample-data__": "folder-examples-open",
- "env": "folder-environment-open",
- ".env": "folder-environment-open",
- "_env": "folder-environment-open",
- "-env": "folder-environment-open",
- "__env__": "folder-environment-open",
- "envs": "folder-environment-open",
- ".envs": "folder-environment-open",
- "_envs": "folder-environment-open",
- "-envs": "folder-environment-open",
- "__envs__": "folder-environment-open",
- "environment": "folder-environment-open",
- ".environment": "folder-environment-open",
- "_environment": "folder-environment-open",
- "-environment": "folder-environment-open",
- "__environment__": "folder-environment-open",
- "environments": "folder-environment-open",
- ".environments": "folder-environment-open",
- "_environments": "folder-environment-open",
- "-environments": "folder-environment-open",
- "__environments__": "folder-environment-open",
- "venv": "folder-environment-open",
- ".venv": "folder-environment-open",
- "_venv": "folder-environment-open",
- "-venv": "folder-environment-open",
- "__venv__": "folder-environment-open",
- "func": "folder-functions-open",
- ".func": "folder-functions-open",
- "_func": "folder-functions-open",
- "-func": "folder-functions-open",
- "__func__": "folder-functions-open",
- "funcs": "folder-functions-open",
- ".funcs": "folder-functions-open",
- "_funcs": "folder-functions-open",
- "-funcs": "folder-functions-open",
- "__funcs__": "folder-functions-open",
- "function": "folder-functions-open",
- ".function": "folder-functions-open",
- "_function": "folder-functions-open",
- "-function": "folder-functions-open",
- "__function__": "folder-functions-open",
- "functions": "folder-functions-open",
- ".functions": "folder-functions-open",
- "_functions": "folder-functions-open",
- "-functions": "folder-functions-open",
- "__functions__": "folder-functions-open",
- "lambda": "folder-functions-open",
- ".lambda": "folder-functions-open",
- "_lambda": "folder-functions-open",
- "-lambda": "folder-functions-open",
- "__lambda__": "folder-functions-open",
- "lambdas": "folder-functions-open",
- ".lambdas": "folder-functions-open",
- "_lambdas": "folder-functions-open",
- "-lambdas": "folder-functions-open",
- "__lambdas__": "folder-functions-open",
- "logic": "folder-functions-open",
- ".logic": "folder-functions-open",
- "_logic": "folder-functions-open",
- "-logic": "folder-functions-open",
- "__logic__": "folder-functions-open",
- "math": "folder-functions-open",
- ".math": "folder-functions-open",
- "_math": "folder-functions-open",
- "-math": "folder-functions-open",
- "__math__": "folder-functions-open",
- "maths": "folder-functions-open",
- ".maths": "folder-functions-open",
- "_maths": "folder-functions-open",
- "-maths": "folder-functions-open",
- "__maths__": "folder-functions-open",
- "calc": "folder-functions-open",
- ".calc": "folder-functions-open",
- "_calc": "folder-functions-open",
- "-calc": "folder-functions-open",
- "__calc__": "folder-functions-open",
- "calcs": "folder-functions-open",
- ".calcs": "folder-functions-open",
- "_calcs": "folder-functions-open",
- "-calcs": "folder-functions-open",
- "__calcs__": "folder-functions-open",
- "calculation": "folder-functions-open",
- ".calculation": "folder-functions-open",
- "_calculation": "folder-functions-open",
- "-calculation": "folder-functions-open",
- "__calculation__": "folder-functions-open",
- "calculations": "folder-functions-open",
- ".calculations": "folder-functions-open",
- "_calculations": "folder-functions-open",
- "-calculations": "folder-functions-open",
- "__calculations__": "folder-functions-open",
- "composable": "folder-functions-open",
- ".composable": "folder-functions-open",
- "_composable": "folder-functions-open",
- "-composable": "folder-functions-open",
- "__composable__": "folder-functions-open",
- "composables": "folder-functions-open",
- ".composables": "folder-functions-open",
- "_composables": "folder-functions-open",
- "-composables": "folder-functions-open",
- "__composables__": "folder-functions-open",
- "generator": "folder-generator-open",
- ".generator": "folder-generator-open",
- "_generator": "folder-generator-open",
- "-generator": "folder-generator-open",
- "__generator__": "folder-generator-open",
- "generators": "folder-generator-open",
- ".generators": "folder-generator-open",
- "_generators": "folder-generator-open",
- "-generators": "folder-generator-open",
- "__generators__": "folder-generator-open",
- "generated": "folder-generator-open",
- ".generated": "folder-generator-open",
- "_generated": "folder-generator-open",
- "-generated": "folder-generator-open",
- "__generated__": "folder-generator-open",
- "cfn-gen": "folder-generator-open",
- ".cfn-gen": "folder-generator-open",
- "_cfn-gen": "folder-generator-open",
- "-cfn-gen": "folder-generator-open",
- "__cfn-gen__": "folder-generator-open",
- "gen": "folder-generator-open",
- ".gen": "folder-generator-open",
- "_gen": "folder-generator-open",
- "-gen": "folder-generator-open",
- "__gen__": "folder-generator-open",
- "gens": "folder-generator-open",
- ".gens": "folder-generator-open",
- "_gens": "folder-generator-open",
- "-gens": "folder-generator-open",
- "__gens__": "folder-generator-open",
- "auto": "folder-generator-open",
- ".auto": "folder-generator-open",
- "_auto": "folder-generator-open",
- "-auto": "folder-generator-open",
- "__auto__": "folder-generator-open",
- "hook": "folder-hook-open",
- ".hook": "folder-hook-open",
- "_hook": "folder-hook-open",
- "-hook": "folder-hook-open",
- "__hook__": "folder-hook-open",
- "hooks": "folder-hook-open",
- ".hooks": "folder-hook-open",
- "_hooks": "folder-hook-open",
- "-hooks": "folder-hook-open",
- "__hooks__": "folder-hook-open",
- "trigger": "folder-trigger-open",
- ".trigger": "folder-trigger-open",
- "_trigger": "folder-trigger-open",
- "-trigger": "folder-trigger-open",
- "__trigger__": "folder-trigger-open",
- "triggers": "folder-trigger-open",
- ".triggers": "folder-trigger-open",
- "_triggers": "folder-trigger-open",
- "-triggers": "folder-trigger-open",
- "__triggers__": "folder-trigger-open",
- "job": "folder-job-open",
- ".job": "folder-job-open",
- "_job": "folder-job-open",
- "-job": "folder-job-open",
- "__job__": "folder-job-open",
- "jobs": "folder-job-open",
- ".jobs": "folder-job-open",
- "_jobs": "folder-job-open",
- "-jobs": "folder-job-open",
- "__jobs__": "folder-job-open",
- "key": "folder-keys-open",
- ".key": "folder-keys-open",
- "_key": "folder-keys-open",
- "-key": "folder-keys-open",
- "__key__": "folder-keys-open",
- "keys": "folder-keys-open",
- ".keys": "folder-keys-open",
- "_keys": "folder-keys-open",
- "-keys": "folder-keys-open",
- "__keys__": "folder-keys-open",
- "token": "folder-keys-open",
- ".token": "folder-keys-open",
- "_token": "folder-keys-open",
- "-token": "folder-keys-open",
- "__token__": "folder-keys-open",
- "tokens": "folder-keys-open",
- ".tokens": "folder-keys-open",
- "_tokens": "folder-keys-open",
- "-tokens": "folder-keys-open",
- "__tokens__": "folder-keys-open",
- "jwt": "folder-keys-open",
- ".jwt": "folder-keys-open",
- "_jwt": "folder-keys-open",
- "-jwt": "folder-keys-open",
- "__jwt__": "folder-keys-open",
- "secret": "folder-keys-open",
- ".secret": "folder-keys-open",
- "_secret": "folder-keys-open",
- "-secret": "folder-keys-open",
- "__secret__": "folder-keys-open",
- "secrets": "folder-keys-open",
- ".secrets": "folder-keys-open",
- "_secrets": "folder-keys-open",
- "-secrets": "folder-keys-open",
- "__secrets__": "folder-keys-open",
- "layout": "folder-layout-open",
- ".layout": "folder-layout-open",
- "_layout": "folder-layout-open",
- "-layout": "folder-layout-open",
- "__layout__": "folder-layout-open",
- "layouts": "folder-layout-open",
- ".layouts": "folder-layout-open",
- "_layouts": "folder-layout-open",
- "-layouts": "folder-layout-open",
- "__layouts__": "folder-layout-open",
- "mail": "folder-mail-open",
- ".mail": "folder-mail-open",
- "_mail": "folder-mail-open",
- "-mail": "folder-mail-open",
- "__mail__": "folder-mail-open",
- "mails": "folder-mail-open",
- ".mails": "folder-mail-open",
- "_mails": "folder-mail-open",
- "-mails": "folder-mail-open",
- "__mails__": "folder-mail-open",
- "email": "folder-mail-open",
- ".email": "folder-mail-open",
- "_email": "folder-mail-open",
- "-email": "folder-mail-open",
- "__email__": "folder-mail-open",
- "emails": "folder-mail-open",
- ".emails": "folder-mail-open",
- "_emails": "folder-mail-open",
- "-emails": "folder-mail-open",
- "__emails__": "folder-mail-open",
- "smtp": "folder-mail-open",
- ".smtp": "folder-mail-open",
- "_smtp": "folder-mail-open",
- "-smtp": "folder-mail-open",
- "__smtp__": "folder-mail-open",
- "mailers": "folder-mail-open",
- ".mailers": "folder-mail-open",
- "_mailers": "folder-mail-open",
- "-mailers": "folder-mail-open",
- "__mailers__": "folder-mail-open",
- "mappings": "folder-mappings-open",
- ".mappings": "folder-mappings-open",
- "_mappings": "folder-mappings-open",
- "-mappings": "folder-mappings-open",
- "__mappings__": "folder-mappings-open",
- "mapping": "folder-mappings-open",
- ".mapping": "folder-mappings-open",
- "_mapping": "folder-mappings-open",
- "-mapping": "folder-mappings-open",
- "__mapping__": "folder-mappings-open",
- "meta": "folder-meta-open",
- ".meta": "folder-meta-open",
- "_meta": "folder-meta-open",
- "-meta": "folder-meta-open",
- "__meta__": "folder-meta-open",
- "metadata": "folder-meta-open",
- ".metadata": "folder-meta-open",
- "_metadata": "folder-meta-open",
- "-metadata": "folder-meta-open",
- "__metadata__": "folder-meta-open",
- "changesets": "folder-changesets-open",
- ".changesets": "folder-changesets-open",
- "_changesets": "folder-changesets-open",
- "-changesets": "folder-changesets-open",
- "__changesets__": "folder-changesets-open",
- "changeset": "folder-changesets-open",
- ".changeset": "folder-changesets-open",
- "_changeset": "folder-changesets-open",
- "-changeset": "folder-changesets-open",
- "__changeset__": "folder-changesets-open",
- "package": "folder-packages-open",
- ".package": "folder-packages-open",
- "_package": "folder-packages-open",
- "-package": "folder-packages-open",
- "__package__": "folder-packages-open",
- "packages": "folder-packages-open",
- ".packages": "folder-packages-open",
- "_packages": "folder-packages-open",
- "-packages": "folder-packages-open",
- "__packages__": "folder-packages-open",
- "pkg": "folder-packages-open",
- ".pkg": "folder-packages-open",
- "_pkg": "folder-packages-open",
- "-pkg": "folder-packages-open",
- "__pkg__": "folder-packages-open",
- "pkgs": "folder-packages-open",
- ".pkgs": "folder-packages-open",
- "_pkgs": "folder-packages-open",
- "-pkgs": "folder-packages-open",
- "__pkgs__": "folder-packages-open",
- "serverpackages": "folder-packages-open",
- ".serverpackages": "folder-packages-open",
- "_serverpackages": "folder-packages-open",
- "-serverpackages": "folder-packages-open",
- "__serverpackages__": "folder-packages-open",
- "devpackages": "folder-packages-open",
- ".devpackages": "folder-packages-open",
- "_devpackages": "folder-packages-open",
- "-devpackages": "folder-packages-open",
- "__devpackages__": "folder-packages-open",
- "dependencies": "folder-packages-open",
- ".dependencies": "folder-packages-open",
- "_dependencies": "folder-packages-open",
- "-dependencies": "folder-packages-open",
- "__dependencies__": "folder-packages-open",
- "shared": "folder-shared-open",
- ".shared": "folder-shared-open",
- "_shared": "folder-shared-open",
- "-shared": "folder-shared-open",
- "__shared__": "folder-shared-open",
- "common": "folder-shared-open",
- ".common": "folder-shared-open",
- "_common": "folder-shared-open",
- "-common": "folder-shared-open",
- "__common__": "folder-shared-open",
- "glsl": "folder-shader-open",
- ".glsl": "folder-shader-open",
- "_glsl": "folder-shader-open",
- "-glsl": "folder-shader-open",
- "__glsl__": "folder-shader-open",
- "hlsl": "folder-shader-open",
- ".hlsl": "folder-shader-open",
- "_hlsl": "folder-shader-open",
- "-hlsl": "folder-shader-open",
- "__hlsl__": "folder-shader-open",
- "shader": "folder-shader-open",
- ".shader": "folder-shader-open",
- "_shader": "folder-shader-open",
- "-shader": "folder-shader-open",
- "__shader__": "folder-shader-open",
- "shaders": "folder-shader-open",
- ".shaders": "folder-shader-open",
- "_shaders": "folder-shader-open",
- "-shaders": "folder-shader-open",
- "__shaders__": "folder-shader-open",
- "stack": "folder-stack-open",
- ".stack": "folder-stack-open",
- "_stack": "folder-stack-open",
- "-stack": "folder-stack-open",
- "__stack__": "folder-stack-open",
- "stacks": "folder-stack-open",
- ".stacks": "folder-stack-open",
- "_stacks": "folder-stack-open",
- "-stacks": "folder-stack-open",
- "__stacks__": "folder-stack-open",
- "template": "folder-template-open",
- ".template": "folder-template-open",
- "_template": "folder-template-open",
- "-template": "folder-template-open",
- "__template__": "folder-template-open",
- "templates": "folder-template-open",
- ".templates": "folder-template-open",
- "_templates": "folder-template-open",
- "-templates": "folder-template-open",
- "__templates__": "folder-template-open",
- "github/ISSUE_TEMPLATE": "folder-template-open",
- ".github/ISSUE_TEMPLATE": "folder-template-open",
- "_github/ISSUE_TEMPLATE": "folder-template-open",
- "-github/ISSUE_TEMPLATE": "folder-template-open",
- "__github/ISSUE_TEMPLATE__": "folder-template-open",
- "github/PULL_REQUEST_TEMPLATE": "folder-template-open",
- ".github/PULL_REQUEST_TEMPLATE": "folder-template-open",
- "_github/PULL_REQUEST_TEMPLATE": "folder-template-open",
- "-github/PULL_REQUEST_TEMPLATE": "folder-template-open",
- "__github/PULL_REQUEST_TEMPLATE__": "folder-template-open",
- "util": "folder-utils-open",
- ".util": "folder-utils-open",
- "_util": "folder-utils-open",
- "-util": "folder-utils-open",
- "__util__": "folder-utils-open",
- "utils": "folder-utils-open",
- ".utils": "folder-utils-open",
- "_utils": "folder-utils-open",
- "-utils": "folder-utils-open",
- "__utils__": "folder-utils-open",
- "utility": "folder-utils-open",
- ".utility": "folder-utils-open",
- "_utility": "folder-utils-open",
- "-utility": "folder-utils-open",
- "__utility__": "folder-utils-open",
- "utilities": "folder-utils-open",
- ".utilities": "folder-utils-open",
- "_utilities": "folder-utils-open",
- "-utilities": "folder-utils-open",
- "__utilities__": "folder-utils-open",
- "supabase": "folder-supabase-open",
- ".supabase": "folder-supabase-open",
- "_supabase": "folder-supabase-open",
- "-supabase": "folder-supabase-open",
- "__supabase__": "folder-supabase-open",
- "private": "folder-private-open",
- ".private": "folder-private-open",
- "_private": "folder-private-open",
- "-private": "folder-private-open",
- "__private__": "folder-private-open",
- "linux": "folder-linux-open",
- ".linux": "folder-linux-open",
- "_linux": "folder-linux-open",
- "-linux": "folder-linux-open",
- "__linux__": "folder-linux-open",
- "linuxbsd": "folder-linux-open",
- ".linuxbsd": "folder-linux-open",
- "_linuxbsd": "folder-linux-open",
- "-linuxbsd": "folder-linux-open",
- "__linuxbsd__": "folder-linux-open",
- "unix": "folder-linux-open",
- ".unix": "folder-linux-open",
- "_unix": "folder-linux-open",
- "-unix": "folder-linux-open",
- "__unix__": "folder-linux-open",
- "wsl": "folder-linux-open",
- ".wsl": "folder-linux-open",
- "_wsl": "folder-linux-open",
- "-wsl": "folder-linux-open",
- "__wsl__": "folder-linux-open",
- "ubuntu": "folder-linux-open",
- ".ubuntu": "folder-linux-open",
- "_ubuntu": "folder-linux-open",
- "-ubuntu": "folder-linux-open",
- "__ubuntu__": "folder-linux-open",
- "deb": "folder-linux-open",
- ".deb": "folder-linux-open",
- "_deb": "folder-linux-open",
- "-deb": "folder-linux-open",
- "__deb__": "folder-linux-open",
- "debian": "folder-linux-open",
- ".debian": "folder-linux-open",
- "_debian": "folder-linux-open",
- "-debian": "folder-linux-open",
- "__debian__": "folder-linux-open",
- "deepin": "folder-linux-open",
- ".deepin": "folder-linux-open",
- "_deepin": "folder-linux-open",
- "-deepin": "folder-linux-open",
- "__deepin__": "folder-linux-open",
- "centos": "folder-linux-open",
- ".centos": "folder-linux-open",
- "_centos": "folder-linux-open",
- "-centos": "folder-linux-open",
- "__centos__": "folder-linux-open",
- "popos": "folder-linux-open",
- ".popos": "folder-linux-open",
- "_popos": "folder-linux-open",
- "-popos": "folder-linux-open",
- "__popos__": "folder-linux-open",
- "mint": "folder-linux-open",
- ".mint": "folder-linux-open",
- "_mint": "folder-linux-open",
- "-mint": "folder-linux-open",
- "__mint__": "folder-linux-open",
- "windows": "folder-windows-open",
- ".windows": "folder-windows-open",
- "_windows": "folder-windows-open",
- "-windows": "folder-windows-open",
- "__windows__": "folder-windows-open",
- "win": "folder-windows-open",
- ".win": "folder-windows-open",
- "_win": "folder-windows-open",
- "-win": "folder-windows-open",
- "__win__": "folder-windows-open",
- "win32": "folder-windows-open",
- ".win32": "folder-windows-open",
- "_win32": "folder-windows-open",
- "-win32": "folder-windows-open",
- "__win32__": "folder-windows-open",
- "windows11": "folder-windows-open",
- ".windows11": "folder-windows-open",
- "_windows11": "folder-windows-open",
- "-windows11": "folder-windows-open",
- "__windows11__": "folder-windows-open",
- "windows10": "folder-windows-open",
- ".windows10": "folder-windows-open",
- "_windows10": "folder-windows-open",
- "-windows10": "folder-windows-open",
- "__windows10__": "folder-windows-open",
- "windowsxp": "folder-windows-open",
- ".windowsxp": "folder-windows-open",
- "_windowsxp": "folder-windows-open",
- "-windowsxp": "folder-windows-open",
- "__windowsxp__": "folder-windows-open",
- "windowsnt": "folder-windows-open",
- ".windowsnt": "folder-windows-open",
- "_windowsnt": "folder-windows-open",
- "-windowsnt": "folder-windows-open",
- "__windowsnt__": "folder-windows-open",
- "win11": "folder-windows-open",
- ".win11": "folder-windows-open",
- "_win11": "folder-windows-open",
- "-win11": "folder-windows-open",
- "__win11__": "folder-windows-open",
- "win10": "folder-windows-open",
- ".win10": "folder-windows-open",
- "_win10": "folder-windows-open",
- "-win10": "folder-windows-open",
- "__win10__": "folder-windows-open",
- "winxp": "folder-windows-open",
- ".winxp": "folder-windows-open",
- "_winxp": "folder-windows-open",
- "-winxp": "folder-windows-open",
- "__winxp__": "folder-windows-open",
- "winnt": "folder-windows-open",
- ".winnt": "folder-windows-open",
- "_winnt": "folder-windows-open",
- "-winnt": "folder-windows-open",
- "__winnt__": "folder-windows-open",
- "macos": "folder-macos-open",
- ".macos": "folder-macos-open",
- "_macos": "folder-macos-open",
- "-macos": "folder-macos-open",
- "__macos__": "folder-macos-open",
- "mac": "folder-macos-open",
- ".mac": "folder-macos-open",
- "_mac": "folder-macos-open",
- "-mac": "folder-macos-open",
- "__mac__": "folder-macos-open",
- "osx": "folder-macos-open",
- ".osx": "folder-macos-open",
- "_osx": "folder-macos-open",
- "-osx": "folder-macos-open",
- "__osx__": "folder-macos-open",
- "DS_Store": "folder-macos-open",
- ".DS_Store": "folder-macos-open",
- "_DS_Store": "folder-macos-open",
- "-DS_Store": "folder-macos-open",
- "__DS_Store__": "folder-macos-open",
- "iPhone": "folder-macos-open",
- ".iPhone": "folder-macos-open",
- "_iPhone": "folder-macos-open",
- "-iPhone": "folder-macos-open",
- "__iPhone__": "folder-macos-open",
- "iPad": "folder-macos-open",
- ".iPad": "folder-macos-open",
- "_iPad": "folder-macos-open",
- "-iPad": "folder-macos-open",
- "__iPad__": "folder-macos-open",
- "iPod": "folder-macos-open",
- ".iPod": "folder-macos-open",
- "_iPod": "folder-macos-open",
- "-iPod": "folder-macos-open",
- "__iPod__": "folder-macos-open",
- "macbook": "folder-macos-open",
- ".macbook": "folder-macos-open",
- "_macbook": "folder-macos-open",
- "-macbook": "folder-macos-open",
- "__macbook__": "folder-macos-open",
- "macbook-air": "folder-macos-open",
- ".macbook-air": "folder-macos-open",
- "_macbook-air": "folder-macos-open",
- "-macbook-air": "folder-macos-open",
- "__macbook-air__": "folder-macos-open",
- "macosx": "folder-macos-open",
- ".macosx": "folder-macos-open",
- "_macosx": "folder-macos-open",
- "-macosx": "folder-macos-open",
- "__macosx__": "folder-macos-open",
- "apple": "folder-macos-open",
- ".apple": "folder-macos-open",
- "_apple": "folder-macos-open",
- "-apple": "folder-macos-open",
- "__apple__": "folder-macos-open",
- "error": "folder-error-open",
- ".error": "folder-error-open",
- "_error": "folder-error-open",
- "-error": "folder-error-open",
- "__error__": "folder-error-open",
- "errors": "folder-error-open",
- ".errors": "folder-error-open",
- "_errors": "folder-error-open",
- "-errors": "folder-error-open",
- "__errors__": "folder-error-open",
- "err": "folder-error-open",
- ".err": "folder-error-open",
- "_err": "folder-error-open",
- "-err": "folder-error-open",
- "__err__": "folder-error-open",
- "errs": "folder-error-open",
- ".errs": "folder-error-open",
- "_errs": "folder-error-open",
- "-errs": "folder-error-open",
- "__errs__": "folder-error-open",
- "crash": "folder-error-open",
- ".crash": "folder-error-open",
- "_crash": "folder-error-open",
- "-crash": "folder-error-open",
- "__crash__": "folder-error-open",
- "crashes": "folder-error-open",
- ".crashes": "folder-error-open",
- "_crashes": "folder-error-open",
- "-crashes": "folder-error-open",
- "__crashes__": "folder-error-open",
- "event": "folder-event-open",
- ".event": "folder-event-open",
- "_event": "folder-event-open",
- "-event": "folder-event-open",
- "__event__": "folder-event-open",
- "events": "folder-event-open",
- ".events": "folder-event-open",
- "_events": "folder-event-open",
- "-events": "folder-event-open",
- "__events__": "folder-event-open",
- "auth": "folder-secure-open",
- ".auth": "folder-secure-open",
- "_auth": "folder-secure-open",
- "-auth": "folder-secure-open",
- "__auth__": "folder-secure-open",
- "authentication": "folder-secure-open",
- ".authentication": "folder-secure-open",
- "_authentication": "folder-secure-open",
- "-authentication": "folder-secure-open",
- "__authentication__": "folder-secure-open",
- "secure": "folder-secure-open",
- ".secure": "folder-secure-open",
- "_secure": "folder-secure-open",
- "-secure": "folder-secure-open",
- "__secure__": "folder-secure-open",
- "security": "folder-secure-open",
- ".security": "folder-secure-open",
- "_security": "folder-secure-open",
- "-security": "folder-secure-open",
- "__security__": "folder-secure-open",
- "cert": "folder-secure-open",
- ".cert": "folder-secure-open",
- "_cert": "folder-secure-open",
- "-cert": "folder-secure-open",
- "__cert__": "folder-secure-open",
- "certs": "folder-secure-open",
- ".certs": "folder-secure-open",
- "_certs": "folder-secure-open",
- "-certs": "folder-secure-open",
- "__certs__": "folder-secure-open",
- "certificate": "folder-secure-open",
- ".certificate": "folder-secure-open",
- "_certificate": "folder-secure-open",
- "-certificate": "folder-secure-open",
- "__certificate__": "folder-secure-open",
- "certificates": "folder-secure-open",
- ".certificates": "folder-secure-open",
- "_certificates": "folder-secure-open",
- "-certificates": "folder-secure-open",
- "__certificates__": "folder-secure-open",
- "ssl": "folder-secure-open",
- ".ssl": "folder-secure-open",
- "_ssl": "folder-secure-open",
- "-ssl": "folder-secure-open",
- "__ssl__": "folder-secure-open",
- "cipher": "folder-secure-open",
- ".cipher": "folder-secure-open",
- "_cipher": "folder-secure-open",
- "-cipher": "folder-secure-open",
- "__cipher__": "folder-secure-open",
- "cypher": "folder-secure-open",
- ".cypher": "folder-secure-open",
- "_cypher": "folder-secure-open",
- "-cypher": "folder-secure-open",
- "__cypher__": "folder-secure-open",
- "tls": "folder-secure-open",
- ".tls": "folder-secure-open",
- "_tls": "folder-secure-open",
- "-tls": "folder-secure-open",
- "__tls__": "folder-secure-open",
- "custom": "folder-custom-open",
- ".custom": "folder-custom-open",
- "_custom": "folder-custom-open",
- "-custom": "folder-custom-open",
- "__custom__": "folder-custom-open",
- "customs": "folder-custom-open",
- ".customs": "folder-custom-open",
- "_customs": "folder-custom-open",
- "-customs": "folder-custom-open",
- "__customs__": "folder-custom-open",
- "draft": "folder-mock-open",
- ".draft": "folder-mock-open",
- "_draft": "folder-mock-open",
- "-draft": "folder-mock-open",
- "__draft__": "folder-mock-open",
- "drafts": "folder-mock-open",
- ".drafts": "folder-mock-open",
- "_drafts": "folder-mock-open",
- "-drafts": "folder-mock-open",
- "__drafts__": "folder-mock-open",
- "mock": "folder-mock-open",
- ".mock": "folder-mock-open",
- "_mock": "folder-mock-open",
- "-mock": "folder-mock-open",
- "__mock__": "folder-mock-open",
- "mocks": "folder-mock-open",
- ".mocks": "folder-mock-open",
- "_mocks": "folder-mock-open",
- "-mocks": "folder-mock-open",
- "__mocks__": "folder-mock-open",
- "fixture": "folder-mock-open",
- ".fixture": "folder-mock-open",
- "_fixture": "folder-mock-open",
- "-fixture": "folder-mock-open",
- "__fixture__": "folder-mock-open",
- "fixtures": "folder-mock-open",
- ".fixtures": "folder-mock-open",
- "_fixtures": "folder-mock-open",
- "-fixtures": "folder-mock-open",
- "__fixtures__": "folder-mock-open",
- "concept": "folder-mock-open",
- ".concept": "folder-mock-open",
- "_concept": "folder-mock-open",
- "-concept": "folder-mock-open",
- "__concept__": "folder-mock-open",
- "concepts": "folder-mock-open",
- ".concepts": "folder-mock-open",
- "_concepts": "folder-mock-open",
- "-concepts": "folder-mock-open",
- "__concepts__": "folder-mock-open",
- "sketch": "folder-mock-open",
- ".sketch": "folder-mock-open",
- "_sketch": "folder-mock-open",
- "-sketch": "folder-mock-open",
- "__sketch__": "folder-mock-open",
- "sketches": "folder-mock-open",
- ".sketches": "folder-mock-open",
- "_sketches": "folder-mock-open",
- "-sketches": "folder-mock-open",
- "__sketches__": "folder-mock-open",
- "syntax": "folder-syntax-open",
- ".syntax": "folder-syntax-open",
- "_syntax": "folder-syntax-open",
- "-syntax": "folder-syntax-open",
- "__syntax__": "folder-syntax-open",
- "syntaxes": "folder-syntax-open",
- ".syntaxes": "folder-syntax-open",
- "_syntaxes": "folder-syntax-open",
- "-syntaxes": "folder-syntax-open",
- "__syntaxes__": "folder-syntax-open",
- "spellcheck": "folder-syntax-open",
- ".spellcheck": "folder-syntax-open",
- "_spellcheck": "folder-syntax-open",
- "-spellcheck": "folder-syntax-open",
- "__spellcheck__": "folder-syntax-open",
- "spellcheckers": "folder-syntax-open",
- ".spellcheckers": "folder-syntax-open",
- "_spellcheckers": "folder-syntax-open",
- "-spellcheckers": "folder-syntax-open",
- "__spellcheckers__": "folder-syntax-open",
- "vm": "folder-vm-open",
- ".vm": "folder-vm-open",
- "_vm": "folder-vm-open",
- "-vm": "folder-vm-open",
- "__vm__": "folder-vm-open",
- "vms": "folder-vm-open",
- ".vms": "folder-vm-open",
- "_vms": "folder-vm-open",
- "-vms": "folder-vm-open",
- "__vms__": "folder-vm-open",
- "stylus": "folder-stylus-open",
- ".stylus": "folder-stylus-open",
- "_stylus": "folder-stylus-open",
- "-stylus": "folder-stylus-open",
- "__stylus__": "folder-stylus-open",
- "flow-typed": "folder-flow-open",
- ".flow-typed": "folder-flow-open",
- "_flow-typed": "folder-flow-open",
- "-flow-typed": "folder-flow-open",
- "__flow-typed__": "folder-flow-open",
- "rule": "folder-rules-open",
- ".rule": "folder-rules-open",
- "_rule": "folder-rules-open",
- "-rule": "folder-rules-open",
- "__rule__": "folder-rules-open",
- "rules": "folder-rules-open",
- ".rules": "folder-rules-open",
- "_rules": "folder-rules-open",
- "-rules": "folder-rules-open",
- "__rules__": "folder-rules-open",
- "validation": "folder-rules-open",
- ".validation": "folder-rules-open",
- "_validation": "folder-rules-open",
- "-validation": "folder-rules-open",
- "__validation__": "folder-rules-open",
- "validations": "folder-rules-open",
- ".validations": "folder-rules-open",
- "_validations": "folder-rules-open",
- "-validations": "folder-rules-open",
- "__validations__": "folder-rules-open",
- "validator": "folder-rules-open",
- ".validator": "folder-rules-open",
- "_validator": "folder-rules-open",
- "-validator": "folder-rules-open",
- "__validator__": "folder-rules-open",
- "validators": "folder-rules-open",
- ".validators": "folder-rules-open",
- "_validators": "folder-rules-open",
- "-validators": "folder-rules-open",
- "__validators__": "folder-rules-open",
- "review": "folder-review-open",
- ".review": "folder-review-open",
- "_review": "folder-review-open",
- "-review": "folder-review-open",
- "__review__": "folder-review-open",
- "reviews": "folder-review-open",
- ".reviews": "folder-review-open",
- "_reviews": "folder-review-open",
- "-reviews": "folder-review-open",
- "__reviews__": "folder-review-open",
- "revisal": "folder-review-open",
- ".revisal": "folder-review-open",
- "_revisal": "folder-review-open",
- "-revisal": "folder-review-open",
- "__revisal__": "folder-review-open",
- "revisals": "folder-review-open",
- ".revisals": "folder-review-open",
- "_revisals": "folder-review-open",
- "-revisals": "folder-review-open",
- "__revisals__": "folder-review-open",
- "reviewed": "folder-review-open",
- ".reviewed": "folder-review-open",
- "_reviewed": "folder-review-open",
- "-reviewed": "folder-review-open",
- "__reviewed__": "folder-review-open",
- "preview": "folder-review-open",
- ".preview": "folder-review-open",
- "_preview": "folder-review-open",
- "-preview": "folder-review-open",
- "__preview__": "folder-review-open",
- "previews": "folder-review-open",
- ".previews": "folder-review-open",
- "_previews": "folder-review-open",
- "-previews": "folder-review-open",
- "__previews__": "folder-review-open",
- "anim": "folder-animation-open",
- ".anim": "folder-animation-open",
- "_anim": "folder-animation-open",
- "-anim": "folder-animation-open",
- "__anim__": "folder-animation-open",
- "anims": "folder-animation-open",
- ".anims": "folder-animation-open",
- "_anims": "folder-animation-open",
- "-anims": "folder-animation-open",
- "__anims__": "folder-animation-open",
- "animation": "folder-animation-open",
- ".animation": "folder-animation-open",
- "_animation": "folder-animation-open",
- "-animation": "folder-animation-open",
- "__animation__": "folder-animation-open",
- "animations": "folder-animation-open",
- ".animations": "folder-animation-open",
- "_animations": "folder-animation-open",
- "-animations": "folder-animation-open",
- "__animations__": "folder-animation-open",
- "animated": "folder-animation-open",
- ".animated": "folder-animation-open",
- "_animated": "folder-animation-open",
- "-animated": "folder-animation-open",
- "__animated__": "folder-animation-open",
- "motion": "folder-animation-open",
- ".motion": "folder-animation-open",
- "_motion": "folder-animation-open",
- "-motion": "folder-animation-open",
- "__motion__": "folder-animation-open",
- "motions": "folder-animation-open",
- ".motions": "folder-animation-open",
- "_motions": "folder-animation-open",
- "-motions": "folder-animation-open",
- "__motions__": "folder-animation-open",
- "transition": "folder-animation-open",
- ".transition": "folder-animation-open",
- "_transition": "folder-animation-open",
- "-transition": "folder-animation-open",
- "__transition__": "folder-animation-open",
- "transitions": "folder-animation-open",
- ".transitions": "folder-animation-open",
- "_transitions": "folder-animation-open",
- "-transitions": "folder-animation-open",
- "__transitions__": "folder-animation-open",
- "easing": "folder-animation-open",
- ".easing": "folder-animation-open",
- "_easing": "folder-animation-open",
- "-easing": "folder-animation-open",
- "__easing__": "folder-animation-open",
- "easings": "folder-animation-open",
- ".easings": "folder-animation-open",
- "_easings": "folder-animation-open",
- "-easings": "folder-animation-open",
- "__easings__": "folder-animation-open",
- "guard": "folder-guard-open",
- ".guard": "folder-guard-open",
- "_guard": "folder-guard-open",
- "-guard": "folder-guard-open",
- "__guard__": "folder-guard-open",
- "guards": "folder-guard-open",
- ".guards": "folder-guard-open",
- "_guards": "folder-guard-open",
- "-guards": "folder-guard-open",
- "__guards__": "folder-guard-open",
- "prisma": "folder-prisma-open",
- ".prisma": "folder-prisma-open",
- "_prisma": "folder-prisma-open",
- "-prisma": "folder-prisma-open",
- "__prisma__": "folder-prisma-open",
- "prisma/schema": "folder-prisma-open",
- ".prisma/schema": "folder-prisma-open",
- "_prisma/schema": "folder-prisma-open",
- "-prisma/schema": "folder-prisma-open",
- "__prisma/schema__": "folder-prisma-open",
- "pipe": "folder-pipe-open",
- ".pipe": "folder-pipe-open",
- "_pipe": "folder-pipe-open",
- "-pipe": "folder-pipe-open",
- "__pipe__": "folder-pipe-open",
- "pipes": "folder-pipe-open",
- ".pipes": "folder-pipe-open",
- "_pipes": "folder-pipe-open",
- "-pipes": "folder-pipe-open",
- "__pipes__": "folder-pipe-open",
- "pipeline": "folder-pipe-open",
- ".pipeline": "folder-pipe-open",
- "_pipeline": "folder-pipe-open",
- "-pipeline": "folder-pipe-open",
- "__pipeline__": "folder-pipe-open",
- "pipelines": "folder-pipe-open",
- ".pipelines": "folder-pipe-open",
- "_pipelines": "folder-pipe-open",
- "-pipelines": "folder-pipe-open",
- "__pipelines__": "folder-pipe-open",
- "interceptor": "folder-interceptor-open",
- ".interceptor": "folder-interceptor-open",
- "_interceptor": "folder-interceptor-open",
- "-interceptor": "folder-interceptor-open",
- "__interceptor__": "folder-interceptor-open",
- "interceptors": "folder-interceptor-open",
- ".interceptors": "folder-interceptor-open",
- "_interceptors": "folder-interceptor-open",
- "-interceptors": "folder-interceptor-open",
- "__interceptors__": "folder-interceptor-open",
- "svg": "folder-svg-open",
- ".svg": "folder-svg-open",
- "_svg": "folder-svg-open",
- "-svg": "folder-svg-open",
- "__svg__": "folder-svg-open",
- "svgs": "folder-svg-open",
- ".svgs": "folder-svg-open",
- "_svgs": "folder-svg-open",
- "-svgs": "folder-svg-open",
- "__svgs__": "folder-svg-open",
- "vector": "folder-svg-open",
- ".vector": "folder-svg-open",
- "_vector": "folder-svg-open",
- "-vector": "folder-svg-open",
- "__vector__": "folder-svg-open",
- "vectors": "folder-svg-open",
- ".vectors": "folder-svg-open",
- "_vectors": "folder-svg-open",
- "-vectors": "folder-svg-open",
- "__vectors__": "folder-svg-open",
- "nuxt": "folder-nuxt-open",
- ".nuxt": "folder-nuxt-open",
- "_nuxt": "folder-nuxt-open",
- "-nuxt": "folder-nuxt-open",
- "__nuxt__": "folder-nuxt-open",
- "terraform": "folder-terraform-open",
- ".terraform": "folder-terraform-open",
- "_terraform": "folder-terraform-open",
- "-terraform": "folder-terraform-open",
- "__terraform__": "folder-terraform-open",
- "mobile": "folder-mobile-open",
- ".mobile": "folder-mobile-open",
- "_mobile": "folder-mobile-open",
- "-mobile": "folder-mobile-open",
- "__mobile__": "folder-mobile-open",
- "mobiles": "folder-mobile-open",
- ".mobiles": "folder-mobile-open",
- "_mobiles": "folder-mobile-open",
- "-mobiles": "folder-mobile-open",
- "__mobiles__": "folder-mobile-open",
- "portable": "folder-mobile-open",
- ".portable": "folder-mobile-open",
- "_portable": "folder-mobile-open",
- "-portable": "folder-mobile-open",
- "__portable__": "folder-mobile-open",
- "portability": "folder-mobile-open",
- ".portability": "folder-mobile-open",
- "_portability": "folder-mobile-open",
- "-portability": "folder-mobile-open",
- "__portability__": "folder-mobile-open",
- "phone": "folder-mobile-open",
- ".phone": "folder-mobile-open",
- "_phone": "folder-mobile-open",
- "-phone": "folder-mobile-open",
- "__phone__": "folder-mobile-open",
- "phones": "folder-mobile-open",
- ".phones": "folder-mobile-open",
- "_phones": "folder-mobile-open",
- "-phones": "folder-mobile-open",
- "__phones__": "folder-mobile-open",
- "stencil": "folder-stencil-open",
- ".stencil": "folder-stencil-open",
- "_stencil": "folder-stencil-open",
- "-stencil": "folder-stencil-open",
- "__stencil__": "folder-stencil-open",
- "firebase": "folder-firebase-open",
- ".firebase": "folder-firebase-open",
- "_firebase": "folder-firebase-open",
- "-firebase": "folder-firebase-open",
- "__firebase__": "folder-firebase-open",
- "firestore": "folder-firestore-open",
- ".firestore": "folder-firestore-open",
- "_firestore": "folder-firestore-open",
- "-firestore": "folder-firestore-open",
- "__firestore__": "folder-firestore-open",
- "cloud-firestore": "folder-firestore-open",
- ".cloud-firestore": "folder-firestore-open",
- "_cloud-firestore": "folder-firestore-open",
- "-cloud-firestore": "folder-firestore-open",
- "__cloud-firestore__": "folder-firestore-open",
- "firebase-firestore": "folder-firestore-open",
- ".firebase-firestore": "folder-firestore-open",
- "_firebase-firestore": "folder-firestore-open",
- "-firebase-firestore": "folder-firestore-open",
- "__firebase-firestore__": "folder-firestore-open",
- "cloud-functions": "folder-cloud-functions-open",
- ".cloud-functions": "folder-cloud-functions-open",
- "_cloud-functions": "folder-cloud-functions-open",
- "-cloud-functions": "folder-cloud-functions-open",
- "__cloud-functions__": "folder-cloud-functions-open",
- "cloudfunctions": "folder-cloud-functions-open",
- ".cloudfunctions": "folder-cloud-functions-open",
- "_cloudfunctions": "folder-cloud-functions-open",
- "-cloudfunctions": "folder-cloud-functions-open",
- "__cloudfunctions__": "folder-cloud-functions-open",
- "firebase-cloud-functions": "folder-cloud-functions-open",
- ".firebase-cloud-functions": "folder-cloud-functions-open",
- "_firebase-cloud-functions": "folder-cloud-functions-open",
- "-firebase-cloud-functions": "folder-cloud-functions-open",
- "__firebase-cloud-functions__": "folder-cloud-functions-open",
- "firebase-cloudfunctions": "folder-cloud-functions-open",
- ".firebase-cloudfunctions": "folder-cloud-functions-open",
- "_firebase-cloudfunctions": "folder-cloud-functions-open",
- "-firebase-cloudfunctions": "folder-cloud-functions-open",
- "__firebase-cloudfunctions__": "folder-cloud-functions-open",
- "svelte": "folder-svelte-open",
- ".svelte": "folder-svelte-open",
- "_svelte": "folder-svelte-open",
- "-svelte": "folder-svelte-open",
- "__svelte__": "folder-svelte-open",
- "svelte-kit": "folder-svelte-open",
- ".svelte-kit": "folder-svelte-open",
- "_svelte-kit": "folder-svelte-open",
- "-svelte-kit": "folder-svelte-open",
- "__svelte-kit__": "folder-svelte-open",
- "update": "folder-update-open",
- ".update": "folder-update-open",
- "_update": "folder-update-open",
- "-update": "folder-update-open",
- "__update__": "folder-update-open",
- "updates": "folder-update-open",
- ".updates": "folder-update-open",
- "_updates": "folder-update-open",
- "-updates": "folder-update-open",
- "__updates__": "folder-update-open",
- "upgrade": "folder-update-open",
- ".upgrade": "folder-update-open",
- "_upgrade": "folder-update-open",
- "-upgrade": "folder-update-open",
- "__upgrade__": "folder-update-open",
- "upgrades": "folder-update-open",
- ".upgrades": "folder-update-open",
- "_upgrades": "folder-update-open",
- "-upgrades": "folder-update-open",
- "__upgrades__": "folder-update-open",
- "idea": "folder-intellij-open",
- ".idea": "folder-intellij-open",
- "_idea": "folder-intellij-open",
- "-idea": "folder-intellij-open",
- "__idea__": "folder-intellij-open",
- "azure-pipelines": "folder-azure-pipelines-open",
- ".azure-pipelines": "folder-azure-pipelines-open",
- "_azure-pipelines": "folder-azure-pipelines-open",
- "-azure-pipelines": "folder-azure-pipelines-open",
- "__azure-pipelines__": "folder-azure-pipelines-open",
- "azure-pipelines-ci": "folder-azure-pipelines-open",
- ".azure-pipelines-ci": "folder-azure-pipelines-open",
- "_azure-pipelines-ci": "folder-azure-pipelines-open",
- "-azure-pipelines-ci": "folder-azure-pipelines-open",
- "__azure-pipelines-ci__": "folder-azure-pipelines-open",
- "mjml": "folder-mjml-open",
- ".mjml": "folder-mjml-open",
- "_mjml": "folder-mjml-open",
- "-mjml": "folder-mjml-open",
- "__mjml__": "folder-mjml-open",
- "admin": "folder-admin-open",
- ".admin": "folder-admin-open",
- "_admin": "folder-admin-open",
- "-admin": "folder-admin-open",
- "__admin__": "folder-admin-open",
- "admins": "folder-admin-open",
- ".admins": "folder-admin-open",
- "_admins": "folder-admin-open",
- "-admins": "folder-admin-open",
- "__admins__": "folder-admin-open",
- "manager": "folder-admin-open",
- ".manager": "folder-admin-open",
- "_manager": "folder-admin-open",
- "-manager": "folder-admin-open",
- "__manager__": "folder-admin-open",
- "managers": "folder-admin-open",
- ".managers": "folder-admin-open",
- "_managers": "folder-admin-open",
- "-managers": "folder-admin-open",
- "__managers__": "folder-admin-open",
- "moderator": "folder-admin-open",
- ".moderator": "folder-admin-open",
- "_moderator": "folder-admin-open",
- "-moderator": "folder-admin-open",
- "__moderator__": "folder-admin-open",
- "moderators": "folder-admin-open",
- ".moderators": "folder-admin-open",
- "_moderators": "folder-admin-open",
- "-moderators": "folder-admin-open",
- "__moderators__": "folder-admin-open",
- "jupyter": "folder-jupyter-open",
- ".jupyter": "folder-jupyter-open",
- "_jupyter": "folder-jupyter-open",
- "-jupyter": "folder-jupyter-open",
- "__jupyter__": "folder-jupyter-open",
- "notebook": "folder-jupyter-open",
- ".notebook": "folder-jupyter-open",
- "_notebook": "folder-jupyter-open",
- "-notebook": "folder-jupyter-open",
- "__notebook__": "folder-jupyter-open",
- "notebooks": "folder-jupyter-open",
- ".notebooks": "folder-jupyter-open",
- "_notebooks": "folder-jupyter-open",
- "-notebooks": "folder-jupyter-open",
- "__notebooks__": "folder-jupyter-open",
- "ipynb": "folder-jupyter-open",
- ".ipynb": "folder-jupyter-open",
- "_ipynb": "folder-jupyter-open",
- "-ipynb": "folder-jupyter-open",
- "__ipynb__": "folder-jupyter-open",
- "scala": "folder-scala-open",
- ".scala": "folder-scala-open",
- "_scala": "folder-scala-open",
- "-scala": "folder-scala-open",
- "__scala__": "folder-scala-open",
- "connection": "folder-connection-open",
- ".connection": "folder-connection-open",
- "_connection": "folder-connection-open",
- "-connection": "folder-connection-open",
- "__connection__": "folder-connection-open",
- "connections": "folder-connection-open",
- ".connections": "folder-connection-open",
- "_connections": "folder-connection-open",
- "-connections": "folder-connection-open",
- "__connections__": "folder-connection-open",
- "integration": "folder-connection-open",
- ".integration": "folder-connection-open",
- "_integration": "folder-connection-open",
- "-integration": "folder-connection-open",
- "__integration__": "folder-connection-open",
- "integrations": "folder-connection-open",
- ".integrations": "folder-connection-open",
- "_integrations": "folder-connection-open",
- "-integrations": "folder-connection-open",
- "__integrations__": "folder-connection-open",
- "remote": "folder-connection-open",
- ".remote": "folder-connection-open",
- "_remote": "folder-connection-open",
- "-remote": "folder-connection-open",
- "__remote__": "folder-connection-open",
- "remotes": "folder-connection-open",
- ".remotes": "folder-connection-open",
- "_remotes": "folder-connection-open",
- "-remotes": "folder-connection-open",
- "__remotes__": "folder-connection-open",
- "quasar": "folder-quasar-open",
- ".quasar": "folder-quasar-open",
- "_quasar": "folder-quasar-open",
- "-quasar": "folder-quasar-open",
- "__quasar__": "folder-quasar-open",
- "next": "folder-next-open",
- ".next": "folder-next-open",
- "_next": "folder-next-open",
- "-next": "folder-next-open",
- "__next__": "folder-next-open",
- "dal": "folder-dal-open",
- ".dal": "folder-dal-open",
- "_dal": "folder-dal-open",
- "-dal": "folder-dal-open",
- "__dal__": "folder-dal-open",
- "data-access": "folder-dal-open",
- ".data-access": "folder-dal-open",
- "_data-access": "folder-dal-open",
- "-data-access": "folder-dal-open",
- "__data-access__": "folder-dal-open",
- "data-access-layer": "folder-dal-open",
- ".data-access-layer": "folder-dal-open",
- "_data-access-layer": "folder-dal-open",
- "-data-access-layer": "folder-dal-open",
- "__data-access-layer__": "folder-dal-open",
- "cobol": "folder-cobol-open",
- ".cobol": "folder-cobol-open",
- "_cobol": "folder-cobol-open",
- "-cobol": "folder-cobol-open",
- "__cobol__": "folder-cobol-open",
- "yarn": "folder-yarn-open",
- ".yarn": "folder-yarn-open",
- "_yarn": "folder-yarn-open",
- "-yarn": "folder-yarn-open",
- "__yarn__": "folder-yarn-open",
- "husky": "folder-husky-open",
- ".husky": "folder-husky-open",
- "_husky": "folder-husky-open",
- "-husky": "folder-husky-open",
- "__husky__": "folder-husky-open",
- "storybook": "folder-storybook-open",
- ".storybook": "folder-storybook-open",
- "_storybook": "folder-storybook-open",
- "-storybook": "folder-storybook-open",
- "__storybook__": "folder-storybook-open",
- "stories": "folder-storybook-open",
- ".stories": "folder-storybook-open",
- "_stories": "folder-storybook-open",
- "-stories": "folder-storybook-open",
- "__stories__": "folder-storybook-open",
- "base": "folder-base-open",
- ".base": "folder-base-open",
- "_base": "folder-base-open",
- "-base": "folder-base-open",
- "__base__": "folder-base-open",
- "bases": "folder-base-open",
- ".bases": "folder-base-open",
- "_bases": "folder-base-open",
- "-bases": "folder-base-open",
- "__bases__": "folder-base-open",
- "cart": "folder-cart-open",
- ".cart": "folder-cart-open",
- "_cart": "folder-cart-open",
- "-cart": "folder-cart-open",
- "__cart__": "folder-cart-open",
- "shopping-cart": "folder-cart-open",
- ".shopping-cart": "folder-cart-open",
- "_shopping-cart": "folder-cart-open",
- "-shopping-cart": "folder-cart-open",
- "__shopping-cart__": "folder-cart-open",
- "shopping": "folder-cart-open",
- ".shopping": "folder-cart-open",
- "_shopping": "folder-cart-open",
- "-shopping": "folder-cart-open",
- "__shopping__": "folder-cart-open",
- "shop": "folder-cart-open",
- ".shop": "folder-cart-open",
- "_shop": "folder-cart-open",
- "-shop": "folder-cart-open",
- "__shop__": "folder-cart-open",
- "home": "folder-home-open",
- ".home": "folder-home-open",
- "_home": "folder-home-open",
- "-home": "folder-home-open",
- "__home__": "folder-home-open",
- "start": "folder-home-open",
- ".start": "folder-home-open",
- "_start": "folder-home-open",
- "-start": "folder-home-open",
- "__start__": "folder-home-open",
- "main": "folder-home-open",
- ".main": "folder-home-open",
- "_main": "folder-home-open",
- "-main": "folder-home-open",
- "__main__": "folder-home-open",
- "landing": "folder-home-open",
- ".landing": "folder-home-open",
- "_landing": "folder-home-open",
- "-landing": "folder-home-open",
- "__landing__": "folder-home-open",
- "project": "folder-project-open",
- ".project": "folder-project-open",
- "_project": "folder-project-open",
- "-project": "folder-project-open",
- "__project__": "folder-project-open",
- "projects": "folder-project-open",
- ".projects": "folder-project-open",
- "_projects": "folder-project-open",
- "-projects": "folder-project-open",
- "__projects__": "folder-project-open",
- "proj": "folder-project-open",
- ".proj": "folder-project-open",
- "_proj": "folder-project-open",
- "-proj": "folder-project-open",
- "__proj__": "folder-project-open",
- "projs": "folder-project-open",
- ".projs": "folder-project-open",
- "_projs": "folder-project-open",
- "-projs": "folder-project-open",
- "__projs__": "folder-project-open",
- "prompt": "folder-prompts-open",
- ".prompt": "folder-prompts-open",
- "_prompt": "folder-prompts-open",
- "-prompt": "folder-prompts-open",
- "__prompt__": "folder-prompts-open",
- "prompts": "folder-prompts-open",
- ".prompts": "folder-prompts-open",
- "_prompts": "folder-prompts-open",
- "-prompts": "folder-prompts-open",
- "__prompts__": "folder-prompts-open",
- "interface": "folder-interface-open",
- ".interface": "folder-interface-open",
- "_interface": "folder-interface-open",
- "-interface": "folder-interface-open",
- "__interface__": "folder-interface-open",
- "interfaces": "folder-interface-open",
- ".interfaces": "folder-interface-open",
- "_interfaces": "folder-interface-open",
- "-interfaces": "folder-interface-open",
- "__interfaces__": "folder-interface-open",
- "netlify": "folder-netlify-open",
- ".netlify": "folder-netlify-open",
- "_netlify": "folder-netlify-open",
- "-netlify": "folder-netlify-open",
- "__netlify__": "folder-netlify-open",
- "enum": "folder-enum-open",
- ".enum": "folder-enum-open",
- "_enum": "folder-enum-open",
- "-enum": "folder-enum-open",
- "__enum__": "folder-enum-open",
- "enums": "folder-enum-open",
- ".enums": "folder-enum-open",
- "_enums": "folder-enum-open",
- "-enums": "folder-enum-open",
- "__enums__": "folder-enum-open",
- "pact": "folder-contract-open",
- ".pact": "folder-contract-open",
- "_pact": "folder-contract-open",
- "-pact": "folder-contract-open",
- "__pact__": "folder-contract-open",
- "pacts": "folder-contract-open",
- ".pacts": "folder-contract-open",
- "_pacts": "folder-contract-open",
- "-pacts": "folder-contract-open",
- "__pacts__": "folder-contract-open",
- "contract": "folder-contract-open",
- ".contract": "folder-contract-open",
- "_contract": "folder-contract-open",
- "-contract": "folder-contract-open",
- "__contract__": "folder-contract-open",
- "contracts": "folder-contract-open",
- ".contracts": "folder-contract-open",
- "_contracts": "folder-contract-open",
- "-contracts": "folder-contract-open",
- "__contracts__": "folder-contract-open",
- "contract-testing": "folder-contract-open",
- ".contract-testing": "folder-contract-open",
- "_contract-testing": "folder-contract-open",
- "-contract-testing": "folder-contract-open",
- "__contract-testing__": "folder-contract-open",
- "contract-test": "folder-contract-open",
- ".contract-test": "folder-contract-open",
- "_contract-test": "folder-contract-open",
- "-contract-test": "folder-contract-open",
- "__contract-test__": "folder-contract-open",
- "contract-tests": "folder-contract-open",
- ".contract-tests": "folder-contract-open",
- "_contract-tests": "folder-contract-open",
- "-contract-tests": "folder-contract-open",
- "__contract-tests__": "folder-contract-open",
- "helm": "folder-helm-open",
- ".helm": "folder-helm-open",
- "_helm": "folder-helm-open",
- "-helm": "folder-helm-open",
- "__helm__": "folder-helm-open",
- "helmchart": "folder-helm-open",
- ".helmchart": "folder-helm-open",
- "_helmchart": "folder-helm-open",
- "-helmchart": "folder-helm-open",
- "__helmchart__": "folder-helm-open",
- "helmcharts": "folder-helm-open",
- ".helmcharts": "folder-helm-open",
- "_helmcharts": "folder-helm-open",
- "-helmcharts": "folder-helm-open",
- "__helmcharts__": "folder-helm-open",
- "queue": "folder-queue-open",
- ".queue": "folder-queue-open",
- "_queue": "folder-queue-open",
- "-queue": "folder-queue-open",
- "__queue__": "folder-queue-open",
- "queues": "folder-queue-open",
- ".queues": "folder-queue-open",
- "_queues": "folder-queue-open",
- "-queues": "folder-queue-open",
- "__queues__": "folder-queue-open",
- "bull": "folder-queue-open",
- ".bull": "folder-queue-open",
- "_bull": "folder-queue-open",
- "-bull": "folder-queue-open",
- "__bull__": "folder-queue-open",
- "mq": "folder-queue-open",
- ".mq": "folder-queue-open",
- "_mq": "folder-queue-open",
- "-mq": "folder-queue-open",
- "__mq__": "folder-queue-open",
- "vercel": "folder-vercel-open",
- ".vercel": "folder-vercel-open",
- "_vercel": "folder-vercel-open",
- "-vercel": "folder-vercel-open",
- "__vercel__": "folder-vercel-open",
- "now": "folder-vercel-open",
- ".now": "folder-vercel-open",
- "_now": "folder-vercel-open",
- "-now": "folder-vercel-open",
- "__now__": "folder-vercel-open",
- "cypress": "folder-cypress-open",
- ".cypress": "folder-cypress-open",
- "_cypress": "folder-cypress-open",
- "-cypress": "folder-cypress-open",
- "__cypress__": "folder-cypress-open",
- "decorator": "folder-decorators-open",
- ".decorator": "folder-decorators-open",
- "_decorator": "folder-decorators-open",
- "-decorator": "folder-decorators-open",
- "__decorator__": "folder-decorators-open",
- "decorators": "folder-decorators-open",
- ".decorators": "folder-decorators-open",
- "_decorators": "folder-decorators-open",
- "-decorators": "folder-decorators-open",
- "__decorators__": "folder-decorators-open",
- "java": "folder-java-open",
- ".java": "folder-java-open",
- "_java": "folder-java-open",
- "-java": "folder-java-open",
- "__java__": "folder-java-open",
- "resolver": "folder-resolver-open",
- ".resolver": "folder-resolver-open",
- "_resolver": "folder-resolver-open",
- "-resolver": "folder-resolver-open",
- "__resolver__": "folder-resolver-open",
- "resolvers": "folder-resolver-open",
- ".resolvers": "folder-resolver-open",
- "_resolvers": "folder-resolver-open",
- "-resolvers": "folder-resolver-open",
- "__resolvers__": "folder-resolver-open",
- "angular": "folder-angular-open",
- ".angular": "folder-angular-open",
- "_angular": "folder-angular-open",
- "-angular": "folder-angular-open",
- "__angular__": "folder-angular-open",
- "unity": "folder-unity-open",
- ".unity": "folder-unity-open",
- "_unity": "folder-unity-open",
- "-unity": "folder-unity-open",
- "__unity__": "folder-unity-open",
- "pdf": "folder-pdf-open",
- ".pdf": "folder-pdf-open",
- "_pdf": "folder-pdf-open",
- "-pdf": "folder-pdf-open",
- "__pdf__": "folder-pdf-open",
- "pdfs": "folder-pdf-open",
- ".pdfs": "folder-pdf-open",
- "_pdfs": "folder-pdf-open",
- "-pdfs": "folder-pdf-open",
- "__pdfs__": "folder-pdf-open",
- "protobuf": "folder-proto-open",
- ".protobuf": "folder-proto-open",
- "_protobuf": "folder-proto-open",
- "-protobuf": "folder-proto-open",
- "__protobuf__": "folder-proto-open",
- "protobufs": "folder-proto-open",
- ".protobufs": "folder-proto-open",
- "_protobufs": "folder-proto-open",
- "-protobufs": "folder-proto-open",
- "__protobufs__": "folder-proto-open",
- "proto": "folder-proto-open",
- ".proto": "folder-proto-open",
- "_proto": "folder-proto-open",
- "-proto": "folder-proto-open",
- "protos": "folder-proto-open",
- ".protos": "folder-proto-open",
- "_protos": "folder-proto-open",
- "-protos": "folder-proto-open",
- "__protos__": "folder-proto-open",
- "plastic": "folder-plastic-open",
- ".plastic": "folder-plastic-open",
- "_plastic": "folder-plastic-open",
- "-plastic": "folder-plastic-open",
- "__plastic__": "folder-plastic-open",
- "gamemaker": "folder-gamemaker-open",
- ".gamemaker": "folder-gamemaker-open",
- "_gamemaker": "folder-gamemaker-open",
- "-gamemaker": "folder-gamemaker-open",
- "__gamemaker__": "folder-gamemaker-open",
- "gamemaker2": "folder-gamemaker-open",
- ".gamemaker2": "folder-gamemaker-open",
- "_gamemaker2": "folder-gamemaker-open",
- "-gamemaker2": "folder-gamemaker-open",
- "__gamemaker2__": "folder-gamemaker-open",
- "hg": "folder-mercurial-open",
- ".hg": "folder-mercurial-open",
- "_hg": "folder-mercurial-open",
- "-hg": "folder-mercurial-open",
- "__hg__": "folder-mercurial-open",
- "hghooks": "folder-mercurial-open",
- ".hghooks": "folder-mercurial-open",
- "_hghooks": "folder-mercurial-open",
- "-hghooks": "folder-mercurial-open",
- "__hghooks__": "folder-mercurial-open",
- "hgext": "folder-mercurial-open",
- ".hgext": "folder-mercurial-open",
- "_hgext": "folder-mercurial-open",
- "-hgext": "folder-mercurial-open",
- "__hgext__": "folder-mercurial-open",
- "godot": "folder-godot-open",
- ".godot": "folder-godot-open",
- "_godot": "folder-godot-open",
- "-godot": "folder-godot-open",
- "__godot__": "folder-godot-open",
- "godot-cpp": "folder-godot-open",
- ".godot-cpp": "folder-godot-open",
- "_godot-cpp": "folder-godot-open",
- "-godot-cpp": "folder-godot-open",
- "__godot-cpp__": "folder-godot-open",
- "lottie": "folder-lottie-open",
- ".lottie": "folder-lottie-open",
- "_lottie": "folder-lottie-open",
- "-lottie": "folder-lottie-open",
- "__lottie__": "folder-lottie-open",
- "lotties": "folder-lottie-open",
- ".lotties": "folder-lottie-open",
- "_lotties": "folder-lottie-open",
- "-lotties": "folder-lottie-open",
- "__lotties__": "folder-lottie-open",
- "lottiefiles": "folder-lottie-open",
- ".lottiefiles": "folder-lottie-open",
- "_lottiefiles": "folder-lottie-open",
- "-lottiefiles": "folder-lottie-open",
- "__lottiefiles__": "folder-lottie-open",
- "taskfile": "folder-taskfile-open",
- ".taskfile": "folder-taskfile-open",
- "_taskfile": "folder-taskfile-open",
- "-taskfile": "folder-taskfile-open",
- "__taskfile__": "folder-taskfile-open",
- "taskfiles": "folder-taskfile-open",
- ".taskfiles": "folder-taskfile-open",
- "_taskfiles": "folder-taskfile-open",
- "-taskfiles": "folder-taskfile-open",
- "__taskfiles__": "folder-taskfile-open",
- "drizzle": "folder-drizzle-open",
- ".drizzle": "folder-drizzle-open",
- "_drizzle": "folder-drizzle-open",
- "-drizzle": "folder-drizzle-open",
- "__drizzle__": "folder-drizzle-open",
- "cloudflare": "folder-cloudflare-open",
- ".cloudflare": "folder-cloudflare-open",
- "_cloudflare": "folder-cloudflare-open",
- "-cloudflare": "folder-cloudflare-open",
- "__cloudflare__": "folder-cloudflare-open",
- "seeds": "folder-seeders-open",
- ".seeds": "folder-seeders-open",
- "_seeds": "folder-seeders-open",
- "-seeds": "folder-seeders-open",
- "__seeds__": "folder-seeders-open",
- "seeders": "folder-seeders-open",
- ".seeders": "folder-seeders-open",
- "_seeders": "folder-seeders-open",
- "-seeders": "folder-seeders-open",
- "__seeders__": "folder-seeders-open",
- "seed": "folder-seeders-open",
- ".seed": "folder-seeders-open",
- "_seed": "folder-seeders-open",
- "-seed": "folder-seeders-open",
- "__seed__": "folder-seeders-open",
- "seeding": "folder-seeders-open",
- ".seeding": "folder-seeders-open",
- "_seeding": "folder-seeders-open",
- "-seeding": "folder-seeders-open",
- "__seeding__": "folder-seeders-open",
- "store": "folder-store-open",
- ".store": "folder-store-open",
- "_store": "folder-store-open",
- "-store": "folder-store-open",
- "__store__": "folder-store-open",
- "stores": "folder-store-open",
- ".stores": "folder-store-open",
- "_stores": "folder-store-open",
- "-stores": "folder-store-open",
- "__stores__": "folder-store-open",
- "bicep": "folder-bicep-open",
- ".bicep": "folder-bicep-open",
- "_bicep": "folder-bicep-open",
- "-bicep": "folder-bicep-open",
- "__bicep__": "folder-bicep-open",
- "snap": "folder-snapcraft-open",
- ".snap": "folder-snapcraft-open",
- "_snap": "folder-snapcraft-open",
- "-snap": "folder-snapcraft-open",
- "__snap__": "folder-snapcraft-open",
- "snapcraft": "folder-snapcraft-open",
- ".snapcraft": "folder-snapcraft-open",
- "_snapcraft": "folder-snapcraft-open",
- "-snapcraft": "folder-snapcraft-open",
- "__snapcraft__": "folder-snapcraft-open",
- "dev": "folder-development-open",
- ".dev": "folder-development-open",
- "_dev": "folder-development-open",
- "-dev": "folder-development-open",
- "__dev__": "folder-development-open",
- "development": "folder-development-open",
- ".development": "folder-development-open",
- "_development": "folder-development-open",
- "-development": "folder-development-open",
- "__development__": "folder-development-open",
- "flutter": "folder-flutter-open",
- ".flutter": "folder-flutter-open",
- "_flutter": "folder-flutter-open",
- "-flutter": "folder-flutter-open",
- "__flutter__": "folder-flutter-open",
- "snippet": "folder-snippet-open",
- ".snippet": "folder-snippet-open",
- "_snippet": "folder-snippet-open",
- "-snippet": "folder-snippet-open",
- "__snippet__": "folder-snippet-open",
- "snippets": "folder-snippet-open",
- ".snippets": "folder-snippet-open",
- "_snippets": "folder-snippet-open",
- "-snippets": "folder-snippet-open",
- "__snippets__": "folder-snippet-open",
- "element": "folder-element-open",
- ".element": "folder-element-open",
- "_element": "folder-element-open",
- "-element": "folder-element-open",
- "__element__": "folder-element-open",
- "elements": "folder-element-open",
- ".elements": "folder-element-open",
- "_elements": "folder-element-open",
- "-elements": "folder-element-open",
- "__elements__": "folder-element-open",
- "src-tauri": "folder-src-tauri-open",
- ".src-tauri": "folder-src-tauri-open",
- "_src-tauri": "folder-src-tauri-open",
- "-src-tauri": "folder-src-tauri-open",
- "__src-tauri__": "folder-src-tauri-open",
- "favicon": "folder-favicon-open",
- ".favicon": "folder-favicon-open",
- "_favicon": "folder-favicon-open",
- "-favicon": "folder-favicon-open",
- "__favicon__": "folder-favicon-open",
- "favicons": "folder-favicon-open",
- ".favicons": "folder-favicon-open",
- "_favicons": "folder-favicon-open",
- "-favicons": "folder-favicon-open",
- "__favicons__": "folder-favicon-open",
- "feature": "folder-features-open",
- ".feature": "folder-features-open",
- "_feature": "folder-features-open",
- "-feature": "folder-features-open",
- "__feature__": "folder-features-open",
- "features": "folder-features-open",
- ".features": "folder-features-open",
- "_features": "folder-features-open",
- "-features": "folder-features-open",
- "__features__": "folder-features-open",
- "feat": "folder-features-open",
- ".feat": "folder-features-open",
- "_feat": "folder-features-open",
- "-feat": "folder-features-open",
- "__feat__": "folder-features-open",
- "feats": "folder-features-open",
- ".feats": "folder-features-open",
- "_feats": "folder-features-open",
- "-feats": "folder-features-open",
- "__feats__": "folder-features-open",
- "lefthook": "folder-lefthook-open",
- ".lefthook": "folder-lefthook-open",
- "_lefthook": "folder-lefthook-open",
- "-lefthook": "folder-lefthook-open",
- "__lefthook__": "folder-lefthook-open",
- "lefthook-local": "folder-lefthook-open",
- ".lefthook-local": "folder-lefthook-open",
- "_lefthook-local": "folder-lefthook-open",
- "-lefthook-local": "folder-lefthook-open",
- "__lefthook-local__": "folder-lefthook-open",
- "bloc": "folder-bloc-open",
- ".bloc": "folder-bloc-open",
- "_bloc": "folder-bloc-open",
- "-bloc": "folder-bloc-open",
- "__bloc__": "folder-bloc-open",
- "cubit": "folder-bloc-open",
- ".cubit": "folder-bloc-open",
- "_cubit": "folder-bloc-open",
- "-cubit": "folder-bloc-open",
- "__cubit__": "folder-bloc-open",
- "blocs": "folder-bloc-open",
- ".blocs": "folder-bloc-open",
- "_blocs": "folder-bloc-open",
- "-blocs": "folder-bloc-open",
- "__blocs__": "folder-bloc-open",
- "cubits": "folder-bloc-open",
- ".cubits": "folder-bloc-open",
- "_cubits": "folder-bloc-open",
- "-cubits": "folder-bloc-open",
- "__cubits__": "folder-bloc-open",
- "powershell": "folder-powershell-open",
- ".powershell": "folder-powershell-open",
- "_powershell": "folder-powershell-open",
- "-powershell": "folder-powershell-open",
- "__powershell__": "folder-powershell-open",
- "ps": "folder-powershell-open",
- ".ps": "folder-powershell-open",
- "_ps": "folder-powershell-open",
- "-ps": "folder-powershell-open",
- "__ps__": "folder-powershell-open",
- "ps1": "folder-powershell-open",
- ".ps1": "folder-powershell-open",
- "_ps1": "folder-powershell-open",
- "-ps1": "folder-powershell-open",
- "__ps1__": "folder-powershell-open",
- "repository": "folder-repository-open",
- ".repository": "folder-repository-open",
- "_repository": "folder-repository-open",
- "-repository": "folder-repository-open",
- "__repository__": "folder-repository-open",
- "repositories": "folder-repository-open",
- ".repositories": "folder-repository-open",
- "_repositories": "folder-repository-open",
- "-repositories": "folder-repository-open",
- "__repositories__": "folder-repository-open",
- "repo": "folder-repository-open",
- ".repo": "folder-repository-open",
- "_repo": "folder-repository-open",
- "-repo": "folder-repository-open",
- "__repo__": "folder-repository-open",
- "repos": "folder-repository-open",
- ".repos": "folder-repository-open",
- "_repos": "folder-repository-open",
- "-repos": "folder-repository-open",
- "__repos__": "folder-repository-open",
- "luau": "folder-luau-open",
- ".luau": "folder-luau-open",
- "_luau": "folder-luau-open",
- "-luau": "folder-luau-open",
- "__luau__": "folder-luau-open",
- "obsidian": "folder-obsidian-open",
- ".obsidian": "folder-obsidian-open",
- "_obsidian": "folder-obsidian-open",
- "-obsidian": "folder-obsidian-open",
- "__obsidian__": "folder-obsidian-open",
- "trash": "folder-trash-open",
- ".trash": "folder-trash-open",
- "_trash": "folder-trash-open",
- "-trash": "folder-trash-open",
- "__trash__": "folder-trash-open",
- "cline_docs": "folder-cline-open",
- ".cline_docs": "folder-cline-open",
- "_cline_docs": "folder-cline-open",
- "-cline_docs": "folder-cline-open",
- "__cline_docs__": "folder-cline-open",
- "liquibase": "folder-liquibase-open",
- ".liquibase": "folder-liquibase-open",
- "_liquibase": "folder-liquibase-open",
- "-liquibase": "folder-liquibase-open",
- "__liquibase__": "folder-liquibase-open",
- "dart": "folder-dart-open",
- ".dart": "folder-dart-open",
- "_dart": "folder-dart-open",
- "-dart": "folder-dart-open",
- "__dart__": "folder-dart-open",
- "dart_tool": "folder-dart-open",
- ".dart_tool": "folder-dart-open",
- "_dart_tool": "folder-dart-open",
- "-dart_tool": "folder-dart-open",
- "__dart_tool__": "folder-dart-open",
- "dart_tools": "folder-dart-open",
- ".dart_tools": "folder-dart-open",
- "_dart_tools": "folder-dart-open",
- "-dart_tools": "folder-dart-open",
- "__dart_tools__": "folder-dart-open",
- "zeabur": "folder-zeabur-open",
- ".zeabur": "folder-zeabur-open",
- "_zeabur": "folder-zeabur-open",
- "-zeabur": "folder-zeabur-open",
- "__zeabur__": "folder-zeabur-open",
- "kusto": "folder-kusto-open",
- ".kusto": "folder-kusto-open",
- "_kusto": "folder-kusto-open",
- "-kusto": "folder-kusto-open",
- "__kusto__": "folder-kusto-open",
- "kql": "folder-kusto-open",
- ".kql": "folder-kusto-open",
- "_kql": "folder-kusto-open",
- "-kql": "folder-kusto-open",
- "__kql__": "folder-kusto-open",
- "policy": "folder-policy-open",
- ".policy": "folder-policy-open",
- "_policy": "folder-policy-open",
- "-policy": "folder-policy-open",
- "__policy__": "folder-policy-open",
- "policies": "folder-policy-open",
- ".policies": "folder-policy-open",
- "_policies": "folder-policy-open",
- "-policies": "folder-policy-open",
- "__policies__": "folder-policy-open",
- "attachment": "folder-attachment-open",
- ".attachment": "folder-attachment-open",
- "_attachment": "folder-attachment-open",
- "-attachment": "folder-attachment-open",
- "__attachment__": "folder-attachment-open",
- "attachments": "folder-attachment-open",
- ".attachments": "folder-attachment-open",
- "_attachments": "folder-attachment-open",
- "-attachments": "folder-attachment-open",
- "__attachments__": "folder-attachment-open",
- "bibliography": "folder-bibliography-open",
- ".bibliography": "folder-bibliography-open",
- "_bibliography": "folder-bibliography-open",
- "-bibliography": "folder-bibliography-open",
- "__bibliography__": "folder-bibliography-open",
- "bibliographies": "folder-bibliography-open",
- ".bibliographies": "folder-bibliography-open",
- "_bibliographies": "folder-bibliography-open",
- "-bibliographies": "folder-bibliography-open",
- "__bibliographies__": "folder-bibliography-open",
- "book": "folder-bibliography-open",
- ".book": "folder-bibliography-open",
- "_book": "folder-bibliography-open",
- "-book": "folder-bibliography-open",
- "__book__": "folder-bibliography-open",
- "books": "folder-bibliography-open",
- ".books": "folder-bibliography-open",
- "_books": "folder-bibliography-open",
- "-books": "folder-bibliography-open",
- "__books__": "folder-bibliography-open",
- "link": "folder-link-open",
- ".link": "folder-link-open",
- "_link": "folder-link-open",
- "-link": "folder-link-open",
- "__link__": "folder-link-open",
- "links": "folder-link-open",
- ".links": "folder-link-open",
- "_links": "folder-link-open",
- "-links": "folder-link-open",
- "__links__": "folder-link-open",
- "pytorch": "folder-pytorch-open",
- ".pytorch": "folder-pytorch-open",
- "_pytorch": "folder-pytorch-open",
- "-pytorch": "folder-pytorch-open",
- "__pytorch__": "folder-pytorch-open",
- "torch": "folder-pytorch-open",
- ".torch": "folder-pytorch-open",
- "_torch": "folder-pytorch-open",
- "-torch": "folder-pytorch-open",
- "__torch__": "folder-pytorch-open",
- "blender": "folder-blender-open",
- ".blender": "folder-blender-open",
- "_blender": "folder-blender-open",
- "-blender": "folder-blender-open",
- "__blender__": "folder-blender-open",
- "blender-assets": "folder-blender-open",
- ".blender-assets": "folder-blender-open",
- "_blender-assets": "folder-blender-open",
- "-blender-assets": "folder-blender-open",
- "__blender-assets__": "folder-blender-open",
- "blender-files": "folder-blender-open",
- ".blender-files": "folder-blender-open",
- "_blender-files": "folder-blender-open",
- "-blender-files": "folder-blender-open",
- "__blender-files__": "folder-blender-open",
- "blender-project": "folder-blender-open",
- ".blender-project": "folder-blender-open",
- "_blender-project": "folder-blender-open",
- "-blender-project": "folder-blender-open",
- "__blender-project__": "folder-blender-open",
- "blender-models": "folder-blender-open",
- ".blender-models": "folder-blender-open",
- "_blender-models": "folder-blender-open",
- "-blender-models": "folder-blender-open",
- "__blender-models__": "folder-blender-open",
- "atoms": "folder-atom-open",
- ".atoms": "folder-atom-open",
- "_atoms": "folder-atom-open",
- "-atoms": "folder-atom-open",
- "__atoms__": "folder-atom-open",
- "atom": "folder-atom-open",
- ".atom": "folder-atom-open",
- "_atom": "folder-atom-open",
- "-atom": "folder-atom-open",
- "__atom__": "folder-atom-open",
- "molecules": "folder-molecule-open",
- ".molecules": "folder-molecule-open",
- "_molecules": "folder-molecule-open",
- "-molecules": "folder-molecule-open",
- "__molecules__": "folder-molecule-open",
- "molecule": "folder-molecule-open",
- ".molecule": "folder-molecule-open",
- "_molecule": "folder-molecule-open",
- "-molecule": "folder-molecule-open",
- "__molecule__": "folder-molecule-open",
- "organisms": "folder-organism-open",
- ".organisms": "folder-organism-open",
- "_organisms": "folder-organism-open",
- "-organisms": "folder-organism-open",
- "__organisms__": "folder-organism-open",
- "organism": "folder-organism-open",
- ".organism": "folder-organism-open",
- "_organism": "folder-organism-open",
- "-organism": "folder-organism-open",
- "__organism__": "folder-organism-open",
- ".claude": "folder-claude-open",
- "..claude": "folder-claude-open",
- "_.claude": "folder-claude-open",
- "-.claude": "folder-claude-open",
- "__.claude__": "folder-claude-open",
- ".cursor": "folder-cursor-open",
- "..cursor": "folder-cursor-open",
- "_.cursor": "folder-cursor-open",
- "-.cursor": "folder-cursor-open",
- "__.cursor__": "folder-cursor-open",
- ".gemini": "folder-gemini-ai-open",
- "..gemini": "folder-gemini-ai-open",
- "_.gemini": "folder-gemini-ai-open",
- "-.gemini": "folder-gemini-ai-open",
- "__.gemini__": "folder-gemini-ai-open",
- "gemini": "folder-gemini-ai-open",
- "_gemini": "folder-gemini-ai-open",
- "-gemini": "folder-gemini-ai-open",
- "__gemini__": "folder-gemini-ai-open",
- "gemini-ai": "folder-gemini-ai-open",
- ".gemini-ai": "folder-gemini-ai-open",
- "_gemini-ai": "folder-gemini-ai-open",
- "-gemini-ai": "folder-gemini-ai-open",
- "__gemini-ai__": "folder-gemini-ai-open",
- "geminiai": "folder-gemini-ai-open",
- ".geminiai": "folder-gemini-ai-open",
- "_geminiai": "folder-gemini-ai-open",
- "-geminiai": "folder-gemini-ai-open",
- "__geminiai__": "folder-gemini-ai-open",
- "input": "folder-input-open",
- ".input": "folder-input-open",
- "_input": "folder-input-open",
- "-input": "folder-input-open",
- "__input__": "folder-input-open",
- "inputs": "folder-input-open",
- ".inputs": "folder-input-open",
- "_inputs": "folder-input-open",
- "-inputs": "folder-input-open",
- "__inputs__": "folder-input-open",
- "io": "folder-input-open",
- ".io": "folder-input-open",
- "_io": "folder-input-open",
- "-io": "folder-input-open",
- "__io__": "folder-input-open",
- "in": "folder-input-open",
- ".in": "folder-input-open",
- "_in": "folder-input-open",
- "-in": "folder-input-open",
- "__in__": "folder-input-open",
- "salt": "folder-salt-open",
- ".salt": "folder-salt-open",
- "_salt": "folder-salt-open",
- "-salt": "folder-salt-open",
- "__salt__": "folder-salt-open",
- "saltstack": "folder-salt-open",
- ".saltstack": "folder-salt-open",
- "_saltstack": "folder-salt-open",
- "-saltstack": "folder-salt-open",
- "__saltstack__": "folder-salt-open",
- "simulations": "folder-simulations-open",
- ".simulations": "folder-simulations-open",
- "_simulations": "folder-simulations-open",
- "-simulations": "folder-simulations-open",
- "__simulations__": "folder-simulations-open",
- "simulation": "folder-simulations-open",
- ".simulation": "folder-simulations-open",
- "_simulation": "folder-simulations-open",
- "-simulation": "folder-simulations-open",
- "__simulation__": "folder-simulations-open",
- "sim": "folder-simulations-open",
- ".sim": "folder-simulations-open",
- "_sim": "folder-simulations-open",
- "-sim": "folder-simulations-open",
- "__sim__": "folder-simulations-open",
- "sims": "folder-simulations-open",
- ".sims": "folder-simulations-open",
- "_sims": "folder-simulations-open",
- "-sims": "folder-simulations-open",
- "__sims__": "folder-simulations-open",
- "metro": "folder-metro-open",
- ".metro": "folder-metro-open",
- "_metro": "folder-metro-open",
- "-metro": "folder-metro-open",
- "__metro__": "folder-metro-open",
- "filter": "folder-filter-open",
- ".filter": "folder-filter-open",
- "_filter": "folder-filter-open",
- "-filter": "folder-filter-open",
- "__filter__": "folder-filter-open",
- "filters": "folder-filter-open",
- ".filters": "folder-filter-open",
- "_filters": "folder-filter-open",
- "-filters": "folder-filter-open",
- "__filters__": "folder-filter-open",
- "toc": "folder-toc-open",
- ".toc": "folder-toc-open",
- "_toc": "folder-toc-open",
- "-toc": "folder-toc-open",
- "__toc__": "folder-toc-open",
- "table-of-contents": "folder-toc-open",
- ".table-of-contents": "folder-toc-open",
- "_table-of-contents": "folder-toc-open",
- "-table-of-contents": "folder-toc-open",
- "__table-of-contents__": "folder-toc-open",
- "cue": "folder-cue-open",
- ".cue": "folder-cue-open",
- "_cue": "folder-cue-open",
- "-cue": "folder-cue-open",
- "__cue__": "folder-cue-open",
- "cues": "folder-cue-open",
- ".cues": "folder-cue-open",
- "_cues": "folder-cue-open",
- "-cues": "folder-cue-open",
- "__cues__": "folder-cue-open",
- "license": "folder-license-open",
- ".license": "folder-license-open",
- "_license": "folder-license-open",
- "-license": "folder-license-open",
- "__license__": "folder-license-open",
- "licenses": "folder-license-open",
- ".licenses": "folder-license-open",
- "_licenses": "folder-license-open",
- "-licenses": "folder-license-open",
- "__licenses__": "folder-license-open",
- "form": "folder-form-open",
- ".form": "folder-form-open",
- "_form": "folder-form-open",
- "-form": "folder-form-open",
- "__form__": "folder-form-open",
- "forms": "folder-form-open",
- ".forms": "folder-form-open",
- "_forms": "folder-form-open",
- "-forms": "folder-form-open",
- "__forms__": "folder-form-open",
- "deprecated": "folder-deprecated-open",
- ".deprecated": "folder-deprecated-open",
- "_deprecated": "folder-deprecated-open",
- "-deprecated": "folder-deprecated-open",
- "__deprecated__": "folder-deprecated-open",
- "scrap": "folder-scrap-open",
- ".scrap": "folder-scrap-open",
- "_scrap": "folder-scrap-open",
- "-scrap": "folder-scrap-open",
- "__scrap__": "folder-scrap-open",
- "skill": "folder-skills-open",
- ".skill": "folder-skills-open",
- "_skill": "folder-skills-open",
- "-skill": "folder-skills-open",
- "__skill__": "folder-skills-open",
- "skills": "folder-skills-open",
- ".skills": "folder-skills-open",
- "_skills": "folder-skills-open",
- "-skills": "folder-skills-open",
- "__skills__": "folder-skills-open",
- "instruction": "folder-instructions-open",
- ".instruction": "folder-instructions-open",
- "_instruction": "folder-instructions-open",
- "-instruction": "folder-instructions-open",
- "__instruction__": "folder-instructions-open",
- "instructions": "folder-instructions-open",
- ".instructions": "folder-instructions-open",
- "_instructions": "folder-instructions-open",
- "-instructions": "folder-instructions-open",
- "__instructions__": "folder-instructions-open"
- },
- "rootFolderNames": {},
- "rootFolderNamesExpanded": {},
- "fileExtensions": {
- "60": "slint",
- "htm": "html",
- "xhtml": "html",
- "html_vm": "html",
- "asp": "html",
- "jade": "pug",
- "pug": "pug",
- "md": "markdown",
- "markdown": "markdown",
- "rst": "markdown",
- "blink": "blink",
- "css": "css",
- "scss": "sass",
- "sass": "sass",
- "less": "less",
- "json": "json",
- "jsonc": "json",
- "tsbuildinfo": "json",
- "json5": "json",
- "jsonl": "json",
- "ndjson": "json",
- "schema.json": "json_schema",
- "hjson": "hjson",
- "jinja": "jinja",
- "jinja2": "jinja",
- "j2": "jinja",
- "jinja-html": "jinja",
- "proto": "proto",
- "prompt.md": "prompt",
- "prompts.md": "prompt",
- "sublime-project": "sublime",
- "sublime-workspace": "sublime",
- "slx": "simulink",
- "qmd": "quarto",
- "tw": "twine",
- "twee": "twine",
- "yml.dist": "yaml",
- "yaml.dist": "yaml",
- "yaml-tmlanguage": "yaml",
- "xml": "xml",
- "plist": "xml",
- "xsd": "xml",
- "dtd": "xml",
- "xsl": "xml",
- "xslt": "xml",
- "resx": "xml",
- "iml": "xml",
- "xquery": "xml",
- "tmlanguage": "xml",
- "manifest": "xml",
- "project": "xml",
- "xml.dist": "xml",
- "xml.dist.sample": "xml",
- "dmn": "xml",
- "jrxml": "xml",
- "xmp": "xml",
- "toml": "toml",
- "toon": "toon",
- "png": "image",
- "jpeg": "image",
- "jpg": "image",
- "gif": "image",
- "ico": "image",
- "tif": "image",
- "tiff": "image",
- "ami": "image",
- "apx": "image",
- "avif": "image",
- "bmp": "image",
- "bpg": "image",
- "brk": "image",
- "cur": "image",
- "dds": "image",
- "exr": "image",
- "fpx": "image",
- "gbr": "image",
- "img": "image",
- "jbig2": "image",
- "jb2": "image",
- "jng": "image",
- "jxr": "image",
- "pgf": "image",
- "pic": "image",
- "raw": "image",
- "webp": "image",
- "eps": "image",
- "afphoto": "image",
- "ase": "image",
- "aseprite": "image",
- "clip": "image",
- "cpt": "image",
- "heif": "image",
- "heic": "image",
- "kra": "image",
- "mdp": "image",
- "ora": "image",
- "pdn": "image",
- "reb": "image",
- "sai": "image",
- "tga": "image",
- "xcf": "image",
- "jfif": "image",
- "ppm": "image",
- "pbm": "image",
- "pgm": "image",
- "pnm": "image",
- "icns": "image",
- "3fr": "image",
- "ari": "image",
- "arw": "image",
- "bay": "image",
- "braw": "image",
- "crw": "image",
- "cr2": "image",
- "cr3": "image",
- "cap": "image",
- "data": "image",
- "dcs": "image",
- "dcr": "image",
- "dng": "image",
- "drf": "image",
- "eip": "image",
- "erf": "image",
- "fff": "image",
- "gpr": "image",
- "iiq": "image",
- "k25": "image",
- "kdc": "image",
- "mdc": "image",
- "mef": "image",
- "mos": "image",
- "mrw": "image",
- "nef": "image",
- "nrw": "image",
- "obm": "image",
- "orf": "image",
- "pef": "image",
- "ptx": "image",
- "pxn": "image",
- "r3d": "image",
- "raf": "image",
- "rwl": "image",
- "rw2": "image",
- "rwz": "image",
- "sr2": "image",
- "srf": "image",
- "srw": "image",
- "x3f": "image",
- "ktx": "image",
- "ktx2": "image",
- "pal": "palette",
- "gpl": "palette",
- "act": "palette",
- "esx": "javascript",
- "mjs": "javascript",
- "jsx": "react",
- "tsx": "react_ts",
- "routing.ts": "routing",
- "routing.tsx": "routing",
- "routing.js": "routing",
- "routing.jsx": "routing",
- "route.ts": "routing",
- "route.tsx": "routing",
- "route.js": "routing",
- "route.jsx": "routing",
- "routes.ts": "routing",
- "routes.tsx": "routing",
- "routes.js": "routing",
- "routes.jsx": "routing",
- "ini": "settings",
- "dlc": "settings",
- "config": "settings",
- "conf": "settings",
- "properties": "settings",
- "prop": "settings",
- "settings": "settings",
- "option": "settings",
- "props": "settings",
- "prefs": "settings",
- "sln.dotsettings": "settings",
- "sln.dotsettings.user": "settings",
- "cfg": "settings",
- "cnf": "settings",
- "tool-versions": "settings",
- "d.ts": "typescript-def",
- "d.cts": "typescript-def",
- "d.mts": "typescript-def",
- "d.ets": "typescript-def",
- "mdoc": "markdoc",
- "markdoc": "markdoc",
- "markdoc.md": "markdoc",
- "marko": "markojs",
- "astro": "astro",
- "pdf": "pdf",
- "xlsx": "table",
- "xlsm": "table",
- "xls": "table",
- "csv": "table",
- "tsv": "table",
- "psv": "table",
- "ods": "table",
- "vscodeignore": "vscode",
- "vsixmanifest": "vscode",
- "vsix": "vscode",
- "code-workplace": "vscode",
- "code-workspace": "vscode",
- "code-profile": "vscode",
- "code-snippets": "vscode",
- "csproj": "visualstudio",
- "ruleset": "visualstudio",
- "sln": "visualstudio",
- "slnf": "visualstudio",
- "slnx": "visualstudio",
- "suo": "visualstudio",
- "vb": "visualstudio",
- "vbs": "visualstudio",
- "vcxitems": "visualstudio",
- "vcxitems.filters": "visualstudio",
- "vcxproj": "visualstudio",
- "vcxproj.filters": "visualstudio",
- "wixproj": "visualstudio",
- "vcl": "varnish",
- "pdb": "database",
- "sql": "database",
- "pks": "database",
- "pkb": "database",
- "accdb": "database",
- "mdb": "database",
- "sqlite": "database",
- "sqlite3": "database",
- "pgsql": "database",
- "postgres": "database",
- "plpgsql": "database",
- "psql": "database",
- "db": "database",
- "db3": "database",
- "dblite": "database",
- "dblite3": "database",
- "debugsymbols": "database",
- "odb": "database",
- "accde": "database",
- "adp": "database",
- "bak": "database",
- "bdb": "database",
- "dbf": "database",
- "fdb": "database",
- "feather": "database",
- "gdb": "database",
- "ibd": "database",
- "mdf": "database",
- "mde": "database",
- "myd": "database",
- "myi": "database",
- "ndf": "database",
- "orc": "database",
- "parquet": "database",
- "sdf": "database",
- "ldf": "database",
- "frm": "database",
- "kdbx": "database",
- "kql": "kusto",
- "cs": "csharp",
- "csx": "csharp",
- "csharp": "csharp",
- "qs": "qsharp",
- "zip": "zip",
- "z": "zip",
- "tar": "zip",
- "gz": "zip",
- "xz": "zip",
- "lz": "zip",
- "liz": "zip",
- "lzma": "zip",
- "lzma2": "zip",
- "lz4": "zip",
- "lz5": "zip",
- "lzh": "zip",
- "lha": "zip",
- "br": "zip",
- "bz2": "zip",
- "bzip2": "zip",
- "gzip": "zip",
- "brotli": "zip",
- "7z": "zip",
- "001": "zip",
- "rar": "zip",
- "far": "zip",
- "tz": "zip",
- "taz": "zip",
- "tlz": "zip",
- "txz": "zip",
- "tgz": "zip",
- "tpz": "zip",
- "tbz": "zip",
- "tbz2": "zip",
- "zst": "zip",
- "zstd": "zip",
- "tzst": "zip",
- "tzstd": "zip",
- "cab": "zip",
- "cpio": "zip",
- "rpm": "zip",
- "deb": "zip",
- "arj": "zip",
- "wim": "zip",
- "swm": "zip",
- "esd": "zip",
- "fat": "zip",
- "xar": "zip",
- "ntfs": "zip",
- "hfs": "zip",
- "squashfs": "zip",
- "apfs": "zip",
- "vala": "vala",
- "zig": "zig",
- "zon": "zig",
- "exe": "exe",
- "msi": "exe",
- "dat": "hex",
- "bin": "hex",
- "hex": "hex",
- "java": "java",
- "jsp": "java",
- "jar": "jar",
- "class": "javaclass",
- "c3": "c3",
- "c": "c",
- "i": "c",
- "mi": "c",
- "h": "h",
- "cc": "cpp",
- "cpp": "cpp",
- "cxx": "cpp",
- "c++": "cpp",
- "cp": "cpp",
- "mii": "cpp",
- "ii": "cpp",
- "cppm": "cpp",
- "hh": "hpp",
- "hpp": "hpp",
- "hxx": "hpp",
- "h++": "hpp",
- "hp": "hpp",
- "tcc": "hpp",
- "inl": "hpp",
- "rc": "rc",
- "go": "go",
- "py": "python",
- "pyc": "python-misc",
- "whl": "python-misc",
- "egg": "python-misc",
- "url": "url",
- "sh": "console",
- "ksh": "console",
- "csh": "console",
- "tcsh": "console",
- "zsh": "console",
- "bash": "console",
- "bat": "console",
- "cmd": "console",
- "awk": "console",
- "fish": "console",
- "exp": "console",
- "nu": "console",
- "xsh": "console",
- "ps1": "powershell",
- "psm1": "powershell",
- "psd1": "powershell",
- "ps1xml": "powershell",
- "psc1": "powershell",
- "pssc": "powershell",
- "excalidraw": "excalidraw",
- "excalidraw.json": "excalidraw",
- "excalidraw.svg": "excalidraw",
- "excalidraw.png": "excalidraw",
- "gradle": "gradle",
- "doc": "word",
- "docx": "word",
- "rtf": "word",
- "odt": "word",
- "cer": "certificate",
- "cert": "certificate",
- "crt": "certificate",
- "pub": "key",
- "key": "key",
- "pem": "key",
- "asc": "key",
- "gpg": "key",
- "passwd": "key",
- "shasum": "key",
- "sha256": "key",
- "sha256sum": "key",
- "sha256sums": "key",
- "secret": "key",
- "woff": "font",
- "woff2": "font",
- "ttf": "font",
- "eot": "font",
- "suit": "font",
- "otf": "font",
- "bmap": "font",
- "fnt": "font",
- "odttf": "font",
- "ttc": "font",
- "font": "font",
- "fonts": "font",
- "sui": "font",
- "ntf": "font",
- "mrf": "font",
- "lib": "lib",
- "a": "lib",
- "bib": "bibliography",
- "bst": "bibtex-style",
- "dll": "dll",
- "ilk": "dll",
- "so": "dll",
- "rb": "ruby",
- "erb": "ruby",
- "rbs": "ruby",
- "fs": "fsharp",
- "fsx": "fsharp",
- "fsi": "fsharp",
- "fsproj": "fsharp",
- "swift": "swift",
- "xcplayground": "swift",
- "swiftdeps": "swift",
- "swiftdoc": "swift",
- "swiftmodule": "swift",
- "swiftsourceinfo": "swift",
- "ino": "arduino",
- "dockerignore": "docker",
- "dockerfile": "docker",
- "docker-compose.yml": "docker",
- "docker-compose.yaml": "docker",
- "containerignore": "docker",
- "containerfile": "docker",
- "compose.yaml": "docker",
- "compose.yml": "docker",
- "sty": "sty",
- "ctx": "context",
- "dtx": "dtx",
- "ins": "doctex-installer",
- "bbx": "bbx",
- "cbx": "cbx",
- "lbx": "lbx",
- "pptx": "powerpoint",
- "ppt": "powerpoint",
- "pptm": "powerpoint",
- "potx": "powerpoint",
- "potm": "powerpoint",
- "ppsx": "powerpoint",
- "ppsm": "powerpoint",
- "pps": "powerpoint",
- "ppam": "powerpoint",
- "ppa": "powerpoint",
- "odp": "powerpoint",
- "webm": "video",
- "mkv": "video",
- "flv": "video",
- "vob": "video",
- "ogv": "video",
- "ogg": "video",
- "gifv": "video",
- "avi": "video",
- "mov": "video",
- "qt": "video",
- "wmv": "video",
- "yuv": "video",
- "rm": "video",
- "rmvb": "video",
- "mp4": "video",
- "m4v": "video",
- "mpg": "video",
- "mp2": "video",
- "mpeg": "video",
- "mpe": "video",
- "mpv": "video",
- "m2v": "video",
- "vdi": "virtual",
- "vbox": "virtual",
- "vbox-prev": "virtual",
- "ved": "vedic",
- "veda": "vedic",
- "vedic": "vedic",
- "edb": "email",
- "eml": "email",
- "emlx": "email",
- "ics": "email",
- "mbox": "email",
- "msg": "email",
- "oft": "email",
- "olm": "email",
- "ost": "email",
- "p7s": "email",
- "pst": "email",
- "rpmsg": "email",
- "tnef": "email",
- "8svx": "audio",
- "aa": "audio",
- "aac": "audio",
- "aax": "audio",
- "ac3": "audio",
- "aif": "audio",
- "aiff": "audio",
- "alac": "audio",
- "amr": "audio",
- "ape": "audio",
- "caf": "audio",
- "cda": "audio",
- "cdr": "audio",
- "dss": "audio",
- "ec3": "audio",
- "efs": "audio",
- "enc": "audio",
- "flac": "audio",
- "flp": "audio",
- "gp": "audio",
- "gsm": "audio",
- "it": "audio",
- "m3u": "audio",
- "m3u8": "audio",
- "m4a": "audio",
- "m4b": "audio",
- "m4p": "audio",
- "m4r": "audio",
- "mid": "audio",
- "mka": "audio",
- "mmf": "audio",
- "mod": "audio",
- "mp3": "audio",
- "mpc": "audio",
- "mscz": "audio",
- "mtm": "audio",
- "mui": "audio",
- "musx": "audio",
- "mxl": "audio",
- "nsa": "audio",
- "opus": "audio",
- "pkf": "audio",
- "qcp": "audio",
- "ra": "audio",
- "rf64": "audio",
- "rip": "audio",
- "sdt": "audio",
- "sesx": "audio",
- "sf2": "audio",
- "stap": "audio",
- "tg": "audio",
- "voc": "audio",
- "vqf": "audio",
- "wav": "audio",
- "weba": "audio",
- "wfp": "audio",
- "wma": "audio",
- "wpl": "audio",
- "wproj": "audio",
- "wv": "audio",
- "coffee": "coffee",
- "cson": "coffee",
- "iced": "coffee",
- "txt": "document",
- "lrc": "lyric",
- "graphql": "graphql",
- "gql": "graphql",
- "rs": "rust",
- "ron": "rust",
- "raml": "raml",
- "xaml": "xaml",
- "hs": "haskell",
- "lhs": "haskell",
- "kt": "kotlin",
- "kts": "kotlin",
- "mist.js": "mist",
- "mist.ts": "mist",
- "mist.jsx": "mist",
- "mist.tsx": "mist",
- "otne": "otne",
- "patch": "git",
- "lua": "lua",
- "clj": "clojure",
- "cljs": "clojure",
- "cljc": "clojure",
- "groovy": "groovy",
- "r": "r",
- "rmd": "r",
- "dart": "dart",
- "freezed.dart": "dart_generated",
- "g.dart": "dart_generated",
- "as": "actionscript",
- "mxml": "mxml",
- "ahk": "autohotkey",
- "swf": "flash",
- "swc": "adobe-swc",
- "swcrc": "swc",
- "cmake": "cmake",
- "asm": "assembly",
- "a51": "assembly",
- "inc": "assembly",
- "nasm": "assembly",
- "s": "assembly",
- "ms": "assembly",
- "agc": "assembly",
- "ags": "assembly",
- "aea": "assembly",
- "argus": "assembly",
- "mitigus": "assembly",
- "binsource": "assembly",
- "vue": "vue",
- "ml": "ocaml",
- "mli": "ocaml",
- "cmx": "ocaml",
- "odin": "odin",
- "onnx": "onnx",
- "js.map": "javascript-map",
- "mjs.map": "javascript-map",
- "cjs.map": "javascript-map",
- "css.map": "css-map",
- "lock": "lock",
- "hbs": "handlebars",
- "mustache": "handlebars",
- "pm": "perl",
- "raku": "perl",
- "hx": "haxe",
- "spec.ts": "test-ts",
- "spec.cts": "test-ts",
- "spec.mts": "test-ts",
- "cy.ts": "test-ts",
- "e2e-spec.ts": "test-ts",
- "e2e-spec.cts": "test-ts",
- "e2e-spec.mts": "test-ts",
- "test.ts": "test-ts",
- "test.cts": "test-ts",
- "test.mts": "test-ts",
- "ts.snap": "test-ts",
- "spec-d.ts": "test-ts",
- "test-d.ts": "test-ts",
- "spec.tsx": "test-jsx",
- "test.tsx": "test-jsx",
- "tsx.snap": "test-jsx",
- "spec.jsx": "test-jsx",
- "test.jsx": "test-jsx",
- "jsx.snap": "test-jsx",
- "cy.jsx": "test-jsx",
- "cy.tsx": "test-jsx",
- "spec-d.tsx": "test-jsx",
- "test-d.tsx": "test-jsx",
- "spec.js": "test-js",
- "spec.cjs": "test-js",
- "spec.mjs": "test-js",
- "e2e-spec.js": "test-js",
- "e2e-spec.cjs": "test-js",
- "e2e-spec.mjs": "test-js",
- "test.js": "test-js",
- "test.cjs": "test-js",
- "test.mjs": "test-js",
- "js.snap": "test-js",
- "cy.js": "test-js",
- "module.ts": "angular",
- "module.js": "angular",
- "ng-template": "angular",
- "component.ts": "angular-component",
- "component.js": "angular-component",
- "guard.ts": "angular-guard",
- "guard.js": "angular-guard",
- "service.ts": "angular-service",
- "service.js": "angular-service",
- "pipe.ts": "angular-pipe",
- "pipe.js": "angular-pipe",
- "filter.js": "angular-pipe",
- "directive.ts": "angular-directive",
- "directive.js": "angular-directive",
- "resolver.ts": "angular-resolver",
- "resolver.js": "angular-resolver",
- "interceptor.ts": "angular-interceptor",
- "interceptor.js": "angular-interceptor",
- "pp": "puppet",
- "ex": "elixir",
- "exs": "elixir",
- "eex": "elixir",
- "leex": "elixir",
- "heex": "elixir",
- "ls": "livescript",
- "erl": "erlang",
- "twig": "twig",
- "jl": "julia",
- "elm": "elm",
- "pure": "purescript",
- "purs": "purescript",
- "tpl": "smarty",
- "styl": "stylus",
- "re": "reason",
- "rei": "reason",
- "cmj": "bucklescript",
- "merlin": "merlin",
- "vhd": "verilog",
- "vhdx": "verilog",
- "sv": "verilog",
- "svh": "verilog",
- "vhdl": "verilog",
- "nb": "mathematica",
- "wl": "wolframlanguage",
- "wls": "wolframlanguage",
- "njk": "nunjucks",
- "nunjucks": "nunjucks",
- "robot": "robot",
- "sol": "solidity",
- "au3": "autoit",
- "haml": "haml",
- "yang": "yang",
- "mjml": "mjml",
- "tf": "terraform",
- "tf.json": "terraform",
- "tfvars": "terraform",
- "tfstate": "terraform",
- "tfbackend": "terraform",
- "terraformignore": "terraform",
- "tofu": "opentofu",
- "blade.php": "laravel",
- "inky.php": "laravel",
- "applescript": "applescript",
- "ipa": "applescript",
- "cake": "cake",
- "feature": "cucumber",
- "features": "cucumber",
- "nim": "nim",
- "nimble": "nim",
- "apib": "apiblueprint",
- "apiblueprint": "apiblueprint",
- "riot": "riot",
- "tag": "riot",
- "vfl": "vfl",
- "kl": "kl",
- "pcss": "postcss",
- "sss": "postcss",
- "todo": "todo",
- "cfml": "coldfusion",
- "cfc": "coldfusion",
- "lucee": "coldfusion",
- "cfm": "coldfusion",
- "cabal": "cabal",
- "nix": "nix",
- "slim": "slim",
- "http": "http",
- "rest": "http",
- "rql": "restql",
- "restql": "restql",
- "kv": "kivy",
- "graphcool": "graphcool",
- "sbt": "sbt",
- "apk": "android",
- "smali": "android",
- "dex": "android",
- "env": "tune",
- "gitlab-ci.yml": "gitlab",
- "jenkinsfile": "jenkins",
- "jenkins": "jenkins",
- "fig": "figma",
- "huff": "huff",
- "cr": "crystal",
- "ecr": "crystal",
- "drone.yml": "drone",
- "cu": "cuda",
- "cuh": "cuda",
- "log": "log",
- "def": "dotjs",
- "dot": "dotjs",
- "jst": "dotjs",
- "ejs": "ejs",
- ".wakatime-project": "wakatime",
- "pde": "processing",
- "stories.js": "storybook",
- "stories.jsx": "storybook",
- "stories.mdx": "storybook",
- "story.js": "storybook",
- "story.jsx": "storybook",
- "stories.ts": "storybook",
- "stories.tsx": "storybook",
- "story.ts": "storybook",
- "story.tsx": "storybook",
- "stories.svelte": "storybook",
- "story.mdx": "storybook",
- "stories.vue": "storybook",
- "wpy": "wepy",
- "hcl": "hcl",
- "san": "san",
- "quokka.js": "quokka",
- "quokka.ts": "quokka",
- "quokka.jsx": "quokka",
- "quokka.tsx": "quokka",
- "djt": "django",
- "red": "red",
- "mk": "makefile",
- "fxp": "foxpro",
- "prg": "foxpro",
- "pot": "i18n",
- "po": "i18n",
- "mo": "i18n",
- "lang": "i18n",
- "xlf": "i18n",
- "wat": "webassembly",
- "wasm": "webassembly",
- "ipynb": "jupyter",
- "d": "d",
- "mdx": "mdx",
- "svx": "mdsvex",
- "bal": "ballerina",
- "balx": "ballerina",
- "rkt": "racket",
- "bzl": "bazel",
- "bazel": "bazel",
- "mint": "mint",
- "vm": "velocity",
- "fhtml": "velocity",
- "vtl": "velocity",
- "gd": "godot",
- "godot": "godot-assets",
- "tres": "godot-assets",
- "tscn": "godot-assets",
- "gdns": "godot-assets",
- "gdnlib": "godot-assets",
- "gdshader": "godot-assets",
- "gdshaderinc": "godot-assets",
- "gdextension": "godot-assets",
- "azure-pipelines.yml": "azure-pipelines",
- "azure-pipelines.yaml": "azure-pipelines",
- "azure-pipelines-main.yml": "azure-pipelines",
- "azure-pipelines-main.yaml": "azure-pipelines",
- "azcli": "azure",
- "vagrantfile": "vagrant",
- "prisma": "prisma",
- "cshtml": "razor",
- "vbhtml": "razor",
- "abc": "abc",
- "ad": "asciidoc",
- "adoc": "asciidoc",
- "asciidoc": "asciidoc",
- "edge": "edge",
- "ss": "scheme",
- "scm": "scheme",
- "lisp": "lisp",
- "lsp": "lisp",
- "cl": "lisp",
- "fast": "lisp",
- "stl": "3d",
- "stp": "3d",
- "step": "3d",
- "obj": "3d",
- "o": "3d",
- "ac": "3d",
- "dxf": "3d",
- "fbx": "3d",
- "mesh": "3d",
- "mqo": "3d",
- "pmd": "3d",
- "pmx": "3d",
- "skp": "3d",
- "vac": "3d",
- "vdp": "3d",
- "vox": "3d",
- "gltf": "3d",
- "glb": "3d",
- "3ds": "3d",
- "dae": "3d",
- "ply": "3d",
- "wrl": "3d",
- "usd": "3d",
- "usdz": "3d",
- "svg": "svg",
- "ai": "adobe-illustrator",
- "ait": "adobe-illustrator",
- "psd": "adobe-photoshop",
- "psb": "adobe-photoshop",
- "psdt": "adobe-photoshop",
- "svelte": "svelte",
- "svelte.js": "svelte_js",
- "svelte.ts": "svelte_ts",
- "vimrc": "vim",
- "gvimrc": "vim",
- "exrc": "vim",
- "vim": "vim",
- "viminfo": "vim",
- "moon": "moonscript",
- "prw": "advpl",
- "prx": "advpl",
- "ptm": "advpl-ptm",
- "tlpp": "advpl-tlpp",
- "ch": "advpl-include",
- "iso": "disc",
- "vmdk": "disc",
- "hdd": "disc",
- "qcow": "disc",
- "qcow2": "disc",
- "qed": "disc",
- "dmg": "disc",
- "f": "fortran",
- "f77": "fortran",
- "f90": "fortran",
- "f95": "fortran",
- "f03": "fortran",
- "f08": "fortran",
- "tcl": "tcl",
- "do": "tcl",
- "liquid": "liquid",
- "p": "prolog",
- "pro": "prolog",
- "pl": "prolog",
- "coco": "coconut",
- "sketch": "sketch",
- "pwn": "pawn",
- "amx": "pawn",
- "4th": "forth",
- "fth": "forth",
- "frt": "forth",
- "iuml": "uml",
- "pu": "uml",
- "puml": "uml",
- "plantuml": "uml",
- "wsd": "uml",
- "wrap": "meson",
- "dhall": "dhall",
- "dhallb": "dhall",
- "sml": "sml",
- "mlton": "sml",
- "mlb": "sml",
- "sig": "sml",
- "fun": "sml",
- "cm": "sml",
- "lex": "sml",
- "use": "sml",
- "grm": "sml",
- "opam": "opam",
- "imba": "imba",
- "drawio": "drawio",
- "dio": "drawio",
- "pas": "pascal",
- "unity": "unity",
- "unitypackage": "unity",
- "sas": "sas",
- "sas7bdat": "sas",
- "sashdat": "sas",
- "astore": "sas",
- "ast": "sas",
- "sast": "sas",
- "nupkg": "nuget",
- "nuspec": "nuget",
- "command": "command",
- "dsc": "denizenscript",
- "code-search": "search",
- "nginx": "nginx",
- "nginxconf": "nginx",
- "nginxconfig": "nginx",
- "mcfunction": "minecraft",
- "mcmeta": "minecraft",
- "mcr": "minecraft",
- "mca": "minecraft",
- "mcgame": "minecraft",
- "mclevel": "minecraft",
- "mcworld": "minecraft",
- "mine": "minecraft",
- "mus": "minecraft",
- "mcstructure": "minecraft",
- "mcpack": "minecraft",
- "mcaddon": "minecraft",
- "mctemplate": "minecraft",
- "mcproject": "minecraft",
- "res": "rescript",
- "resi": "rescript-interface",
- "duc": "duc",
- "b": "brainfuck",
- "bf": "brainfuck",
- "bicep": "bicep",
- "cob": "cobol",
- "cbl": "cobol",
- "gr": "grain",
- "lol": "lolcode",
- "idr": "idris",
- "ibc": "idris",
- "pipeline": "pipeline",
- "rego": "opa",
- "windi": "windicss",
- "scala": "scala",
- "sc": "scala",
- "ly": "lilypond",
- "v": "vlang",
- "pgn": "chess",
- "fen": "chess",
- "gmi": "gemini",
- "gemini": "gemini",
- "tsconfig.json": "tsconfig",
- "tauri": "tauri",
- "jsconfig.json": "jsconfig",
- "ada": "ada",
- "adb": "ada",
- "ads": "ada",
- "ali": "ada",
- "horusec-config.json": "horusec",
- "pdm.lock": "pdm",
- "pdm.toml": "pdm",
- "coarc": "coala",
- "coafile": "coala",
- "bubble": "dinophp",
- "html.bubble": "dinophp",
- "php.bubble": "dinophp",
- "tl": "teal",
- "template": "template",
- "glsl": "shader",
- "vert": "shader",
- "tesc": "shader",
- "tese": "shader",
- "geom": "shader",
- "frag": "shader",
- "comp": "shader",
- "rgen": "shader",
- "rint": "shader",
- "rahit": "shader",
- "rchit": "shader",
- "rmiss": "shader",
- "rcall": "shader",
- "vert.glsl": "shader",
- "tesc.glsl": "shader",
- "tese.glsl": "shader",
- "geom.glsl": "shader",
- "frag.glsl": "shader",
- "comp.glsl": "shader",
- "rgen.glsl": "shader",
- "rint.glsl": "shader",
- "rahit.glsl": "shader",
- "rchit.glsl": "shader",
- "rmiss.glsl": "shader",
- "rcall.glsl": "shader",
- "vertex.glsl": "shader",
- "geometry.glsl": "shader",
- "fragment.glsl": "shader",
- "compute.glsl": "shader",
- "ts.glsl": "shader",
- "gs.glsl": "shader",
- "vs.glsl": "shader",
- "fs.glsl": "shader",
- "shader": "shader",
- "vertexshader": "shader",
- "fragmentshader": "shader",
- "geometryshader": "shader",
- "computeshader": "shader",
- "hlsl": "shader",
- "pixel.hlsl": "shader",
- "geometry.hlsl": "shader",
- "compute.hlsl": "shader",
- "tessellation.hlsl": "shader",
- "px.hlsl": "shader",
- "geom.hlsl": "shader",
- "comp.hlsl": "shader",
- "tess.hlsl": "shader",
- "wgsl": "shader",
- "spv": "shader",
- "slang": "shader",
- "sy": "siyuan",
- "ndst.yml": "ndst",
- "ndst.yaml": "ndst",
- "ndst.json": "ndst",
- "tobi": "tobi",
- "gleam": "gleam",
- "steadybit.yml": "steadybit",
- "steadybit.yaml": "steadybit",
- "capnp": "capnp",
- "tree": "tree",
- "cdc": "cadence",
- "openapi.json": "openapi",
- "openapi.yml": "openapi",
- "openapi.yaml": "openapi",
- "swagger.json": "swagger",
- "swagger.yml": "swagger",
- "swagger.yaml": "swagger",
- "g4": "antlr",
- "st.css": "stylable",
- "pine": "pinejs",
- "taskfile.yml": "taskfile",
- "taskfile.yaml": "taskfile",
- "gml": "gamemaker",
- "yy": "gamemaker",
- "yyp": "gamemaker",
- "yyz": "gamemaker",
- "tldr": "tldraw",
- "typ": "typst",
- "mmd": "mermaid",
- "mermaid": "mermaid",
- "mojo": "mojo",
- "🔥": "mojo",
- "rbxl": "roblox",
- "rbxlx": "roblox",
- "rbxm": "roblox",
- "rbxmx": "roblox",
- "luau": "luau",
- "rbxmk.lua": "rbxmk",
- "rbxmk.luau": "rbxmk",
- "spwn": "spwn",
- "templ": "templ",
- "crx": "chrome",
- "stan": "stan",
- "abap": "abap",
- "acds": "abap",
- "asddls": "abap",
- "lottie": "lottie",
- "gs": "apps-script",
- "garden.yml": "garden",
- "garden.yaml": "garden",
- "pkl": "pkl",
- "k": "kcl",
- "sigstore.json": "verified",
- "bru": "bruno",
- "cairo": "cairo",
- "alloy": "grafana-alloy",
- "ftl": "freemarker",
- "ц": "tsil",
- "tape": "tape",
- "hurl": "hurl",
- "cds": "cds",
- "slint": "slint",
- "verse": "verse",
- "sw": "sway",
- "zeabur": "zeabur",
- "bench.ts": "bench-ts",
- "bench.cts": "bench-ts",
- "bench.mts": "bench-ts",
- "bench.jsx": "bench-jsx",
- "bench.tsx": "bench-jsx",
- "bench.js": "bench-js",
- "bench.cjs": "bench-js",
- "bench.mjs": "bench-js",
- "controller.js": "controller",
- "controller.ts": "controller",
- ".ncurc.json": "dependencies-update",
- ".ncurc.yml": "dependencies-update",
- ".ncurc.js": "dependencies-update",
- "srt": "subtitles",
- "ssa": "subtitles",
- "ttml": "subtitles",
- "sbv": "subtitles",
- "dfxp": "subtitles",
- "vtt": "subtitles",
- "sub": "subtitles",
- "ass": "subtitles",
- "beancount": "beancount",
- "bean": "beancount",
- "epub": "epub",
- "reg": "regedit",
- "gnu": "gnuplot",
- "smk": "snakemake",
- "snakemake": "snakemake",
- "cpn": "coloredpetrinets",
- "pnml": "coloredpetrinets",
- "pt": "pytorch",
- "pth": "pytorch",
- "pwf": "pytorch",
- "blend": "blender",
- "blend1": "blender",
- "blend2": "blender",
- "css.ts": "vanilla-extract",
- "css.js": "vanilla-extract",
- "css.cjs": "vanilla-extract",
- "css.mjs": "vanilla-extract",
- "css.tsx": "vanilla-extract",
- "css.jsx": "vanilla-extract",
- "toc": "toc",
- "cue": "cue",
- "lean": "lean",
- "sls": "salt",
- "m2": "macaulay2",
- "skill.md": "skill",
- "skills.md": "skill",
- "instructions.md": "instructions",
- "instruction.md": "instructions",
- "cljx": "clojure",
- "clojure": "clojure",
- "edn": "clojure",
- "ccm": "cpp",
- "cxxm": "cpp",
- "c++m": "cpp",
- "ipp": "cpp",
- "ixx": "cpp",
- "tpp": "cpp",
- "txx": "cpp",
- "hpp.in": "cpp",
- "h.in": "cpp",
- "diff": "diff",
- "rej": "diff",
- "fsscript": "fsharp",
- "gitignore_global": "ignore",
- "gitignore": "ignore",
- "git-blame-ignore-revs": "ignore",
- "gvy": "groovy",
- "nf": "groovy",
- "handlebars": "handlebars",
- "hjs": "handlebars",
- "hlsli": "hlsl",
- "fx": "hlsl",
- "fxh": "hlsl",
- "vsh": "hlsl",
- "psh": "hlsl",
- "cginc": "hlsl",
- "compute": "hlsl",
- "html": "html",
- "shtml": "html",
- "xht": "html",
- "aspx": "html",
- "jshtm": "html",
- "volt": "html",
- "rhtml": "html",
- "directory": "properties",
- "gitattributes": "properties",
- "gitconfig": "properties",
- "gitmodules": "properties",
- "editorconfig": "properties",
- "repo": "properties",
- "jav": "java",
- "js": "javascript",
- "es6": "javascript",
- "cjs": "javascript",
- "pac": "javascript",
- "bowerrc": "json",
- "jscsrc": "json",
- "webmanifest": "json",
- "ts.map": "json",
- "har": "json",
- "jslintrc": "json",
- "jsonld": "json",
- "geojson": "json",
- "vuerc": "json",
- "eslintrc": "jsonc",
- "eslintrc.json": "jsonc",
- "jsfmtrc": "jsonc",
- "jshintrc": "jsonc",
- "hintrc": "jsonc",
- "babelrc": "jsonc",
- "jmd": "juliamarkdown",
- "cls": "tex",
- "tex": "latex",
- "ltx": "latex",
- "mak": "makefile",
- "mkd": "markdown",
- "mdwn": "markdown",
- "mdown": "markdown",
- "markdn": "markdown",
- "mdtxt": "markdown",
- "mdtext": "markdown",
- "workbook": "markdown",
- "npmignore": "ignore",
- "npmrc": "properties",
- "m": "objective-c",
- "mm": "objective-cpp",
- "pod": "perl",
- "t": "perl",
- "psgi": "perl",
- "rakumod": "raku",
- "rakutest": "raku",
- "rakudoc": "raku",
- "nqp": "raku",
- "p6": "raku",
- "pl6": "raku",
- "pm6": "raku",
- "php": "php",
- "php4": "php",
- "php5": "php",
- "phtml": "php",
- "ctp": "php",
- "psrc": "powershell",
- "rpy": "python",
- "pyw": "python",
- "cpy": "python",
- "gyp": "python",
- "gypi": "python",
- "pyi": "python",
- "ipy": "python",
- "pyt": "python",
- "rhistory": "r",
- "rprofile": "r",
- "rt": "r",
- "razor": "razor",
- "rbx": "ruby",
- "rjs": "ruby",
- "gemspec": "ruby",
- "rake": "ruby",
- "ru": "ruby",
- "podspec": "ruby",
- "rbi": "ruby",
- "bashrc": "shellscript",
- "bash_aliases": "shellscript",
- "bash_profile": "shellscript",
- "bash_login": "shellscript",
- "ebuild": "shellscript",
- "eclass": "shellscript",
- "profile": "shellscript",
- "bash_logout": "shellscript",
- "xprofile": "shellscript",
- "xsession": "shellscript",
- "xsessionrc": "shellscript",
- "zshrc": "shellscript",
- "zprofile": "shellscript",
- "zlogin": "shellscript",
- "zlogout": "shellscript",
- "zshenv": "shellscript",
- "zsh-theme": "shellscript",
- "cshrc": "shellscript",
- "tcshrc": "shellscript",
- "yashrc": "shellscript",
- "yash_profile": "shellscript",
- "dsql": "sql",
- "ts": "typescript",
- "cts": "typescript",
- "mts": "typescript",
- "brs": "vb",
- "bas": "vb",
- "vba": "vb",
- "ascx": "xml",
- "atom": "xml",
- "axml": "xml",
- "axaml": "xml",
- "bpmn": "xml",
- "csl": "xml",
- "csproj.user": "xml",
- "dita": "xml",
- "ditamap": "xml",
- "ent": "xml",
- "dtml": "xml",
- "fxml": "xml",
- "isml": "xml",
- "jmx": "xml",
- "launch": "xml",
- "menu": "xml",
- "opml": "xml",
- "owl": "xml",
- "proj": "xml",
- "publishsettings": "xml",
- "pubxml": "xml",
- "pubxml.user": "xml",
- "rdf": "xml",
- "rng": "xml",
- "rss": "xml",
- "shproj": "xml",
- "storyboard": "xml",
- "targets": "xml",
- "tld": "xml",
- "tmx": "xml",
- "vbproj": "xml",
- "vbproj.user": "xml",
- "wsdl": "xml",
- "wxi": "xml",
- "wxl": "xml",
- "wxs": "xml",
- "xbl": "xml",
- "xib": "xml",
- "xliff": "xml",
- "xpdl": "xml",
- "xul": "xml",
- "xoml": "xml",
- "yaml": "yaml",
- "yml": "yaml",
- "eyaml": "yaml",
- "eyml": "yaml",
- "cff": "yaml",
- "yaml-tmpreferences": "yaml",
- "yaml-tmtheme": "yaml",
- "winget": "yaml"
- },
- "fileNames": {
- ".pug-lintrc": "pug",
- ".pug-lintrc.js": "pug",
- ".pug-lintrc.json": "pug",
- "justfile": "just",
- ".justfile": "just",
- ".jscsrc": "json",
- ".jshintrc": "json",
- "composer.lock": "json",
- ".jsbeautifyrc": "json",
- ".esformatter": "json",
- "cdp.pid": "json",
- ".whitesource": "json",
- "playwright.config.js": "playwright",
- "playwright.config.cjs": "playwright",
- "playwright.config.mjs": "playwright",
- "playwright.config.ts": "playwright",
- "playwright.config.cts": "playwright",
- "playwright.config.mts": "playwright",
- "playwright.config.base.js": "playwright",
- "playwright.config.base.cjs": "playwright",
- "playwright.config.base.mjs": "playwright",
- "playwright.config.base.ts": "playwright",
- "playwright.config.base.cts": "playwright",
- "playwright.config.base.mts": "playwright",
- "playwright-ct.config.js": "playwright",
- "playwright-ct.config.cjs": "playwright",
- "playwright-ct.config.mjs": "playwright",
- "playwright-ct.config.ts": "playwright",
- "playwright-ct.config.cts": "playwright",
- "playwright-ct.config.mts": "playwright",
- ".htaccess": "xml",
- ".release-it.json": "rocket",
- ".release-it.ts": "rocket",
- ".release-it.js": "rocket",
- ".release-it.cjs": "rocket",
- ".release-it.yaml": "rocket",
- ".release-it.yml": "rocket",
- ".release-it.toml": "rocket",
- "release.toml": "rocket",
- "release-plz.toml": "rocket",
- ".release-plz.toml": "rocket",
- "router.js": "routing",
- "router.jsx": "routing",
- "router.ts": "routing",
- "router.tsx": "routing",
- "route.js": "routing",
- "route.jsx": "routing",
- "route.ts": "routing",
- "route.tsx": "routing",
- "routes.js": "routing",
- "routes.jsx": "routing",
- "routes.ts": "routing",
- "routes.tsx": "routing",
- ".jshintignore": "settings",
- ".buildignore": "settings",
- ".mrconfig": "settings",
- ".yardopts": "settings",
- "manifest.mf": "settings",
- ".clang-format": "settings",
- ".clang-format-ignore": "settings",
- ".clang-tidy": "settings",
- ".conf": "settings",
- "compile_flags.txt": "settings",
- "typedoc.js": "typedoc",
- "typedoc.json": "typedoc",
- "markdoc.config.js": "markdoc-config",
- "markdoc.config.mjs": "markdoc-config",
- "markdoc.config.cjs": "markdoc-config",
- "markdoc.config.ts": "markdoc-config",
- "markdoc.config.mts": "markdoc-config",
- "markdoc.config.cts": "markdoc-config",
- "astro.config.js": "astro-config",
- "astro.config.mjs": "astro-config",
- "astro.config.cjs": "astro-config",
- "astro.config.ts": "astro-config",
- "astro.config.cts": "astro-config",
- "astro.config.mts": "astro-config",
- ".vsconfig": "visualstudio",
- "go.mod": "go-mod",
- "go.sum": "go-mod",
- "go.work": "go-mod",
- "go.work.sum": "go-mod",
- "requirements.txt": "python-misc",
- "pipfile": "python-misc",
- ".python-version": "python-misc",
- "manifest.in": "python-misc",
- "pylintrc": "python-misc",
- ".pylintrc": "python-misc",
- "pyproject.toml": "python-misc",
- "py.typed": "python-misc",
- ".coveragerc": "python-misc",
- ".coverage": "python-misc",
- ".scrapy": "python-misc",
- "celerybeat-schedule": "python-misc",
- "celerybeat.pid": "python-misc",
- "ruff.toml": "ruff",
- ".ruff.toml": "ruff",
- "uv.toml": "uv",
- ".uv.toml": "uv",
- "uv.lock": "uv",
- "sconstruct": "scons",
- "sconscript": "scons",
- "scsub": "scons",
- "commit-msg": "console",
- "pre-commit": "console",
- "pre-push": "console",
- "post-merge": "console",
- "excalidraw": "excalidraw",
- "excalidraw.json": "excalidraw",
- "excalidraw.svg": "excalidraw",
- "excalidraw.png": "excalidraw",
- "gradle.properties": "gradle",
- "gradlew": "gradle",
- "gradle-wrapper.properties": "gradle",
- "gradlew.bat": "gradle",
- "copying": "license",
- "copying.md": "license",
- "copying.rst": "license",
- "copying.txt": "license",
- "copyright": "license",
- "copyright.md": "license",
- "copyright.rst": "license",
- "copyright.txt": "license",
- "license": "license",
- "license-agpl": "license",
- "license-apache": "license",
- "license-bsd": "license",
- "license-mit": "license",
- "license-gpl": "license",
- "license-lgpl": "license",
- "license.md": "license",
- "license.rst": "license",
- "license.txt": "license",
- "licence": "license",
- "licence-agpl": "license",
- "licence-apache": "license",
- "licence-bsd": "license",
- "licence-mit": "license",
- "licence-gpl": "license",
- "licence-lgpl": "license",
- "licence.md": "license",
- "licence.rst": "license",
- "licence.txt": "license",
- "unlicense": "unlicense",
- "unlicense.txt": "unlicense",
- ".htpasswd": "key",
- "sha256sums": "key",
- ".secrets": "key",
- "keystatic.config.tsx": "keystatic",
- "keystatic.config.ts": "keystatic",
- "keystatic.config.jsx": "keystatic",
- "keystatic.config.js": "keystatic",
- ".ruby-version": "ruby",
- "gemfile": "gemfile",
- ".rubocop.yml": "rubocop",
- ".rubocop-todo.yml": "rubocop",
- ".rubocop_todo.yml": "rubocop",
- ".rspec": "rspec",
- ".swift-format": "swift",
- ".swift-version": "swift",
- ".swiftformat": "swift",
- "dockerfile": "docker",
- "dockerfile.prod": "docker",
- "dockerfile.production": "docker",
- "dockerfile.alpha": "docker",
- "dockerfile.beta": "docker",
- "dockerfile.stage": "docker",
- "dockerfile.staging": "docker",
- "dockerfile.dev": "docker",
- "dockerfile.development": "docker",
- "dockerfile.local": "docker",
- "dockerfile.test": "docker",
- "dockerfile.testing": "docker",
- "dockerfile.ci": "docker",
- "dockerfile.web": "docker",
- "dockerfile.windows": "docker",
- "dockerfile.worker": "docker",
- "docker-compose.yml": "docker",
- "docker-compose.override.yml": "docker",
- "docker-compose.prod.yml": "docker",
- "docker-compose.production.yml": "docker",
- "docker-compose.alpha.yml": "docker",
- "docker-compose.beta.yml": "docker",
- "docker-compose.stage.yml": "docker",
- "docker-compose.staging.yml": "docker",
- "docker-compose.dev.yml": "docker",
- "docker-compose.development.yml": "docker",
- "docker-compose.local.yml": "docker",
- "docker-compose.test.yml": "docker",
- "docker-compose.testing.yml": "docker",
- "docker-compose.ci.yml": "docker",
- "docker-compose.web.yml": "docker",
- "docker-compose.worker.yml": "docker",
- "docker-compose.yaml": "docker",
- "docker-compose.override.yaml": "docker",
- "docker-compose.prod.yaml": "docker",
- "docker-compose.production.yaml": "docker",
- "docker-compose.alpha.yaml": "docker",
- "docker-compose.beta.yaml": "docker",
- "docker-compose.stage.yaml": "docker",
- "docker-compose.staging.yaml": "docker",
- "docker-compose.dev.yaml": "docker",
- "docker-compose.development.yaml": "docker",
- "docker-compose.local.yaml": "docker",
- "docker-compose.test.yaml": "docker",
- "docker-compose.testing.yaml": "docker",
- "docker-compose.ci.yaml": "docker",
- "docker-compose.web.yaml": "docker",
- "docker-compose.worker.yaml": "docker",
- "containerfile": "docker",
- "containerfile.prod": "docker",
- "containerfile.production": "docker",
- "containerfile.alpha": "docker",
- "containerfile.beta": "docker",
- "containerfile.stage": "docker",
- "containerfile.staging": "docker",
- "containerfile.dev": "docker",
- "containerfile.development": "docker",
- "containerfile.local": "docker",
- "containerfile.test": "docker",
- "containerfile.testing": "docker",
- "containerfile.ci": "docker",
- "containerfile.web": "docker",
- "containerfile.worker": "docker",
- "compose.yaml": "docker",
- "compose.override.yaml": "docker",
- "compose.prod.yaml": "docker",
- "compose.production.yaml": "docker",
- "compose.alpha.yaml": "docker",
- "compose.beta.yaml": "docker",
- "compose.stage.yaml": "docker",
- "compose.staging.yaml": "docker",
- "compose.dev.yaml": "docker",
- "compose.development.yaml": "docker",
- "compose.local.yaml": "docker",
- "compose.test.yaml": "docker",
- "compose.testing.yaml": "docker",
- "compose.ci.yaml": "docker",
- "compose.web.yaml": "docker",
- "compose.worker.yaml": "docker",
- "compose.yml": "docker",
- "compose.override.yml": "docker",
- "compose.prod.yml": "docker",
- "compose.production.yml": "docker",
- "compose.alpha.yml": "docker",
- "compose.beta.yml": "docker",
- "compose.stage.yml": "docker",
- "compose.staging.yml": "docker",
- "compose.dev.yml": "docker",
- "compose.development.yml": "docker",
- "compose.local.yml": "docker",
- "compose.test.yml": "docker",
- "compose.testing.yml": "docker",
- "compose.ci.yml": "docker",
- "compose.web.yml": "docker",
- "compose.worker.yml": "docker",
- ".latexmkrc": "latexmk",
- "latexmkrc": "latexmk",
- ".mailmap": "email",
- ".graphqlrc": "graphql",
- ".graphqlrc.json": "graphql",
- ".graphqlrc.jsonc": "graphql",
- ".graphqlrc.json5": "graphql",
- ".graphqlrc.yaml": "graphql",
- ".graphqlrc.yml": "graphql",
- ".graphqlrc.toml": "graphql",
- ".graphqlrc.js": "graphql",
- ".graphqlrc.mjs": "graphql",
- ".graphqlrc.cjs": "graphql",
- ".graphqlrc.ts": "graphql",
- ".graphqlrc.mts": "graphql",
- ".graphqlrc.cts": "graphql",
- ".config/graphqlrc": "graphql",
- ".config/graphqlrc.json": "graphql",
- ".config/graphqlrc.jsonc": "graphql",
- ".config/graphqlrc.json5": "graphql",
- ".config/graphqlrc.yaml": "graphql",
- ".config/graphqlrc.yml": "graphql",
- ".config/graphqlrc.toml": "graphql",
- ".config/graphqlrc.js": "graphql",
- ".config/graphqlrc.mjs": "graphql",
- ".config/graphqlrc.cjs": "graphql",
- ".config/graphqlrc.ts": "graphql",
- ".config/graphqlrc.mts": "graphql",
- ".config/graphqlrc.cts": "graphql",
- "graphql.config.json": "graphql",
- "graphql.config.jsonc": "graphql",
- "graphql.config.json5": "graphql",
- "graphql.config.yaml": "graphql",
- "graphql.config.yml": "graphql",
- "graphql.config.toml": "graphql",
- "graphql.config.js": "graphql",
- "graphql.config.mjs": "graphql",
- "graphql.config.cjs": "graphql",
- "graphql.config.ts": "graphql",
- "graphql.config.mts": "graphql",
- "graphql.config.cts": "graphql",
- ".graphqlconfig": "graphql",
- "xamlstyler.json": "xaml",
- ".happo.js": "happo",
- ".happo.mjs": "happo",
- ".happo.cjs": "happo",
- "chromatic.config.json": "chromatic",
- ".git": "git",
- ".gitignore": "git",
- ".gitmessage": "git",
- ".gitignore-global": "git",
- ".gitignore_global": "git",
- ".gitattributes": "git",
- ".gitattributes-global": "git",
- ".gitattributes_global": "git",
- ".gitconfig": "git",
- ".gitmodules": "git",
- ".gitkeep": "git",
- ".keep": "git",
- ".gitpreserve": "git",
- ".gitinclude": "git",
- ".git-blame-ignore": "git",
- ".git-blame-ignore-revs": "git",
- ".git-for-windows-updater": "git",
- "git-history": "git",
- ".luacheckrc": "lua",
- ".rhistory": "r",
- ".pubignore": "dart",
- "cmakelists.txt": "cmake",
- "cmakecache.txt": "cmake",
- "cmakepresets.json": "cmake",
- "semgrep.yml": "semgrep",
- ".semgrepignore": "semgrep",
- "vue.config.js": "vue-config",
- "vue.config.ts": "vue-config",
- "vetur.config.js": "vue-config",
- "vetur.config.ts": "vue-config",
- "volar.config.js": "vue-config",
- "nuxt.config.js": "nuxt",
- "nuxt.config.ts": "nuxt",
- ".nuxtignore": "nuxt",
- ".nuxtrc": "nuxt",
- "harmonix.config.js": "harmonix",
- "harmonix.config.ts": "harmonix",
- "security.md": "lock",
- "security.txt": "lock",
- "security": "lock",
- "angular-cli.json": "angular",
- ".angular-cli.json": "angular",
- "angular.json": "angular",
- "ng-package.json": "angular",
- ".mjmlconfig": "mjml",
- "vercel.json": "vercel",
- ".vercelignore": "vercel",
- "now.json": "vercel",
- ".nowignore": "vercel",
- "liara.json": "liara",
- ".liaraignore": "liara",
- "verdaccio.yml": "verdaccio",
- "payload.config.js": "payload",
- "payload.config.mjs": "payload",
- "payload.config.ts": "payload",
- "payload.config.mts": "payload",
- "next.config.js": "next",
- "next.config.mjs": "next",
- "next.config.ts": "next",
- "next.config.mts": "next",
- ".remarkrc": "remark",
- ".remarkrc.cjs": "remark",
- ".remarkrc.js": "remark",
- ".remarkrc.json": "remark",
- ".remarkrc.mjs": "remark",
- ".remarkrc.yaml": "remark",
- ".remarkrc.yml": "remark",
- ".remarkignore": "remark",
- "remix.config.js": "remix",
- "remix.config.ts": "remix",
- "artisan": "laravel",
- ".vfl": "vfl",
- ".kl": "kl",
- ".postcssrc": "postcss",
- ".postcssrc.json": "postcss",
- ".postcssrc.jsonc": "postcss",
- ".postcssrc.json5": "postcss",
- ".postcssrc.yaml": "postcss",
- ".postcssrc.yml": "postcss",
- ".postcssrc.toml": "postcss",
- ".postcssrc.js": "postcss",
- ".postcssrc.mjs": "postcss",
- ".postcssrc.cjs": "postcss",
- ".postcssrc.ts": "postcss",
- ".postcssrc.mts": "postcss",
- ".postcssrc.cts": "postcss",
- ".config/postcssrc": "postcss",
- ".config/postcssrc.json": "postcss",
- ".config/postcssrc.jsonc": "postcss",
- ".config/postcssrc.json5": "postcss",
- ".config/postcssrc.yaml": "postcss",
- ".config/postcssrc.yml": "postcss",
- ".config/postcssrc.toml": "postcss",
- ".config/postcssrc.js": "postcss",
- ".config/postcssrc.mjs": "postcss",
- ".config/postcssrc.cjs": "postcss",
- ".config/postcssrc.ts": "postcss",
- ".config/postcssrc.mts": "postcss",
- ".config/postcssrc.cts": "postcss",
- "postcss.config.json": "postcss",
- "postcss.config.jsonc": "postcss",
- "postcss.config.json5": "postcss",
- "postcss.config.yaml": "postcss",
- "postcss.config.yml": "postcss",
- "postcss.config.toml": "postcss",
- "postcss.config.js": "postcss",
- "postcss.config.mjs": "postcss",
- "postcss.config.cjs": "postcss",
- "postcss.config.ts": "postcss",
- "postcss.config.mts": "postcss",
- "postcss.config.cts": "postcss",
- ".posthtmlrc": "posthtml",
- ".posthtmlrc.json": "posthtml",
- ".posthtmlrc.jsonc": "posthtml",
- ".posthtmlrc.json5": "posthtml",
- ".posthtmlrc.yaml": "posthtml",
- ".posthtmlrc.yml": "posthtml",
- ".posthtmlrc.toml": "posthtml",
- ".posthtmlrc.js": "posthtml",
- ".posthtmlrc.mjs": "posthtml",
- ".posthtmlrc.cjs": "posthtml",
- ".posthtmlrc.ts": "posthtml",
- ".posthtmlrc.mts": "posthtml",
- ".posthtmlrc.cts": "posthtml",
- ".config/posthtmlrc": "posthtml",
- ".config/posthtmlrc.json": "posthtml",
- ".config/posthtmlrc.jsonc": "posthtml",
- ".config/posthtmlrc.json5": "posthtml",
- ".config/posthtmlrc.yaml": "posthtml",
- ".config/posthtmlrc.yml": "posthtml",
- ".config/posthtmlrc.toml": "posthtml",
- ".config/posthtmlrc.js": "posthtml",
- ".config/posthtmlrc.mjs": "posthtml",
- ".config/posthtmlrc.cjs": "posthtml",
- ".config/posthtmlrc.ts": "posthtml",
- ".config/posthtmlrc.mts": "posthtml",
- ".config/posthtmlrc.cts": "posthtml",
- "posthtml.config.json": "posthtml",
- "posthtml.config.jsonc": "posthtml",
- "posthtml.config.json5": "posthtml",
- "posthtml.config.yaml": "posthtml",
- "posthtml.config.yml": "posthtml",
- "posthtml.config.toml": "posthtml",
- "posthtml.config.js": "posthtml",
- "posthtml.config.mjs": "posthtml",
- "posthtml.config.cjs": "posthtml",
- "posthtml.config.ts": "posthtml",
- "posthtml.config.mts": "posthtml",
- "posthtml.config.cts": "posthtml",
- "todo.md": "todo",
- "todos.md": "todo",
- "cabal.project": "cabal",
- "cabal.project.freeze": "cabal",
- "cabal.project.local": "cabal",
- "cname": "http",
- "project.graphcool": "graphcool",
- "webpack.base.js": "webpack",
- "webpack.base.mjs": "webpack",
- "webpack.base.cjs": "webpack",
- "webpack.base.ts": "webpack",
- "webpack.base.mts": "webpack",
- "webpack.base.cts": "webpack",
- "webpack.client.js": "webpack",
- "webpack.client.mjs": "webpack",
- "webpack.client.cjs": "webpack",
- "webpack.client.ts": "webpack",
- "webpack.client.mts": "webpack",
- "webpack.client.cts": "webpack",
- "webpack.common.js": "webpack",
- "webpack.common.mjs": "webpack",
- "webpack.common.cjs": "webpack",
- "webpack.common.ts": "webpack",
- "webpack.common.mts": "webpack",
- "webpack.common.cts": "webpack",
- "webpack.config.babel.js": "webpack",
- "webpack.config.babel.mjs": "webpack",
- "webpack.config.babel.cjs": "webpack",
- "webpack.config.babel.ts": "webpack",
- "webpack.config.babel.mts": "webpack",
- "webpack.config.babel.cts": "webpack",
- "webpack.config.base.babel.js": "webpack",
- "webpack.config.base.babel.mjs": "webpack",
- "webpack.config.base.babel.cjs": "webpack",
- "webpack.config.base.babel.ts": "webpack",
- "webpack.config.base.babel.mts": "webpack",
- "webpack.config.base.babel.cts": "webpack",
- "webpack.config.base.js": "webpack",
- "webpack.config.base.mjs": "webpack",
- "webpack.config.base.cjs": "webpack",
- "webpack.config.base.ts": "webpack",
- "webpack.config.base.mts": "webpack",
- "webpack.config.base.cts": "webpack",
- "webpack.config.client.js": "webpack",
- "webpack.config.client.mjs": "webpack",
- "webpack.config.client.cjs": "webpack",
- "webpack.config.client.ts": "webpack",
- "webpack.config.client.mts": "webpack",
- "webpack.config.client.cts": "webpack",
- "webpack.config.common.babel.js": "webpack",
- "webpack.config.common.babel.mjs": "webpack",
- "webpack.config.common.babel.cjs": "webpack",
- "webpack.config.common.babel.ts": "webpack",
- "webpack.config.common.babel.mts": "webpack",
- "webpack.config.common.babel.cts": "webpack",
- "webpack.config.common.js": "webpack",
- "webpack.config.common.mjs": "webpack",
- "webpack.config.common.cjs": "webpack",
- "webpack.config.common.ts": "webpack",
- "webpack.config.common.mts": "webpack",
- "webpack.config.common.cts": "webpack",
- "webpack.config.dev.babel.js": "webpack",
- "webpack.config.dev.babel.mjs": "webpack",
- "webpack.config.dev.babel.cjs": "webpack",
- "webpack.config.dev.babel.ts": "webpack",
- "webpack.config.dev.babel.mts": "webpack",
- "webpack.config.dev.babel.cts": "webpack",
- "webpack.config.dev.js": "webpack",
- "webpack.config.dev.mjs": "webpack",
- "webpack.config.dev.cjs": "webpack",
- "webpack.config.dev.ts": "webpack",
- "webpack.config.dev.mts": "webpack",
- "webpack.config.dev.cts": "webpack",
- "webpack.config.main.js": "webpack",
- "webpack.config.main.mjs": "webpack",
- "webpack.config.main.cjs": "webpack",
- "webpack.config.main.ts": "webpack",
- "webpack.config.main.mts": "webpack",
- "webpack.config.main.cts": "webpack",
- "webpack.config.prod.babel.js": "webpack",
- "webpack.config.prod.babel.mjs": "webpack",
- "webpack.config.prod.babel.cjs": "webpack",
- "webpack.config.prod.babel.ts": "webpack",
- "webpack.config.prod.babel.mts": "webpack",
- "webpack.config.prod.babel.cts": "webpack",
- "webpack.config.prod.js": "webpack",
- "webpack.config.prod.mjs": "webpack",
- "webpack.config.prod.cjs": "webpack",
- "webpack.config.prod.ts": "webpack",
- "webpack.config.prod.mts": "webpack",
- "webpack.config.prod.cts": "webpack",
- "webpack.config.production.babel.js": "webpack",
- "webpack.config.production.babel.mjs": "webpack",
- "webpack.config.production.babel.cjs": "webpack",
- "webpack.config.production.babel.ts": "webpack",
- "webpack.config.production.babel.mts": "webpack",
- "webpack.config.production.babel.cts": "webpack",
- "webpack.config.production.js": "webpack",
- "webpack.config.production.mjs": "webpack",
- "webpack.config.production.cjs": "webpack",
- "webpack.config.production.ts": "webpack",
- "webpack.config.production.mts": "webpack",
- "webpack.config.production.cts": "webpack",
- "webpack.config.renderer.js": "webpack",
- "webpack.config.renderer.mjs": "webpack",
- "webpack.config.renderer.cjs": "webpack",
- "webpack.config.renderer.ts": "webpack",
- "webpack.config.renderer.mts": "webpack",
- "webpack.config.renderer.cts": "webpack",
- "webpack.config.server.js": "webpack",
- "webpack.config.server.mjs": "webpack",
- "webpack.config.server.cjs": "webpack",
- "webpack.config.server.ts": "webpack",
- "webpack.config.server.mts": "webpack",
- "webpack.config.server.cts": "webpack",
- "webpack.config.staging.babel.js": "webpack",
- "webpack.config.staging.babel.mjs": "webpack",
- "webpack.config.staging.babel.cjs": "webpack",
- "webpack.config.staging.babel.ts": "webpack",
- "webpack.config.staging.babel.mts": "webpack",
- "webpack.config.staging.babel.cts": "webpack",
- "webpack.config.staging.js": "webpack",
- "webpack.config.staging.mjs": "webpack",
- "webpack.config.staging.cjs": "webpack",
- "webpack.config.staging.ts": "webpack",
- "webpack.config.staging.mts": "webpack",
- "webpack.config.staging.cts": "webpack",
- "webpack.config.test.js": "webpack",
- "webpack.config.test.mjs": "webpack",
- "webpack.config.test.cjs": "webpack",
- "webpack.config.test.ts": "webpack",
- "webpack.config.test.mts": "webpack",
- "webpack.config.test.cts": "webpack",
- "webpack.config.vendor.production.js": "webpack",
- "webpack.config.vendor.production.mjs": "webpack",
- "webpack.config.vendor.production.cjs": "webpack",
- "webpack.config.vendor.production.ts": "webpack",
- "webpack.config.vendor.production.mts": "webpack",
- "webpack.config.vendor.production.cts": "webpack",
- "webpack.config.vendor.js": "webpack",
- "webpack.config.vendor.mjs": "webpack",
- "webpack.config.vendor.cjs": "webpack",
- "webpack.config.vendor.ts": "webpack",
- "webpack.config.vendor.mts": "webpack",
- "webpack.config.vendor.cts": "webpack",
- "webpack.config.js": "webpack",
- "webpack.config.mjs": "webpack",
- "webpack.config.cjs": "webpack",
- "webpack.config.ts": "webpack",
- "webpack.config.mts": "webpack",
- "webpack.config.cts": "webpack",
- "webpack.dev.js": "webpack",
- "webpack.dev.mjs": "webpack",
- "webpack.dev.cjs": "webpack",
- "webpack.dev.ts": "webpack",
- "webpack.dev.mts": "webpack",
- "webpack.dev.cts": "webpack",
- "webpack.development.js": "webpack",
- "webpack.development.mjs": "webpack",
- "webpack.development.cjs": "webpack",
- "webpack.development.ts": "webpack",
- "webpack.development.mts": "webpack",
- "webpack.development.cts": "webpack",
- "webpack.dist.js": "webpack",
- "webpack.dist.mjs": "webpack",
- "webpack.dist.cjs": "webpack",
- "webpack.dist.ts": "webpack",
- "webpack.dist.mts": "webpack",
- "webpack.dist.cts": "webpack",
- "webpack.mix.js": "webpack",
- "webpack.mix.mjs": "webpack",
- "webpack.mix.cjs": "webpack",
- "webpack.mix.ts": "webpack",
- "webpack.mix.mts": "webpack",
- "webpack.mix.cts": "webpack",
- "webpack.prod.config.js": "webpack",
- "webpack.prod.config.mjs": "webpack",
- "webpack.prod.config.cjs": "webpack",
- "webpack.prod.config.ts": "webpack",
- "webpack.prod.config.mts": "webpack",
- "webpack.prod.config.cts": "webpack",
- "webpack.prod.js": "webpack",
- "webpack.prod.mjs": "webpack",
- "webpack.prod.cjs": "webpack",
- "webpack.prod.ts": "webpack",
- "webpack.prod.mts": "webpack",
- "webpack.prod.cts": "webpack",
- "webpack.production.js": "webpack",
- "webpack.production.mjs": "webpack",
- "webpack.production.cjs": "webpack",
- "webpack.production.ts": "webpack",
- "webpack.production.mts": "webpack",
- "webpack.production.cts": "webpack",
- "webpack.server.js": "webpack",
- "webpack.server.mjs": "webpack",
- "webpack.server.cjs": "webpack",
- "webpack.server.ts": "webpack",
- "webpack.server.mts": "webpack",
- "webpack.server.cts": "webpack",
- "webpack.test.js": "webpack",
- "webpack.test.mjs": "webpack",
- "webpack.test.cjs": "webpack",
- "webpack.test.ts": "webpack",
- "webpack.test.mts": "webpack",
- "webpack.test.cts": "webpack",
- "webpack.js": "webpack",
- "webpack.mjs": "webpack",
- "webpack.cjs": "webpack",
- "webpack.ts": "webpack",
- "webpack.mts": "webpack",
- "webpack.cts": "webpack",
- "webpackfile.js": "webpack",
- "webpackfile.mjs": "webpack",
- "webpackfile.cjs": "webpack",
- "webpackfile.ts": "webpack",
- "webpackfile.mts": "webpack",
- "webpackfile.cts": "webpack",
- "webpack.config.coffee": "webpack",
- "rspack.config.js": "rstack",
- "rspack.config.mjs": "rstack",
- "rspack.config.cjs": "rstack",
- "rspack.config.ts": "rstack",
- "rspack.config.mts": "rstack",
- "rspack.config.cts": "rstack",
- "rsbuild.config.js": "rstack",
- "rsbuild.config.mjs": "rstack",
- "rsbuild.config.cjs": "rstack",
- "rsbuild.config.ts": "rstack",
- "rsbuild.config.mts": "rstack",
- "rsbuild.config.cts": "rstack",
- "rslib.config.js": "rstack",
- "rslib.config.mjs": "rstack",
- "rslib.config.cjs": "rstack",
- "rslib.config.ts": "rstack",
- "rslib.config.mts": "rstack",
- "rslib.config.cts": "rstack",
- "rstest.config.js": "rstack",
- "rstest.config.mjs": "rstack",
- "rstest.config.cjs": "rstack",
- "rstest.config.ts": "rstack",
- "rstest.config.mts": "rstack",
- "rstest.config.cts": "rstack",
- "rspress.config.js": "rstack",
- "rspress.config.mjs": "rstack",
- "rspress.config.cjs": "rstack",
- "rspress.config.ts": "rstack",
- "rspress.config.mts": "rstack",
- "rspress.config.cts": "rstack",
- "rslint.config.js": "rstack",
- "rslint.config.mjs": "rstack",
- "rslint.config.cjs": "rstack",
- "rslint.config.ts": "rstack",
- "rslint.config.mts": "rstack",
- "rslint.config.cts": "rstack",
- "rslint.json": "rstack",
- "rslint.jsonc": "rstack",
- "lynx.config.js": "lynx",
- "lynx.config.mjs": "lynx",
- "lynx.config.cjs": "lynx",
- "lynx.config.ts": "lynx",
- "lynx.config.mts": "lynx",
- "lynx.config.cts": "lynx",
- "ionic.config.json": "ionic",
- ".io-config.json": "ionic",
- "gulpfile.js": "gulp",
- "gulpfile.mjs": "gulp",
- "gulpfile.ts": "gulp",
- "gulpfile.cts": "gulp",
- "gulpfile.mts": "gulp",
- "gulpfile.babel.js": "gulp",
- "gulpfile.cjs": "gulp",
- "package.json": "nodejs",
- "package-lock.json": "nodejs",
- ".nvmrc": "nodejs",
- ".esmrc": "nodejs",
- ".node-version": "nodejs",
- ".npmignore": "npm",
- ".npmrc": "npm",
- ".yarnrc": "yarn",
- "yarn.lock": "yarn",
- ".yarnclean": "yarn",
- ".yarn-integrity": "yarn",
- "yarn-error.log": "yarn",
- ".yarnrc.yml": "yarn",
- ".yarnrc.yaml": "yarn",
- "androidmanifest.xml": "android",
- ".env.defaults": "tune",
- ".env.example": "tune",
- ".env.sample": "tune",
- ".env.template": "tune",
- ".env.schema": "tune",
- ".env.local": "tune",
- ".env.dev": "tune",
- ".env.development": "tune",
- ".env.alpha": "tune",
- ".env.e2e": "tune",
- ".env.qa": "tune",
- ".env.dist": "tune",
- ".env.prod": "tune",
- ".env.production": "tune",
- ".env.prod.example": "tune",
- ".env.production.example": "tune",
- ".env.stg": "tune",
- ".env.stage": "tune",
- ".env.staging": "tune",
- ".env.preview": "tune",
- ".env.test": "tune",
- ".env.testing": "tune",
- ".env.dev.local": "tune",
- ".env.development.local": "tune",
- ".env.qa.local": "tune",
- ".env.prod.local": "tune",
- ".env.production.local": "tune",
- ".env.stg.local": "tune",
- ".env.staging.local": "tune",
- ".env.test.local": "tune",
- ".env.uat": "tune",
- ".vars": "tune",
- ".dev.vars": "tune",
- "turbo.json": "turborepo",
- "turbo.jsonc": "turborepo",
- ".babelrc": "babel",
- ".babelrc.json": "babel",
- ".babelrc.jsonc": "babel",
- ".babelrc.json5": "babel",
- ".babelrc.yaml": "babel",
- ".babelrc.yml": "babel",
- ".babelrc.toml": "babel",
- ".babelrc.js": "babel",
- ".babelrc.mjs": "babel",
- ".babelrc.cjs": "babel",
- ".babelrc.ts": "babel",
- ".babelrc.mts": "babel",
- ".babelrc.cts": "babel",
- ".config/babelrc": "babel",
- ".config/babelrc.json": "babel",
- ".config/babelrc.jsonc": "babel",
- ".config/babelrc.json5": "babel",
- ".config/babelrc.yaml": "babel",
- ".config/babelrc.yml": "babel",
- ".config/babelrc.toml": "babel",
- ".config/babelrc.js": "babel",
- ".config/babelrc.mjs": "babel",
- ".config/babelrc.cjs": "babel",
- ".config/babelrc.ts": "babel",
- ".config/babelrc.mts": "babel",
- ".config/babelrc.cts": "babel",
- "babel.config.json": "babel",
- "babel.config.jsonc": "babel",
- "babel.config.json5": "babel",
- "babel.config.yaml": "babel",
- "babel.config.yml": "babel",
- "babel.config.toml": "babel",
- "babel.config.js": "babel",
- "babel.config.mjs": "babel",
- "babel.config.cjs": "babel",
- "babel.config.ts": "babel",
- "babel.config.mts": "babel",
- "babel.config.cts": "babel",
- ".babel-plugin-macrosrc": "babel",
- ".babel-plugin-macrosrc.json": "babel",
- ".babel-plugin-macrosrc.jsonc": "babel",
- ".babel-plugin-macrosrc.json5": "babel",
- ".babel-plugin-macrosrc.yaml": "babel",
- ".babel-plugin-macrosrc.yml": "babel",
- ".babel-plugin-macrosrc.toml": "babel",
- ".babel-plugin-macrosrc.js": "babel",
- ".babel-plugin-macrosrc.mjs": "babel",
- ".babel-plugin-macrosrc.cjs": "babel",
- ".babel-plugin-macrosrc.ts": "babel",
- ".babel-plugin-macrosrc.mts": "babel",
- ".babel-plugin-macrosrc.cts": "babel",
- ".config/babel-plugin-macrosrc": "babel",
- ".config/babel-plugin-macrosrc.json": "babel",
- ".config/babel-plugin-macrosrc.jsonc": "babel",
- ".config/babel-plugin-macrosrc.json5": "babel",
- ".config/babel-plugin-macrosrc.yaml": "babel",
- ".config/babel-plugin-macrosrc.yml": "babel",
- ".config/babel-plugin-macrosrc.toml": "babel",
- ".config/babel-plugin-macrosrc.js": "babel",
- ".config/babel-plugin-macrosrc.mjs": "babel",
- ".config/babel-plugin-macrosrc.cjs": "babel",
- ".config/babel-plugin-macrosrc.ts": "babel",
- ".config/babel-plugin-macrosrc.mts": "babel",
- ".config/babel-plugin-macrosrc.cts": "babel",
- "babel-plugin-macros.config.json": "babel",
- "babel-plugin-macros.config.jsonc": "babel",
- "babel-plugin-macros.config.json5": "babel",
- "babel-plugin-macros.config.yaml": "babel",
- "babel-plugin-macros.config.yml": "babel",
- "babel-plugin-macros.config.toml": "babel",
- "babel-plugin-macros.config.js": "babel",
- "babel-plugin-macros.config.mjs": "babel",
- "babel-plugin-macros.config.cjs": "babel",
- "babel-plugin-macros.config.ts": "babel",
- "babel-plugin-macros.config.mts": "babel",
- "babel-plugin-macros.config.cts": "babel",
- "babel-transform.js": "babel",
- "blitz.config.js": "blitz",
- "blitz.config.ts": "blitz",
- ".blitz.config.compiled.js": "blitz",
- "contributing.md": "contributing",
- "contributing.rst": "contributing",
- "contributing.txt": "contributing",
- "contributing": "contributing",
- "readme.md": "readme",
- "readme.rst": "readme",
- "readme.txt": "readme",
- "readme": "readme",
- "changelog": "changelog",
- "changelog.md": "changelog",
- "changelog.rst": "changelog",
- "changelog.txt": "changelog",
- "changes": "changelog",
- "changes.md": "changelog",
- "changes.rst": "changelog",
- "changes.txt": "changelog",
- "architecture.md": "architecture",
- "architecture.rst": "architecture",
- "architecture.txt": "architecture",
- "architecture": "architecture",
- "credits.md": "credits",
- "credits.rst": "credits",
- "credits.txt": "credits",
- "credits": "credits",
- "authors.md": "authors",
- "authors.rst": "authors",
- "authors.txt": "authors",
- "authors": "authors",
- "contributors.md": "authors",
- "contributors.rst": "authors",
- "contributors.txt": "authors",
- "contributors": "authors",
- ".flowconfig": "flow",
- "favicon.ico": "favicon",
- "karma.conf.js": "karma",
- "karma.conf.ts": "karma",
- "karma.conf.coffee": "karma",
- "karma.config.js": "karma",
- "karma.config.ts": "karma",
- "karma-main.js": "karma",
- "karma-main.ts": "karma",
- ".bithoundrc": "bithound",
- "svgo.config.js": "svgo",
- "svgo.config.cjs": "svgo",
- "svgo.config.mjs": "svgo",
- ".appveyor.yml": "appveyor",
- "appveyor.yml": "appveyor",
- ".travis.yml": "travis",
- ".codecov.yml": "codecov",
- "codecov.yml": "codecov",
- ".codecov.yaml": "codecov",
- "codecov.yaml": "codecov",
- "sonar-project.properties": "sonarcloud",
- ".sonarcloud.properties": "sonarcloud",
- "sonarcloud.yaml": "sonarcloud",
- "sonarqube.analysis.xml": "sonarcloud",
- "protractor.conf.js": "protractor",
- "protractor.conf.ts": "protractor",
- "protractor.conf.coffee": "protractor",
- "protractor.config.js": "protractor",
- "protractor.config.ts": "protractor",
- "fuse.js": "fusebox",
- "procfile": "heroku",
- "procfile.windows": "heroku",
- ".editorconfig": "editorconfig",
- ".editorconfig-checker.json": "editorconfig",
- ".ecrc": "editorconfig",
- ".bowerrc": "bower",
- "bower.json": "bower",
- ".eslintrc": "eslint",
- ".eslintrc.json": "eslint",
- ".eslintrc.jsonc": "eslint",
- ".eslintrc.json5": "eslint",
- ".eslintrc.yaml": "eslint",
- ".eslintrc.yml": "eslint",
- ".eslintrc.toml": "eslint",
- ".eslintrc.js": "eslint",
- ".eslintrc.mjs": "eslint",
- ".eslintrc.cjs": "eslint",
- ".eslintrc.ts": "eslint",
- ".eslintrc.mts": "eslint",
- ".eslintrc.cts": "eslint",
- ".config/eslintrc": "eslint",
- ".config/eslintrc.json": "eslint",
- ".config/eslintrc.jsonc": "eslint",
- ".config/eslintrc.json5": "eslint",
- ".config/eslintrc.yaml": "eslint",
- ".config/eslintrc.yml": "eslint",
- ".config/eslintrc.toml": "eslint",
- ".config/eslintrc.js": "eslint",
- ".config/eslintrc.mjs": "eslint",
- ".config/eslintrc.cjs": "eslint",
- ".config/eslintrc.ts": "eslint",
- ".config/eslintrc.mts": "eslint",
- ".config/eslintrc.cts": "eslint",
- "eslint.config.json": "eslint",
- "eslint.config.jsonc": "eslint",
- "eslint.config.json5": "eslint",
- "eslint.config.yaml": "eslint",
- "eslint.config.yml": "eslint",
- "eslint.config.toml": "eslint",
- "eslint.config.js": "eslint",
- "eslint.config.mjs": "eslint",
- "eslint.config.cjs": "eslint",
- "eslint.config.ts": "eslint",
- "eslint.config.mts": "eslint",
- "eslint.config.cts": "eslint",
- ".eslintrc-md.js": "eslint",
- ".eslintrc-jsdoc.js": "eslint",
- ".eslintrc.base.json": "eslint",
- ".eslintignore": "eslint",
- ".eslintcache": "eslint",
- "eslint-options.js": "eslint",
- "code_of_conduct.md": "conduct",
- "code_of_conduct.txt": "conduct",
- "code_of_conduct": "conduct",
- ".watchmanconfig": "watchman",
- "aurelia.json": "aurelia",
- ".autorc": "auto",
- "auto.config.js": "auto",
- "auto.config.ts": "auto",
- "auto-config.json": "auto",
- "auto-config.yaml": "auto",
- "auto-config.yml": "auto",
- "auto-config.ts": "auto",
- "auto-config.js": "auto",
- "mocha.opts": "mocha",
- ".mocharc.yml": "mocha",
- ".mocharc.yaml": "mocha",
- ".mocharc.js": "mocha",
- ".mocharc.cjs": "mocha",
- ".mocharc.json": "mocha",
- ".mocharc.jsonc": "mocha",
- "jenkinsfile": "jenkins",
- "firebase.config.js": "firebase",
- "firebase.json": "firebase",
- ".firebaserc": "firebase",
- "firestore.rules": "firebase",
- "firestore.indexes.json": "firebase",
- "rollup.config.js": "rollup",
- "rollup.config.mjs": "rollup",
- "rollup.config.ts": "rollup",
- "rollup-config.js": "rollup",
- "rollup-config.mjs": "rollup",
- "rollup-config.ts": "rollup",
- "rollup.config.common.js": "rollup",
- "rollup.config.common.mjs": "rollup",
- "rollup.config.common.ts": "rollup",
- "rollup.config.base.js": "rollup",
- "rollup.config.base.mjs": "rollup",
- "rollup.config.base.ts": "rollup",
- "rollup.config.prod.js": "rollup",
- "rollup.config.prod.mjs": "rollup",
- "rollup.config.prod.ts": "rollup",
- "rollup.config.dev.js": "rollup",
- "rollup.config.dev.mjs": "rollup",
- "rollup.config.dev.ts": "rollup",
- "rollup.config.prod.vendor.js": "rollup",
- "rollup.config.prod.vendor.mjs": "rollup",
- "rollup.config.prod.vendor.ts": "rollup",
- ".hhconfig": "hack",
- "hardhat.config.js": "hardhat",
- "hardhat.config.ts": "hardhat",
- ".stylelintrc": "stylelint",
- ".stylelintrc.json": "stylelint",
- ".stylelintrc.jsonc": "stylelint",
- ".stylelintrc.json5": "stylelint",
- ".stylelintrc.yaml": "stylelint",
- ".stylelintrc.yml": "stylelint",
- ".stylelintrc.toml": "stylelint",
- ".stylelintrc.js": "stylelint",
- ".stylelintrc.mjs": "stylelint",
- ".stylelintrc.cjs": "stylelint",
- ".stylelintrc.ts": "stylelint",
- ".stylelintrc.mts": "stylelint",
- ".stylelintrc.cts": "stylelint",
- ".config/stylelintrc": "stylelint",
- ".config/stylelintrc.json": "stylelint",
- ".config/stylelintrc.jsonc": "stylelint",
- ".config/stylelintrc.json5": "stylelint",
- ".config/stylelintrc.yaml": "stylelint",
- ".config/stylelintrc.yml": "stylelint",
- ".config/stylelintrc.toml": "stylelint",
- ".config/stylelintrc.js": "stylelint",
- ".config/stylelintrc.mjs": "stylelint",
- ".config/stylelintrc.cjs": "stylelint",
- ".config/stylelintrc.ts": "stylelint",
- ".config/stylelintrc.mts": "stylelint",
- ".config/stylelintrc.cts": "stylelint",
- "stylelint.config.json": "stylelint",
- "stylelint.config.jsonc": "stylelint",
- "stylelint.config.json5": "stylelint",
- "stylelint.config.yaml": "stylelint",
- "stylelint.config.yml": "stylelint",
- "stylelint.config.toml": "stylelint",
- "stylelint.config.js": "stylelint",
- "stylelint.config.mjs": "stylelint",
- "stylelint.config.cjs": "stylelint",
- "stylelint.config.ts": "stylelint",
- "stylelint.config.mts": "stylelint",
- "stylelint.config.cts": "stylelint",
- ".stylelintignore": "stylelint",
- ".stylelintcache": "stylelint",
- ".codeclimate.yml": "code-climate",
- ".prettierrc": "prettier",
- ".prettierrc.json": "prettier",
- ".prettierrc.jsonc": "prettier",
- ".prettierrc.json5": "prettier",
- ".prettierrc.yaml": "prettier",
- ".prettierrc.yml": "prettier",
- ".prettierrc.toml": "prettier",
- ".prettierrc.js": "prettier",
- ".prettierrc.mjs": "prettier",
- ".prettierrc.cjs": "prettier",
- ".prettierrc.ts": "prettier",
- ".prettierrc.mts": "prettier",
- ".prettierrc.cts": "prettier",
- ".config/prettierrc": "prettier",
- ".config/prettierrc.json": "prettier",
- ".config/prettierrc.jsonc": "prettier",
- ".config/prettierrc.json5": "prettier",
- ".config/prettierrc.yaml": "prettier",
- ".config/prettierrc.yml": "prettier",
- ".config/prettierrc.toml": "prettier",
- ".config/prettierrc.js": "prettier",
- ".config/prettierrc.mjs": "prettier",
- ".config/prettierrc.cjs": "prettier",
- ".config/prettierrc.ts": "prettier",
- ".config/prettierrc.mts": "prettier",
- ".config/prettierrc.cts": "prettier",
- "prettier.config.json": "prettier",
- "prettier.config.jsonc": "prettier",
- "prettier.config.json5": "prettier",
- "prettier.config.yaml": "prettier",
- "prettier.config.yml": "prettier",
- "prettier.config.toml": "prettier",
- "prettier.config.js": "prettier",
- "prettier.config.mjs": "prettier",
- "prettier.config.cjs": "prettier",
- "prettier.config.ts": "prettier",
- "prettier.config.mts": "prettier",
- "prettier.config.cts": "prettier",
- ".prettierignore": "prettier",
- ".renovaterc": "renovate",
- ".renovaterc.json": "renovate",
- "renovate-config.json": "renovate",
- "renovate.json": "renovate",
- "renovate.json5": "renovate",
- "apollo.config.js": "apollo",
- "nodemon.json": "nodemon",
- "nodemon-debug.json": "nodemon",
- ".hintrc": "webhint",
- "browserslist": "browserlist",
- ".browserslistrc": "browserlist",
- ".snyk": "snyk",
- ".drone.yml": "drone",
- ".sequelizerc": "sequelize",
- "gatsby-config.js": "gatsby",
- "gatsby-config.mjs": "gatsby",
- "gatsby-config.ts": "gatsby",
- "gatsby-node.js": "gatsby",
- "gatsby-node.mjs": "gatsby",
- "gatsby-node.ts": "gatsby",
- "gatsby-browser.js": "gatsby",
- "gatsby-browser.tsx": "gatsby",
- "gatsby-ssr.js": "gatsby",
- "gatsby-ssr.tsx": "gatsby",
- ".wakatime-project": "wakatime",
- "circle.yml": "circleci",
- ".cfignore": "cloudfoundry",
- "gruntfile.js": "grunt",
- "gruntfile.ts": "grunt",
- "gruntfile.cjs": "grunt",
- "gruntfile.cts": "grunt",
- "gruntfile.coffee": "grunt",
- "gruntfile.babel.js": "grunt",
- "gruntfile.babel.ts": "grunt",
- "gruntfile.babel.coffee": "grunt",
- "jest.config.js": "jest",
- "jest.config.cjs": "jest",
- "jest.config.mjs": "jest",
- "jest.config.ts": "jest",
- "jest.config.cts": "jest",
- "jest.config.mts": "jest",
- "jest.config.json": "jest",
- "jest.e2e.config.js": "jest",
- "jest.e2e.config.cjs": "jest",
- "jest.e2e.config.mjs": "jest",
- "jest.e2e.config.ts": "jest",
- "jest.e2e.config.cts": "jest",
- "jest.e2e.config.mts": "jest",
- "jest.e2e.config.json": "jest",
- "jest.e2e.json": "jest",
- "jest-unit.config.js": "jest",
- "jest-e2e.config.js": "jest",
- "jest-e2e.config.cjs": "jest",
- "jest-e2e.config.mjs": "jest",
- "jest-e2e.config.ts": "jest",
- "jest-e2e.config.cts": "jest",
- "jest-e2e.config.mts": "jest",
- "jest-e2e.config.json": "jest",
- "jest-e2e.json": "jest",
- "jest-github-actions-reporter.js": "jest",
- "jest.setup.js": "jest",
- "jest.setup.ts": "jest",
- "jest.json": "jest",
- ".jestrc": "jest",
- ".jestrc.js": "jest",
- ".jestrc.json": "jest",
- "jest.teardown.js": "jest",
- "jest-preset.json": "jest",
- "jest-preset.js": "jest",
- "jest-preset.cjs": "jest",
- "jest-preset.mjs": "jest",
- "jest.preset.js": "jest",
- "jest.preset.mjs": "jest",
- "jest.preset.cjs": "jest",
- "jest.preset.json": "jest",
- "fastfile": "fastlane",
- "appfile": "fastlane",
- ".helmignore": "helm",
- "wallaby.js": "wallaby",
- "wallaby.conf.js": "wallaby",
- "stencil.config.js": "stencil",
- "stencil.config.ts": "stencil",
- "makefile": "makefile",
- "gnumakefile": "makefile",
- "kbuild": "makefile",
- ".releaserc": "semantic-release",
- ".releaserc.json": "semantic-release",
- ".releaserc.jsonc": "semantic-release",
- ".releaserc.json5": "semantic-release",
- ".releaserc.yaml": "semantic-release",
- ".releaserc.yml": "semantic-release",
- ".releaserc.toml": "semantic-release",
- ".releaserc.js": "semantic-release",
- ".releaserc.mjs": "semantic-release",
- ".releaserc.cjs": "semantic-release",
- ".releaserc.ts": "semantic-release",
- ".releaserc.mts": "semantic-release",
- ".releaserc.cts": "semantic-release",
- ".config/releaserc": "semantic-release",
- ".config/releaserc.json": "semantic-release",
- ".config/releaserc.jsonc": "semantic-release",
- ".config/releaserc.json5": "semantic-release",
- ".config/releaserc.yaml": "semantic-release",
- ".config/releaserc.yml": "semantic-release",
- ".config/releaserc.toml": "semantic-release",
- ".config/releaserc.js": "semantic-release",
- ".config/releaserc.mjs": "semantic-release",
- ".config/releaserc.cjs": "semantic-release",
- ".config/releaserc.ts": "semantic-release",
- ".config/releaserc.mts": "semantic-release",
- ".config/releaserc.cts": "semantic-release",
- "release.config.json": "semantic-release",
- "release.config.jsonc": "semantic-release",
- "release.config.json5": "semantic-release",
- "release.config.yaml": "semantic-release",
- "release.config.yml": "semantic-release",
- "release.config.toml": "semantic-release",
- "release.config.js": "semantic-release",
- "release.config.mjs": "semantic-release",
- "release.config.cjs": "semantic-release",
- "release.config.ts": "semantic-release",
- "release.config.mts": "semantic-release",
- "release.config.cts": "semantic-release",
- "bitbucket-pipelines.yaml": "bitbucket",
- "bitbucket-pipelines.yml": "bitbucket",
- ".bazelignore": "bazel",
- ".bazelrc": "bazel",
- ".bazelversion": "bazel",
- ".gdignore": "godot-assets",
- "._sc_": "godot-assets",
- "_sc_": "godot-assets",
- "azure-pipelines.yml": "azure-pipelines",
- "azure-pipelines.yaml": "azure-pipelines",
- "azure-pipelines-main.yml": "azure-pipelines",
- "azure-pipelines-main.yaml": "azure-pipelines",
- "vagrantfile": "vagrant",
- "prisma.yml": "prisma",
- "prisma.config.ts": "prisma",
- ".nycrc": "istanbul",
- ".nycrc.json": "istanbul",
- ".nycrc.yaml": "istanbul",
- ".nycrc.yml": "istanbul",
- "nyc.config.js": "istanbul",
- "nyc.config.cjs": "istanbul",
- ".istanbul.yml": "istanbul",
- "tailwind.js": "tailwindcss",
- "tailwind.ts": "tailwindcss",
- "tailwind.config.js": "tailwindcss",
- "tailwind.config.cjs": "tailwindcss",
- "tailwind.config.mjs": "tailwindcss",
- "tailwind.config.ts": "tailwindcss",
- "tailwind.config.cts": "tailwindcss",
- "tailwind.config.mts": "tailwindcss",
- "buildkite.yml": "buildkite",
- "buildkite.yaml": "buildkite",
- "netlify.json": "netlify",
- "netlify.yml": "netlify",
- "netlify.yaml": "netlify",
- "netlify.toml": "netlify",
- "svelte.config.js": "svelte",
- "svelte.config.mjs": "svelte",
- "svelte.config.cjs": "svelte",
- "svelte.config.ts": "svelte",
- "svelte.config.mts": "svelte",
- "svelte.config.cts": "svelte",
- "nest-cli.json": "nest",
- ".nest-cli.json": "nest",
- "nestconfig.json": "nest",
- ".nestconfig.json": "nest",
- "moon.yml": "moon",
- ".percy.yml": "percy",
- ".gitpod.yml": "gitpod",
- ".stackblitzrc": "stackblitz",
- "codeowners": "codeowners",
- "owners": "codeowners",
- ".gcloudignore": "gcp",
- "amplify.yml": "amplify",
- ".huskyrc": "husky",
- ".huskyrc.json": "husky",
- ".huskyrc.jsonc": "husky",
- ".huskyrc.json5": "husky",
- ".huskyrc.yaml": "husky",
- ".huskyrc.yml": "husky",
- ".huskyrc.toml": "husky",
- ".huskyrc.js": "husky",
- ".huskyrc.mjs": "husky",
- ".huskyrc.cjs": "husky",
- ".huskyrc.ts": "husky",
- ".huskyrc.mts": "husky",
- ".huskyrc.cts": "husky",
- ".config/huskyrc": "husky",
- ".config/huskyrc.json": "husky",
- ".config/huskyrc.jsonc": "husky",
- ".config/huskyrc.json5": "husky",
- ".config/huskyrc.yaml": "husky",
- ".config/huskyrc.yml": "husky",
- ".config/huskyrc.toml": "husky",
- ".config/huskyrc.js": "husky",
- ".config/huskyrc.mjs": "husky",
- ".config/huskyrc.cjs": "husky",
- ".config/huskyrc.ts": "husky",
- ".config/huskyrc.mts": "husky",
- ".config/huskyrc.cts": "husky",
- "husky.config.json": "husky",
- "husky.config.jsonc": "husky",
- "husky.config.json5": "husky",
- "husky.config.yaml": "husky",
- "husky.config.yml": "husky",
- "husky.config.toml": "husky",
- "husky.config.js": "husky",
- "husky.config.mjs": "husky",
- "husky.config.cjs": "husky",
- "husky.config.ts": "husky",
- "husky.config.mts": "husky",
- "husky.config.cts": "husky",
- "tiltfile": "tilt",
- "capacitor.config.json": "capacitor",
- "capacitor.config.ts": "capacitor",
- ".adonisrc.json": "adonis",
- "ace": "adonis",
- "meson.build": "meson",
- "meson_options.txt": "meson",
- "meson.options": "meson",
- ".czrc": "commitizen",
- ".cz.json": "commitizen",
- ".cz.toml": "commitizen",
- ".cz.yaml": "commitizen",
- ".cz.yml": "commitizen",
- "cz.json": "commitizen",
- "cz.toml": "commitizen",
- "cz.yaml": "commitizen",
- "cz.yml": "commitizen",
- ".commitlintrc": "commitlint",
- ".commitlintrc.json": "commitlint",
- ".commitlintrc.jsonc": "commitlint",
- ".commitlintrc.json5": "commitlint",
- ".commitlintrc.yaml": "commitlint",
- ".commitlintrc.yml": "commitlint",
- ".commitlintrc.toml": "commitlint",
- ".commitlintrc.js": "commitlint",
- ".commitlintrc.mjs": "commitlint",
- ".commitlintrc.cjs": "commitlint",
- ".commitlintrc.ts": "commitlint",
- ".commitlintrc.mts": "commitlint",
- ".commitlintrc.cts": "commitlint",
- ".config/commitlintrc": "commitlint",
- ".config/commitlintrc.json": "commitlint",
- ".config/commitlintrc.jsonc": "commitlint",
- ".config/commitlintrc.json5": "commitlint",
- ".config/commitlintrc.yaml": "commitlint",
- ".config/commitlintrc.yml": "commitlint",
- ".config/commitlintrc.toml": "commitlint",
- ".config/commitlintrc.js": "commitlint",
- ".config/commitlintrc.mjs": "commitlint",
- ".config/commitlintrc.cjs": "commitlint",
- ".config/commitlintrc.ts": "commitlint",
- ".config/commitlintrc.mts": "commitlint",
- ".config/commitlintrc.cts": "commitlint",
- "commitlint.config.json": "commitlint",
- "commitlint.config.jsonc": "commitlint",
- "commitlint.config.json5": "commitlint",
- "commitlint.config.yaml": "commitlint",
- "commitlint.config.yml": "commitlint",
- "commitlint.config.toml": "commitlint",
- "commitlint.config.js": "commitlint",
- "commitlint.config.mjs": "commitlint",
- "commitlint.config.cjs": "commitlint",
- "commitlint.config.ts": "commitlint",
- "commitlint.config.mts": "commitlint",
- "commitlint.config.cts": "commitlint",
- ".commitlint.yaml": "commitlint",
- ".commitlint.yml": "commitlint",
- ".buckconfig": "buck",
- "nx.json": "nx",
- ".nxignore": "nx",
- "dune": "dune",
- "dune-project": "dune",
- "dune-workspace": "dune",
- "dune-workspace.dev": "dune",
- "roadmap.md": "roadmap",
- "roadmap.txt": "roadmap",
- "timeline.md": "roadmap",
- "timeline.txt": "roadmap",
- "milestones.md": "roadmap",
- "milestones.txt": "roadmap",
- "nuget.config": "nuget",
- ".nuspec": "nuget",
- "nuget.exe": "nuget",
- "stryker.conf.json": "stryker",
- "stryker.conf.js": "stryker",
- "stryker.conf.cjs": "stryker",
- "stryker.conf.mjs": "stryker",
- ".stryker.conf.json": "stryker",
- ".stryker.conf.js": "stryker",
- ".stryker.conf.cjs": "stryker",
- ".stryker.conf.mjs": "stryker",
- "stryker.config.json": "stryker",
- "stryker.config.js": "stryker",
- "stryker.config.mjs": "stryker",
- "stryker.config.cjs": "stryker",
- ".stryker.config.json": "stryker",
- ".stryker.config.js": "stryker",
- ".stryker.config.mjs": "stryker",
- ".stryker.config.cjs": "stryker",
- ".modernizrrc": "modernizr",
- ".modernizrrc.js": "modernizr",
- ".modernizrrc.json": "modernizr",
- ".slugignore": "slug",
- "stitches.config.js": "stitches",
- "stitches.config.ts": "stitches",
- "nginx.conf": "nginx",
- ".mcattributes": "minecraft",
- ".mcdefinitions": "minecraft",
- ".mcignore": "minecraft",
- ".replit": "replit",
- "duc.fbs": "duc",
- "snowpack.config.js": "snowpack",
- "snowpack.config.cjs": "snowpack",
- "snowpack.config.mjs": "snowpack",
- "snowpack.config.ts": "snowpack",
- "snowpack.config.cts": "snowpack",
- "snowpack.config.mts": "snowpack",
- "snowpack.deps.json": "snowpack",
- "snowpack.config.json": "snowpack",
- "quasar.conf.js": "quasar",
- "quasar.config.js": "quasar",
- "quasar.conf.ts": "quasar",
- "quasar.config.ts": "quasar",
- "quasar.config.cjs": "quasar",
- "dependabot.yml": "dependabot",
- "dependabot.yaml": "dependabot",
- "vite.config.js": "vite",
- "vite.config.mjs": "vite",
- "vite.config.cjs": "vite",
- "vite.config.ts": "vite",
- "vite.config.mts": "vite",
- "vite.config.cts": "vite",
- "vitest.workspace.js": "vitest",
- "vitest.workspace.mjs": "vitest",
- "vitest.workspace.cjs": "vitest",
- "vitest.workspace.ts": "vitest",
- "vitest.workspace.mts": "vitest",
- "vitest.workspace.cts": "vitest",
- "vitest.config.js": "vitest",
- "vitest.config.mjs": "vitest",
- "vitest.config.cjs": "vitest",
- "vitest.config.ts": "vitest",
- "vitest.config.mts": "vitest",
- "vitest.config.cts": "vitest",
- "vitest.unit.config.js": "vitest",
- "vitest.unit.config.mjs": "vitest",
- "vitest.unit.config.cjs": "vitest",
- "vitest.unit.config.ts": "vitest",
- "vitest.unit.config.mts": "vitest",
- "vitest.unit.config.cts": "vitest",
- "vitest.e2e.config.js": "vitest",
- "vitest.e2e.config.mjs": "vitest",
- "vitest.e2e.config.cjs": "vitest",
- "vitest.e2e.config.ts": "vitest",
- "vitest.e2e.config.mts": "vitest",
- "vitest.e2e.config.cts": "vitest",
- "velite.config.js": "velite",
- "velite.config.mjs": "velite",
- "velite.config.cjs": "velite",
- "velite.config.ts": "velite",
- "velite.config.mts": "velite",
- "velite.config.cts": "velite",
- "rolldown.config.js": "rolldown",
- "rolldown.config.mjs": "rolldown",
- "rolldown.config.cjs": "rolldown",
- "rolldown.config.ts": "rolldown",
- "rolldown.config.mts": "rolldown",
- "rolldown.config.cts": "rolldown",
- "lerna.json": "lerna",
- "windi.config.js": "windicss",
- "windi.config.cjs": "windicss",
- "windi.config.ts": "windicss",
- "windi.config.cts": "windicss",
- "windi.config.json": "windicss",
- ".textlintrc": "textlint",
- ".textlintrc.js": "textlint",
- ".textlintrc.cjs": "textlint",
- ".textlintrc.json": "textlint",
- ".textlintrc.yml": "textlint",
- ".textlintrc.yaml": "textlint",
- ".textlintignore": "textlint",
- "vpkg.json": "vlang",
- "v.mod": "vlang",
- "sentry.client.config.js": "sentry",
- "sentry.client.config.mjs": "sentry",
- "sentry.client.config.cjs": "sentry",
- "sentry.client.config.ts": "sentry",
- "sentry.client.config.mts": "sentry",
- "sentry.client.config.cts": "sentry",
- "sentry.server.config.js": "sentry",
- "sentry.server.config.mjs": "sentry",
- "sentry.server.config.cjs": "sentry",
- "sentry.server.config.ts": "sentry",
- "sentry.server.config.mts": "sentry",
- "sentry.server.config.cts": "sentry",
- "sentry.edge.config.js": "sentry",
- "sentry.edge.config.mjs": "sentry",
- "sentry.edge.config.cjs": "sentry",
- "sentry.edge.config.ts": "sentry",
- "sentry.edge.config.mts": "sentry",
- "sentry.edge.config.cts": "sentry",
- ".sentryclirc": "sentry",
- ".env.sentry-build-plugin": "sentry",
- "contentlayer.config.js": "contentlayer",
- "contentlayer.config.mjs": "contentlayer",
- "contentlayer.config.cjs": "contentlayer",
- "contentlayer.config.ts": "contentlayer",
- "contentlayer.config.mts": "contentlayer",
- "contentlayer.config.cts": "contentlayer",
- ".phpunit.result.cache": "phpunit",
- ".phpunit-watcher.yml": "phpunit",
- "phpunit.xml": "phpunit",
- "phpunit.xml.dist": "phpunit",
- "phpunit-watcher.yml": "phpunit",
- "phpunit-watcher.yml.dist": "phpunit",
- ".php_cs": "php-cs-fixer",
- ".php_cs.dist": "php-cs-fixer",
- ".php_cs.php": "php-cs-fixer",
- ".php_cs.dist.php": "php-cs-fixer",
- ".php-cs-fixer.php": "php-cs-fixer",
- ".php-cs-fixer.dist.php": "php-cs-fixer",
- "robots.txt": "robots",
- "tsconfig.json": "tsconfig",
- "tsconfig.app.json": "tsconfig",
- "tsconfig.editor.json": "tsconfig",
- "tsconfig.spec.json": "tsconfig",
- "tsconfig.base.json": "tsconfig",
- "tsconfig.build.json": "tsconfig",
- "tsconfig.eslint.json": "tsconfig",
- "tsconfig.lib.json": "tsconfig",
- "tsconfig.lib.prod.json": "tsconfig",
- "tsconfig.node.json": "tsconfig",
- "tsconfig.test.json": "tsconfig",
- "tsconfig.e2e.json": "tsconfig",
- "tsconfig.web.json": "tsconfig",
- "tsconfig.webworker.json": "tsconfig",
- "tsconfig.worker.json": "tsconfig",
- "tsconfig.config.json": "tsconfig",
- "tsconfig.vitest.json": "tsconfig",
- "tsconfig.cjs.json": "tsconfig",
- "tsconfig.esm.json": "tsconfig",
- "tsconfig.mjs.json": "tsconfig",
- "tsconfig.doc.json": "tsconfig",
- "tsconfig.paths.json": "tsconfig",
- "tsconfig.main.json": "tsconfig",
- "tsconfig.renderer.json": "tsconfig",
- "tsconfig.server.json": "tsconfig",
- "tsconfig.client.json": "tsconfig",
- "tsconfig.declaration.json": "tsconfig",
- "tauri.conf.json": "tauri",
- "tauri.config.json": "tauri",
- "tauri.linux.conf.json": "tauri",
- "tauri.windows.conf.json": "tauri",
- "tauri.macos.conf.json": "tauri",
- ".taurignore": "tauri",
- "jsconfig.json": "jsconfig",
- "maven.config": "maven",
- "jvm.config": "maven",
- "pom.xml": "maven",
- "serverless.yml": "serverless",
- "serverless.yaml": "serverless",
- "serverless.json": "serverless",
- "serverless.js": "serverless",
- "serverless.ts": "serverless",
- "supabase.js": "supabase",
- "supabase.ts": "supabase",
- "supabase.py": "supabase",
- ".ember-cli": "ember",
- ".ember-cli.js": "ember",
- "ember-cli-builds.js": "ember",
- "horusec-config.json": "horusec",
- "poetry.lock": "poetry",
- "pdm.lock": "pdm",
- "pdm.toml": "pdm",
- ".pdm-python": "pdm",
- ".parcelrc": "parcel",
- ".astylerc": "astyle",
- ".lighthouserc.js": "lighthouse",
- "lighthouserc.js": "lighthouse",
- ".lighthouserc.cjs": "lighthouse",
- "lighthouserc.cjs": "lighthouse",
- ".lighthouserc.json": "lighthouse",
- "lighthouserc.json": "lighthouse",
- ".lighthouserc.yml": "lighthouse",
- "lighthouserc.yml": "lighthouse",
- ".lighthouserc.yaml": "lighthouse",
- "lighthouserc.yaml": "lighthouse",
- ".svgrrc": "svgr",
- ".svgrrc.json": "svgr",
- ".svgrrc.jsonc": "svgr",
- ".svgrrc.json5": "svgr",
- ".svgrrc.yaml": "svgr",
- ".svgrrc.yml": "svgr",
- ".svgrrc.toml": "svgr",
- ".svgrrc.js": "svgr",
- ".svgrrc.mjs": "svgr",
- ".svgrrc.cjs": "svgr",
- ".svgrrc.ts": "svgr",
- ".svgrrc.mts": "svgr",
- ".svgrrc.cts": "svgr",
- ".config/svgrrc": "svgr",
- ".config/svgrrc.json": "svgr",
- ".config/svgrrc.jsonc": "svgr",
- ".config/svgrrc.json5": "svgr",
- ".config/svgrrc.yaml": "svgr",
- ".config/svgrrc.yml": "svgr",
- ".config/svgrrc.toml": "svgr",
- ".config/svgrrc.js": "svgr",
- ".config/svgrrc.mjs": "svgr",
- ".config/svgrrc.cjs": "svgr",
- ".config/svgrrc.ts": "svgr",
- ".config/svgrrc.mts": "svgr",
- ".config/svgrrc.cts": "svgr",
- "svgr.config.json": "svgr",
- "svgr.config.jsonc": "svgr",
- "svgr.config.json5": "svgr",
- "svgr.config.yaml": "svgr",
- "svgr.config.yml": "svgr",
- "svgr.config.toml": "svgr",
- "svgr.config.js": "svgr",
- "svgr.config.mjs": "svgr",
- "svgr.config.cjs": "svgr",
- "svgr.config.ts": "svgr",
- "svgr.config.mts": "svgr",
- "svgr.config.cts": "svgr",
- "rome.json": "rome",
- "cypress.config.js": "cypress",
- "cypress.config.mjs": "cypress",
- "cypress.config.cjs": "cypress",
- "cypress.config.ts": "cypress",
- "cypress.config.mts": "cypress",
- "cypress.config.cts": "cypress",
- "cypress.json": "cypress",
- "cypress.env.json": "cypress",
- "plopfile.js": "plop",
- "plopfile.cjs": "plop",
- "plopfile.mjs": "plop",
- "plopfile.ts": "plop",
- ".tobimake": "tobimake",
- "gleam.toml": "gleam",
- "pnpm-lock.yaml": "pnpm",
- "pnpm-workspace.yaml": "pnpm",
- ".pnpmfile.cjs": "pnpm",
- "gridsome.config.js": "gridsome",
- "gridsome.server.js": "gridsome",
- ".steadybit.yml": "steadybit",
- "steadybit.yml": "steadybit",
- ".steadybit.yaml": "steadybit",
- "steadybit.yaml": "steadybit",
- "caddyfile": "caddy",
- "openapi.json": "openapi",
- "openapi.yml": "openapi",
- "openapi.yaml": "openapi",
- "swagger.json": "swagger",
- "swagger.yml": "swagger",
- "swagger.yaml": "swagger",
- "bun.lockb": "bun",
- "bunfig.toml": "bun",
- ".bun-version": "bun",
- "bun.lock": "bun",
- ".nano-staged.js": "nano-staged",
- "nano-staged.js": "nano-staged",
- ".nano-staged.cjs": "nano-staged",
- "nano-staged.cjs": "nano-staged",
- ".nano-staged.mjs": "nano-staged",
- "nano-staged.mjs": "nano-staged",
- ".nano-staged.json": "nano-staged",
- "nano-staged.json": "nano-staged",
- ".nanostagedrc": "nano-staged",
- "knip.json": "knip",
- "knip.jsonc": "knip",
- ".knip.json": "knip",
- ".knip.jsonc": "knip",
- "knip.ts": "knip",
- "knip.js": "knip",
- "knip.config.ts": "knip",
- "knip.config.js": "knip",
- "taskfile.yml": "taskfile",
- "taskfile.yaml": "taskfile",
- "taskfile.dist.yml": "taskfile",
- "taskfile.dist.yaml": "taskfile",
- ".taskrc.yml": "taskfile",
- ".taskrc.yaml": "taskfile",
- ".cracorc": "craco",
- ".cracorc.json": "craco",
- ".cracorc.jsonc": "craco",
- ".cracorc.json5": "craco",
- ".cracorc.yaml": "craco",
- ".cracorc.yml": "craco",
- ".cracorc.toml": "craco",
- ".cracorc.js": "craco",
- ".cracorc.mjs": "craco",
- ".cracorc.cjs": "craco",
- ".cracorc.ts": "craco",
- ".cracorc.mts": "craco",
- ".cracorc.cts": "craco",
- ".config/cracorc": "craco",
- ".config/cracorc.json": "craco",
- ".config/cracorc.jsonc": "craco",
- ".config/cracorc.json5": "craco",
- ".config/cracorc.yaml": "craco",
- ".config/cracorc.yml": "craco",
- ".config/cracorc.toml": "craco",
- ".config/cracorc.js": "craco",
- ".config/cracorc.mjs": "craco",
- ".config/cracorc.cjs": "craco",
- ".config/cracorc.ts": "craco",
- ".config/cracorc.mts": "craco",
- ".config/cracorc.cts": "craco",
- "craco.config.json": "craco",
- "craco.config.jsonc": "craco",
- "craco.config.json5": "craco",
- "craco.config.yaml": "craco",
- "craco.config.yml": "craco",
- "craco.config.toml": "craco",
- "craco.config.js": "craco",
- "craco.config.mjs": "craco",
- "craco.config.cjs": "craco",
- "craco.config.ts": "craco",
- "craco.config.mts": "craco",
- "craco.config.cts": "craco",
- ".hg": "mercurial",
- ".hgignore": "mercurial",
- ".hgflow": "mercurial",
- ".hgtags": "mercurial",
- ".hgrc": "mercurial",
- "hgrc": "mercurial",
- "mercurial.ini": "mercurial",
- "deno.json": "deno",
- "deno.jsonc": "deno",
- "deno.lock": "deno",
- "plastic.branchexplorer": "plastic",
- "plastic.selector": "plastic",
- "plastic.wktree": "plastic",
- "plastic.workspace": "plastic",
- "plastic.workspaces": "plastic",
- "typst.toml": "typst",
- "uno.config.js": "unocss",
- "uno.config.mjs": "unocss",
- "uno.config.ts": "unocss",
- "uno.config.mts": "unocss",
- "unocss.config.js": "unocss",
- "unocss.config.mjs": "unocss",
- "unocss.config.ts": "unocss",
- "unocss.config.mts": "unocss",
- ".mincloudrc": "ifanr-cloud",
- ".qa-mincloudrc": "ifanr-cloud",
- "concourse.yml": "concourse",
- ".syncpackrc": "syncpack",
- ".syncpackrc.json": "syncpack",
- ".syncpackrc.jsonc": "syncpack",
- ".syncpackrc.json5": "syncpack",
- ".syncpackrc.yaml": "syncpack",
- ".syncpackrc.yml": "syncpack",
- ".syncpackrc.toml": "syncpack",
- ".syncpackrc.js": "syncpack",
- ".syncpackrc.mjs": "syncpack",
- ".syncpackrc.cjs": "syncpack",
- ".syncpackrc.ts": "syncpack",
- ".syncpackrc.mts": "syncpack",
- ".syncpackrc.cts": "syncpack",
- ".config/syncpackrc": "syncpack",
- ".config/syncpackrc.json": "syncpack",
- ".config/syncpackrc.jsonc": "syncpack",
- ".config/syncpackrc.json5": "syncpack",
- ".config/syncpackrc.yaml": "syncpack",
- ".config/syncpackrc.yml": "syncpack",
- ".config/syncpackrc.toml": "syncpack",
- ".config/syncpackrc.js": "syncpack",
- ".config/syncpackrc.mjs": "syncpack",
- ".config/syncpackrc.cjs": "syncpack",
- ".config/syncpackrc.ts": "syncpack",
- ".config/syncpackrc.mts": "syncpack",
- ".config/syncpackrc.cts": "syncpack",
- "syncpack.config.json": "syncpack",
- "syncpack.config.jsonc": "syncpack",
- "syncpack.config.json5": "syncpack",
- "syncpack.config.yaml": "syncpack",
- "syncpack.config.yml": "syncpack",
- "syncpack.config.toml": "syncpack",
- "syncpack.config.js": "syncpack",
- "syncpack.config.mjs": "syncpack",
- "syncpack.config.cjs": "syncpack",
- "syncpack.config.ts": "syncpack",
- "syncpack.config.mts": "syncpack",
- "syncpack.config.cts": "syncpack",
- "werf.yaml": "werf",
- "werf.yml": "werf",
- "werf-giterminism.yaml": "werf",
- "werf-giterminism.yml": "werf",
- "werf-includes.lock": "werf",
- "werf-includes.yaml": "werf",
- "werf-includes.yml": "werf",
- ".luaurc": "luau",
- "wally.toml": "wally",
- "panda.config.js": "panda",
- "panda.config.mjs": "panda",
- "panda.config.cjs": "panda",
- "panda.config.ts": "panda",
- "panda.config.mts": "panda",
- "panda.config.cts": "panda",
- "biome.json": "biome",
- "biome.jsonc": "biome",
- ".biome.json": "biome",
- ".biome.jsonc": "biome",
- "esbuild.js": "esbuild",
- "esbuild.mjs": "esbuild",
- "esbuild.cjs": "esbuild",
- "esbuild.ts": "esbuild",
- "esbuild.mts": "esbuild",
- "esbuild.cts": "esbuild",
- "esbuild.config.js": "esbuild",
- "esbuild.config.mjs": "esbuild",
- "esbuild.config.cjs": "esbuild",
- "esbuild.config.ts": "esbuild",
- "esbuild.config.mts": "esbuild",
- "esbuild.config.cts": "esbuild",
- "esbuild.dev.js": "esbuild",
- "esbuild.dev.mjs": "esbuild",
- "esbuild.dev.cjs": "esbuild",
- "esbuild.dev.ts": "esbuild",
- "esbuild.dev.mts": "esbuild",
- "esbuild.dev.cts": "esbuild",
- "esbuild.stage.js": "esbuild",
- "esbuild.stage.mjs": "esbuild",
- "esbuild.stage.cjs": "esbuild",
- "esbuild.stage.ts": "esbuild",
- "esbuild.stage.mts": "esbuild",
- "esbuild.stage.cts": "esbuild",
- "esbuild.prod.js": "esbuild",
- "esbuild.prod.mjs": "esbuild",
- "esbuild.prod.cjs": "esbuild",
- "esbuild.prod.ts": "esbuild",
- "esbuild.prod.mts": "esbuild",
- "esbuild.prod.cts": "esbuild",
- "esbuild.test.js": "esbuild",
- "esbuild.test.mjs": "esbuild",
- "esbuild.test.cjs": "esbuild",
- "esbuild.test.ts": "esbuild",
- "esbuild.test.mts": "esbuild",
- "esbuild.test.cts": "esbuild",
- "drizzle.config.ts": "drizzle",
- "drizzle.config.dev.ts": "drizzle",
- "drizzle.config.prod.ts": "drizzle",
- "drizzle.config.js": "drizzle",
- "drizzle.config.dev.js": "drizzle",
- "drizzle.config.prod.js": "drizzle",
- "drizzle.config.json": "drizzle",
- "drizzle.config.dev.json": "drizzle",
- "drizzle.config.prod.json": "drizzle",
- ".puppeteerrc": "puppeteer",
- ".puppeteerrc.json": "puppeteer",
- ".puppeteerrc.jsonc": "puppeteer",
- ".puppeteerrc.json5": "puppeteer",
- ".puppeteerrc.yaml": "puppeteer",
- ".puppeteerrc.yml": "puppeteer",
- ".puppeteerrc.toml": "puppeteer",
- ".puppeteerrc.js": "puppeteer",
- ".puppeteerrc.mjs": "puppeteer",
- ".puppeteerrc.cjs": "puppeteer",
- ".puppeteerrc.ts": "puppeteer",
- ".puppeteerrc.mts": "puppeteer",
- ".puppeteerrc.cts": "puppeteer",
- ".config/puppeteerrc": "puppeteer",
- ".config/puppeteerrc.json": "puppeteer",
- ".config/puppeteerrc.jsonc": "puppeteer",
- ".config/puppeteerrc.json5": "puppeteer",
- ".config/puppeteerrc.yaml": "puppeteer",
- ".config/puppeteerrc.yml": "puppeteer",
- ".config/puppeteerrc.toml": "puppeteer",
- ".config/puppeteerrc.js": "puppeteer",
- ".config/puppeteerrc.mjs": "puppeteer",
- ".config/puppeteerrc.cjs": "puppeteer",
- ".config/puppeteerrc.ts": "puppeteer",
- ".config/puppeteerrc.mts": "puppeteer",
- ".config/puppeteerrc.cts": "puppeteer",
- "puppeteer.config.json": "puppeteer",
- "puppeteer.config.jsonc": "puppeteer",
- "puppeteer.config.json5": "puppeteer",
- "puppeteer.config.yaml": "puppeteer",
- "puppeteer.config.yml": "puppeteer",
- "puppeteer.config.toml": "puppeteer",
- "puppeteer.config.js": "puppeteer",
- "puppeteer.config.mjs": "puppeteer",
- "puppeteer.config.cjs": "puppeteer",
- "puppeteer.config.ts": "puppeteer",
- "puppeteer.config.mts": "puppeteer",
- "puppeteer.config.cts": "puppeteer",
- "garden.yml": "garden",
- "garden.yaml": "garden",
- "project.garden.yml": "garden",
- "project.garden.yaml": "garden",
- ".gardenignore": "garden",
- "pklproject": "pkl",
- "pklproject.deps.json": "pkl",
- "k8s.yml": "kubernetes",
- "k8s.yaml": "kubernetes",
- "kubernetes.yml": "kubernetes",
- "kubernetes.yaml": "kubernetes",
- ".k8s.yml": "kubernetes",
- ".k8s.yaml": "kubernetes",
- "phpstan.neon": "phpstan",
- "phpstan.neon.dist": "phpstan",
- "phpstan.dist.neon": "phpstan",
- "screwdriver.yaml": "screwdriver",
- "screwdriver.yml": "screwdriver",
- "snapcraft.yaml": "snapcraft",
- "snapcraft.yml": "snapcraft",
- ".devcontainer/devcontainer.json": "container",
- ".devcontainer/devcontainer-lock.json": "container",
- "kcl.mod": "kcl",
- "kcl.yaml": "kcl",
- "kcl.yml": "kcl",
- ".clangd": "clangd",
- ".markdownlint.json": "markdownlint",
- ".markdownlint.jsonc": "markdownlint",
- ".markdownlint.yaml": "markdownlint",
- ".markdownlint.yml": "markdownlint",
- ".markdownlint-cli2.jsonc": "markdownlint",
- ".markdownlint-cli2.yaml": "markdownlint",
- ".markdownlint-cli2.cjs": "markdownlint",
- ".markdownlint-cli2.mjs": "markdownlint",
- ".markdownlintignore": "markdownlint",
- "trigger.config.js": "trigger",
- "trigger.config.mjs": "trigger",
- "trigger.config.cjs": "trigger",
- "trigger.config.ts": "trigger",
- "trigger.config.mts": "trigger",
- "trigger.config.cts": "trigger",
- ".deepsource.toml": "deepsource",
- "jsr.json": "jsr",
- "jsr.jsonc": "jsr",
- ".coderabbit.yml": "coderabbit-ai",
- ".coderabbit.yaml": "coderabbit-ai",
- ".aiexclude": "gemini-ai",
- "gemini.md": "gemini-ai",
- "taze.config.js": "taze",
- "taze.config.mjs": "taze",
- "taze.config.cjs": "taze",
- "taze.config.ts": "taze",
- "taze.config.mts": "taze",
- "taze.config.cts": "taze",
- ".tazerc": "taze",
- ".tazerc.json": "taze",
- "wxt.config.js": "wxt",
- "wxt.config.mjs": "wxt",
- "wxt.config.cjs": "wxt",
- "wxt.config.ts": "wxt",
- "wxt.config.mts": "wxt",
- "wxt.config.cts": "wxt",
- ".lefthook-local.json": "lefthook",
- ".lefthook-local.toml": "lefthook",
- ".lefthook-local.yaml": "lefthook",
- ".lefthook-local.yml": "lefthook",
- ".lefthook.json": "lefthook",
- ".lefthook.toml": "lefthook",
- ".lefthook.yaml": "lefthook",
- ".lefthook.yml": "lefthook",
- ".lefthookrc": "lefthook",
- "lefthook-local.json": "lefthook",
- "lefthook-local.toml": "lefthook",
- "lefthook-local.yaml": "lefthook",
- "lefthook-local.yml": "lefthook",
- "lefthook.json": "lefthook",
- "lefthook.toml": "lefthook",
- "lefthook.yaml": "lefthook",
- "lefthook.yml": "lefthook",
- "lefthookrc": "lefthook",
- ".github/labeler.yml": "label",
- ".github/labeler.yaml": "label",
- "tags": "label",
- "zeabur.json": "zeabur",
- "zeabur.jsonc": "zeabur",
- "zeabur.json5": "zeabur",
- "zeabur.yaml": "zeabur",
- "zeabur.yml": "zeabur",
- "zeabur.toml": "zeabur",
- "copilot-instructions.md": "copilot",
- ".pre-commit-config.yaml": "pre-commit",
- ".pre-commit-hooks.yaml": "pre-commit",
- ".lintstagedrc": "lintstaged",
- ".lintstagedrc.json": "lintstaged",
- ".lintstagedrc.yaml": "lintstaged",
- ".lintstagedrc.yml": "lintstaged",
- ".lintstagedrc.mjs": "lintstaged",
- ".lintstagedrc.cjs": "lintstaged",
- "lint-staged.config.mjs": "lintstaged",
- "lint-staged.config.cjs": "lintstaged",
- "lint-staged.config.js": "lintstaged",
- ".lintstagedrc.js": "lintstaged",
- "histoire.config.js": "histoire",
- "histoire.config.mjs": "histoire",
- "histoire.config.cjs": "histoire",
- "histoire.config.ts": "histoire",
- "histoire.config.mts": "histoire",
- "histoire.config.cts": "histoire",
- ".histoire.js": "histoire",
- ".histoire.mjs": "histoire",
- ".histoire.cjs": "histoire",
- ".histoire.ts": "histoire",
- ".histoire.mts": "histoire",
- ".histoire.cts": "histoire",
- "install": "installation",
- "installation": "installation",
- ".github/funding.yml": "github-sponsors",
- "fabric.mod.json": "minecraft-fabric",
- ".umirc.js": "umi",
- ".umirc.mjs": "umi",
- ".umirc.cjs": "umi",
- ".umirc.ts": "umi",
- ".umirc.mts": "umi",
- ".umirc.cts": "umi",
- "ecosystem.config.js": "pm2-ecosystem",
- "ecosystem.config.mjs": "pm2-ecosystem",
- "ecosystem.config.cjs": "pm2-ecosystem",
- "ecosystem.config.ts": "pm2-ecosystem",
- "ecosystem.config.mts": "pm2-ecosystem",
- "ecosystem.config.cts": "pm2-ecosystem",
- "hosts": "hosts",
- "citation.cff": "citation",
- "xmake.lua": "xmake",
- "xmake": "xmake",
- "wrangler.toml": "wrangler",
- "wrangler.json": "wrangler",
- "wrangler.jsonc": "wrangler",
- ".clinerules": "cline",
- ".packshiprc": "packship",
- ".packshiprc.json": "packship",
- ".packshiprc.js": "packship",
- ".packshiprc.ts": "packship",
- "packship.config.js": "packship",
- "packship.config.ts": "packship",
- "packship.config.mjs": "packship",
- "packship.config.mts": "packship",
- "packship.config.json": "packship",
- "snakefile": "snakemake",
- ".hadolint.yaml": "hadolint",
- ".hadolint.yml": "hadolint",
- "hadolint.yaml": "hadolint",
- "hadolint.yml": "hadolint",
- "tsdoc.json": "tsdoc",
- ".oxlintrc.json": "oxc",
- ".oxlintrc.jsonc": "oxc",
- ".oxfmtrc.json": "oxc",
- ".oxfmtrc.jsonc": "oxc",
- "oxlint.config.ts": "oxc",
- "oxfmt.config.ts": "oxc",
- "claude.md": "claude",
- "claude.local.md": "claude",
- ".cursorignore": "cursor",
- ".cursorindexingignore": "cursor",
- ".cursorrules": "cursor",
- ".cursor": "cursor",
- ".cursor.json": "cursor",
- ".cursorrc": "cursor",
- "metro.config.js": "metro",
- "metro.config.cjs": "metro",
- "metro.config.mjs": "metro",
- "metro.config.json": "metro",
- "src/bashly.yaml": "bashly",
- "src/bashly.yml": "bashly",
- "bashly-settings.yaml": "bashly-settings",
- "bashly-settings.yml": "bashly-settings",
- "src/bashly-strings.yaml": "bashly-strings",
- "src/bashly-strings.yml": "bashly-strings",
- "google-services.json": "google",
- "googleservice-info.plist": "google",
- ".shellcheckrc": "shellcheck",
- "shellcheckrc": "shellcheck",
- "warp.md": "warp",
- "skill.md": "skill",
- "instructions.md": "instructions",
- "instruction.md": "instructions",
- "language-configuration.json": "jsonc",
- "icon-theme.json": "jsonc",
- "color-theme.json": "jsonc",
- "*.log.?": "log"
- },
- "languageIds": {
- "git": "git",
- "git-commit": "git",
- "git-rebase": "git",
- "ignore": "git",
- "github-actions-workflow": "github-actions-workflow",
- "yaml": "yaml",
- "spring-boot-properties-yaml": "yaml",
- "ansible": "yaml",
- "ansible-jinja": "yaml",
- "xml": "xml",
- "xquery": "xml",
- "xsl": "xml",
- "matlab": "matlab",
- "makefile": "settings",
- "ini": "settings",
- "properties": "settings",
- "spring-boot-properties": "settings",
- "toml": "toml",
- "diff": "diff",
- "json": "json",
- "jsonl": "json",
- "jsonc": "json",
- "json5": "json",
- "blink": "blink",
- "java": "java",
- "razor": "razor",
- "aspnetcorerazor": "razor",
- "python": "python",
- "mojo": "mojo",
- "javascript": "javascript",
- "typescript": "typescript",
- "ets": "typescript",
- "scala": "scala",
- "handlebars": "handlebars",
- "perl": "perl",
- "perl6": "perl",
- "haxe": "haxe",
- "hxml": "haxe",
- "puppet": "puppet",
- "elixir": "elixir",
- "livescript": "livescript",
- "erlang": "erlang",
- "twig": "twig",
- "julia": "julia",
- "elm": "elm",
- "purescript": "purescript",
- "stylus": "stylus",
- "nunjucks": "nunjucks",
- "pug": "pug",
- "robotframework": "robot",
- "sass": "sass",
- "scss": "sass",
- "less": "less",
- "css": "css",
- "testOutput": "visualstudio",
- "vb": "visualstudio",
- "ng-template": "angular",
- "graphql": "graphql",
- "solidity": "solidity",
- "autoit": "autoit",
- "haml": "haml",
- "yang": "yang",
- "terraform": "terraform",
- "opentofu": "opentofu",
- "applescript": "applescript",
- "cake": "cake",
- "cucumber": "cucumber",
- "nim": "nim",
- "nimble": "nim",
- "apiblueprint": "apiblueprint",
- "riot": "riot",
- "postcss": "postcss",
- "lang-cfml": "coldfusion",
- "haskell": "haskell",
- "dhall": "dhall",
- "cabal": "cabal",
- "nix": "nix",
- "ruby": "ruby",
- "slim": "slim",
- "php": "php",
- "hack": "hack",
- "javascriptreact": "react",
- "mjml": "mjml",
- "processing": "processing",
- "hcl": "hcl",
- "go": "go",
- "django-html": "django",
- "django-txt": "django",
- "html": "html",
- "gdscript": "godot",
- "gdresource": "godot-assets",
- "gdshader": "godot-assets",
- "viml": "vim",
- "prolog": "prolog",
- "pawn": "pawn",
- "reason": "reason",
- "reason_lisp": "reason",
- "sml": "sml",
- "tex": "tex",
- "latex": "latex",
- "latex-expl3": "latex",
- "latex-class": "latex-class",
- "latex-package": "latex-package",
- "context": "context",
- "doctex": "doctex",
- "doctex-installer": "doctex-installer",
- "bibtex": "bibliography",
- "bibtex-style": "bibtex-style",
- "apex": "salesforce",
- "sas": "sas",
- "dockerfile": "docker",
- "dockercompose": "docker",
- "dockerbake": "docker",
- "csv": "table",
- "tsv": "table",
- "psv": "table",
- "csharp": "csharp",
- "bat": "console",
- "awk": "console",
- "shellscript": "console",
- "c": "c",
- "cpp": "cpp",
- "objective-c": "objective-c",
- "objective-cpp": "objective-cpp",
- "c3": "c3",
- "coffeescript": "coffee",
- "fsharp": "fsharp",
- "editorconfig": "editorconfig",
- "clojure": "clojure",
- "groovy": "groovy",
- "markdoc": "markdoc",
- "markdown": "markdown",
- "jinja": "jinja",
- "proto": "proto",
- "pip-requirements": "python-misc",
- "vue": "vue",
- "vue-postcss": "vue",
- "vue-html": "vue",
- "lua": "lua",
- "log": "log",
- "jupyter": "jupyter",
- "plaintext": "document",
- "pdf": "pdf",
- "powershell": "powershell",
- "jade": "pug",
- "r": "r",
- "rsweave": "r",
- "rust": "rust",
- "sql": "database",
- "kql": "kusto",
- "ssh_config": "lock",
- "svg": "svg",
- "swift": "swift",
- "typescriptreact": "react_ts",
- "search-result": "search",
- "mcfunction": "minecraft",
- "rescript": "rescript",
- "otne": "otne",
- "twee3": "twine",
- "twee3-harlowe-3": "twine",
- "twee3-chapbook-1": "twine",
- "twee3-sugarcube-2": "twine",
- "grain": "grain",
- "lolcode": "lolcode",
- "idris": "idris",
- "pgn": "chess",
- "gemini": "gemini",
- "text-gemini": "gemini",
- "v": "vlang",
- "wolfram": "wolframlanguage",
- "shaderlab": "shader",
- "hlsl": "shader",
- "glsl": "shader",
- "wgsl": "shader",
- "tree": "tree",
- "svelte": "svelte",
- "dart": "dart",
- "cadence": "cadence",
- "stylable": "stylable",
- "hjson": "hjson",
- "huff": "huff",
- "cds": "cds",
- "capnb": "cds",
- "cds-markdown-injection": "cds",
- "concourse-pipeline-yaml": "concourse",
- "concourse-task-yaml": "concourse",
- "systemd-conf": "systemd",
- "systemd-unit-file": "systemd",
- "slint": "slint",
- "luau": "luau",
- "hosts": "hosts",
- "beancount": "beancount",
- "ahk2": "ahk2",
- "gnuplot": "gnuplot",
- "helm": "helm",
- "nginx": "nginx",
- "cue": "cue",
- "lean": "lean",
- "skill": "skill",
- "instructions": "instructions"
- },
- "light": {
- "fileExtensions": {
- "blink": "blink_light",
- "jinja": "jinja_light",
- "jinja2": "jinja_light",
- "j2": "jinja_light",
- "jinja-html": "jinja_light",
- "toml": "toml_light",
- "tofu": "opentofu_light",
- "huff": "huff_light",
- "cr": "crystal_light",
- "ecr": "crystal_light",
- "drone.yml": "drone_light",
- ".wakatime-project": "wakatime_light",
- "hcl": "hcl_light",
- "ai": "adobe-illustrator_light",
- "ait": "adobe-illustrator_light",
- "psd": "adobe-photoshop_light",
- "psb": "adobe-photoshop_light",
- "psdt": "adobe-photoshop_light",
- "iuml": "uml_light",
- "pu": "uml_light",
- "puml": "uml_light",
- "plantuml": "uml_light",
- "wsd": "uml_light",
- "pgn": "chess_light",
- "fen": "chess_light",
- "openapi.json": "openapi_light",
- "openapi.yml": "openapi_light",
- "openapi.yaml": "openapi_light",
- "tldr": "tldraw_light",
- "verse": "verse_light",
- "zeabur": "zeabur_light"
- },
- "fileNames": {
- "sconstruct": "scons_light",
- "sconscript": "scons_light",
- "scsub": "scons_light",
- ".rubocop.yml": "rubocop_light",
- ".rubocop-todo.yml": "rubocop_light",
- ".rubocop_todo.yml": "rubocop_light",
- "vercel.json": "vercel_light",
- ".vercelignore": "vercel_light",
- "now.json": "vercel_light",
- ".nowignore": "vercel_light",
- "payload.config.js": "payload_light",
- "payload.config.mjs": "payload_light",
- "payload.config.ts": "payload_light",
- "payload.config.mts": "payload_light",
- "next.config.js": "next_light",
- "next.config.mjs": "next_light",
- "next.config.ts": "next_light",
- "next.config.mts": "next_light",
- "remix.config.js": "remix_light",
- "remix.config.ts": "remix_light",
- "turbo.json": "turborepo_light",
- "turbo.jsonc": "turborepo_light",
- ".autorc": "auto_light",
- "auto.config.js": "auto_light",
- "auto.config.ts": "auto_light",
- "auto-config.json": "auto_light",
- "auto-config.yaml": "auto_light",
- "auto-config.yml": "auto_light",
- "auto-config.ts": "auto_light",
- "auto-config.js": "auto_light",
- ".stylelintrc": "stylelint_light",
- ".stylelintrc.json": "stylelint_light",
- ".stylelintrc.jsonc": "stylelint_light",
- ".stylelintrc.json5": "stylelint_light",
- ".stylelintrc.yaml": "stylelint_light",
- ".stylelintrc.yml": "stylelint_light",
- ".stylelintrc.toml": "stylelint_light",
- ".stylelintrc.js": "stylelint_light",
- ".stylelintrc.mjs": "stylelint_light",
- ".stylelintrc.cjs": "stylelint_light",
- ".stylelintrc.ts": "stylelint_light",
- ".stylelintrc.mts": "stylelint_light",
- ".stylelintrc.cts": "stylelint_light",
- ".config/stylelintrc": "stylelint_light",
- ".config/stylelintrc.json": "stylelint_light",
- ".config/stylelintrc.jsonc": "stylelint_light",
- ".config/stylelintrc.json5": "stylelint_light",
- ".config/stylelintrc.yaml": "stylelint_light",
- ".config/stylelintrc.yml": "stylelint_light",
- ".config/stylelintrc.toml": "stylelint_light",
- ".config/stylelintrc.js": "stylelint_light",
- ".config/stylelintrc.mjs": "stylelint_light",
- ".config/stylelintrc.cjs": "stylelint_light",
- ".config/stylelintrc.ts": "stylelint_light",
- ".config/stylelintrc.mts": "stylelint_light",
- ".config/stylelintrc.cts": "stylelint_light",
- "stylelint.config.json": "stylelint_light",
- "stylelint.config.jsonc": "stylelint_light",
- "stylelint.config.json5": "stylelint_light",
- "stylelint.config.yaml": "stylelint_light",
- "stylelint.config.yml": "stylelint_light",
- "stylelint.config.toml": "stylelint_light",
- "stylelint.config.js": "stylelint_light",
- "stylelint.config.mjs": "stylelint_light",
- "stylelint.config.cjs": "stylelint_light",
- "stylelint.config.ts": "stylelint_light",
- "stylelint.config.mts": "stylelint_light",
- "stylelint.config.cts": "stylelint_light",
- ".stylelintignore": "stylelint_light",
- ".stylelintcache": "stylelint_light",
- ".codeclimate.yml": "code-climate_light",
- "browserslist": "browserlist_light",
- ".browserslistrc": "browserlist_light",
- ".drone.yml": "drone_light",
- ".wakatime-project": "wakatime_light",
- "circle.yml": "circleci_light",
- ".releaserc": "semantic-release_light",
- ".releaserc.json": "semantic-release_light",
- ".releaserc.jsonc": "semantic-release_light",
- ".releaserc.json5": "semantic-release_light",
- ".releaserc.yaml": "semantic-release_light",
- ".releaserc.yml": "semantic-release_light",
- ".releaserc.toml": "semantic-release_light",
- ".releaserc.js": "semantic-release_light",
- ".releaserc.mjs": "semantic-release_light",
- ".releaserc.cjs": "semantic-release_light",
- ".releaserc.ts": "semantic-release_light",
- ".releaserc.mts": "semantic-release_light",
- ".releaserc.cts": "semantic-release_light",
- ".config/releaserc": "semantic-release_light",
- ".config/releaserc.json": "semantic-release_light",
- ".config/releaserc.jsonc": "semantic-release_light",
- ".config/releaserc.json5": "semantic-release_light",
- ".config/releaserc.yaml": "semantic-release_light",
- ".config/releaserc.yml": "semantic-release_light",
- ".config/releaserc.toml": "semantic-release_light",
- ".config/releaserc.js": "semantic-release_light",
- ".config/releaserc.mjs": "semantic-release_light",
- ".config/releaserc.cjs": "semantic-release_light",
- ".config/releaserc.ts": "semantic-release_light",
- ".config/releaserc.mts": "semantic-release_light",
- ".config/releaserc.cts": "semantic-release_light",
- "release.config.json": "semantic-release_light",
- "release.config.jsonc": "semantic-release_light",
- "release.config.json5": "semantic-release_light",
- "release.config.yaml": "semantic-release_light",
- "release.config.yml": "semantic-release_light",
- "release.config.toml": "semantic-release_light",
- "release.config.js": "semantic-release_light",
- "release.config.mjs": "semantic-release_light",
- "release.config.cjs": "semantic-release_light",
- "release.config.ts": "semantic-release_light",
- "release.config.mts": "semantic-release_light",
- "release.config.cts": "semantic-release_light",
- "netlify.json": "netlify_light",
- "netlify.yml": "netlify_light",
- "netlify.yaml": "netlify_light",
- "netlify.toml": "netlify_light",
- "stitches.config.js": "stitches_light",
- "stitches.config.ts": "stitches_light",
- "snowpack.config.js": "snowpack_light",
- "snowpack.config.cjs": "snowpack_light",
- "snowpack.config.mjs": "snowpack_light",
- "snowpack.config.ts": "snowpack_light",
- "snowpack.config.cts": "snowpack_light",
- "snowpack.config.mts": "snowpack_light",
- "snowpack.deps.json": "snowpack_light",
- "snowpack.config.json": "snowpack_light",
- "pnpm-lock.yaml": "pnpm_light",
- "pnpm-workspace.yaml": "pnpm_light",
- ".pnpmfile.cjs": "pnpm_light",
- "openapi.json": "openapi_light",
- "openapi.yml": "openapi_light",
- "openapi.yaml": "openapi_light",
- "bun.lockb": "bun_light",
- "bunfig.toml": "bun_light",
- ".bun-version": "bun_light",
- "bun.lock": "bun_light",
- ".nano-staged.js": "nano-staged_light",
- "nano-staged.js": "nano-staged_light",
- ".nano-staged.cjs": "nano-staged_light",
- "nano-staged.cjs": "nano-staged_light",
- ".nano-staged.mjs": "nano-staged_light",
- "nano-staged.mjs": "nano-staged_light",
- ".nano-staged.json": "nano-staged_light",
- "nano-staged.json": "nano-staged_light",
- ".nanostagedrc": "nano-staged_light",
- "deno.json": "deno_light",
- "deno.jsonc": "deno_light",
- "deno.lock": "deno_light",
- "jsr.json": "jsr_light",
- "jsr.jsonc": "jsr_light",
- "zeabur.json": "zeabur_light",
- "zeabur.jsonc": "zeabur_light",
- "zeabur.json5": "zeabur_light",
- "zeabur.yaml": "zeabur_light",
- "zeabur.yml": "zeabur_light",
- "zeabur.toml": "zeabur_light",
- "copilot-instructions.md": "copilot_light",
- "hosts": "hosts_light",
- ".cursorignore": "cursor_light",
- ".cursorindexingignore": "cursor_light",
- ".cursorrules": "cursor_light",
- ".cursor": "cursor_light",
- ".cursor.json": "cursor_light",
- ".cursorrc": "cursor_light",
- "bashly-settings.yaml": "bashly-settings_light",
- "bashly-settings.yml": "bashly-settings_light",
- "src/bashly-strings.yaml": "bashly-strings_light",
- "src/bashly-strings.yml": "bashly-strings_light",
- ".shellcheckrc": "shellcheck_light",
- "shellcheckrc": "shellcheck_light",
- "warp.md": "warp_light"
- },
- "languageIds": {
- "toml": "toml_light",
- "systemd-conf": "systemd_light",
- "systemd-unit-file": "systemd_light"
- },
- "folderNames": {
- "jinja": "folder-jinja_light",
- ".jinja": "folder-jinja_light",
- "_jinja": "folder-jinja_light",
- "-jinja": "folder-jinja_light",
- "__jinja__": "folder-jinja_light",
- "jinja2": "folder-jinja_light",
- ".jinja2": "folder-jinja_light",
- "_jinja2": "folder-jinja_light",
- "-jinja2": "folder-jinja_light",
- "__jinja2__": "folder-jinja_light",
- "j2": "folder-jinja_light",
- ".j2": "folder-jinja_light",
- "_j2": "folder-jinja_light",
- "-j2": "folder-jinja_light",
- "__j2__": "folder-jinja_light",
- "idea": "folder-intellij_light",
- ".idea": "folder-intellij_light",
- "_idea": "folder-intellij_light",
- "-idea": "folder-intellij_light",
- "__idea__": "folder-intellij_light",
- ".cursor": "folder-cursor_light",
- "..cursor": "folder-cursor_light",
- "_.cursor": "folder-cursor_light",
- "-.cursor": "folder-cursor_light",
- "__.cursor__": "folder-cursor_light"
- },
- "folderNamesExpanded": {
- "jinja": "folder-jinja-open_light",
- ".jinja": "folder-jinja-open_light",
- "_jinja": "folder-jinja-open_light",
- "-jinja": "folder-jinja-open_light",
- "__jinja__": "folder-jinja-open_light",
- "jinja2": "folder-jinja-open_light",
- ".jinja2": "folder-jinja-open_light",
- "_jinja2": "folder-jinja-open_light",
- "-jinja2": "folder-jinja-open_light",
- "__jinja2__": "folder-jinja-open_light",
- "j2": "folder-jinja-open_light",
- ".j2": "folder-jinja-open_light",
- "_j2": "folder-jinja-open_light",
- "-j2": "folder-jinja-open_light",
- "__j2__": "folder-jinja-open_light",
- "idea": "folder-intellij-open_light",
- ".idea": "folder-intellij-open_light",
- "_idea": "folder-intellij-open_light",
- "-idea": "folder-intellij-open_light",
- "__idea__": "folder-intellij-open_light",
- ".cursor": "folder-cursor-open_light",
- "..cursor": "folder-cursor-open_light",
- "_.cursor": "folder-cursor-open_light",
- "-.cursor": "folder-cursor-open_light",
- "__.cursor__": "folder-cursor-open_light"
- },
- "rootFolderNames": {},
- "rootFolderNamesExpanded": {}
- },
- "highContrast": {
- "fileExtensions": {},
- "fileNames": {}
- },
- "file": "file",
- "hidesExplorerArrows": false,
- "folder": "folder",
- "folderExpanded": "folder-open",
- "rootFolder": "folder-root",
- "rootFolderExpanded": "folder-root-open"
-}
\ No newline at end of file
diff --git a/options/fileicon/material-icon-svgs.json b/options/fileicon/material-icon-svgs.json
deleted file mode 100644
index 0a9ebb4ff7404..0000000000000
--- a/options/fileicon/material-icon-svgs.json
+++ /dev/null
@@ -1,1223 +0,0 @@
-{
- "3d": "",
- "abap": "",
- "abc": "",
- "actionscript": "",
- "ada": "",
- "adobe-illustrator": "",
- "adobe-illustrator_light": "",
- "adobe-photoshop": "",
- "adobe-photoshop_light": "",
- "adobe-swc": "",
- "adonis": "",
- "advpl-include.clone": "",
- "advpl-ptm.clone": "",
- "advpl-tlpp.clone": "",
- "advpl": "",
- "ahk2.clone": "",
- "amplify": "",
- "android": "",
- "angular-component.clone": "",
- "angular-directive.clone": "",
- "angular-guard.clone": "",
- "angular-interceptor.clone": "",
- "angular-pipe.clone": "",
- "angular-resolver.clone": "",
- "angular-service.clone": "",
- "angular": "",
- "antlr": "",
- "apiblueprint": "",
- "apollo": "",
- "applescript": "",
- "apps-script": "",
- "appveyor": "",
- "architecture": "",
- "arduino": "",
- "asciidoc": "",
- "assembly": "",
- "astro-config": "",
- "astro": "",
- "astyle": "",
- "audio": "",
- "aurelia": "",
- "authors": "",
- "auto": "",
- "auto_light": "",
- "autohotkey": "",
- "autoit": "",
- "azure-pipelines": "",
- "azure": "",
- "babel": "",
- "ballerina": "",
- "bashly-hook": "",
- "bashly-settings.clone": "",
- "bashly-settings_light.clone": "",
- "bashly-strings.clone": "",
- "bashly-strings_light.clone": "",
- "bashly": "",
- "bazel": "",
- "bbx": "",
- "beancount": "",
- "bench-js": "",
- "bench-jsx": "",
- "bench-ts": "",
- "bibliography": "",
- "bibtex-style": "",
- "bicep": "",
- "biome": "",
- "bitbucket": "",
- "bithound": "",
- "blender": "",
- "blink": "",
- "blink_light": "",
- "blitz": "",
- "bower": "",
- "brainfuck": "",
- "browserlist": "",
- "browserlist_light": "",
- "bruno": "",
- "buck": "",
- "bucklescript": "",
- "buildkite": "",
- "bun": "",
- "bun_light": "",
- "c": "",
- "c3": "",
- "cabal": "",
- "caddy": "",
- "cadence": "",
- "cairo": "",
- "cake": "",
- "capacitor": "",
- "capnp": "",
- "cbx": "",
- "cds": "",
- "certificate": "",
- "changelog": "",
- "chess": "",
- "chess_light": "",
- "chromatic": "",
- "chrome": "",
- "circleci": "",
- "circleci_light": "",
- "citation": "",
- "clangd": "",
- "claude": "",
- "cline": "",
- "clojure": "",
- "cloudfoundry": "",
- "cmake": "",
- "coala": "",
- "cobol": "",
- "coconut": "",
- "code-climate": "",
- "code-climate_light": "",
- "codecov": "",
- "codeowners": "",
- "coderabbit-ai": "",
- "coffee": "",
- "coldfusion": "",
- "coloredpetrinets": "",
- "command": "",
- "commitizen": "",
- "commitlint": "",
- "concourse": "",
- "conduct": "",
- "console": "",
- "container.clone": "",
- "contentlayer": "",
- "context": "",
- "contributing": "",
- "controller": "",
- "copilot": "",
- "copilot_light": "",
- "cpp": "",
- "craco": "",
- "credits": "",
- "crystal": "",
- "crystal_light": "",
- "csharp": "",
- "css-map": "",
- "css": "",
- "cucumber": "",
- "cuda": "",
- "cue": "",
- "cursor": "",
- "cursor_light": "",
- "cypress": "",
- "d": "",
- "dart": "",
- "dart_generated": "",
- "database": "",
- "deepsource": "",
- "denizenscript": "",
- "deno": "",
- "deno_light": "",
- "dependabot": "",
- "dependencies-update": "",
- "dhall": "",
- "diff": "",
- "dinophp": "",
- "disc": "",
- "django": "",
- "dll": "",
- "docker": "",
- "doctex-installer": "",
- "doctex.clone": "",
- "document": "",
- "dotjs": "",
- "drawio": "",
- "drizzle": "",
- "drone": "",
- "drone_light": "",
- "dtx.clone": "",
- "duc": "",
- "dune": "",
- "edge": "",
- "editorconfig": "",
- "ejs": "",
- "elixir": "",
- "elm": "",
- "email": "",
- "ember": "",
- "epub": "",
- "erlang": "",
- "esbuild": "",
- "eslint": "",
- "excalidraw": "",
- "exe": "",
- "fastlane": "",
- "favicon": "",
- "figma": "",
- "file": "",
- "firebase": "",
- "flash": "",
- "flow": "",
- "folder-admin-open": "",
- "folder-admin": "",
- "folder-android-open": "",
- "folder-android": "",
- "folder-angular-open": "",
- "folder-angular": "",
- "folder-animation-open": "",
- "folder-animation": "",
- "folder-ansible-open": "",
- "folder-ansible": "",
- "folder-api-open": "",
- "folder-api": "",
- "folder-apollo-open": "",
- "folder-apollo": "",
- "folder-app-open": "",
- "folder-app": "",
- "folder-archive-open": "",
- "folder-archive": "",
- "folder-astro-open": "",
- "folder-astro": "",
- "folder-atom-open": "",
- "folder-atom": "",
- "folder-attachment-open": "",
- "folder-attachment": "",
- "folder-audio-open": "",
- "folder-audio": "",
- "folder-aurelia-open": "",
- "folder-aurelia": "",
- "folder-aws-open": "",
- "folder-aws": "",
- "folder-azure-pipelines-open": "",
- "folder-azure-pipelines": "",
- "folder-backup-open": "",
- "folder-backup": "",
- "folder-base-open": "",
- "folder-base": "",
- "folder-batch-open": "",
- "folder-batch": "",
- "folder-benchmark-open": "",
- "folder-benchmark": "",
- "folder-bibliography-open": "",
- "folder-bibliography": "",
- "folder-bicep-open": "",
- "folder-bicep": "",
- "folder-blender-open": "",
- "folder-blender": "",
- "folder-bloc-open": "",
- "folder-bloc": "",
- "folder-bower-open": "",
- "folder-bower": "",
- "folder-buildkite-open": "",
- "folder-buildkite": "",
- "folder-cart-open": "",
- "folder-cart": "",
- "folder-changesets-open": "",
- "folder-changesets": "",
- "folder-ci-open": "",
- "folder-ci": "",
- "folder-circleci-open": "",
- "folder-circleci": "",
- "folder-class-open": "",
- "folder-class": "",
- "folder-claude-open": "",
- "folder-claude": "",
- "folder-client-open": "",
- "folder-client": "",
- "folder-cline-open": "",
- "folder-cline": "",
- "folder-cloud-functions-open": "",
- "folder-cloud-functions": "",
- "folder-cloudflare-open": "",
- "folder-cloudflare": "",
- "folder-cluster-open": "",
- "folder-cluster": "",
- "folder-cobol-open": "",
- "folder-cobol": "",
- "folder-command-open": "",
- "folder-command": "",
- "folder-components-open": "",
- "folder-components": "",
- "folder-config-open": "",
- "folder-config": "",
- "folder-connection-open": "",
- "folder-connection": "",
- "folder-console-open": "",
- "folder-console": "",
- "folder-constant-open": "",
- "folder-constant": "",
- "folder-container-open": "",
- "folder-container": "",
- "folder-content-open": "",
- "folder-content": "",
- "folder-context-open": "",
- "folder-context": "",
- "folder-contract-open": "",
- "folder-contract": "",
- "folder-controller-open": "",
- "folder-controller": "",
- "folder-core-open": "",
- "folder-core": "",
- "folder-coverage-open": "",
- "folder-coverage": "",
- "folder-css-open": "",
- "folder-css": "",
- "folder-cue-open": "",
- "folder-cue": "",
- "folder-cursor-open": "",
- "folder-cursor-open_light": "",
- "folder-cursor": "",
- "folder-cursor_light": "",
- "folder-custom-open": "",
- "folder-custom": "",
- "folder-cypress-open": "",
- "folder-cypress": "",
- "folder-dal-open": "",
- "folder-dal": "",
- "folder-dart-open": "",
- "folder-dart": "",
- "folder-database-open": "",
- "folder-database": "",
- "folder-debug-open": "",
- "folder-debug": "",
- "folder-decorators-open": "",
- "folder-decorators": "",
- "folder-delta-open": "",
- "folder-delta": "",
- "folder-deprecated-open.clone": "",
- "folder-deprecated.clone": "",
- "folder-desktop-open": "",
- "folder-desktop": "",
- "folder-development-open.clone": "",
- "folder-development.clone": "",
- "folder-directive-open": "",
- "folder-directive": "",
- "folder-dist-open": "",
- "folder-dist": "",
- "folder-docker-open": "",
- "folder-docker": "",
- "folder-docs-open": "",
- "folder-docs": "",
- "folder-download-open": "",
- "folder-download": "",
- "folder-drizzle-open": "",
- "folder-drizzle": "",
- "folder-dump-open": "",
- "folder-dump": "",
- "folder-element-open": "",
- "folder-element": "",
- "folder-enum-open": "",
- "folder-enum": "",
- "folder-environment-open": "",
- "folder-environment": "",
- "folder-error-open": "",
- "folder-error": "",
- "folder-eslint-open": "",
- "folder-eslint": "",
- "folder-event-open": "",
- "folder-event": "",
- "folder-examples-open": "",
- "folder-examples": "",
- "folder-expo-open": "",
- "folder-expo": "",
- "folder-export-open": "",
- "folder-export": "",
- "folder-fastlane-open": "",
- "folder-fastlane": "",
- "folder-favicon-open": "",
- "folder-favicon": "",
- "folder-features-open": "",
- "folder-features": "",
- "folder-filter-open": "",
- "folder-filter": "",
- "folder-firebase-open": "",
- "folder-firebase": "",
- "folder-firestore-open": "",
- "folder-firestore": "",
- "folder-flow-open": "",
- "folder-flow": "",
- "folder-flutter-open": "",
- "folder-flutter": "",
- "folder-font-open": "",
- "folder-font": "",
- "folder-forgejo-open": "",
- "folder-forgejo": "",
- "folder-form-open": "",
- "folder-form": "",
- "folder-functions-open": "",
- "folder-functions": "",
- "folder-gamemaker-open": "",
- "folder-gamemaker": "",
- "folder-gemini-ai-open": "",
- "folder-gemini-ai": "",
- "folder-generator-open": "",
- "folder-generator": "",
- "folder-gh-workflows-open": "",
- "folder-gh-workflows": "",
- "folder-git-open": "",
- "folder-git": "",
- "folder-gitea-open": "",
- "folder-gitea": "",
- "folder-github-open": "",
- "folder-github": "",
- "folder-gitlab-open": "",
- "folder-gitlab": "",
- "folder-global-open": "",
- "folder-global": "",
- "folder-godot-open": "",
- "folder-godot": "",
- "folder-gradle-open": "",
- "folder-gradle": "",
- "folder-graphql-open": "",
- "folder-graphql": "",
- "folder-guard-open": "",
- "folder-guard": "",
- "folder-gulp-open": "",
- "folder-gulp": "",
- "folder-helm-open": "",
- "folder-helm": "",
- "folder-helper-open": "",
- "folder-helper": "",
- "folder-home-open": "",
- "folder-home": "",
- "folder-hook-open": "",
- "folder-hook": "",
- "folder-husky-open": "",
- "folder-husky": "",
- "folder-i18n-open": "",
- "folder-i18n": "",
- "folder-images-open": "",
- "folder-images": "",
- "folder-import-open": "",
- "folder-import": "",
- "folder-include-open": "",
- "folder-include": "",
- "folder-input-open": "",
- "folder-input": "",
- "folder-instructions-open.clone": "",
- "folder-instructions.clone": "",
- "folder-intellij-open": "",
- "folder-intellij-open_light": "",
- "folder-intellij": "",
- "folder-intellij_light": "",
- "folder-interceptor-open": "",
- "folder-interceptor": "",
- "folder-interface-open": "",
- "folder-interface": "",
- "folder-ios-open": "",
- "folder-ios": "",
- "folder-java-open": "",
- "folder-java": "",
- "folder-javascript-open": "",
- "folder-javascript": "",
- "folder-jinja-open": "",
- "folder-jinja-open_light": "",
- "folder-jinja": "",
- "folder-jinja_light": "",
- "folder-job-open": "",
- "folder-job": "",
- "folder-json-open": "",
- "folder-json": "",
- "folder-jupyter-open": "",
- "folder-jupyter": "",
- "folder-keys-open": "",
- "folder-keys": "",
- "folder-kubernetes-open": "",
- "folder-kubernetes": "",
- "folder-kusto-open": "",
- "folder-kusto": "",
- "folder-layout-open": "",
- "folder-layout": "",
- "folder-lefthook-open": "",
- "folder-lefthook": "",
- "folder-less-open": "",
- "folder-less": "",
- "folder-lib-open": "",
- "folder-lib": "",
- "folder-license-open": "",
- "folder-license": "",
- "folder-link-open": "",
- "folder-link": "",
- "folder-linux-open": "",
- "folder-linux": "",
- "folder-liquibase-open": "",
- "folder-liquibase": "",
- "folder-log-open": "",
- "folder-log": "",
- "folder-lottie-open": "",
- "folder-lottie": "",
- "folder-lua-open": "",
- "folder-lua": "",
- "folder-luau-open": "",
- "folder-luau": "",
- "folder-macos-open": "",
- "folder-macos": "",
- "folder-mail-open": "",
- "folder-mail": "",
- "folder-mappings-open": "",
- "folder-mappings": "",
- "folder-markdown-open": "",
- "folder-markdown": "",
- "folder-mercurial-open": "",
- "folder-mercurial": "",
- "folder-messages-open": "",
- "folder-messages": "",
- "folder-meta-open": "",
- "folder-meta": "",
- "folder-metro-open": "",
- "folder-metro": "",
- "folder-middleware-open": "",
- "folder-middleware": "",
- "folder-migrations-open": "",
- "folder-migrations": "",
- "folder-mjml-open": "",
- "folder-mjml": "",
- "folder-mobile-open": "",
- "folder-mobile": "",
- "folder-mock-open": "",
- "folder-mock": "",
- "folder-mojo-open": "",
- "folder-mojo": "",
- "folder-molecule-open": "",
- "folder-molecule": "",
- "folder-moon-open": "",
- "folder-moon": "",
- "folder-netlify-open": "",
- "folder-netlify": "",
- "folder-next-open": "",
- "folder-next": "",
- "folder-nginx-open": "",
- "folder-nginx": "",
- "folder-ngrx-actions-open.clone": "",
- "folder-ngrx-actions.clone": "",
- "folder-ngrx-effects-open.clone": "",
- "folder-ngrx-effects.clone": "",
- "folder-ngrx-entities-open.clone": "",
- "folder-ngrx-entities.clone": "",
- "folder-ngrx-reducer-open.clone": "",
- "folder-ngrx-reducer.clone": "",
- "folder-ngrx-selectors-open.clone": "",
- "folder-ngrx-selectors.clone": "",
- "folder-ngrx-state-open.clone": "",
- "folder-ngrx-state.clone": "",
- "folder-ngrx-store-open": "",
- "folder-ngrx-store": "",
- "folder-node-open": "",
- "folder-node": "",
- "folder-nuxt-open": "",
- "folder-nuxt": "",
- "folder-obsidian-open": "",
- "folder-obsidian": "",
- "folder-open": "",
- "folder-organism-open": "",
- "folder-organism": "",
- "folder-other-open": "",
- "folder-other": "",
- "folder-packages-open": "",
- "folder-packages": "",
- "folder-pdf-open": "",
- "folder-pdf": "",
- "folder-pdm-open": "",
- "folder-pdm": "",
- "folder-php-open": "",
- "folder-php": "",
- "folder-phpmailer-open": "",
- "folder-phpmailer": "",
- "folder-pipe-open": "",
- "folder-pipe": "",
- "folder-plastic-open": "",
- "folder-plastic": "",
- "folder-plugin-open": "",
- "folder-plugin": "",
- "folder-policy-open": "",
- "folder-policy": "",
- "folder-powershell-open": "",
- "folder-powershell": "",
- "folder-prisma-open": "",
- "folder-prisma": "",
- "folder-private-open": "",
- "folder-private": "",
- "folder-project-open": "",
- "folder-project": "",
- "folder-prompts-open": "",
- "folder-prompts": "",
- "folder-proto-open": "",
- "folder-proto": "",
- "folder-public-open": "",
- "folder-public": "",
- "folder-python-open": "",
- "folder-python": "",
- "folder-pytorch-open": "",
- "folder-pytorch": "",
- "folder-quasar-open": "",
- "folder-quasar": "",
- "folder-queue-open": "",
- "folder-queue": "",
- "folder-r-open": "",
- "folder-r": "",
- "folder-react-components-open": "",
- "folder-react-components": "",
- "folder-redux-actions-open.clone": "",
- "folder-redux-actions.clone": "",
- "folder-redux-reducer-open": "",
- "folder-redux-reducer": "",
- "folder-redux-selector-open.clone": "",
- "folder-redux-selector.clone": "",
- "folder-redux-store-open.clone": "",
- "folder-redux-store.clone": "",
- "folder-redux-toolkit-open.clone": "",
- "folder-redux-toolkit.clone": "",
- "folder-repository-open": "",
- "folder-repository": "",
- "folder-resolver-open": "",
- "folder-resolver": "",
- "folder-resource-open": "",
- "folder-resource": "",
- "folder-review-open": "",
- "folder-review": "",
- "folder-robot-open": "",
- "folder-robot": "",
- "folder-root-open": "",
- "folder-root": "",
- "folder-routes-open": "",
- "folder-routes": "",
- "folder-rules-open": "",
- "folder-rules": "",
- "folder-rust-open": "",
- "folder-rust": "",
- "folder-salt-open": "",
- "folder-salt": "",
- "folder-sandbox-open": "",
- "folder-sandbox": "",
- "folder-sass-open": "",
- "folder-sass": "",
- "folder-scala-open": "",
- "folder-scala": "",
- "folder-scons-open": "",
- "folder-scons": "",
- "folder-scrap-open.clone": "",
- "folder-scrap.clone": "",
- "folder-scripts-open": "",
- "folder-scripts": "",
- "folder-secure-open": "",
- "folder-secure": "",
- "folder-seeders-open": "",
- "folder-seeders": "",
- "folder-server-open": "",
- "folder-server": "",
- "folder-serverless-open": "",
- "folder-serverless": "",
- "folder-shader-open": "",
- "folder-shader": "",
- "folder-shared-open": "",
- "folder-shared": "",
- "folder-simulations-open": "",
- "folder-simulations": "",
- "folder-skills-open": "",
- "folder-skills": "",
- "folder-snapcraft-open": "",
- "folder-snapcraft": "",
- "folder-snippet-open": "",
- "folder-snippet": "",
- "folder-src-open": "",
- "folder-src-tauri-open": "",
- "folder-src-tauri": "",
- "folder-src": "",
- "folder-stack-open": "",
- "folder-stack": "",
- "folder-stencil-open": "",
- "folder-stencil": "",
- "folder-store-open": "",
- "folder-store": "",
- "folder-storybook-open": "",
- "folder-storybook": "",
- "folder-stylus-open": "",
- "folder-stylus": "",
- "folder-sublime-open": "",
- "folder-sublime": "",
- "folder-supabase-open": "",
- "folder-supabase": "",
- "folder-svelte-open": "",
- "folder-svelte": "",
- "folder-svg-open": "",
- "folder-svg": "",
- "folder-syntax-open": "",
- "folder-syntax": "",
- "folder-target-open": "",
- "folder-target": "",
- "folder-taskfile-open": "",
- "folder-taskfile": "",
- "folder-tasks-open": "",
- "folder-tasks": "",
- "folder-television-open": "",
- "folder-television": "",
- "folder-temp-open": "",
- "folder-temp": "",
- "folder-template-open": "",
- "folder-template": "",
- "folder-terraform-open": "",
- "folder-terraform": "",
- "folder-test-open": "",
- "folder-test": "",
- "folder-theme-open": "",
- "folder-theme": "",
- "folder-toc-open": "",
- "folder-toc": "",
- "folder-tools-open": "",
- "folder-tools": "",
- "folder-trash-open": "",
- "folder-trash": "",
- "folder-trigger-open": "",
- "folder-trigger": "",
- "folder-turborepo-open": "",
- "folder-turborepo": "",
- "folder-typescript-open": "",
- "folder-typescript": "",
- "folder-ui-open": "",
- "folder-ui": "",
- "folder-unity-open": "",
- "folder-unity": "",
- "folder-update-open": "",
- "folder-update": "",
- "folder-upload-open": "",
- "folder-upload": "",
- "folder-utils-open": "",
- "folder-utils": "",
- "folder-vercel-open": "",
- "folder-vercel": "",
- "folder-verdaccio-open": "",
- "folder-verdaccio": "",
- "folder-video-open": "",
- "folder-video": "",
- "folder-views-open": "",
- "folder-views": "",
- "folder-vm-open": "",
- "folder-vm": "",
- "folder-vscode-open": "",
- "folder-vscode": "",
- "folder-vue-directives-open": "",
- "folder-vue-directives": "",
- "folder-vue-open": "",
- "folder-vue": "",
- "folder-vuepress-open": "",
- "folder-vuepress": "",
- "folder-vuex-store-open": "",
- "folder-vuex-store": "",
- "folder-wakatime-open": "",
- "folder-wakatime": "",
- "folder-webpack-open": "",
- "folder-webpack": "",
- "folder-windows-open": "",
- "folder-windows": "",
- "folder-wordpress-open": "",
- "folder-wordpress": "",
- "folder-yarn-open": "",
- "folder-yarn": "",
- "folder-zeabur-open": "",
- "folder-zeabur": "",
- "folder": "",
- "font": "",
- "forth": "",
- "fortran": "",
- "foxpro": "",
- "freemarker": "",
- "fsharp": "",
- "fusebox": "",
- "gamemaker": "",
- "garden": "",
- "gatsby": "",
- "gcp": "",
- "gemfile": "",
- "gemini-ai": "",
- "gemini": "",
- "git": "",
- "github-actions-workflow": "",
- "github-sponsors": "",
- "gitlab": "",
- "gitpod": "",
- "gleam": "",
- "gnuplot": "",
- "go-mod": "",
- "go": "",
- "go_gopher": "",
- "godot-assets": "",
- "godot": "",
- "google": "",
- "gradle": "",
- "grafana-alloy": "",
- "grain": "",
- "graphcool": "",
- "graphql": "",
- "gridsome": "",
- "groovy": "",
- "grunt": "",
- "gulp": "",
- "h": "",
- "hack": "",
- "hadolint": "",
- "haml": "",
- "handlebars": "",
- "happo": "",
- "hardhat": "",
- "harmonix": "",
- "haskell": "",
- "haxe": "",
- "hcl": "",
- "hcl_light": "",
- "helm": "",
- "heroku": "",
- "hex": "",
- "histoire": "",
- "hjson": "",
- "horusec": "",
- "hosts": "",
- "hosts_light": "",
- "hpp": "",
- "html": "",
- "http": "",
- "huff": "",
- "huff_light": "",
- "hurl": "",
- "husky": "",
- "i18n": "",
- "idris": "",
- "ifanr-cloud": "",
- "image": "",
- "imba": "",
- "installation": "",
- "instructions.clone": "",
- "ionic": "",
- "istanbul": "",
- "jar": "",
- "java": "",
- "javaclass": "",
- "javascript-map": "",
- "javascript": "",
- "jenkins": "",
- "jest": "",
- "jinja": "",
- "jinja_light": "",
- "jsconfig": "",
- "json": "",
- "json_schema": "",
- "jsr": "",
- "jsr_light": "",
- "julia": "",
- "jupyter": "",
- "just": "",
- "karma": "",
- "kcl": "",
- "key": "",
- "keystatic": "",
- "kivy": "",
- "kl": "",
- "knip": "",
- "kotlin": "",
- "kubernetes": "",
- "kusto": "",
- "label": "",
- "laravel": "",
- "latex-class.clone": "",
- "latex-package.clone": "",
- "latex.clone": "",
- "latexmk": "",
- "lbx": "",
- "lean": "",
- "lefthook": "",
- "lerna": "",
- "less": "",
- "liara": "",
- "lib": "",
- "license": "",
- "lighthouse": "",
- "lilypond": "",
- "lintstaged": "",
- "liquid": "",
- "lisp": "",
- "livescript": "",
- "lock": "",
- "log": "",
- "lolcode": "",
- "lottie": "",
- "lua": "",
- "luau": "",
- "lynx": "",
- "lyric": "",
- "macaulay2": "",
- "makefile": "",
- "markdoc-config": "",
- "markdoc": "",
- "markdown": "",
- "markdownlint": "",
- "markojs": "",
- "mathematica": "",
- "matlab": "",
- "maven": "",
- "mdsvex": "",
- "mdx": "",
- "mercurial": "",
- "merlin": "",
- "mermaid": "",
- "meson": "",
- "metro": "",
- "minecraft-fabric": "",
- "minecraft": "",
- "mint": "",
- "mist.clone": "",
- "mjml": "",
- "mocha": "",
- "modernizr": "",
- "mojo": "",
- "moon": "",
- "moonscript": "",
- "mxml": "",
- "nano-staged": "",
- "nano-staged_light": "",
- "ndst": "",
- "nest-controller.clone": "",
- "nest-decorator.clone": "",
- "nest-filter.clone": "",
- "nest-gateway.clone": "",
- "nest-guard.clone": "",
- "nest-interceptor.clone": "",
- "nest-middleware.clone": "",
- "nest-module.clone": "",
- "nest-pipe.clone": "",
- "nest-resolver.clone": "",
- "nest-service.clone": "",
- "nest": "",
- "netlify": "",
- "netlify_light": "",
- "next": "",
- "next_light": "",
- "nginx": "",
- "ngrx-actions": "",
- "ngrx-effects": "",
- "ngrx-entity": "",
- "ngrx-reducer": "",
- "ngrx-selectors": "",
- "ngrx-state": "",
- "nim": "",
- "nix": "",
- "nodejs": "",
- "nodejs_alt": "",
- "nodemon": "",
- "npm": "",
- "nuget": "",
- "nunjucks": "",
- "nuxt": "",
- "nx": "",
- "objective-c": "",
- "objective-cpp": "",
- "ocaml": "",
- "odin": "",
- "onnx": "",
- "opa": "",
- "opam": "",
- "openapi": "",
- "openapi_light": "",
- "opentofu": "",
- "opentofu_light": "",
- "otne": "",
- "oxc": "",
- "packship": "",
- "palette": "",
- "panda": "",
- "parcel": "",
- "pascal": "",
- "pawn": "",
- "payload": "",
- "payload_light": "",
- "pdf": "",
- "pdm": "",
- "percy": "",
- "perl": "",
- "php-cs-fixer": "",
- "php": "",
- "php_elephant": "",
- "php_elephant_pink": "",
- "phpstan": "",
- "phpunit": "",
- "pinejs": "",
- "pipeline": "",
- "pkl": "",
- "plastic": "",
- "playwright": "",
- "plop": "",
- "pm2-ecosystem": "",
- "pnpm": "",
- "pnpm_light": "",
- "poetry": "",
- "postcss": "",
- "posthtml": "",
- "powerpoint": "",
- "powershell": "",
- "pre-commit": "",
- "prettier": "",
- "prisma": "",
- "processing": "",
- "prolog": "",
- "prompt": "",
- "proto": "",
- "protractor": "",
- "pug": "",
- "puppet": "",
- "puppeteer": "",
- "purescript": "",
- "python-misc": "",
- "python": "",
- "pytorch": "",
- "qsharp": "",
- "quarto": "",
- "quasar": "",
- "quokka": "",
- "qwik": "",
- "r": "",
- "racket": "",
- "raml": "",
- "razor": "",
- "rbxmk": "",
- "rc": "",
- "react": "",
- "react_ts": "",
- "readme": "",
- "reason": "",
- "red": "",
- "redux-action": "",
- "redux-reducer": "",
- "redux-selector": "",
- "redux-store": "",
- "regedit": "",
- "remark": "",
- "remix": "",
- "remix_light": "",
- "renovate": "",
- "replit": "",
- "rescript-interface": "",
- "rescript": "",
- "restql": "",
- "riot": "",
- "roadmap": "",
- "roblox": "",
- "robot": "",
- "robots": "",
- "rocket": "",
- "rojo": "",
- "rolldown": "",
- "rollup": "",
- "rome": "",
- "routing": "",
- "rspec": "",
- "rstack": "",
- "rubocop": "",
- "rubocop_light": "",
- "ruby": "",
- "ruff": "",
- "rust": "",
- "salesforce": "",
- "salt": "",
- "san": "",
- "sas": "",
- "sass": "",
- "sbt": "",
- "scala": "",
- "scheme": "",
- "scons": "",
- "scons_light": "",
- "screwdriver": "",
- "search": "",
- "semantic-release": "",
- "semantic-release_light": "",
- "semgrep": "",
- "sentry": "",
- "sequelize": "",
- "serverless": "",
- "settings": "",
- "shader": "",
- "shellcheck": "",
- "shellcheck_light": "",
- "silverstripe": "",
- "simulink": "",
- "siyuan": "",
- "sketch": "",
- "skill": "",
- "slim": "",
- "slint": "",
- "slug": "",
- "smarty": "",
- "sml": "",
- "snakemake": "",
- "snapcraft": "",
- "snowpack": "",
- "snowpack_light": "",
- "snyk": "",
- "solidity": "",
- "sonarcloud": "",
- "spwn": "",
- "stackblitz": "",
- "stan": "",
- "steadybit": "",
- "stencil": "",
- "stitches": "",
- "stitches_light": "",
- "storybook": "",
- "stryker": "",
- "sty.clone": "",
- "stylable": "",
- "stylelint": "",
- "stylelint_light": "",
- "stylus": "",
- "sublime": "",
- "subtitles": "",
- "supabase": "",
- "svelte": "",
- "svelte_js.clone": "",
- "svelte_ts.clone": "",
- "svg": "",
- "svgo": "",
- "svgr": "",
- "swagger": "",
- "sway": "",
- "swc": "",
- "swift": "",
- "syncpack": "",
- "systemd": "",
- "systemd_light": "",
- "table": "",
- "tailwindcss": "",
- "tape.clone": "",
- "taskfile": "",
- "tauri": "",
- "taze": "",
- "tcl": "",
- "teal": "",
- "templ": "",
- "template": "",
- "terraform": "",
- "test-js": "",
- "test-jsx": "",
- "test-ts": "",
- "tex": "",
- "textlint": "",
- "tilt": "",
- "tldraw": "",
- "tldraw_light": "",
- "tobi": "",
- "tobimake": "",
- "toc": "",
- "todo": "",
- "toml": "",
- "toml_light": "",
- "toon": "",
- "travis": "",
- "tree": "",
- "trigger": "",
- "tsconfig": "",
- "tsdoc": "",
- "tsil": "",
- "tune": "",
- "turborepo": "",
- "turborepo_light": "",
- "twig": "",
- "twine": "",
- "typedoc": "",
- "typescript-def": "",
- "typescript": "",
- "typst": "",
- "umi": "",
- "uml": "",
- "uml_light": "",
- "unity": "",
- "unlicense": "",
- "unocss": "",
- "url": "",
- "uv": "",
- "vagrant": "",
- "vala": "",
- "vanilla-extract": "",
- "varnish": "",
- "vedic": "",
- "velite": "",
- "velocity": "",
- "vercel": "",
- "vercel_light": "",
- "verdaccio": "",
- "verified": "",
- "verilog": "",
- "verse": "",
- "verse_light": "",
- "vfl": "",
- "video": "",
- "vim": "",
- "virtual": "",
- "visualstudio": "",
- "vite": "",
- "vitest": "",
- "vlang": "",
- "vscode": "",
- "vue-config": "",
- "vue": "",
- "vuex-store": "",
- "wakatime": "",
- "wakatime_light": "",
- "wallaby": "",
- "wally": "",
- "warp": "",
- "warp_light": "",
- "watchman": "",
- "webassembly": "",
- "webhint": "",
- "webpack": "",
- "wepy": "",
- "werf": "",
- "windicss": "",
- "wolframlanguage": "",
- "word": "",
- "wrangler": "",
- "wxt": "",
- "xaml": "",
- "xmake": "",
- "xml": "",
- "yaml": "",
- "yang": "",
- "yarn": "",
- "zeabur": "",
- "zeabur_light": "",
- "zig": "",
- "zip": ""
-}
\ No newline at end of file
diff --git a/public/assets/img/svg/fontawesome-openid.svg b/public/assets/img/svg/fontawesome-openid.svg
deleted file mode 100644
index f806899bde9e5..0000000000000
--- a/public/assets/img/svg/fontawesome-openid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/fontawesome-save.svg b/public/assets/img/svg/fontawesome-save.svg
deleted file mode 100644
index e7b3ea9d5b3d3..0000000000000
--- a/public/assets/img/svg/fontawesome-save.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/fontawesome-send.svg b/public/assets/img/svg/fontawesome-send.svg
deleted file mode 100644
index f94715d40191f..0000000000000
--- a/public/assets/img/svg/fontawesome-send.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/fontawesome-windows.svg b/public/assets/img/svg/fontawesome-windows.svg
deleted file mode 100644
index b1c16040c97eb..0000000000000
--- a/public/assets/img/svg/fontawesome-windows.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-alpine.svg b/public/assets/img/svg/gitea-alpine.svg
deleted file mode 100644
index 43ebbaa287799..0000000000000
--- a/public/assets/img/svg/gitea-alpine.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-arch.svg b/public/assets/img/svg/gitea-arch.svg
deleted file mode 100644
index 943a92c579468..0000000000000
--- a/public/assets/img/svg/gitea-arch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-azuread.svg b/public/assets/img/svg/gitea-azuread.svg
deleted file mode 100644
index 2bef0f7b4e325..0000000000000
--- a/public/assets/img/svg/gitea-azuread.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-azureadv2.svg b/public/assets/img/svg/gitea-azureadv2.svg
deleted file mode 100644
index e8ffdf07655cb..0000000000000
--- a/public/assets/img/svg/gitea-azureadv2.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-bitbucket.svg b/public/assets/img/svg/gitea-bitbucket.svg
deleted file mode 100644
index 83e4c5c6e7bbd..0000000000000
--- a/public/assets/img/svg/gitea-bitbucket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-cargo.svg b/public/assets/img/svg/gitea-cargo.svg
deleted file mode 100644
index 76467f66c2204..0000000000000
--- a/public/assets/img/svg/gitea-cargo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-chef.svg b/public/assets/img/svg/gitea-chef.svg
deleted file mode 100644
index 8fd8ed325d8a1..0000000000000
--- a/public/assets/img/svg/gitea-chef.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-codebase.svg b/public/assets/img/svg/gitea-codebase.svg
deleted file mode 100644
index b2108014f5155..0000000000000
--- a/public/assets/img/svg/gitea-codebase.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-codecommit.svg b/public/assets/img/svg/gitea-codecommit.svg
deleted file mode 100644
index 35d0b39c037d2..0000000000000
--- a/public/assets/img/svg/gitea-codecommit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-colorblind-blueyellow.svg b/public/assets/img/svg/gitea-colorblind-blueyellow.svg
deleted file mode 100644
index 63a101b50d4f5..0000000000000
--- a/public/assets/img/svg/gitea-colorblind-blueyellow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-colorblind-redgreen.svg b/public/assets/img/svg/gitea-colorblind-redgreen.svg
deleted file mode 100644
index 5933afa850f53..0000000000000
--- a/public/assets/img/svg/gitea-colorblind-redgreen.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-composer.svg b/public/assets/img/svg/gitea-composer.svg
deleted file mode 100644
index 1b91102e73b7a..0000000000000
--- a/public/assets/img/svg/gitea-composer.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-conan.svg b/public/assets/img/svg/gitea-conan.svg
deleted file mode 100644
index bc09314495c01..0000000000000
--- a/public/assets/img/svg/gitea-conan.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-conda.svg b/public/assets/img/svg/gitea-conda.svg
deleted file mode 100644
index 800730a25e87c..0000000000000
--- a/public/assets/img/svg/gitea-conda.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-cran.svg b/public/assets/img/svg/gitea-cran.svg
deleted file mode 100644
index ba7632904f646..0000000000000
--- a/public/assets/img/svg/gitea-cran.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-debian.svg b/public/assets/img/svg/gitea-debian.svg
deleted file mode 100644
index e92d0b6937f46..0000000000000
--- a/public/assets/img/svg/gitea-debian.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-discord.svg b/public/assets/img/svg/gitea-discord.svg
deleted file mode 100644
index 2edcb4fed760c..0000000000000
--- a/public/assets/img/svg/gitea-discord.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-double-chevron-left.svg b/public/assets/img/svg/gitea-double-chevron-left.svg
deleted file mode 100644
index ec7d12142100a..0000000000000
--- a/public/assets/img/svg/gitea-double-chevron-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-double-chevron-right.svg b/public/assets/img/svg/gitea-double-chevron-right.svg
deleted file mode 100644
index e312728cd48d6..0000000000000
--- a/public/assets/img/svg/gitea-double-chevron-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-dropbox.svg b/public/assets/img/svg/gitea-dropbox.svg
deleted file mode 100644
index bbcbdb6341319..0000000000000
--- a/public/assets/img/svg/gitea-dropbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-eclipse.svg b/public/assets/img/svg/gitea-eclipse.svg
deleted file mode 100644
index eb90ad8f6b34a..0000000000000
--- a/public/assets/img/svg/gitea-eclipse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-empty-checkbox.svg b/public/assets/img/svg/gitea-empty-checkbox.svg
deleted file mode 100644
index 40d75366f4707..0000000000000
--- a/public/assets/img/svg/gitea-empty-checkbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-exclamation.svg b/public/assets/img/svg/gitea-exclamation.svg
deleted file mode 100644
index b899f8d7f6a3a..0000000000000
--- a/public/assets/img/svg/gitea-exclamation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-facebook.svg b/public/assets/img/svg/gitea-facebook.svg
deleted file mode 100644
index 6101becad2e63..0000000000000
--- a/public/assets/img/svg/gitea-facebook.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-feishu.svg b/public/assets/img/svg/gitea-feishu.svg
deleted file mode 100644
index d7a5ead49979b..0000000000000
--- a/public/assets/img/svg/gitea-feishu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-git.svg b/public/assets/img/svg/gitea-git.svg
deleted file mode 100644
index 33a98deb1644a..0000000000000
--- a/public/assets/img/svg/gitea-git.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-gitbucket.svg b/public/assets/img/svg/gitea-gitbucket.svg
deleted file mode 100644
index b9e99724b21f4..0000000000000
--- a/public/assets/img/svg/gitea-gitbucket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-gitea.svg b/public/assets/img/svg/gitea-gitea.svg
deleted file mode 100644
index 5d89fa1da9fb4..0000000000000
--- a/public/assets/img/svg/gitea-gitea.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-gitlab.svg b/public/assets/img/svg/gitea-gitlab.svg
deleted file mode 100644
index e2d708e7be155..0000000000000
--- a/public/assets/img/svg/gitea-gitlab.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-go.svg b/public/assets/img/svg/gitea-go.svg
deleted file mode 100644
index bc7969d47d9ba..0000000000000
--- a/public/assets/img/svg/gitea-go.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-gogs.svg b/public/assets/img/svg/gitea-gogs.svg
deleted file mode 100644
index 7727542b6f08e..0000000000000
--- a/public/assets/img/svg/gitea-gogs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-google.svg b/public/assets/img/svg/gitea-google.svg
deleted file mode 100644
index 26ee04cb64e12..0000000000000
--- a/public/assets/img/svg/gitea-google.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-helm.svg b/public/assets/img/svg/gitea-helm.svg
deleted file mode 100644
index 2419c312e43a8..0000000000000
--- a/public/assets/img/svg/gitea-helm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-jetbrains.svg b/public/assets/img/svg/gitea-jetbrains.svg
deleted file mode 100644
index 5821736225452..0000000000000
--- a/public/assets/img/svg/gitea-jetbrains.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-join.svg b/public/assets/img/svg/gitea-join.svg
deleted file mode 100644
index c1d2f275e8d6b..0000000000000
--- a/public/assets/img/svg/gitea-join.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-lock-cog.svg b/public/assets/img/svg/gitea-lock-cog.svg
deleted file mode 100644
index 683c2ce239d2e..0000000000000
--- a/public/assets/img/svg/gitea-lock-cog.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-lock.svg b/public/assets/img/svg/gitea-lock.svg
deleted file mode 100644
index 87069eae4ba82..0000000000000
--- a/public/assets/img/svg/gitea-lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-mastodon.svg b/public/assets/img/svg/gitea-mastodon.svg
deleted file mode 100644
index c6119902d232f..0000000000000
--- a/public/assets/img/svg/gitea-mastodon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-matrix.svg b/public/assets/img/svg/gitea-matrix.svg
deleted file mode 100644
index 89c6258dbcbae..0000000000000
--- a/public/assets/img/svg/gitea-matrix.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-maven.svg b/public/assets/img/svg/gitea-maven.svg
deleted file mode 100644
index f6ece7dc28677..0000000000000
--- a/public/assets/img/svg/gitea-maven.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-microsoftonline.svg b/public/assets/img/svg/gitea-microsoftonline.svg
deleted file mode 100644
index c143eccbb68ba..0000000000000
--- a/public/assets/img/svg/gitea-microsoftonline.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-nextcloud.svg b/public/assets/img/svg/gitea-nextcloud.svg
deleted file mode 100644
index 3d760b3aa6d5c..0000000000000
--- a/public/assets/img/svg/gitea-nextcloud.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-npm.svg b/public/assets/img/svg/gitea-npm.svg
deleted file mode 100644
index 2b05c79353656..0000000000000
--- a/public/assets/img/svg/gitea-npm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-nuget.svg b/public/assets/img/svg/gitea-nuget.svg
deleted file mode 100644
index da6bfd24536dc..0000000000000
--- a/public/assets/img/svg/gitea-nuget.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-onedev.svg b/public/assets/img/svg/gitea-onedev.svg
deleted file mode 100644
index 7ecd18895d64c..0000000000000
--- a/public/assets/img/svg/gitea-onedev.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-openid.svg b/public/assets/img/svg/gitea-openid.svg
deleted file mode 100644
index 10c37145a3d6d..0000000000000
--- a/public/assets/img/svg/gitea-openid.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-pub.svg b/public/assets/img/svg/gitea-pub.svg
deleted file mode 100644
index 412586761fc08..0000000000000
--- a/public/assets/img/svg/gitea-pub.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-python.svg b/public/assets/img/svg/gitea-python.svg
deleted file mode 100644
index 68e19ef2be426..0000000000000
--- a/public/assets/img/svg/gitea-python.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-rpm.svg b/public/assets/img/svg/gitea-rpm.svg
deleted file mode 100644
index d0d3db1e43d18..0000000000000
--- a/public/assets/img/svg/gitea-rpm.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-rubygems.svg b/public/assets/img/svg/gitea-rubygems.svg
deleted file mode 100644
index 7cd9d34e6a788..0000000000000
--- a/public/assets/img/svg/gitea-rubygems.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-running.svg b/public/assets/img/svg/gitea-running.svg
deleted file mode 100644
index 2320f8101cbae..0000000000000
--- a/public/assets/img/svg/gitea-running.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-split.svg b/public/assets/img/svg/gitea-split.svg
deleted file mode 100644
index 9ce3077a968ce..0000000000000
--- a/public/assets/img/svg/gitea-split.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-swift.svg b/public/assets/img/svg/gitea-swift.svg
deleted file mode 100644
index 891ac12b56d80..0000000000000
--- a/public/assets/img/svg/gitea-swift.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-terraform.svg b/public/assets/img/svg/gitea-terraform.svg
deleted file mode 100644
index 809b7e6fe1764..0000000000000
--- a/public/assets/img/svg/gitea-terraform.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-twitter.svg b/public/assets/img/svg/gitea-twitter.svg
deleted file mode 100644
index 5ed1e264cac1f..0000000000000
--- a/public/assets/img/svg/gitea-twitter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-unlock.svg b/public/assets/img/svg/gitea-unlock.svg
deleted file mode 100644
index 595dec0e68e99..0000000000000
--- a/public/assets/img/svg/gitea-unlock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-vagrant.svg b/public/assets/img/svg/gitea-vagrant.svg
deleted file mode 100644
index 18b05e900dd79..0000000000000
--- a/public/assets/img/svg/gitea-vagrant.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-vscodium.svg b/public/assets/img/svg/gitea-vscodium.svg
deleted file mode 100644
index 6aad3d3a648aa..0000000000000
--- a/public/assets/img/svg/gitea-vscodium.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-whitespace.svg b/public/assets/img/svg/gitea-whitespace.svg
deleted file mode 100644
index 9d3b342b3d48b..0000000000000
--- a/public/assets/img/svg/gitea-whitespace.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/gitea-yandex.svg b/public/assets/img/svg/gitea-yandex.svg
deleted file mode 100644
index d24c0be537a2d..0000000000000
--- a/public/assets/img/svg/gitea-yandex.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/material-folder-generic.svg b/public/assets/img/svg/material-folder-generic.svg
deleted file mode 100644
index c8dc753b43f34..0000000000000
--- a/public/assets/img/svg/material-folder-generic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/material-folder-symlink.svg b/public/assets/img/svg/material-folder-symlink.svg
deleted file mode 100644
index 49a80b425535e..0000000000000
--- a/public/assets/img/svg/material-folder-symlink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/material-invert-colors.svg b/public/assets/img/svg/material-invert-colors.svg
deleted file mode 100644
index feddf73ca4ded..0000000000000
--- a/public/assets/img/svg/material-invert-colors.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/material-palette.svg b/public/assets/img/svg/material-palette.svg
deleted file mode 100644
index f98cef7bdcf9f..0000000000000
--- a/public/assets/img/svg/material-palette.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-accessibility-inset.svg b/public/assets/img/svg/octicon-accessibility-inset.svg
deleted file mode 100644
index 1ace41537d449..0000000000000
--- a/public/assets/img/svg/octicon-accessibility-inset.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-accessibility.svg b/public/assets/img/svg/octicon-accessibility.svg
deleted file mode 100644
index fcd56827f5ee5..0000000000000
--- a/public/assets/img/svg/octicon-accessibility.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-agent.svg b/public/assets/img/svg/octicon-agent.svg
deleted file mode 100644
index 9e2bce0fef011..0000000000000
--- a/public/assets/img/svg/octicon-agent.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-ai-model.svg b/public/assets/img/svg/octicon-ai-model.svg
deleted file mode 100644
index 57d127bfaa142..0000000000000
--- a/public/assets/img/svg/octicon-ai-model.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-alert-fill.svg b/public/assets/img/svg/octicon-alert-fill.svg
deleted file mode 100644
index a2135affc179a..0000000000000
--- a/public/assets/img/svg/octicon-alert-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-alert.svg b/public/assets/img/svg/octicon-alert.svg
deleted file mode 100644
index 1d97fbeb54f78..0000000000000
--- a/public/assets/img/svg/octicon-alert.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-apps.svg b/public/assets/img/svg/octicon-apps.svg
deleted file mode 100644
index 9119636d4f43d..0000000000000
--- a/public/assets/img/svg/octicon-apps.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-archive.svg b/public/assets/img/svg/octicon-archive.svg
deleted file mode 100644
index 48ad67ec630de..0000000000000
--- a/public/assets/img/svg/octicon-archive.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-both.svg b/public/assets/img/svg/octicon-arrow-both.svg
deleted file mode 100644
index aec2d6ac08d8b..0000000000000
--- a/public/assets/img/svg/octicon-arrow-both.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-down-left.svg b/public/assets/img/svg/octicon-arrow-down-left.svg
deleted file mode 100644
index 720f32082673c..0000000000000
--- a/public/assets/img/svg/octicon-arrow-down-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-down-right.svg b/public/assets/img/svg/octicon-arrow-down-right.svg
deleted file mode 100644
index 4404432e3c546..0000000000000
--- a/public/assets/img/svg/octicon-arrow-down-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-down.svg b/public/assets/img/svg/octicon-arrow-down.svg
deleted file mode 100644
index 87b526311e7e3..0000000000000
--- a/public/assets/img/svg/octicon-arrow-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-left.svg b/public/assets/img/svg/octicon-arrow-left.svg
deleted file mode 100644
index 0e498725bc0eb..0000000000000
--- a/public/assets/img/svg/octicon-arrow-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-right.svg b/public/assets/img/svg/octicon-arrow-right.svg
deleted file mode 100644
index 5298ea1421960..0000000000000
--- a/public/assets/img/svg/octicon-arrow-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-switch.svg b/public/assets/img/svg/octicon-arrow-switch.svg
deleted file mode 100644
index 8d1bc1d7aca97..0000000000000
--- a/public/assets/img/svg/octicon-arrow-switch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-up-left.svg b/public/assets/img/svg/octicon-arrow-up-left.svg
deleted file mode 100644
index 053102b634325..0000000000000
--- a/public/assets/img/svg/octicon-arrow-up-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-up-right.svg b/public/assets/img/svg/octicon-arrow-up-right.svg
deleted file mode 100644
index d3c0533c2f6f0..0000000000000
--- a/public/assets/img/svg/octicon-arrow-up-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-arrow-up.svg b/public/assets/img/svg/octicon-arrow-up.svg
deleted file mode 100644
index b790d6e4e2083..0000000000000
--- a/public/assets/img/svg/octicon-arrow-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-beaker.svg b/public/assets/img/svg/octicon-beaker.svg
deleted file mode 100644
index ce0ad4d815507..0000000000000
--- a/public/assets/img/svg/octicon-beaker.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bell-fill.svg b/public/assets/img/svg/octicon-bell-fill.svg
deleted file mode 100644
index a385b9e5fdae9..0000000000000
--- a/public/assets/img/svg/octicon-bell-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bell-slash.svg b/public/assets/img/svg/octicon-bell-slash.svg
deleted file mode 100644
index 344671d8a81a8..0000000000000
--- a/public/assets/img/svg/octicon-bell-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bell.svg b/public/assets/img/svg/octicon-bell.svg
deleted file mode 100644
index 26903da2b0a2c..0000000000000
--- a/public/assets/img/svg/octicon-bell.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-blocked.svg b/public/assets/img/svg/octicon-blocked.svg
deleted file mode 100644
index 0d0a7c0b34327..0000000000000
--- a/public/assets/img/svg/octicon-blocked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bold.svg b/public/assets/img/svg/octicon-bold.svg
deleted file mode 100644
index ea2545975e6da..0000000000000
--- a/public/assets/img/svg/octicon-bold.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-book-locked.svg b/public/assets/img/svg/octicon-book-locked.svg
deleted file mode 100644
index a72d10f96c46e..0000000000000
--- a/public/assets/img/svg/octicon-book-locked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-book.svg b/public/assets/img/svg/octicon-book.svg
deleted file mode 100644
index 3b58ec1eaadd7..0000000000000
--- a/public/assets/img/svg/octicon-book.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bookmark-filled.svg b/public/assets/img/svg/octicon-bookmark-filled.svg
deleted file mode 100644
index 3ac73a51133ae..0000000000000
--- a/public/assets/img/svg/octicon-bookmark-filled.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bookmark-slash-fill.svg b/public/assets/img/svg/octicon-bookmark-slash-fill.svg
deleted file mode 100644
index bce2a0f0feb3e..0000000000000
--- a/public/assets/img/svg/octicon-bookmark-slash-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bookmark-slash.svg b/public/assets/img/svg/octicon-bookmark-slash.svg
deleted file mode 100644
index 781ae92d2246f..0000000000000
--- a/public/assets/img/svg/octicon-bookmark-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bookmark.svg b/public/assets/img/svg/octicon-bookmark.svg
deleted file mode 100644
index 5b25ef620f674..0000000000000
--- a/public/assets/img/svg/octicon-bookmark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-boolean-off.svg b/public/assets/img/svg/octicon-boolean-off.svg
deleted file mode 100644
index 9dd9cc51e4c81..0000000000000
--- a/public/assets/img/svg/octicon-boolean-off.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-boolean-on.svg b/public/assets/img/svg/octicon-boolean-on.svg
deleted file mode 100644
index c85a30f87a3f4..0000000000000
--- a/public/assets/img/svg/octicon-boolean-on.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-briefcase.svg b/public/assets/img/svg/octicon-briefcase.svg
deleted file mode 100644
index 3293cc80ed04a..0000000000000
--- a/public/assets/img/svg/octicon-briefcase.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-broadcast.svg b/public/assets/img/svg/octicon-broadcast.svg
deleted file mode 100644
index e8c9f6d21bf50..0000000000000
--- a/public/assets/img/svg/octicon-broadcast.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-browser.svg b/public/assets/img/svg/octicon-browser.svg
deleted file mode 100644
index c1399fad61382..0000000000000
--- a/public/assets/img/svg/octicon-browser.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-bug.svg b/public/assets/img/svg/octicon-bug.svg
deleted file mode 100644
index 20a09048d5fb9..0000000000000
--- a/public/assets/img/svg/octicon-bug.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-cache.svg b/public/assets/img/svg/octicon-cache.svg
deleted file mode 100644
index 5b8a7924bb084..0000000000000
--- a/public/assets/img/svg/octicon-cache.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-calendar.svg b/public/assets/img/svg/octicon-calendar.svg
deleted file mode 100644
index 55fd2f49da11d..0000000000000
--- a/public/assets/img/svg/octicon-calendar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-check-circle-fill.svg b/public/assets/img/svg/octicon-check-circle-fill.svg
deleted file mode 100644
index 8840d55ce1de5..0000000000000
--- a/public/assets/img/svg/octicon-check-circle-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-check-circle.svg b/public/assets/img/svg/octicon-check-circle.svg
deleted file mode 100644
index 63ff6d2b21b01..0000000000000
--- a/public/assets/img/svg/octicon-check-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-check.svg b/public/assets/img/svg/octicon-check.svg
deleted file mode 100644
index b76500b131235..0000000000000
--- a/public/assets/img/svg/octicon-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-checkbox-fill.svg b/public/assets/img/svg/octicon-checkbox-fill.svg
deleted file mode 100644
index 6e9085f61c6e5..0000000000000
--- a/public/assets/img/svg/octicon-checkbox-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-checkbox.svg b/public/assets/img/svg/octicon-checkbox.svg
deleted file mode 100644
index b9711c5509a7f..0000000000000
--- a/public/assets/img/svg/octicon-checkbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-checklist.svg b/public/assets/img/svg/octicon-checklist.svg
deleted file mode 100644
index 172f13a4331dc..0000000000000
--- a/public/assets/img/svg/octicon-checklist.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-chevron-down.svg b/public/assets/img/svg/octicon-chevron-down.svg
deleted file mode 100644
index 824e4764efbf4..0000000000000
--- a/public/assets/img/svg/octicon-chevron-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-chevron-left.svg b/public/assets/img/svg/octicon-chevron-left.svg
deleted file mode 100644
index ec2e25a96897b..0000000000000
--- a/public/assets/img/svg/octicon-chevron-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-chevron-right.svg b/public/assets/img/svg/octicon-chevron-right.svg
deleted file mode 100644
index 4a575153afa35..0000000000000
--- a/public/assets/img/svg/octicon-chevron-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-chevron-up.svg b/public/assets/img/svg/octicon-chevron-up.svg
deleted file mode 100644
index 4dac4b5049c29..0000000000000
--- a/public/assets/img/svg/octicon-chevron-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-circle-slash.svg b/public/assets/img/svg/octicon-circle-slash.svg
deleted file mode 100644
index fbc3865094c83..0000000000000
--- a/public/assets/img/svg/octicon-circle-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-circle.svg b/public/assets/img/svg/octicon-circle.svg
deleted file mode 100644
index c2fa88b929e8e..0000000000000
--- a/public/assets/img/svg/octicon-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-clock-fill.svg b/public/assets/img/svg/octicon-clock-fill.svg
deleted file mode 100644
index 423e5fd29d77a..0000000000000
--- a/public/assets/img/svg/octicon-clock-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-clock.svg b/public/assets/img/svg/octicon-clock.svg
deleted file mode 100644
index 186f6fbefc87d..0000000000000
--- a/public/assets/img/svg/octicon-clock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-cloud-offline.svg b/public/assets/img/svg/octicon-cloud-offline.svg
deleted file mode 100644
index a4c3091638c3d..0000000000000
--- a/public/assets/img/svg/octicon-cloud-offline.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-cloud.svg b/public/assets/img/svg/octicon-cloud.svg
deleted file mode 100644
index 38b6a76122d47..0000000000000
--- a/public/assets/img/svg/octicon-cloud.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-code-of-conduct.svg b/public/assets/img/svg/octicon-code-of-conduct.svg
deleted file mode 100644
index 20d4152643f10..0000000000000
--- a/public/assets/img/svg/octicon-code-of-conduct.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-code-review.svg b/public/assets/img/svg/octicon-code-review.svg
deleted file mode 100644
index 2ba5e12569619..0000000000000
--- a/public/assets/img/svg/octicon-code-review.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-code-square.svg b/public/assets/img/svg/octicon-code-square.svg
deleted file mode 100644
index 8dadc44eee3e3..0000000000000
--- a/public/assets/img/svg/octicon-code-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-code.svg b/public/assets/img/svg/octicon-code.svg
deleted file mode 100644
index a18c3b6ef6cdb..0000000000000
--- a/public/assets/img/svg/octicon-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-codescan-checkmark.svg b/public/assets/img/svg/octicon-codescan-checkmark.svg
deleted file mode 100644
index e81d4e9e53e36..0000000000000
--- a/public/assets/img/svg/octicon-codescan-checkmark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-codescan.svg b/public/assets/img/svg/octicon-codescan.svg
deleted file mode 100644
index c03a0e582ed61..0000000000000
--- a/public/assets/img/svg/octicon-codescan.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-codespaces.svg b/public/assets/img/svg/octicon-codespaces.svg
deleted file mode 100644
index 30a3890b5682f..0000000000000
--- a/public/assets/img/svg/octicon-codespaces.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-columns.svg b/public/assets/img/svg/octicon-columns.svg
deleted file mode 100644
index a88b8071c2bd0..0000000000000
--- a/public/assets/img/svg/octicon-columns.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-command-palette.svg b/public/assets/img/svg/octicon-command-palette.svg
deleted file mode 100644
index 6c8528180ec14..0000000000000
--- a/public/assets/img/svg/octicon-command-palette.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-comment-ai.svg b/public/assets/img/svg/octicon-comment-ai.svg
deleted file mode 100644
index 72aa8715a099d..0000000000000
--- a/public/assets/img/svg/octicon-comment-ai.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-comment-discussion.svg b/public/assets/img/svg/octicon-comment-discussion.svg
deleted file mode 100644
index 2a2728db0421c..0000000000000
--- a/public/assets/img/svg/octicon-comment-discussion.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-comment-locked.svg b/public/assets/img/svg/octicon-comment-locked.svg
deleted file mode 100644
index d8e92747156bb..0000000000000
--- a/public/assets/img/svg/octicon-comment-locked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-comment.svg b/public/assets/img/svg/octicon-comment.svg
deleted file mode 100644
index 916d808d9fff0..0000000000000
--- a/public/assets/img/svg/octicon-comment.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-compose.svg b/public/assets/img/svg/octicon-compose.svg
deleted file mode 100644
index 7bcecef394509..0000000000000
--- a/public/assets/img/svg/octicon-compose.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-container.svg b/public/assets/img/svg/octicon-container.svg
deleted file mode 100644
index c8eeeb16ec0fd..0000000000000
--- a/public/assets/img/svg/octicon-container.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-copilot-error.svg b/public/assets/img/svg/octicon-copilot-error.svg
deleted file mode 100644
index d213328a454a0..0000000000000
--- a/public/assets/img/svg/octicon-copilot-error.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-copilot-warning.svg b/public/assets/img/svg/octicon-copilot-warning.svg
deleted file mode 100644
index af5fa66827e14..0000000000000
--- a/public/assets/img/svg/octicon-copilot-warning.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-copilot.svg b/public/assets/img/svg/octicon-copilot.svg
deleted file mode 100644
index c23f45407f6f3..0000000000000
--- a/public/assets/img/svg/octicon-copilot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-copy.svg b/public/assets/img/svg/octicon-copy.svg
deleted file mode 100644
index a372c5b275b80..0000000000000
--- a/public/assets/img/svg/octicon-copy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-cpu.svg b/public/assets/img/svg/octicon-cpu.svg
deleted file mode 100644
index 753b9b5799eac..0000000000000
--- a/public/assets/img/svg/octicon-cpu.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-credit-card.svg b/public/assets/img/svg/octicon-credit-card.svg
deleted file mode 100644
index 94c8f1581e7e6..0000000000000
--- a/public/assets/img/svg/octicon-credit-card.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-cross-reference.svg b/public/assets/img/svg/octicon-cross-reference.svg
deleted file mode 100644
index 80b122b35668c..0000000000000
--- a/public/assets/img/svg/octicon-cross-reference.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-crosshairs.svg b/public/assets/img/svg/octicon-crosshairs.svg
deleted file mode 100644
index 1fdd94d25206c..0000000000000
--- a/public/assets/img/svg/octicon-crosshairs.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-dash.svg b/public/assets/img/svg/octicon-dash.svg
deleted file mode 100644
index 39ebd0d264e79..0000000000000
--- a/public/assets/img/svg/octicon-dash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-database.svg b/public/assets/img/svg/octicon-database.svg
deleted file mode 100644
index cbc9749286c1a..0000000000000
--- a/public/assets/img/svg/octicon-database.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-dependabot.svg b/public/assets/img/svg/octicon-dependabot.svg
deleted file mode 100644
index 250d10cc1b8b3..0000000000000
--- a/public/assets/img/svg/octicon-dependabot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-desktop-download.svg b/public/assets/img/svg/octicon-desktop-download.svg
deleted file mode 100644
index 4ddaa137dee17..0000000000000
--- a/public/assets/img/svg/octicon-desktop-download.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-device-camera-video.svg b/public/assets/img/svg/octicon-device-camera-video.svg
deleted file mode 100644
index 4e7e1e7c4d600..0000000000000
--- a/public/assets/img/svg/octicon-device-camera-video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-device-camera.svg b/public/assets/img/svg/octicon-device-camera.svg
deleted file mode 100644
index bf4de4a59cba2..0000000000000
--- a/public/assets/img/svg/octicon-device-camera.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-device-desktop.svg b/public/assets/img/svg/octicon-device-desktop.svg
deleted file mode 100644
index 4a6183688f625..0000000000000
--- a/public/assets/img/svg/octicon-device-desktop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-device-mobile.svg b/public/assets/img/svg/octicon-device-mobile.svg
deleted file mode 100644
index cf247e215c10f..0000000000000
--- a/public/assets/img/svg/octicon-device-mobile.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-devices.svg b/public/assets/img/svg/octicon-devices.svg
deleted file mode 100644
index 84d2a88febeef..0000000000000
--- a/public/assets/img/svg/octicon-devices.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diamond.svg b/public/assets/img/svg/octicon-diamond.svg
deleted file mode 100644
index 82d0bcbcfe8b4..0000000000000
--- a/public/assets/img/svg/octicon-diamond.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-dice.svg b/public/assets/img/svg/octicon-dice.svg
deleted file mode 100644
index af1531cb90c43..0000000000000
--- a/public/assets/img/svg/octicon-dice.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff-added.svg b/public/assets/img/svg/octicon-diff-added.svg
deleted file mode 100644
index 276d162129deb..0000000000000
--- a/public/assets/img/svg/octicon-diff-added.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff-ignored.svg b/public/assets/img/svg/octicon-diff-ignored.svg
deleted file mode 100644
index 6949409bdfb97..0000000000000
--- a/public/assets/img/svg/octicon-diff-ignored.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff-modified.svg b/public/assets/img/svg/octicon-diff-modified.svg
deleted file mode 100644
index 1c0d7296aa1aa..0000000000000
--- a/public/assets/img/svg/octicon-diff-modified.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff-removed.svg b/public/assets/img/svg/octicon-diff-removed.svg
deleted file mode 100644
index d366a107559b2..0000000000000
--- a/public/assets/img/svg/octicon-diff-removed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff-renamed.svg b/public/assets/img/svg/octicon-diff-renamed.svg
deleted file mode 100644
index f07999a660876..0000000000000
--- a/public/assets/img/svg/octicon-diff-renamed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-diff.svg b/public/assets/img/svg/octicon-diff.svg
deleted file mode 100644
index 4714b0fdd43a8..0000000000000
--- a/public/assets/img/svg/octicon-diff.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-discussion-closed.svg b/public/assets/img/svg/octicon-discussion-closed.svg
deleted file mode 100644
index d97598d2aa2f2..0000000000000
--- a/public/assets/img/svg/octicon-discussion-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-discussion-duplicate.svg b/public/assets/img/svg/octicon-discussion-duplicate.svg
deleted file mode 100644
index 01fd6641e226b..0000000000000
--- a/public/assets/img/svg/octicon-discussion-duplicate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-discussion-outdated.svg b/public/assets/img/svg/octicon-discussion-outdated.svg
deleted file mode 100644
index 515e63afae710..0000000000000
--- a/public/assets/img/svg/octicon-discussion-outdated.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-dot-fill.svg b/public/assets/img/svg/octicon-dot-fill.svg
deleted file mode 100644
index 17db30b0e0048..0000000000000
--- a/public/assets/img/svg/octicon-dot-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-dot.svg b/public/assets/img/svg/octicon-dot.svg
deleted file mode 100644
index fe03e3ded73c8..0000000000000
--- a/public/assets/img/svg/octicon-dot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-download.svg b/public/assets/img/svg/octicon-download.svg
deleted file mode 100644
index 80584198301dc..0000000000000
--- a/public/assets/img/svg/octicon-download.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-duplicate.svg b/public/assets/img/svg/octicon-duplicate.svg
deleted file mode 100644
index 289ac5905f1c2..0000000000000
--- a/public/assets/img/svg/octicon-duplicate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-ellipsis.svg b/public/assets/img/svg/octicon-ellipsis.svg
deleted file mode 100644
index 152e6eb324944..0000000000000
--- a/public/assets/img/svg/octicon-ellipsis.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-exclamation.svg b/public/assets/img/svg/octicon-exclamation.svg
deleted file mode 100644
index 30c1791b59f96..0000000000000
--- a/public/assets/img/svg/octicon-exclamation.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-eye-closed.svg b/public/assets/img/svg/octicon-eye-closed.svg
deleted file mode 100644
index 3b493863cdcb9..0000000000000
--- a/public/assets/img/svg/octicon-eye-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-eye.svg b/public/assets/img/svg/octicon-eye.svg
deleted file mode 100644
index c0b3648c63075..0000000000000
--- a/public/assets/img/svg/octicon-eye.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-discussion.svg b/public/assets/img/svg/octicon-feed-discussion.svg
deleted file mode 100644
index e8ccfff386a43..0000000000000
--- a/public/assets/img/svg/octicon-feed-discussion.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-forked.svg b/public/assets/img/svg/octicon-feed-forked.svg
deleted file mode 100644
index 65b0eb1b133a9..0000000000000
--- a/public/assets/img/svg/octicon-feed-forked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-heart.svg b/public/assets/img/svg/octicon-feed-heart.svg
deleted file mode 100644
index f2d620dd47f69..0000000000000
--- a/public/assets/img/svg/octicon-feed-heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-issue-closed.svg b/public/assets/img/svg/octicon-feed-issue-closed.svg
deleted file mode 100644
index 9cd3127afc00d..0000000000000
--- a/public/assets/img/svg/octicon-feed-issue-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-issue-draft.svg b/public/assets/img/svg/octicon-feed-issue-draft.svg
deleted file mode 100644
index 091a59163ed42..0000000000000
--- a/public/assets/img/svg/octicon-feed-issue-draft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-issue-open.svg b/public/assets/img/svg/octicon-feed-issue-open.svg
deleted file mode 100644
index 6d8989895b095..0000000000000
--- a/public/assets/img/svg/octicon-feed-issue-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-issue-reopen.svg b/public/assets/img/svg/octicon-feed-issue-reopen.svg
deleted file mode 100644
index c82d5b0fdc6f8..0000000000000
--- a/public/assets/img/svg/octicon-feed-issue-reopen.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-merged.svg b/public/assets/img/svg/octicon-feed-merged.svg
deleted file mode 100644
index 2984bef2272c6..0000000000000
--- a/public/assets/img/svg/octicon-feed-merged.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-person.svg b/public/assets/img/svg/octicon-feed-person.svg
deleted file mode 100644
index 0854866216d03..0000000000000
--- a/public/assets/img/svg/octicon-feed-person.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-plus.svg b/public/assets/img/svg/octicon-feed-plus.svg
deleted file mode 100644
index 6d0286e22ea6b..0000000000000
--- a/public/assets/img/svg/octicon-feed-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-public.svg b/public/assets/img/svg/octicon-feed-public.svg
deleted file mode 100644
index 926f7fe26a620..0000000000000
--- a/public/assets/img/svg/octicon-feed-public.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-pull-request-closed.svg b/public/assets/img/svg/octicon-feed-pull-request-closed.svg
deleted file mode 100644
index b594acd9cc2de..0000000000000
--- a/public/assets/img/svg/octicon-feed-pull-request-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-pull-request-draft.svg b/public/assets/img/svg/octicon-feed-pull-request-draft.svg
deleted file mode 100644
index 1ae02e68efcc0..0000000000000
--- a/public/assets/img/svg/octicon-feed-pull-request-draft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-pull-request-open.svg b/public/assets/img/svg/octicon-feed-pull-request-open.svg
deleted file mode 100644
index d1349c2d6c65f..0000000000000
--- a/public/assets/img/svg/octicon-feed-pull-request-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-repo.svg b/public/assets/img/svg/octicon-feed-repo.svg
deleted file mode 100644
index fe099c52d216b..0000000000000
--- a/public/assets/img/svg/octicon-feed-repo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-rocket.svg b/public/assets/img/svg/octicon-feed-rocket.svg
deleted file mode 100644
index 48587a1ab6d4b..0000000000000
--- a/public/assets/img/svg/octicon-feed-rocket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-star.svg b/public/assets/img/svg/octicon-feed-star.svg
deleted file mode 100644
index 3c3a6aa48a6aa..0000000000000
--- a/public/assets/img/svg/octicon-feed-star.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-tag.svg b/public/assets/img/svg/octicon-feed-tag.svg
deleted file mode 100644
index d63dd74c4de29..0000000000000
--- a/public/assets/img/svg/octicon-feed-tag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-feed-trophy.svg b/public/assets/img/svg/octicon-feed-trophy.svg
deleted file mode 100644
index ba06c3e712dc0..0000000000000
--- a/public/assets/img/svg/octicon-feed-trophy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-added.svg b/public/assets/img/svg/octicon-file-added.svg
deleted file mode 100644
index a8cd80f3e8a8b..0000000000000
--- a/public/assets/img/svg/octicon-file-added.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-badge.svg b/public/assets/img/svg/octicon-file-badge.svg
deleted file mode 100644
index 5f0a74206ad4a..0000000000000
--- a/public/assets/img/svg/octicon-file-badge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-binary.svg b/public/assets/img/svg/octicon-file-binary.svg
deleted file mode 100644
index 492e7d54335dc..0000000000000
--- a/public/assets/img/svg/octicon-file-binary.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-check.svg b/public/assets/img/svg/octicon-file-check.svg
deleted file mode 100644
index 28cee870692a5..0000000000000
--- a/public/assets/img/svg/octicon-file-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-code.svg b/public/assets/img/svg/octicon-file-code.svg
deleted file mode 100644
index 66430e30822aa..0000000000000
--- a/public/assets/img/svg/octicon-file-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-diff.svg b/public/assets/img/svg/octicon-file-diff.svg
deleted file mode 100644
index a58df3e53dbb5..0000000000000
--- a/public/assets/img/svg/octicon-file-diff.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-directory-fill.svg b/public/assets/img/svg/octicon-file-directory-fill.svg
deleted file mode 100644
index 800e6ba9528ec..0000000000000
--- a/public/assets/img/svg/octicon-file-directory-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-directory-open-fill.svg b/public/assets/img/svg/octicon-file-directory-open-fill.svg
deleted file mode 100644
index 0d1bac328a7e1..0000000000000
--- a/public/assets/img/svg/octicon-file-directory-open-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-directory-symlink.svg b/public/assets/img/svg/octicon-file-directory-symlink.svg
deleted file mode 100644
index 8a6142b229903..0000000000000
--- a/public/assets/img/svg/octicon-file-directory-symlink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-directory.svg b/public/assets/img/svg/octicon-file-directory.svg
deleted file mode 100644
index 2376e5a6134f9..0000000000000
--- a/public/assets/img/svg/octicon-file-directory.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-media.svg b/public/assets/img/svg/octicon-file-media.svg
deleted file mode 100644
index 6ee50b4d3e078..0000000000000
--- a/public/assets/img/svg/octicon-file-media.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-moved.svg b/public/assets/img/svg/octicon-file-moved.svg
deleted file mode 100644
index 03735b0e98719..0000000000000
--- a/public/assets/img/svg/octicon-file-moved.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-removed.svg b/public/assets/img/svg/octicon-file-removed.svg
deleted file mode 100644
index 08158afe55151..0000000000000
--- a/public/assets/img/svg/octicon-file-removed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-submodule.svg b/public/assets/img/svg/octicon-file-submodule.svg
deleted file mode 100644
index 8eab90f8c6e19..0000000000000
--- a/public/assets/img/svg/octicon-file-submodule.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-symlink-file.svg b/public/assets/img/svg/octicon-file-symlink-file.svg
deleted file mode 100644
index 21b8cbf5165a3..0000000000000
--- a/public/assets/img/svg/octicon-file-symlink-file.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file-zip.svg b/public/assets/img/svg/octicon-file-zip.svg
deleted file mode 100644
index 3adddf0aa161a..0000000000000
--- a/public/assets/img/svg/octicon-file-zip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-file.svg b/public/assets/img/svg/octicon-file.svg
deleted file mode 100644
index faf92c5431c7d..0000000000000
--- a/public/assets/img/svg/octicon-file.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-filter-remove.svg b/public/assets/img/svg/octicon-filter-remove.svg
deleted file mode 100644
index c10010622bc98..0000000000000
--- a/public/assets/img/svg/octicon-filter-remove.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-filter.svg b/public/assets/img/svg/octicon-filter.svg
deleted file mode 100644
index 63cd16e647ceb..0000000000000
--- a/public/assets/img/svg/octicon-filter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-fiscal-host.svg b/public/assets/img/svg/octicon-fiscal-host.svg
deleted file mode 100644
index 877850ad243d6..0000000000000
--- a/public/assets/img/svg/octicon-fiscal-host.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-flame.svg b/public/assets/img/svg/octicon-flame.svg
deleted file mode 100644
index 0db84ac379d57..0000000000000
--- a/public/assets/img/svg/octicon-flame.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-flowchart.svg b/public/assets/img/svg/octicon-flowchart.svg
deleted file mode 100644
index 47aec70de1005..0000000000000
--- a/public/assets/img/svg/octicon-flowchart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-focus-center.svg b/public/assets/img/svg/octicon-focus-center.svg
deleted file mode 100644
index e6c2e2fb52413..0000000000000
--- a/public/assets/img/svg/octicon-focus-center.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-fold-down.svg b/public/assets/img/svg/octicon-fold-down.svg
deleted file mode 100644
index 957a95fceacc9..0000000000000
--- a/public/assets/img/svg/octicon-fold-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-fold-up.svg b/public/assets/img/svg/octicon-fold-up.svg
deleted file mode 100644
index c139cf83620d1..0000000000000
--- a/public/assets/img/svg/octicon-fold-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-fold.svg b/public/assets/img/svg/octicon-fold.svg
deleted file mode 100644
index 5657e930c1b00..0000000000000
--- a/public/assets/img/svg/octicon-fold.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-gear.svg b/public/assets/img/svg/octicon-gear.svg
deleted file mode 100644
index be6eee1b8aa92..0000000000000
--- a/public/assets/img/svg/octicon-gear.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-gift.svg b/public/assets/img/svg/octicon-gift.svg
deleted file mode 100644
index 4a6ba3049a1f6..0000000000000
--- a/public/assets/img/svg/octicon-gift.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-branch-check.svg b/public/assets/img/svg/octicon-git-branch-check.svg
deleted file mode 100644
index 3b9d836776bf7..0000000000000
--- a/public/assets/img/svg/octicon-git-branch-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-branch.svg b/public/assets/img/svg/octicon-git-branch.svg
deleted file mode 100644
index c7116adf01072..0000000000000
--- a/public/assets/img/svg/octicon-git-branch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-commit.svg b/public/assets/img/svg/octicon-git-commit.svg
deleted file mode 100644
index 6c2ac50ac3d50..0000000000000
--- a/public/assets/img/svg/octicon-git-commit.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-compare.svg b/public/assets/img/svg/octicon-git-compare.svg
deleted file mode 100644
index 6bf455942d14c..0000000000000
--- a/public/assets/img/svg/octicon-git-compare.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-merge-queue.svg b/public/assets/img/svg/octicon-git-merge-queue.svg
deleted file mode 100644
index bfe39b34e6b2c..0000000000000
--- a/public/assets/img/svg/octicon-git-merge-queue.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-merge.svg b/public/assets/img/svg/octicon-git-merge.svg
deleted file mode 100644
index 172996147711e..0000000000000
--- a/public/assets/img/svg/octicon-git-merge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-pull-request-closed.svg b/public/assets/img/svg/octicon-git-pull-request-closed.svg
deleted file mode 100644
index 628f9fe6daaf6..0000000000000
--- a/public/assets/img/svg/octicon-git-pull-request-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-pull-request-draft.svg b/public/assets/img/svg/octicon-git-pull-request-draft.svg
deleted file mode 100644
index 74d9af987a424..0000000000000
--- a/public/assets/img/svg/octicon-git-pull-request-draft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-pull-request-locked.svg b/public/assets/img/svg/octicon-git-pull-request-locked.svg
deleted file mode 100644
index d9ea190491365..0000000000000
--- a/public/assets/img/svg/octicon-git-pull-request-locked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-git-pull-request.svg b/public/assets/img/svg/octicon-git-pull-request.svg
deleted file mode 100644
index 2277666fe044d..0000000000000
--- a/public/assets/img/svg/octicon-git-pull-request.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-globe.svg b/public/assets/img/svg/octicon-globe.svg
deleted file mode 100644
index 60ca5b57e372f..0000000000000
--- a/public/assets/img/svg/octicon-globe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-goal.svg b/public/assets/img/svg/octicon-goal.svg
deleted file mode 100644
index dd36a51fb7b0c..0000000000000
--- a/public/assets/img/svg/octicon-goal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-grabber.svg b/public/assets/img/svg/octicon-grabber.svg
deleted file mode 100644
index 9239188d42412..0000000000000
--- a/public/assets/img/svg/octicon-grabber.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-graph-bar-horizontal.svg b/public/assets/img/svg/octicon-graph-bar-horizontal.svg
deleted file mode 100644
index e910f3ff93ed8..0000000000000
--- a/public/assets/img/svg/octicon-graph-bar-horizontal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-graph-bar-vertical.svg b/public/assets/img/svg/octicon-graph-bar-vertical.svg
deleted file mode 100644
index 2761cde321f96..0000000000000
--- a/public/assets/img/svg/octicon-graph-bar-vertical.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-graph.svg b/public/assets/img/svg/octicon-graph.svg
deleted file mode 100644
index 393faf95bd144..0000000000000
--- a/public/assets/img/svg/octicon-graph.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-hash.svg b/public/assets/img/svg/octicon-hash.svg
deleted file mode 100644
index 9920504192c13..0000000000000
--- a/public/assets/img/svg/octicon-hash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-heading.svg b/public/assets/img/svg/octicon-heading.svg
deleted file mode 100644
index 597e7949a50e9..0000000000000
--- a/public/assets/img/svg/octicon-heading.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-heart-fill.svg b/public/assets/img/svg/octicon-heart-fill.svg
deleted file mode 100644
index 1f23ef46da5df..0000000000000
--- a/public/assets/img/svg/octicon-heart-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-heart.svg b/public/assets/img/svg/octicon-heart.svg
deleted file mode 100644
index 3980b80b52147..0000000000000
--- a/public/assets/img/svg/octicon-heart.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-history.svg b/public/assets/img/svg/octicon-history.svg
deleted file mode 100644
index fb835dc4aa3d7..0000000000000
--- a/public/assets/img/svg/octicon-history.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-home-fill.svg b/public/assets/img/svg/octicon-home-fill.svg
deleted file mode 100644
index c030a0fddf014..0000000000000
--- a/public/assets/img/svg/octicon-home-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-home.svg b/public/assets/img/svg/octicon-home.svg
deleted file mode 100644
index 2586237e1f8b0..0000000000000
--- a/public/assets/img/svg/octicon-home.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-horizontal-rule.svg b/public/assets/img/svg/octicon-horizontal-rule.svg
deleted file mode 100644
index 978874be5a476..0000000000000
--- a/public/assets/img/svg/octicon-horizontal-rule.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-hourglass.svg b/public/assets/img/svg/octicon-hourglass.svg
deleted file mode 100644
index 8f84421c9e9c8..0000000000000
--- a/public/assets/img/svg/octicon-hourglass.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-hubot.svg b/public/assets/img/svg/octicon-hubot.svg
deleted file mode 100644
index 0042389648251..0000000000000
--- a/public/assets/img/svg/octicon-hubot.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-id-badge.svg b/public/assets/img/svg/octicon-id-badge.svg
deleted file mode 100644
index ed3acea8bf6f9..0000000000000
--- a/public/assets/img/svg/octicon-id-badge.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-image.svg b/public/assets/img/svg/octicon-image.svg
deleted file mode 100644
index a3ce77a876a73..0000000000000
--- a/public/assets/img/svg/octicon-image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-inbox-fill.svg b/public/assets/img/svg/octicon-inbox-fill.svg
deleted file mode 100644
index 25052b5b8da81..0000000000000
--- a/public/assets/img/svg/octicon-inbox-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-inbox.svg b/public/assets/img/svg/octicon-inbox.svg
deleted file mode 100644
index 3d65320ac6aa4..0000000000000
--- a/public/assets/img/svg/octicon-inbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-infinity.svg b/public/assets/img/svg/octicon-infinity.svg
deleted file mode 100644
index 2edd1ef91b6a5..0000000000000
--- a/public/assets/img/svg/octicon-infinity.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-info.svg b/public/assets/img/svg/octicon-info.svg
deleted file mode 100644
index de6616b0b7ba8..0000000000000
--- a/public/assets/img/svg/octicon-info.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-closed.svg b/public/assets/img/svg/octicon-issue-closed.svg
deleted file mode 100644
index 1d0aa0c2b423c..0000000000000
--- a/public/assets/img/svg/octicon-issue-closed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-draft.svg b/public/assets/img/svg/octicon-issue-draft.svg
deleted file mode 100644
index d02ddd3e0c863..0000000000000
--- a/public/assets/img/svg/octicon-issue-draft.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-locked.svg b/public/assets/img/svg/octicon-issue-locked.svg
deleted file mode 100644
index 24af659c4f286..0000000000000
--- a/public/assets/img/svg/octicon-issue-locked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-opened.svg b/public/assets/img/svg/octicon-issue-opened.svg
deleted file mode 100644
index fb0752dcf3cac..0000000000000
--- a/public/assets/img/svg/octicon-issue-opened.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-reopened.svg b/public/assets/img/svg/octicon-issue-reopened.svg
deleted file mode 100644
index cd72facc37489..0000000000000
--- a/public/assets/img/svg/octicon-issue-reopened.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-tracked-by.svg b/public/assets/img/svg/octicon-issue-tracked-by.svg
deleted file mode 100644
index 3cabd7851d204..0000000000000
--- a/public/assets/img/svg/octicon-issue-tracked-by.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-issue-tracks.svg b/public/assets/img/svg/octicon-issue-tracks.svg
deleted file mode 100644
index 7eb86e5151979..0000000000000
--- a/public/assets/img/svg/octicon-issue-tracks.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-italic.svg b/public/assets/img/svg/octicon-italic.svg
deleted file mode 100644
index 2f71fcc9331fd..0000000000000
--- a/public/assets/img/svg/octicon-italic.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-iterations.svg b/public/assets/img/svg/octicon-iterations.svg
deleted file mode 100644
index 33e98c1de3670..0000000000000
--- a/public/assets/img/svg/octicon-iterations.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-kebab-horizontal.svg b/public/assets/img/svg/octicon-kebab-horizontal.svg
deleted file mode 100644
index d744abf8d81ac..0000000000000
--- a/public/assets/img/svg/octicon-kebab-horizontal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-key-asterisk.svg b/public/assets/img/svg/octicon-key-asterisk.svg
deleted file mode 100644
index 8b57e47885ebb..0000000000000
--- a/public/assets/img/svg/octicon-key-asterisk.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-key.svg b/public/assets/img/svg/octicon-key.svg
deleted file mode 100644
index 6705b7138320c..0000000000000
--- a/public/assets/img/svg/octicon-key.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-law.svg b/public/assets/img/svg/octicon-law.svg
deleted file mode 100644
index 841798e644a3b..0000000000000
--- a/public/assets/img/svg/octicon-law.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-light-bulb.svg b/public/assets/img/svg/octicon-light-bulb.svg
deleted file mode 100644
index c438ecf25e059..0000000000000
--- a/public/assets/img/svg/octicon-light-bulb.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-link-external.svg b/public/assets/img/svg/octicon-link-external.svg
deleted file mode 100644
index 6d7750b9d2606..0000000000000
--- a/public/assets/img/svg/octicon-link-external.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-link.svg b/public/assets/img/svg/octicon-link.svg
deleted file mode 100644
index 9269974e490db..0000000000000
--- a/public/assets/img/svg/octicon-link.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-list-ordered.svg b/public/assets/img/svg/octicon-list-ordered.svg
deleted file mode 100644
index 004070815a9b2..0000000000000
--- a/public/assets/img/svg/octicon-list-ordered.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-list-unordered.svg b/public/assets/img/svg/octicon-list-unordered.svg
deleted file mode 100644
index 1976bd89db9cb..0000000000000
--- a/public/assets/img/svg/octicon-list-unordered.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-location.svg b/public/assets/img/svg/octicon-location.svg
deleted file mode 100644
index 7f91acc2e7064..0000000000000
--- a/public/assets/img/svg/octicon-location.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-lock.svg b/public/assets/img/svg/octicon-lock.svg
deleted file mode 100644
index b737b56f77124..0000000000000
--- a/public/assets/img/svg/octicon-lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-lockup-github.svg b/public/assets/img/svg/octicon-lockup-github.svg
deleted file mode 100644
index 746317496c4ed..0000000000000
--- a/public/assets/img/svg/octicon-lockup-github.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-log.svg b/public/assets/img/svg/octicon-log.svg
deleted file mode 100644
index 0f71230f06909..0000000000000
--- a/public/assets/img/svg/octicon-log.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-logo-gist.svg b/public/assets/img/svg/octicon-logo-gist.svg
deleted file mode 100644
index 8621f14776d5c..0000000000000
--- a/public/assets/img/svg/octicon-logo-gist.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-logo-github.svg b/public/assets/img/svg/octicon-logo-github.svg
deleted file mode 100644
index cd09f6ac14306..0000000000000
--- a/public/assets/img/svg/octicon-logo-github.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-loop.svg b/public/assets/img/svg/octicon-loop.svg
deleted file mode 100644
index 967641f12166b..0000000000000
--- a/public/assets/img/svg/octicon-loop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mail.svg b/public/assets/img/svg/octicon-mail.svg
deleted file mode 100644
index 750b742e6c1dd..0000000000000
--- a/public/assets/img/svg/octicon-mail.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mark-github.svg b/public/assets/img/svg/octicon-mark-github.svg
deleted file mode 100644
index a46d882513b11..0000000000000
--- a/public/assets/img/svg/octicon-mark-github.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-markdown.svg b/public/assets/img/svg/octicon-markdown.svg
deleted file mode 100644
index 6e81e9a11c0c6..0000000000000
--- a/public/assets/img/svg/octicon-markdown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-maximize.svg b/public/assets/img/svg/octicon-maximize.svg
deleted file mode 100644
index 376772d6949c1..0000000000000
--- a/public/assets/img/svg/octicon-maximize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mcp.svg b/public/assets/img/svg/octicon-mcp.svg
deleted file mode 100644
index e68d45bcc0267..0000000000000
--- a/public/assets/img/svg/octicon-mcp.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-megaphone.svg b/public/assets/img/svg/octicon-megaphone.svg
deleted file mode 100644
index 178b55092b190..0000000000000
--- a/public/assets/img/svg/octicon-megaphone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mention.svg b/public/assets/img/svg/octicon-mention.svg
deleted file mode 100644
index ff408c59a2fff..0000000000000
--- a/public/assets/img/svg/octicon-mention.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-meter.svg b/public/assets/img/svg/octicon-meter.svg
deleted file mode 100644
index 38bd456445e49..0000000000000
--- a/public/assets/img/svg/octicon-meter.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-milestone.svg b/public/assets/img/svg/octicon-milestone.svg
deleted file mode 100644
index 19667b613cf61..0000000000000
--- a/public/assets/img/svg/octicon-milestone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-minimize.svg b/public/assets/img/svg/octicon-minimize.svg
deleted file mode 100644
index 620d93f0cec91..0000000000000
--- a/public/assets/img/svg/octicon-minimize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mirror.svg b/public/assets/img/svg/octicon-mirror.svg
deleted file mode 100644
index d9c67fcf84b5e..0000000000000
--- a/public/assets/img/svg/octicon-mirror.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-moon.svg b/public/assets/img/svg/octicon-moon.svg
deleted file mode 100644
index 244544d6c1b47..0000000000000
--- a/public/assets/img/svg/octicon-moon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mortar-board.svg b/public/assets/img/svg/octicon-mortar-board.svg
deleted file mode 100644
index 8a9f9545466eb..0000000000000
--- a/public/assets/img/svg/octicon-mortar-board.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-move-to-bottom.svg b/public/assets/img/svg/octicon-move-to-bottom.svg
deleted file mode 100644
index 3f2a183df995d..0000000000000
--- a/public/assets/img/svg/octicon-move-to-bottom.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-move-to-end.svg b/public/assets/img/svg/octicon-move-to-end.svg
deleted file mode 100644
index ef3e60bc3a3d9..0000000000000
--- a/public/assets/img/svg/octicon-move-to-end.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-move-to-start.svg b/public/assets/img/svg/octicon-move-to-start.svg
deleted file mode 100644
index 2dc1df7344bfa..0000000000000
--- a/public/assets/img/svg/octicon-move-to-start.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-move-to-top.svg b/public/assets/img/svg/octicon-move-to-top.svg
deleted file mode 100644
index 109515cc52a12..0000000000000
--- a/public/assets/img/svg/octicon-move-to-top.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-multi-select.svg b/public/assets/img/svg/octicon-multi-select.svg
deleted file mode 100644
index e079b24a5edff..0000000000000
--- a/public/assets/img/svg/octicon-multi-select.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-mute.svg b/public/assets/img/svg/octicon-mute.svg
deleted file mode 100644
index 2bb114f8a56c2..0000000000000
--- a/public/assets/img/svg/octicon-mute.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-no-entry.svg b/public/assets/img/svg/octicon-no-entry.svg
deleted file mode 100644
index e7117cd1ca617..0000000000000
--- a/public/assets/img/svg/octicon-no-entry.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-node.svg b/public/assets/img/svg/octicon-node.svg
deleted file mode 100644
index c31eefb9a425e..0000000000000
--- a/public/assets/img/svg/octicon-node.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-north-star.svg b/public/assets/img/svg/octicon-north-star.svg
deleted file mode 100644
index 2fef71871aade..0000000000000
--- a/public/assets/img/svg/octicon-north-star.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-note.svg b/public/assets/img/svg/octicon-note.svg
deleted file mode 100644
index 39e7e4e7e5553..0000000000000
--- a/public/assets/img/svg/octicon-note.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-number.svg b/public/assets/img/svg/octicon-number.svg
deleted file mode 100644
index 0a88de18aa85f..0000000000000
--- a/public/assets/img/svg/octicon-number.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-organization.svg b/public/assets/img/svg/octicon-organization.svg
deleted file mode 100644
index 0799b07311007..0000000000000
--- a/public/assets/img/svg/octicon-organization.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-package-dependencies.svg b/public/assets/img/svg/octicon-package-dependencies.svg
deleted file mode 100644
index 8cb567153badc..0000000000000
--- a/public/assets/img/svg/octicon-package-dependencies.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-package-dependents.svg b/public/assets/img/svg/octicon-package-dependents.svg
deleted file mode 100644
index 22dd4d1626f5f..0000000000000
--- a/public/assets/img/svg/octicon-package-dependents.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-package.svg b/public/assets/img/svg/octicon-package.svg
deleted file mode 100644
index 61b222508c7e1..0000000000000
--- a/public/assets/img/svg/octicon-package.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-paintbrush.svg b/public/assets/img/svg/octicon-paintbrush.svg
deleted file mode 100644
index d9ac07654c657..0000000000000
--- a/public/assets/img/svg/octicon-paintbrush.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-paper-airplane.svg b/public/assets/img/svg/octicon-paper-airplane.svg
deleted file mode 100644
index 8e4a92915fd10..0000000000000
--- a/public/assets/img/svg/octicon-paper-airplane.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-paperclip.svg b/public/assets/img/svg/octicon-paperclip.svg
deleted file mode 100644
index de38702a44fb0..0000000000000
--- a/public/assets/img/svg/octicon-paperclip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-passkey-fill.svg b/public/assets/img/svg/octicon-passkey-fill.svg
deleted file mode 100644
index 98fcafb7722a7..0000000000000
--- a/public/assets/img/svg/octicon-passkey-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-paste.svg b/public/assets/img/svg/octicon-paste.svg
deleted file mode 100644
index 212c2b82aa667..0000000000000
--- a/public/assets/img/svg/octicon-paste.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pause.svg b/public/assets/img/svg/octicon-pause.svg
deleted file mode 100644
index 008de5afdfa0a..0000000000000
--- a/public/assets/img/svg/octicon-pause.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pencil-ai.svg b/public/assets/img/svg/octicon-pencil-ai.svg
deleted file mode 100644
index 3c4587af84ac1..0000000000000
--- a/public/assets/img/svg/octicon-pencil-ai.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pencil.svg b/public/assets/img/svg/octicon-pencil.svg
deleted file mode 100644
index f0f1f7387ccb7..0000000000000
--- a/public/assets/img/svg/octicon-pencil.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-people.svg b/public/assets/img/svg/octicon-people.svg
deleted file mode 100644
index 9143c70a46d32..0000000000000
--- a/public/assets/img/svg/octicon-people.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-person-add.svg b/public/assets/img/svg/octicon-person-add.svg
deleted file mode 100644
index 4c9517269d382..0000000000000
--- a/public/assets/img/svg/octicon-person-add.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-person-fill.svg b/public/assets/img/svg/octicon-person-fill.svg
deleted file mode 100644
index 4715c29f03b0b..0000000000000
--- a/public/assets/img/svg/octicon-person-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-person.svg b/public/assets/img/svg/octicon-person.svg
deleted file mode 100644
index 2d12f02377984..0000000000000
--- a/public/assets/img/svg/octicon-person.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pin-slash.svg b/public/assets/img/svg/octicon-pin-slash.svg
deleted file mode 100644
index adf7ed4a7ab52..0000000000000
--- a/public/assets/img/svg/octicon-pin-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pin.svg b/public/assets/img/svg/octicon-pin.svg
deleted file mode 100644
index 49ac5af31ac8b..0000000000000
--- a/public/assets/img/svg/octicon-pin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pivot-column.svg b/public/assets/img/svg/octicon-pivot-column.svg
deleted file mode 100644
index 795fde10d14f3..0000000000000
--- a/public/assets/img/svg/octicon-pivot-column.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-play.svg b/public/assets/img/svg/octicon-play.svg
deleted file mode 100644
index dca6572781832..0000000000000
--- a/public/assets/img/svg/octicon-play.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-plug.svg b/public/assets/img/svg/octicon-plug.svg
deleted file mode 100644
index 4caf972b67618..0000000000000
--- a/public/assets/img/svg/octicon-plug.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-plus-circle.svg b/public/assets/img/svg/octicon-plus-circle.svg
deleted file mode 100644
index 71c55630a8275..0000000000000
--- a/public/assets/img/svg/octicon-plus-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-plus.svg b/public/assets/img/svg/octicon-plus.svg
deleted file mode 100644
index 1fd3743532f10..0000000000000
--- a/public/assets/img/svg/octicon-plus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-project-roadmap.svg b/public/assets/img/svg/octicon-project-roadmap.svg
deleted file mode 100644
index a6b15c1ff2c57..0000000000000
--- a/public/assets/img/svg/octicon-project-roadmap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-project-symlink.svg b/public/assets/img/svg/octicon-project-symlink.svg
deleted file mode 100644
index bc9104a871594..0000000000000
--- a/public/assets/img/svg/octicon-project-symlink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-project-template.svg b/public/assets/img/svg/octicon-project-template.svg
deleted file mode 100644
index 31d4cc06b7ef9..0000000000000
--- a/public/assets/img/svg/octicon-project-template.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-project.svg b/public/assets/img/svg/octicon-project.svg
deleted file mode 100644
index 9fb23c758da35..0000000000000
--- a/public/assets/img/svg/octicon-project.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-pulse.svg b/public/assets/img/svg/octicon-pulse.svg
deleted file mode 100644
index 2450ffeabe850..0000000000000
--- a/public/assets/img/svg/octicon-pulse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-question.svg b/public/assets/img/svg/octicon-question.svg
deleted file mode 100644
index 6d6a3f5353742..0000000000000
--- a/public/assets/img/svg/octicon-question.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-quote.svg b/public/assets/img/svg/octicon-quote.svg
deleted file mode 100644
index c3b02f48314e2..0000000000000
--- a/public/assets/img/svg/octicon-quote.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-read.svg b/public/assets/img/svg/octicon-read.svg
deleted file mode 100644
index cd5ee2028d8c0..0000000000000
--- a/public/assets/img/svg/octicon-read.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-redo.svg b/public/assets/img/svg/octicon-redo.svg
deleted file mode 100644
index a81a32131f24c..0000000000000
--- a/public/assets/img/svg/octicon-redo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-rel-file-path.svg b/public/assets/img/svg/octicon-rel-file-path.svg
deleted file mode 100644
index 45837c2cd39d4..0000000000000
--- a/public/assets/img/svg/octicon-rel-file-path.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-reply.svg b/public/assets/img/svg/octicon-reply.svg
deleted file mode 100644
index 70e550e5d7619..0000000000000
--- a/public/assets/img/svg/octicon-reply.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-clone.svg b/public/assets/img/svg/octicon-repo-clone.svg
deleted file mode 100644
index 67099d8170e4b..0000000000000
--- a/public/assets/img/svg/octicon-repo-clone.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-deleted.svg b/public/assets/img/svg/octicon-repo-deleted.svg
deleted file mode 100644
index 7d8c846987edf..0000000000000
--- a/public/assets/img/svg/octicon-repo-deleted.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-forked.svg b/public/assets/img/svg/octicon-repo-forked.svg
deleted file mode 100644
index a45bee68ca047..0000000000000
--- a/public/assets/img/svg/octicon-repo-forked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-locked.svg b/public/assets/img/svg/octicon-repo-locked.svg
deleted file mode 100644
index 5f2ba7f3b7225..0000000000000
--- a/public/assets/img/svg/octicon-repo-locked.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-pull.svg b/public/assets/img/svg/octicon-repo-pull.svg
deleted file mode 100644
index 4f02f6f127f4a..0000000000000
--- a/public/assets/img/svg/octicon-repo-pull.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-push.svg b/public/assets/img/svg/octicon-repo-push.svg
deleted file mode 100644
index eec5b10235817..0000000000000
--- a/public/assets/img/svg/octicon-repo-push.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo-template.svg b/public/assets/img/svg/octicon-repo-template.svg
deleted file mode 100644
index 45b7acf4f9a73..0000000000000
--- a/public/assets/img/svg/octicon-repo-template.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-repo.svg b/public/assets/img/svg/octicon-repo.svg
deleted file mode 100644
index ace4a3c72d1ed..0000000000000
--- a/public/assets/img/svg/octicon-repo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-report.svg b/public/assets/img/svg/octicon-report.svg
deleted file mode 100644
index e0cf5651363fa..0000000000000
--- a/public/assets/img/svg/octicon-report.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-rocket.svg b/public/assets/img/svg/octicon-rocket.svg
deleted file mode 100644
index 13395eb5001d6..0000000000000
--- a/public/assets/img/svg/octicon-rocket.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-rows.svg b/public/assets/img/svg/octicon-rows.svg
deleted file mode 100644
index 4596215238ac2..0000000000000
--- a/public/assets/img/svg/octicon-rows.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-rss.svg b/public/assets/img/svg/octicon-rss.svg
deleted file mode 100644
index 6b1303340aaa1..0000000000000
--- a/public/assets/img/svg/octicon-rss.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-ruby.svg b/public/assets/img/svg/octicon-ruby.svg
deleted file mode 100644
index 3697948a6858b..0000000000000
--- a/public/assets/img/svg/octicon-ruby.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-screen-full.svg b/public/assets/img/svg/octicon-screen-full.svg
deleted file mode 100644
index 8074a22cf2d70..0000000000000
--- a/public/assets/img/svg/octicon-screen-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-screen-normal.svg b/public/assets/img/svg/octicon-screen-normal.svg
deleted file mode 100644
index 98fe6a8721911..0000000000000
--- a/public/assets/img/svg/octicon-screen-normal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-search.svg b/public/assets/img/svg/octicon-search.svg
deleted file mode 100644
index 5286c0440c938..0000000000000
--- a/public/assets/img/svg/octicon-search.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-server.svg b/public/assets/img/svg/octicon-server.svg
deleted file mode 100644
index fd4e9be060a99..0000000000000
--- a/public/assets/img/svg/octicon-server.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-share-android.svg b/public/assets/img/svg/octicon-share-android.svg
deleted file mode 100644
index 2e1cdcbde5050..0000000000000
--- a/public/assets/img/svg/octicon-share-android.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-share.svg b/public/assets/img/svg/octicon-share.svg
deleted file mode 100644
index eb4dc00656d72..0000000000000
--- a/public/assets/img/svg/octicon-share.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-shield-check.svg b/public/assets/img/svg/octicon-shield-check.svg
deleted file mode 100644
index 99fc924261e32..0000000000000
--- a/public/assets/img/svg/octicon-shield-check.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-shield-lock.svg b/public/assets/img/svg/octicon-shield-lock.svg
deleted file mode 100644
index 2057bbc8f93b9..0000000000000
--- a/public/assets/img/svg/octicon-shield-lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-shield-slash.svg b/public/assets/img/svg/octicon-shield-slash.svg
deleted file mode 100644
index 28a2b858471aa..0000000000000
--- a/public/assets/img/svg/octicon-shield-slash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-shield-x.svg b/public/assets/img/svg/octicon-shield-x.svg
deleted file mode 100644
index b0fff660353d4..0000000000000
--- a/public/assets/img/svg/octicon-shield-x.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-shield.svg b/public/assets/img/svg/octicon-shield.svg
deleted file mode 100644
index 865238e563f6f..0000000000000
--- a/public/assets/img/svg/octicon-shield.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sidebar-collapse.svg b/public/assets/img/svg/octicon-sidebar-collapse.svg
deleted file mode 100644
index 6885cd277f00e..0000000000000
--- a/public/assets/img/svg/octicon-sidebar-collapse.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sidebar-expand.svg b/public/assets/img/svg/octicon-sidebar-expand.svg
deleted file mode 100644
index 41e5c800f1799..0000000000000
--- a/public/assets/img/svg/octicon-sidebar-expand.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sign-in.svg b/public/assets/img/svg/octicon-sign-in.svg
deleted file mode 100644
index 308c11878307e..0000000000000
--- a/public/assets/img/svg/octicon-sign-in.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sign-out.svg b/public/assets/img/svg/octicon-sign-out.svg
deleted file mode 100644
index ac1c95f9939bc..0000000000000
--- a/public/assets/img/svg/octicon-sign-out.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-single-select.svg b/public/assets/img/svg/octicon-single-select.svg
deleted file mode 100644
index 55a1a933bc819..0000000000000
--- a/public/assets/img/svg/octicon-single-select.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-skip-fill.svg b/public/assets/img/svg/octicon-skip-fill.svg
deleted file mode 100644
index 01a5cc8d3f009..0000000000000
--- a/public/assets/img/svg/octicon-skip-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-skip.svg b/public/assets/img/svg/octicon-skip.svg
deleted file mode 100644
index fe8d37792ee33..0000000000000
--- a/public/assets/img/svg/octicon-skip.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sliders.svg b/public/assets/img/svg/octicon-sliders.svg
deleted file mode 100644
index 940a3abde1718..0000000000000
--- a/public/assets/img/svg/octicon-sliders.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-smiley-frown.svg b/public/assets/img/svg/octicon-smiley-frown.svg
deleted file mode 100644
index 40ad10be8833c..0000000000000
--- a/public/assets/img/svg/octicon-smiley-frown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-smiley-frustrated.svg b/public/assets/img/svg/octicon-smiley-frustrated.svg
deleted file mode 100644
index 0dc5cddbb732b..0000000000000
--- a/public/assets/img/svg/octicon-smiley-frustrated.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-smiley-grin.svg b/public/assets/img/svg/octicon-smiley-grin.svg
deleted file mode 100644
index a44f35323c747..0000000000000
--- a/public/assets/img/svg/octicon-smiley-grin.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-smiley-neutral.svg b/public/assets/img/svg/octicon-smiley-neutral.svg
deleted file mode 100644
index e08375d2d5390..0000000000000
--- a/public/assets/img/svg/octicon-smiley-neutral.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-smiley.svg b/public/assets/img/svg/octicon-smiley.svg
deleted file mode 100644
index 11c9055fd035f..0000000000000
--- a/public/assets/img/svg/octicon-smiley.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sort-asc.svg b/public/assets/img/svg/octicon-sort-asc.svg
deleted file mode 100644
index 76fe377cb86a0..0000000000000
--- a/public/assets/img/svg/octicon-sort-asc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sort-desc.svg b/public/assets/img/svg/octicon-sort-desc.svg
deleted file mode 100644
index 1ae84a7fe7d6b..0000000000000
--- a/public/assets/img/svg/octicon-sort-desc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-space.svg b/public/assets/img/svg/octicon-space.svg
deleted file mode 100644
index 22912be37a531..0000000000000
--- a/public/assets/img/svg/octicon-space.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-spacing-large.svg b/public/assets/img/svg/octicon-spacing-large.svg
deleted file mode 100644
index 6504b7a5afd2c..0000000000000
--- a/public/assets/img/svg/octicon-spacing-large.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-spacing-medium.svg b/public/assets/img/svg/octicon-spacing-medium.svg
deleted file mode 100644
index 29333cf8531e6..0000000000000
--- a/public/assets/img/svg/octicon-spacing-medium.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-spacing-small.svg b/public/assets/img/svg/octicon-spacing-small.svg
deleted file mode 100644
index 493bd94d6f300..0000000000000
--- a/public/assets/img/svg/octicon-spacing-small.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sparkle-fill.svg b/public/assets/img/svg/octicon-sparkle-fill.svg
deleted file mode 100644
index fafd3d839e8ed..0000000000000
--- a/public/assets/img/svg/octicon-sparkle-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sparkle.svg b/public/assets/img/svg/octicon-sparkle.svg
deleted file mode 100644
index 769350bbbecf1..0000000000000
--- a/public/assets/img/svg/octicon-sparkle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sparkles-fill.svg b/public/assets/img/svg/octicon-sparkles-fill.svg
deleted file mode 100644
index 0ca70c1d3929f..0000000000000
--- a/public/assets/img/svg/octicon-sparkles-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-split-view.svg b/public/assets/img/svg/octicon-split-view.svg
deleted file mode 100644
index 0f6e235e67015..0000000000000
--- a/public/assets/img/svg/octicon-split-view.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sponsor-tiers.svg b/public/assets/img/svg/octicon-sponsor-tiers.svg
deleted file mode 100644
index efe96cd5a8c47..0000000000000
--- a/public/assets/img/svg/octicon-sponsor-tiers.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-square-circle.svg b/public/assets/img/svg/octicon-square-circle.svg
deleted file mode 100644
index 7ebb020badf54..0000000000000
--- a/public/assets/img/svg/octicon-square-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-square-fill.svg b/public/assets/img/svg/octicon-square-fill.svg
deleted file mode 100644
index 06d32b3c78dcc..0000000000000
--- a/public/assets/img/svg/octicon-square-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-square.svg b/public/assets/img/svg/octicon-square.svg
deleted file mode 100644
index 846af69405f69..0000000000000
--- a/public/assets/img/svg/octicon-square.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-squirrel.svg b/public/assets/img/svg/octicon-squirrel.svg
deleted file mode 100644
index 60b3ba5c58415..0000000000000
--- a/public/assets/img/svg/octicon-squirrel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-stack.svg b/public/assets/img/svg/octicon-stack.svg
deleted file mode 100644
index a86dbbee8d1cc..0000000000000
--- a/public/assets/img/svg/octicon-stack.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-star-fill.svg b/public/assets/img/svg/octicon-star-fill.svg
deleted file mode 100644
index 174ae0c2c07c6..0000000000000
--- a/public/assets/img/svg/octicon-star-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-star.svg b/public/assets/img/svg/octicon-star.svg
deleted file mode 100644
index 2001b8c0e86be..0000000000000
--- a/public/assets/img/svg/octicon-star.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-stop.svg b/public/assets/img/svg/octicon-stop.svg
deleted file mode 100644
index d85c7a35c2c8d..0000000000000
--- a/public/assets/img/svg/octicon-stop.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-stopwatch.svg b/public/assets/img/svg/octicon-stopwatch.svg
deleted file mode 100644
index eeec8dc396a1a..0000000000000
--- a/public/assets/img/svg/octicon-stopwatch.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-strikethrough.svg b/public/assets/img/svg/octicon-strikethrough.svg
deleted file mode 100644
index 1a9c4a0d3ee97..0000000000000
--- a/public/assets/img/svg/octicon-strikethrough.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sun.svg b/public/assets/img/svg/octicon-sun.svg
deleted file mode 100644
index 07756fa4386c1..0000000000000
--- a/public/assets/img/svg/octicon-sun.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-sync.svg b/public/assets/img/svg/octicon-sync.svg
deleted file mode 100644
index 30917e16b5b66..0000000000000
--- a/public/assets/img/svg/octicon-sync.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tab-external.svg b/public/assets/img/svg/octicon-tab-external.svg
deleted file mode 100644
index e1a979df1cc8d..0000000000000
--- a/public/assets/img/svg/octicon-tab-external.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tab.svg b/public/assets/img/svg/octicon-tab.svg
deleted file mode 100644
index 71de3e1c3554b..0000000000000
--- a/public/assets/img/svg/octicon-tab.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-table.svg b/public/assets/img/svg/octicon-table.svg
deleted file mode 100644
index c4bdbc228ba1b..0000000000000
--- a/public/assets/img/svg/octicon-table.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tag.svg b/public/assets/img/svg/octicon-tag.svg
deleted file mode 100644
index 0de0f6b4fe0fb..0000000000000
--- a/public/assets/img/svg/octicon-tag.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tasklist.svg b/public/assets/img/svg/octicon-tasklist.svg
deleted file mode 100644
index b1067aefc3250..0000000000000
--- a/public/assets/img/svg/octicon-tasklist.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-telescope-fill.svg b/public/assets/img/svg/octicon-telescope-fill.svg
deleted file mode 100644
index 4debe301d6f75..0000000000000
--- a/public/assets/img/svg/octicon-telescope-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-telescope.svg b/public/assets/img/svg/octicon-telescope.svg
deleted file mode 100644
index 17e79115ff20c..0000000000000
--- a/public/assets/img/svg/octicon-telescope.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-terminal.svg b/public/assets/img/svg/octicon-terminal.svg
deleted file mode 100644
index e6349af701b8f..0000000000000
--- a/public/assets/img/svg/octicon-terminal.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-three-bars.svg b/public/assets/img/svg/octicon-three-bars.svg
deleted file mode 100644
index cf97b03044ceb..0000000000000
--- a/public/assets/img/svg/octicon-three-bars.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-thumbsdown.svg b/public/assets/img/svg/octicon-thumbsdown.svg
deleted file mode 100644
index 76a6c072b7d4f..0000000000000
--- a/public/assets/img/svg/octicon-thumbsdown.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-thumbsup.svg b/public/assets/img/svg/octicon-thumbsup.svg
deleted file mode 100644
index 64f5cf9d71f47..0000000000000
--- a/public/assets/img/svg/octicon-thumbsup.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tools.svg b/public/assets/img/svg/octicon-tools.svg
deleted file mode 100644
index 851c44f2eaf35..0000000000000
--- a/public/assets/img/svg/octicon-tools.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tracked-by-closed-completed.svg b/public/assets/img/svg/octicon-tracked-by-closed-completed.svg
deleted file mode 100644
index c906f0eb6c582..0000000000000
--- a/public/assets/img/svg/octicon-tracked-by-closed-completed.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-tracked-by-closed-not-planned.svg b/public/assets/img/svg/octicon-tracked-by-closed-not-planned.svg
deleted file mode 100644
index f7383984287de..0000000000000
--- a/public/assets/img/svg/octicon-tracked-by-closed-not-planned.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-trash.svg b/public/assets/img/svg/octicon-trash.svg
deleted file mode 100644
index b52a439af7755..0000000000000
--- a/public/assets/img/svg/octicon-trash.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-triangle-down.svg b/public/assets/img/svg/octicon-triangle-down.svg
deleted file mode 100644
index e8034484fcbbb..0000000000000
--- a/public/assets/img/svg/octicon-triangle-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-triangle-left.svg b/public/assets/img/svg/octicon-triangle-left.svg
deleted file mode 100644
index fde4d16bad47a..0000000000000
--- a/public/assets/img/svg/octicon-triangle-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-triangle-right.svg b/public/assets/img/svg/octicon-triangle-right.svg
deleted file mode 100644
index 48a009760eec8..0000000000000
--- a/public/assets/img/svg/octicon-triangle-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-triangle-up.svg b/public/assets/img/svg/octicon-triangle-up.svg
deleted file mode 100644
index 1982cc84c4838..0000000000000
--- a/public/assets/img/svg/octicon-triangle-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-trophy.svg b/public/assets/img/svg/octicon-trophy.svg
deleted file mode 100644
index 62c37e70d41f8..0000000000000
--- a/public/assets/img/svg/octicon-trophy.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-typography.svg b/public/assets/img/svg/octicon-typography.svg
deleted file mode 100644
index 3ed9d8ff68b58..0000000000000
--- a/public/assets/img/svg/octicon-typography.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-undo.svg b/public/assets/img/svg/octicon-undo.svg
deleted file mode 100644
index 7dd709241efd7..0000000000000
--- a/public/assets/img/svg/octicon-undo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unfold.svg b/public/assets/img/svg/octicon-unfold.svg
deleted file mode 100644
index e383765b0c170..0000000000000
--- a/public/assets/img/svg/octicon-unfold.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unlink.svg b/public/assets/img/svg/octicon-unlink.svg
deleted file mode 100644
index a585e8ba90990..0000000000000
--- a/public/assets/img/svg/octicon-unlink.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unlock.svg b/public/assets/img/svg/octicon-unlock.svg
deleted file mode 100644
index efeb0ef38383d..0000000000000
--- a/public/assets/img/svg/octicon-unlock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unmute.svg b/public/assets/img/svg/octicon-unmute.svg
deleted file mode 100644
index f471217b63fb3..0000000000000
--- a/public/assets/img/svg/octicon-unmute.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unread.svg b/public/assets/img/svg/octicon-unread.svg
deleted file mode 100644
index f2c41413b12d3..0000000000000
--- a/public/assets/img/svg/octicon-unread.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unverified.svg b/public/assets/img/svg/octicon-unverified.svg
deleted file mode 100644
index 5833f2316ac61..0000000000000
--- a/public/assets/img/svg/octicon-unverified.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-unwrap.svg b/public/assets/img/svg/octicon-unwrap.svg
deleted file mode 100644
index bac12cc51d663..0000000000000
--- a/public/assets/img/svg/octicon-unwrap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-upload.svg b/public/assets/img/svg/octicon-upload.svg
deleted file mode 100644
index c61e952511e3d..0000000000000
--- a/public/assets/img/svg/octicon-upload.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-verified.svg b/public/assets/img/svg/octicon-verified.svg
deleted file mode 100644
index 57fc6a0eab65a..0000000000000
--- a/public/assets/img/svg/octicon-verified.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-versions.svg b/public/assets/img/svg/octicon-versions.svg
deleted file mode 100644
index 7f5428055b4d7..0000000000000
--- a/public/assets/img/svg/octicon-versions.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-video.svg b/public/assets/img/svg/octicon-video.svg
deleted file mode 100644
index 600a42bbea10b..0000000000000
--- a/public/assets/img/svg/octicon-video.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-vscode.svg b/public/assets/img/svg/octicon-vscode.svg
deleted file mode 100644
index 04ac8cacd512e..0000000000000
--- a/public/assets/img/svg/octicon-vscode.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-webhook.svg b/public/assets/img/svg/octicon-webhook.svg
deleted file mode 100644
index cce7537fb8b91..0000000000000
--- a/public/assets/img/svg/octicon-webhook.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-workflow.svg b/public/assets/img/svg/octicon-workflow.svg
deleted file mode 100644
index 2bf204bbe5945..0000000000000
--- a/public/assets/img/svg/octicon-workflow.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-wrap.svg b/public/assets/img/svg/octicon-wrap.svg
deleted file mode 100644
index 13247d799dbe0..0000000000000
--- a/public/assets/img/svg/octicon-wrap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-x-circle-fill.svg b/public/assets/img/svg/octicon-x-circle-fill.svg
deleted file mode 100644
index c0a6307884912..0000000000000
--- a/public/assets/img/svg/octicon-x-circle-fill.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-x-circle.svg b/public/assets/img/svg/octicon-x-circle.svg
deleted file mode 100644
index 94dc6b92817c3..0000000000000
--- a/public/assets/img/svg/octicon-x-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-x.svg b/public/assets/img/svg/octicon-x.svg
deleted file mode 100644
index 2d78857db2696..0000000000000
--- a/public/assets/img/svg/octicon-x.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-zap.svg b/public/assets/img/svg/octicon-zap.svg
deleted file mode 100644
index a693cb6d95860..0000000000000
--- a/public/assets/img/svg/octicon-zap.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-zoom-in.svg b/public/assets/img/svg/octicon-zoom-in.svg
deleted file mode 100644
index 1713ae7df1174..0000000000000
--- a/public/assets/img/svg/octicon-zoom-in.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/assets/img/svg/octicon-zoom-out.svg b/public/assets/img/svg/octicon-zoom-out.svg
deleted file mode 100644
index 9d682db55f372..0000000000000
--- a/public/assets/img/svg/octicon-zoom-out.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/tools/generate-svg.ts b/tools/generate-svg.ts
index c18eacc86fd44..7e54d983a6a1a 100755
--- a/tools/generate-svg.ts
+++ b/tools/generate-svg.ts
@@ -113,7 +113,10 @@ async function processMaterialFileIcons() {
}
async function main() {
- await mkdir(fileURLToPath(new URL('../public/assets/img/svg', import.meta.url)), {recursive: true});
+ await Promise.all([
+ mkdir(fileURLToPath(new URL('../public/assets/img/svg', import.meta.url)), {recursive: true}),
+ mkdir(fileURLToPath(new URL('../options/fileicon', import.meta.url)), {recursive: true}),
+ ]);
await Promise.all([
...processAssetsSvgFiles('node_modules/@primer/octicons/build/svg/*-16.svg', {prefix: 'octicon'}),
...processAssetsSvgFiles('web_src/svg/*.svg'),
diff --git a/vite.config.ts b/vite.config.ts
index d2d37785092fb..facc045ef9af2 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -311,7 +311,12 @@ export default defineConfig(commonViteOpts({
isProduction ? licensePlugin({
done(deps, context) {
const line = '-'.repeat(80);
- const goLicenses = JSON.parse(readFileSync(join(import.meta.dirname, 'assets/go-licenses.json'), 'utf8'));
+ let goLicenses: {name: string, licenseText?: string}[] = [];
+ try {
+ goLicenses = JSON.parse(readFileSync(join(import.meta.dirname, 'assets/go-licenses.json'), 'utf8'));
+ } catch {
+ console.warn('assets/go-licenses.json missing, omitting Go licenses. Run "make go-licenses" first, or "make frontend".');
+ }
const combined: Record = {};
for (const {name, licenseText} of goLicenses) {
combined[name] = wrap(licenseText || '', 80).trim();