From 215c13f1d2fc28fc8eee34fca44c7fd129e1b098 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Thu, 14 May 2026 17:06:42 +0530 Subject: [PATCH 1/2] Bump version and CHANGELOG to v33.0.0rc1 Signed-off-by: Ayan Sinha Mahapatra --- CHANGELOG.rst | 31 +++++++++++++++++++++++++++- pyproject-licensedcode-data.toml | 2 +- pyproject-licensedcode-index.toml | 2 +- pyproject-scancode-toolkit-mini.toml | 4 ++-- pyproject-scancode-toolkit.toml | 4 ++-- pyproject.toml | 4 ++-- src/scancode_config.py | 2 +- 7 files changed, 39 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7f22cf7850..0f5c5978f0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,34 @@ Changelog Next release -------------- +v33.0.0rc1 - 2026-05-14 +------------------------ + +This is a major release candidate with major changes in packaging, +with the licensedcode-data and licensedcode-index being published +in two seperate wheels. Also adds linux/macos ARM support in +release archives and pypi wheels. + +- Remove the licensedcode data and built license indexes from the + main scancode-toolkit built wheel, and release them as + seperate wheels which scancode-toolkit depends on. + This enables to release scancode licensedb data/index wheels + seperately whenever necessary and also reduces the scancode + wheel size greatly. For more details see: + https://github.com/aboutcode-org/scancode-toolkit/issues/3459 + +- Add macos ARM and linux arm support in release archives and + pypi wheels through ``scancode-toolkit-mini`` which uses + system provided libraries instead of bundled binaries. + Also use updated non pure-python dependencies supporting + linux/macos arm wheels. For more details see: + https://github.com/aboutcode-org/scancode-toolkit/issues/3205 + https://github.com/aboutcode-org/scancode-toolkit/issues/3958 + +- Add new and updates licenses, and license rules, including + support for the SPDX License List 3.28 + https://github.com/aboutcode-org/scancode-toolkit/pull/4956 + - Add support for the Python UV package manager. Two new package data handlers parse ``pyproject.toml`` files containing a ``[tool.uv]`` table and ``uv.lock`` lockfiles, including PEP 735 ``[dependency-groups]``, @@ -12,7 +40,8 @@ Next release single Python package. https://github.com/aboutcode-org/scancode-toolkit/issues/4501 -v3.5.0 - 2026-01-15 + +v32.5.0 - 2026-01-15 ------------------- - Improve package scan performance by: diff --git a/pyproject-licensedcode-data.toml b/pyproject-licensedcode-data.toml index 1ab76b18ca..f82d3053b3 100644 --- a/pyproject-licensedcode-data.toml +++ b/pyproject-licensedcode-data.toml @@ -4,7 +4,7 @@ build-backend = "flot.buildapi" [project] name = "licensedcode-data" -version = "32.5.0" +version = "33.0.0rc1" description = "A packaging of the ScanCode licensedb license and license rules database." long_description_content_type = "text/x-rst" readme = "src/licensedcode/data/README.rst" diff --git a/pyproject-licensedcode-index.toml b/pyproject-licensedcode-index.toml index 13fbe64bf3..e9e4128e0d 100644 --- a/pyproject-licensedcode-index.toml +++ b/pyproject-licensedcode-index.toml @@ -4,7 +4,7 @@ build-backend = "flot.buildapi" [project] name = "licensedcode-index" -version = "32.5.0" +version = "33.0.0rc1" description = "A packaging of the ScanCode licensedb license and license rules pre-built index. Can only be used with ScanCode-Toolkit." long_description_content_type = "text/x-rst" readme = "src/licensedcode/data/README.rst" diff --git a/pyproject-scancode-toolkit-mini.toml b/pyproject-scancode-toolkit-mini.toml index e721762ac9..6d532b27d6 100644 --- a/pyproject-scancode-toolkit-mini.toml +++ b/pyproject-scancode-toolkit-mini.toml @@ -4,7 +4,7 @@ build-backend = "flot.buildapi" [project] name = "scancode-toolkit-mini" -version = "32.5.0" +version = "33.0.0rc1" description = "ScanCode is a tool to scan code for license, copyright, package and their documented dependencies and other interesting facts." readme = "README.rst" license = { text = "Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft" } @@ -151,7 +151,7 @@ dev = [ [tool.bumpversion] -current_version = "32.5.0" +current_version = "33.0.0rc1" allow_dirty = true files = [ diff --git a/pyproject-scancode-toolkit.toml b/pyproject-scancode-toolkit.toml index a39bb5c54f..2f377046d8 100644 --- a/pyproject-scancode-toolkit.toml +++ b/pyproject-scancode-toolkit.toml @@ -4,7 +4,7 @@ build-backend = "flot.buildapi" [project] name = "scancode-toolkit" -version = "32.5.0" +version = "33.0.0rc1" description = "ScanCode is a tool to scan code for license, copyright, package and their documented dependencies and other interesting facts." readme = "README.rst" license = { text = "Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft" } @@ -153,7 +153,7 @@ dev = [ [tool.bumpversion] -current_version = "32.5.0" +current_version = "33.0.0rc1" allow_dirty = true files = [ diff --git a/pyproject.toml b/pyproject.toml index d46f3a5b0a..dc2b8143d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "flot.buildapi" [project] name = "scancode-toolkit-devel" -version = "32.5.0" +version = "33.0.0rc1" description = "ScanCode is a tool to scan code for license, copyright, package and their documented dependencies and other interesting facts." readme = "README.rst" license = { text = "Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft" } @@ -157,7 +157,7 @@ dev = [ [tool.bumpversion] -current_version = "32.5.0" +current_version = "33.0.0rc1" allow_dirty = true files = [ diff --git a/src/scancode_config.py b/src/scancode_config.py index 3fa3abce6c..20c57a19be 100644 --- a/src/scancode_config.py +++ b/src/scancode_config.py @@ -134,7 +134,7 @@ def _create_dir(location): # See https://scancode-toolkit.readthedocs.io/en/latest/misc/versioning.html for # more information on versioning if not __version__: - __version__ = '32.5.0' + __version__ = '33.0.0rc1' ####################### # used to warn user when the version is out of date From bebf9c39ec1fc440720053e60dc67e18c62aebf4 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Tue, 19 May 2026 19:56:57 +0530 Subject: [PATCH 2/2] Add new licenses from dejacode Thanks @armijnhemel @pombredanne for reporting these and @dennisclark for adding these. https://github.com/aboutcode-org/scancode-toolkit/issues/4909 https://github.com/aboutcode-org/scancode-toolkit/issues/4909 https://github.com/aboutcode-org/scancode-toolkit/issues/4931 https://github.com/aboutcode-org/scancode-toolkit/issues/4935 https://github.com/aboutcode-org/scancode-toolkit/issues/4973 https://github.com/aboutcode-org/scancode-toolkit/issues/4933 https://github.com/aboutcode-org/scancode-toolkit/issues/4972 https://github.com/aboutcode-org/scancode-toolkit/issues/4938 https://github.com/aboutcode-org/scancode-toolkit/issues/4904 https://github.com/aboutcode-org/scancode-toolkit/issues/4913 https://github.com/aboutcode-org/scancode-toolkit/issues/4937 https://github.com/aboutcode-org/scancode-toolkit/issues/4905 https://github.com/aboutcode-org/scancode-toolkit/issues/4920 https://github.com/aboutcode-org/scancode-toolkit/issues/4921 https://github.com/aboutcode-org/scancode-toolkit/issues/4919 https://github.com/aboutcode-org/scancode-toolkit/issues/4929 https://github.com/aboutcode-org/scancode-toolkit/issues/4955 https://github.com/aboutcode-org/scancode-toolkit/issues/4932 https://github.com/aboutcode-org/scancode-toolkit/issues/4925 https://github.com/aboutcode-org/scancode-toolkit/issues/4912 https://github.com/aboutcode-org/scancode-toolkit/issues/4907 https://github.com/aboutcode-org/scancode-toolkit/issues/4940 https://github.com/aboutcode-org/scancode-toolkit/issues/4974 https://github.com/aboutcode-org/scancode-toolkit/issues/4939 https://github.com/aboutcode-org/scancode-toolkit/issues/4924 https://github.com/aboutcode-org/scancode-toolkit/issues/4917 https://github.com/aboutcode-org/scancode-toolkit/issues/4927 https://github.com/aboutcode-org/scancode-toolkit/issues/4928 https://github.com/aboutcode-org/scancode-toolkit/issues/4926 https://github.com/aboutcode-org/scancode-toolkit/issues/4934 https://github.com/aboutcode-org/scancode-toolkit/issues/4930 https://github.com/aboutcode-org/scancode-toolkit/issues/4918 https://github.com/aboutcode-org/scancode-toolkit/issues/4910 https://github.com/aboutcode-org/scancode-toolkit/issues/4923 https://github.com/aboutcode-org/scancode-toolkit/issues/4906 https://github.com/aboutcode-org/scancode-toolkit/issues/4970 https://github.com/aboutcode-org/scancode-toolkit/issues/4936 https://github.com/aboutcode-org/scancode-toolkit/issues/4908 https://github.com/aboutcode-org/scancode-toolkit/issues/4922 https://github.com/aboutcode-org/scancode-toolkit/issues/4911 https://github.com/aboutcode-org/scancode-toolkit/issues/4914 Signed-off-by: Ayan Sinha Mahapatra --- .../ai-sweden-llm-ai-model-2023.LICENSE | 186 +++++++++++ .../licenses/aixfunestudio-model-1.6.LICENSE | 98 ++++++ .../licenses/answercarefully-tou-2025.LICENSE | 18 + .../data/licenses/axoniq-osla-1.0.LICENSE | 307 ++++++++++++++++++ .../data/licenses/ccl-2026.LICENSE | 31 ++ .../data/licenses/cuffs-dataset-2024.LICENSE | 27 ++ .../data/licenses/datajuggler-2019.LICENSE | 37 +++ .../licenses/engram-quest-plugin-1.0.LICENSE | 53 +++ .../licenses/exaone-ai-model-1.1-nc.LICENSE | 2 +- .../licenses/exaone-ai-model-1.2-nc.LICENSE | 167 ++++++++++ .../data/licenses/flexbyte.LICENSE | 14 + .../licenses/intel-research-use-2024.LICENSE | 34 ++ .../data/licenses/keychron-sal-2024.LICENSE | 77 +++++ .../data/licenses/meralion-pl-2025.LICENSE | 65 ++++ .../licenses/minimax-mit-variant-2025.LICENSE | 40 +++ .../data/licenses/minimax-model-m2.5.LICENSE | 70 ++++ .../minimax-non-commercial-2026.LICENSE | 34 ++ .../data/licenses/moe-speech.LICENSE | 87 +++++ .../data/licenses/ncsc-nl-disclaimer.LICENSE | 11 + .../data/licenses/nexar-dataset-2025.LICENSE | 38 +++ .../data/licenses/ntuitive-la-2025.LICENSE | 40 +++ .../nvidia-1-way-noncommercial.LICENSE | 45 +++ .../licenses/nvidia-isaac-ros-2021.LICENSE | 76 +++++ .../nvidia-source-code-nc-2024.LICENSE | 71 ++++ src/licensedcode/data/licenses/ocl-v1.LICENSE | 68 ++++ .../pcgexelementszonegraph-2026.LICENSE | 97 ++++++ .../data/licenses/pi-lab-1.0.LICENSE | 41 +++ .../poke-wiggle-proprietary-2026.LICENSE | 55 ++++ .../resume-summarization-2025.LICENSE | 19 ++ .../data/licenses/rexgradient-nc.LICENSE | 94 ++++++ .../data/licenses/roofsuit-2025.LICENSE | 37 +++ .../licenses/rosetta-software-nc-2026.LICENSE | 61 ++++ .../licenses/sat-uk-choral-ai-1.0.LICENSE | 86 +++++ .../saxs-synthetic-commercial-1.0.LICENSE | 132 ++++++++ .../data/licenses/scsl-2.8.LICENSE | 2 +- .../data/licenses/scsl-3.0.LICENSE | 2 +- .../data/licenses/seamless-2023.LICENSE | 67 ++++ .../data/licenses/snap-nc-2025.LICENSE | 21 ++ .../data/licenses/snofs-1.1.LICENSE | 101 ++++++ .../data/licenses/socigy-nc-2026.LICENSE | 34 ++ .../data/licenses/sonar-sal-1.0.1.LICENSE | 98 ++++++ .../data/licenses/tabpfn-2.6-v1.0.LICENSE | 81 +++++ .../licenses/tigerdataset-nc-2025.LICENSE | 17 + .../writer-open-model-2024-05-31.LICENSE | 77 +++++ .../data/licenses/xai-cla-2025.LICENSE | 53 +++ 45 files changed, 2868 insertions(+), 3 deletions(-) create mode 100644 src/licensedcode/data/licenses/ai-sweden-llm-ai-model-2023.LICENSE create mode 100644 src/licensedcode/data/licenses/aixfunestudio-model-1.6.LICENSE create mode 100644 src/licensedcode/data/licenses/answercarefully-tou-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/axoniq-osla-1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/ccl-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/cuffs-dataset-2024.LICENSE create mode 100644 src/licensedcode/data/licenses/datajuggler-2019.LICENSE create mode 100644 src/licensedcode/data/licenses/engram-quest-plugin-1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/exaone-ai-model-1.2-nc.LICENSE create mode 100644 src/licensedcode/data/licenses/flexbyte.LICENSE create mode 100644 src/licensedcode/data/licenses/intel-research-use-2024.LICENSE create mode 100644 src/licensedcode/data/licenses/keychron-sal-2024.LICENSE create mode 100644 src/licensedcode/data/licenses/meralion-pl-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/minimax-mit-variant-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/minimax-model-m2.5.LICENSE create mode 100644 src/licensedcode/data/licenses/minimax-non-commercial-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/moe-speech.LICENSE create mode 100644 src/licensedcode/data/licenses/ncsc-nl-disclaimer.LICENSE create mode 100644 src/licensedcode/data/licenses/nexar-dataset-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/ntuitive-la-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/nvidia-1-way-noncommercial.LICENSE create mode 100644 src/licensedcode/data/licenses/nvidia-isaac-ros-2021.LICENSE create mode 100644 src/licensedcode/data/licenses/nvidia-source-code-nc-2024.LICENSE create mode 100644 src/licensedcode/data/licenses/ocl-v1.LICENSE create mode 100644 src/licensedcode/data/licenses/pcgexelementszonegraph-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/pi-lab-1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/poke-wiggle-proprietary-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/resume-summarization-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/rexgradient-nc.LICENSE create mode 100644 src/licensedcode/data/licenses/roofsuit-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/rosetta-software-nc-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/sat-uk-choral-ai-1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/saxs-synthetic-commercial-1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/seamless-2023.LICENSE create mode 100644 src/licensedcode/data/licenses/snap-nc-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/snofs-1.1.LICENSE create mode 100644 src/licensedcode/data/licenses/socigy-nc-2026.LICENSE create mode 100644 src/licensedcode/data/licenses/sonar-sal-1.0.1.LICENSE create mode 100644 src/licensedcode/data/licenses/tabpfn-2.6-v1.0.LICENSE create mode 100644 src/licensedcode/data/licenses/tigerdataset-nc-2025.LICENSE create mode 100644 src/licensedcode/data/licenses/writer-open-model-2024-05-31.LICENSE create mode 100644 src/licensedcode/data/licenses/xai-cla-2025.LICENSE diff --git a/src/licensedcode/data/licenses/ai-sweden-llm-ai-model-2023.LICENSE b/src/licensedcode/data/licenses/ai-sweden-llm-ai-model-2023.LICENSE new file mode 100644 index 0000000000..dee64ec04f --- /dev/null +++ b/src/licensedcode/data/licenses/ai-sweden-llm-ai-model-2023.LICENSE @@ -0,0 +1,186 @@ +--- +key: ai-sweden-llm-ai-model-2023 +short_name: AI Sweden LLM AI Model License 2023 +name: AI Sweden LLM AI Model License Agreement 2023 +category: Proprietary Free +owner: AI Sweden +homepage_url: https://huggingface.co/AI-Sweden-Models/gpt-sw3-356m-instruct/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-ai-sweden-llm-ai-model-2023 +ignorable_urls: + - http://discord.gg/RgKVztg3xU +ignorable_emails: + - nlu@ai.se +--- + +AI Sweden's LLM AI Model License Agreement + +1. Introduction + +This license governs the use of GPT-SW3 (the "Model"). By accessing or using the Model, you agree to adhere to these terms. This license aims to promote the open and responsible use of our AI while ensuring the security and respect of users' rights. + +2. Grant of License + +Lindholmen Science Park hereby grants you, under the terms and conditions stipulated in the AI Sweden’s LLM AI Model License Agreement, (the “Agreement”), a non-exclusive, transferable, worldwide, and royalty-free license to: +* Use: Access and utilize the Model in accordance with the set limitations in section 7. Acceptable Use Policy and within the stipulated guidelines. +* Modify: Adjust, adapt, and build upon the Model to better suit your individual or organizational needs, while still adhering to the principles and guidelines established herein. +* Distribute: Share the Model and your derivative works with others, provided such distribution is in compliance with the terms of this license. + +Nature of the Grant +* Non-exclusive: The license does not confer any form of exclusivity; Lindholmen Science Park reserves the right to grant similar licenses to other individuals or entities. +* Transferable: You are permitted to sub-license, rent, lease, assign, or otherwise transfer your rights under this license to any third party. +* Worldwide: This license permits the use, modification, and distribution of the Model anywhere globally, encouraging a collaborative, international approach to furthering the Model's development and application. +* Royalty-free: You are not required to pay any form of royalties to Lindholmen Science Park for the rights granted under this license, fostering open and unrestricted access to the Model. + +Obligations of the Licensee +* Compliance: You must comply with all the terms and conditions set forth in this license to maintain the rights granted herein. + +Reservation of Rights +* Intellectual Property: This license does not transfer any ownership of the intellectual property associated with the Model. Lindholmen Science Park retains all intellectual property rights not expressly granted in this license. +* Amendments: Lindholmen Science Park reserves the right to alter the terms of this license in the future, in response to changing technological and societal landscapes, ensuring a dynamic and adaptive licensing approach. + +3. Scope of Use + +Non-commercial Use +* Education and Research: Licensees are encouraged to use the Model for educational and research purposes, fostering knowledge sharing and innovation. +* Public Service: Licensees can leverage the Model to build applications and services aimed at community welfare and public good. + +Commercial Use +* Business Ventures: Licensees are permitted to use the Model to create products, services, or applications that seek to generate profit, encouraging entrepreneurial initiatives. +* Corporate Research: Licensees may employ the Model for corporate research, enhancing business strategies and solutions. + +4. Attribution Requirements + +Non-commercial Use +* Acknowledgement: While it is encouraged, non-commercial users are not strictly required to attribute the Model; however, voluntary attribution is appreciated to acknowledge the efforts of the original creators. + +Commercial Use +* Mandatory Attribution: Commercial users are mandated to provide clear and conspicuous attribution to the original creators of the Model, promoting transparency and credit where it's due. + +Format of Attribution The original creators are AI Sweden, RISE and WASP. The attribution should be presented in a manner that is reasonable and customarily used in commercial products or services, which could include but is not limited to: +* Documentation: Including attribution in the user manuals, installation guides, or on the official website where the product or service is detailed. +* Application Interface: Incorporating attribution in a dedicated "About" or "Credits" section within the application or service interface. +* Marketing Materials: Featuring attribution in marketing and promotional materials, highlighting the utilization of the Model in the commercial offering. + +5. Redistribution + +* Redistributor: A person or entity that shares the Model with a third party, either in its original form or with modifications. + +Authorization for Redistribution +* Original Model: Licensees are permitted to redistribute the Model in its original form, provided that they comply with the terms and conditions outlined in this license. +* Modified Model: Licensees are permitted to modify and redistribute the Model, inclusive of derivative works created through the modification of the original Model, aligning with the stipulations delineated in this license. + +Adherence to the License +* Binding Effect on Derivative Works: Any derivative work based on the Model shall be governed by the terms and conditions of this license, ensuring a consistent ethical and legal framework for all adaptations of the Model. + +Transparency and Documentation +* Modifications: Redistributors are required to clearly indicate the nature and extent of modifications undertaken, fostering transparency and informed use. + +No Misrepresentation +* Original Endorsement: Redistributors must not convey or imply any endorsement by the original creators of the Model for the redistributed or derivative work, avoiding any misrepresentation or undue association. + +Safety and Ethical Considerations +* Obligation to Maintain Standards: Redistributors must ensure that the Model, whether in its original or modified form, maintains a standard of safety, ethical utility, and respect for users’ rights, consistent with the objectives and principles embodied in this license. + +Regulatory Compliance +* Legal Adherence: Redistributors are mandated to ensure compliance with applicable legal and regulatory norms, including data protection laws, while redistributing the Model or any derivative works. + +Feedback and Community Engagement +* Feedback Channels: Redistributors are encouraged to establish feedback channels for users and stakeholders, facilitating a collaborative approach towards the continual improvement of the Model and derivative works. + +6. Third-party Integrations + +Compliance with License Terms: Third parties who integrate the Model into their own systems, products, or services ("Integrated Products") must ensure that such Integrated Products are in full compliance with the terms and conditions outlined in this license. This entails a commitment to uphold the ethical, responsible and lawful utilization of the Model. + +Notification and Transparency: Third parties are required to clearly notify users of Integrated Products about the incorporation of the Model and ensure that the terms of this license are made accessible to the users to foster transparency and informed usage. + +Liability: Third parties are responsible for any liabilities arising from their non-compliance with the terms of this license in relation to the use of the Model in Integrated Products. They are required to indemnify Lindholmen Science Park against claims, damages, and losses arising out of such non-compliance. + +Security and Privacy: Third parties must undertake necessary measures to ensure the security and privacy of the users’ data while using Integrated Products, including adherence to applicable data protection laws and regulations. + +Intellectual Property Rights: The integration of the Model into third-party systems must respect and preserve the intellectual property rights of Lindholmen Science Park concerning the Model, including trademarks, copyrights, and patents, as applicable. + +Termination: In case of violation of any terms of this license by third parties, Lindholmen Science Park reserves the right to terminate the license granted to such third parties, requiring them to cease the use and integration of the Model in their systems immediately. + +Feedback and Cooperation: Third parties are encouraged to maintain a collaborative relationship with Lindholmen Science Park, providing feedback on the Model’s performance in Integrated Products and cooperating in efforts to enhance the Model's functionalities and rectify any issues. + +7. Acceptable Use Policy + +Definition of Guidelines and Use Policies: The "GPT-SW3 Model Guidelines and Use Policies" refer to the structured set of principles, rules, and parameters established by Lindholmen Science Park which govern the acceptable use of the Model. These policies are devised to foster safe, ethical, responsible and sustainable use of the Model that guarantees the shared objective of open and fair Ai application. + + +Compliance Obligation: By accessing or utilizing the Model, you expressly agree to adhere to the GPT-SW3 Guidelines and Use Policies as laid down by Lindholmen Science Park. This entails using the Model responsibly, and lawfully, in accordance with the stipulated guidelines. + +Updates and Modifications: Lindholmen Science Park reserves the right to periodically review, amend, or update the GPT-SW3 Guidelines and Use Policies to adapt to technological advancements, legal developments, or societal changes. Users are responsible for keeping themselves abreast of the latest updates to ensure ongoing compliance. + +Feedback and Reporting Mechanism: Users are encouraged to actively engage with Lindholmen Science Park through designated channels to report any misuse, violations, or to suggest improvements regarding the Model's functioning, thus fostering a collaborative environment for the enhancement of the Model. + +Consequences of Violation: Non-compliance with the GPT-SW3 Guidelines and Use Policies may result in punitive actions, including but not limited to, the temporary or permanent revocation of access rights to the Model, legal actions, and/or public disclosure of the violation, as deemed appropriate by Lindholmen Science Park. + +Indemnification: Users agree to indemnify and hold harmless Lindholmen Science Park against any claims, damages, or liabilities arising out of the violation of the GPT-SW3 Guidelines and Use Policies. + +8. Feedback + +Commitment to Continuous Improvement: Lindholmen Science Park values the insights and perspectives of our users. We are committed to continuous improvement and encourage users to actively participate in the evolution of the Model through constructive feedback, reporting of issues, and suggestions for enhancements. + +Feedback Channels: Users may provide their feedback through the following channels: + +Email: Reach us at nlu@ai.se +Community Forums: Join discussions and share your insights on our community forums at AI Nordics Discord - http://discord.gg/RgKVztg3xU + +Anonymous Feedback: We welcome anonymous feedback to allow users to share their perspectives freely. However, we encourage users to provide contact information to facilitate follow-up discussions and updates on the addressed issues. + +Responsiveness: While we endeavor to review and consider all feedback received, we cannot guarantee a response to every submission. We appreciate your understanding and patience as we work diligently to enhance the Model for all users. + +Intellectual Property: By submitting feedback, you grant Lindholmen Science Park a worldwide, non-exclusive, royalty-free, perpetual, irrevocable license to use, reproduce, modify, adapt, publish, distribute, and incorporate such feedback into our work and research, without acknowledgement or compensation to you. + +9. Warranty and Liability + +The model is provided "as is," and Lindholmen Science Park disclaims all warranties, express or implied. +No Warranty: THE MODEL IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF PERFORMANCE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, OMISSIONS, COMPLETENESS, CURRENTNESS, AND DELAYS. + +Cap on Liability: TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LINDHOLMEN SCIENCE PARK 'S CUMULATIVE LIABILITY TO YOU, FOR ANY AND ALL CLAIMS RELATED TO THE MODEL, SHALL NOT EXCEED AN AGGREGATE AMOUNT EQUAL TO THE LESSER OF (i) € 500 OR (ii) THE TOTAL AMOUNTS YOU PAID TO LINDHOLMEN SCIENCE PARK IN THE TWELVE (12) MONTHS IMMEDIATELY PRECEDING THE INCIDENT GIVING RISE TO THE LIABILITY. + +Exclusion of Certain Liabilities: LINDHOLMEN SCIENCE PARK SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE, CONSEQUENTIAL, OR ANY OTHER FORM OF DAMAGES, INCLUDING, BUT NOT LIMITED TO, LOSS OF PROFITS, DATA, GOODWILL, OR ANY OTHER INTANGIBLE LOSSES, ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE USE OR THE INABILITY TO USE THE MODEL, EVEN IF LINDHOLMEN SCIENCE PARK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +Essential Purpose: THE LIMITATIONS SPECIFIED IN THIS SECTION SHALL SURVIVE AND APPLY EVEN IF ANY LIMITED REMEDY SPECIFIED IN THIS AGREEMENT IS FOUND TO HAVE FAILED ITS ESSENTIAL PURPOSE. + +Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN LINDHOLMEN SCIENCE PARK AND YOU. + +Local Laws and Regulations: Nothing in this clause aims to limit or exclude any liability that cannot be limited or excluded under applicable laws. Users are encouraged to be aware of and adhere to local laws and regulations governing the use of AI models and services. + +10. Termination Clauses + +* Model Materials: Refers to the Model and all associated documentation, guidelines, and policies provided by Lindholmen Science Park. +Commencement and Duration + +* This Agreement shall become effective upon your acceptance or when you commence access to or use of the Model Materials (“Effective Date”) and shall remain in full force and effect unless earlier terminated in accordance with this Agreement. +Termination by Organization + +* Breach: Lindholmen Science Park reserves the right to terminate this Agreement unilaterally if you are found to be in breach of any term or condition stipulated in this Agreement. + +* Safety and Compliance: Lindholmen Science Park further reserves the right to terminate this Agreement to comply with any applicable law, regulation, or guideline, or to preserve the safety, integrity, and lawful operation of the Model and associated resources. +Termination by You + +* You have the right to terminate this Agreement at any time by ceasing all use of the Model Materials and deleting all copies of the Materials in your possession or control. +Consequences of Termination + +* Ceasing Use: Upon termination of this Agreement for any reason the license is also terminated. Therefore, if the Agreement is terminated you must cease all use of the Model Materials and promptly delete and destroy all copies, full or partial, of the Materials in your possession or control. + +* Survival of Rights and Obligations: The rights and obligations contained in Sections 6 and 8 of this Agreement shall survive the termination of this Agreement and shall continue to bind you and any permitted successors and assignees. + +* No Liability for Termination: Lindholmen Science Park will not be liable for any damages, losses, costs, or harms arising from the termination of this Agreement, and termination will not affect any liability accrued before the termination date. + +11. Jurisdiction and Governing Law + +Any dispute, controversy, or claim arising out of or in connection with this contract, or the breach, termination, or invalidity thereof, shall be finally settled by arbitration administered by the Stockholm Chamber of Commerce Arbitration Institute (the “SCC”). +The Rules for Expedited Arbitrations shall apply, unless the SCC in its discretion determines, taking into account the complexity of the case, the amount in dispute and other circumstances, that the Arbitration Rules shall apply. In the latter case, the SCC shall also decide whether the Arbitral Tribunal shall be composed of one or three arbitrators. The seat of arbitration shall be Stockholm, Sweden. The language to be used in the arbitral proceedings shall be English. This contract shall be governed by the substantive law of Sweden. + +12. Updates and Revisions + +Commitment to Update: Lindholmen Science Park acknowledges the rapid pace of technological and societal advancements. We remain committed to periodically reviewing and updating the terms of this Agreement to remain in harmony with such developments, thereby safeguarding the interests of all stakeholders involved while promoting sustainable and responsible AI use. + +Right to Amend: Lindholmen Science Park reserves the right, at its sole discretion, to amend, modify, or replace any part of this Agreement. It is your responsibility to check this Agreement periodically for changes. Your continued use of or access to the Model Materials following the posting of any changes to this Agreement constitutes acceptance of those changes. + +Grace Period: In the event of any substantial amendment to the terms of this Agreement, you will be provided with a notice period of 30 days from the date such amendments are posted for you to review through the distribution platform to review and adapt to the amended terms. Should you disagree with the amendments, you reserve the right to terminate this Agreement in accordance with the termination clause herein. + +Adherence to Future Norms: By agreeing to this Agreement, you commit to adhering to potential future norms, regulations, and guidelines that may be introduced in the jurisdiction pertaining to the use of AI technologies, even if they are introduced after your acceptance of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/aixfunestudio-model-1.6.LICENSE b/src/licensedcode/data/licenses/aixfunestudio-model-1.6.LICENSE new file mode 100644 index 0000000000..9e79e6ded9 --- /dev/null +++ b/src/licensedcode/data/licenses/aixfunestudio-model-1.6.LICENSE @@ -0,0 +1,98 @@ +--- +key: aixfunestudio-model-1.6 +short_name: AIxFun eStudio Model v1.6 +name: AIxFun eStudio Model License Version 1.6 +category: Commercial +owner: AIxFun eStudio +homepage_url: https://huggingface.co/AIxFuneStudio/Soul_Spark_Z-Image_Turbo/blob/main/LICENSE.md +spdx_license_key: LicenseRef-scancode-aixfunestudio-model-1.6 +ignorable_urls: + - https://freedevproject.org/faipl-1.0-sd/ + - https://github.com/Stability-AI/generative-models/blob/main/model_licenses/LICENSE-SDXL1.0 + - https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md + - https://huggingface.co/spaces/CompVis/stable-diffusion-license +--- + +AIxFun eStudio Model License Version 1.6 – August 1, 2025 + +This license (“License”) governs your access to and use of the AIxFun eStudio models (the “Models”) made available by AIxFun eStudio (“Licensor”). By downloading, accessing, or using the Models, you agree to be bound by this License. If you do not agree, do not download, access, or use the Models. + + Definitions + + a. “Models” means the machine-learning model weights, configuration files, code, example images, and related materials provided by Licensor. b. “Outputs” means any content (e.g., images) generated by you through use of the Models. c. “Licensee” or “You” means the individual or entity receiving access under this License. d. “Repository” means the Hugging Face repository made available to you upon purchase or subscription. + + Ownership and Reservation of Rights + + Licensor retains all rights, title, and interest in and to the Models. No ownership or other rights are transferred to Licensee except for the limited license rights expressly granted herein. + + License Grant + + Subject to your compliance and payment (if any), Licensor grants You a personal, non-exclusive, non-transferable, revocable, royalty-free license to access and use the Models solely for generating Outputs for personal entertainment or creative use, in compliance with applicable U.S. and Israeli laws. + + Access Tiers + + • Free models: available at no charge; access granted upon purchasing the free Ko-fi product. • Paid models: access granted only after purchase or subscription via Ko-fi (future tiers may include Patreon or SubscribeStar). • Monthly subscription tiers: + Latest Models: access only to Models published in the current month. + All-Months Access: access to Models published in the current month and all prior months. • Membership is monthly; if not renewed at the end of the billing period, access will expire (including All-Months Access), and you will be unable to access Models until renewal. + + Access is granted by matching your Ko-fi email with your Hugging Face account; you must request access and will be approved automatically within one minute. + + Permitted Uses + + You may generate and use Outputs, including for commercial purposes, provided you comply with all provisions of this License and applicable U.S. and Israeli laws. + + Third-Party Base Model Licenses + + Some Models incorporate or build upon third-party base models. You must comply with the terms of those base model licenses when using such Models. Licensor makes no representations regarding the availability, accuracy, or continued validity of third-party base model licenses; you should review those licenses directly. The applicable licenses include, but are not limited to: • SDXL 1.0 – https://github.com/Stability-AI/generative-models/blob/main/model_licenses/LICENSE-SDXL1.0 • FAIPL 1.0 (Illustrious) – https://freedevproject.org/faipl-1.0-sd/ • FLUX.1-dev – https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md • Stable Diffusion 1.5 – https://huggingface.co/spaces/CompVis/stable-diffusion-license + + Model Availability + + You are responsible for downloading the Models and related assets immediately upon gaining access. Licensor cannot guarantee that Models will remain available or hosted on Hugging Face or other platforms, and may remove or relocate Models at any time without notice. Due to technical limitations of the access system, if you are granted access but fail to download the Models within 30 days of approval, you may be unable to request access again. + + No Support Provided + + Licensor does not provide technical support, assistance, or troubleshooting for installation or use of the Models. You must possess or independently seek any knowledge and resources necessary to use the Models. + + Restrictions + + You may not: • Distribute, share, sublicense, or make the Models (weights or code) or example images available in any form (including torrent or third-party sites). • Reverse-engineer, decompile, or derive new models from the Models. • Use the Models to train, fine-tune, merge, distill, or develop any competing model. • Host the Models as a service or offer Outputs on behalf of others. • Circumvent or disable access controls or automated licensing checks. • Use the Models or Outputs in violation of applicable U.S. or Israeli law or in support of illegal activities, hate, violence, terrorism, spamming, defamation, or infringing third-party rights. • Publish defamatory or disparaging statements about Licensor, the Founder, or the Models. + + Disclaimer of Warranty + + THE MODELS ARE PROVIDED “AS IS” AND “WITH ALL FAULTS.” LICENSOR MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. + + Limitation of Liability + + TO THE FULLEST EXTENT PERMITTED BY LAW, LICENSOR WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING FROM YOUR USE OF THE MODELS OR OUTPUTS. + + Termination + + This License is effective until terminated. Licensor may revoke access and terminate this License at any time if You breach any term or engage in prohibited conduct (including defamation, illegal activities, or license violations). Upon termination, You must cease all use of the Models and delete all copies. + + Refunds + + Because the Models and related assets are digital and easily copied, and prices are generally small, Licensor does not provide refunds under any circumstances. You should ensure you truly want the Models before purchasing; do not purchase if in doubt. Refund requests will not be honored, as a policy to deter misuse and piracy. + + Changes to this License + + Licensor may update or revise this License at any time. The revised License will be effective upon posting. Your continued access to or use of the Models after such posting constitutes acceptance of the updated License. + + Export Compliance + + You agree to comply with all applicable export control laws and regulations, including U.S. export laws. Access to and export of the Models, in whole or in part, is prohibited for individuals, entities, or end-users located in or nationals of the following jurisdictions: Iran, Syria, Lebanon, Iraq, North Korea, Cuba, and Russia. You must not transfer, transmit, download, or otherwise make the Models available to any prohibited party or territory. + + Severability + + If any provision of this License is held unenforceable or invalid, that provision will be limited or eliminated to the minimum extent necessary and the remainder of this License will remain in full force and effect. + + Entire Agreement + + This License constitutes the entire agreement between You and Licensor regarding the Models and supersedes any prior agreements or understandings. + + Governing Law + + This License is governed by the laws of the United States and the State of Israel. Any dispute shall be resolved in the courts of the United States or the State of Israel, at Licensor’s choice. + + Acknowledgment + + By accessing the Repository or using the Models, You acknowledge that You have read, understood, and agree to be bound by this License, and that your continued access to or use of the Models following any revisions to this License constitutes acceptance of those revisions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/answercarefully-tou-2025.LICENSE b/src/licensedcode/data/licenses/answercarefully-tou-2025.LICENSE new file mode 100644 index 0000000000..c5ba9cfc77 --- /dev/null +++ b/src/licensedcode/data/licenses/answercarefully-tou-2025.LICENSE @@ -0,0 +1,18 @@ +--- +key: answercarefully-tou-2025 +short_name: AnswerCarefully Dataset ToU 2025 +name: AnswerCarefully Dataset Terms of Use 2025 +category: Proprietary Free +owner: LLM-jp +homepage_url: https://huggingface.co/datasets/llm-jp/AnswerCarefully/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-answercarefully-tou-2025 +--- + +AnswerCarefully Dataset Terms of Use + - Terms of Use + - This dataset is made publicly available for the purpose of improving the safety of LLMs in Japanese and other languages, including for commercial use. + - Users agree not to use this dataset for any purpose other than improving the safety of LLMs. In particular, it is strictly prohibited to use it to circumvent the safety measures of LLMs. + - Redistribution of this dataset is not allowed. However, we allow the creation and distribution of any derivative data created from it (including translations, similar data, or synthetic prompts) on the condition that (1) the derivative data does not contain the original data in this dataset; (2) an attribution is given to this dataset. In addition, there is no restriction on sharing this dataset or any derivative work among multiple users who have consented on this license agreement. + - Due to the nature of this dataset, it contains expressions that may be considered inappropriate, unsafe or offensive. Please use it with caution for the purpose of improving LLM safety. + - Disclaimer + - The creator of this data shall not be responsible for any damage to the user or a third party. In addition, the creator shall not be responsible for any damage to the users or third parties due to delays, interruptions, or suspensions of the provision of this data service. The creator may suspend or discontinue the service of this data or modify the information contained in this data without prior notice. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/axoniq-osla-1.0.LICENSE b/src/licensedcode/data/licenses/axoniq-osla-1.0.LICENSE new file mode 100644 index 0000000000..d756cd43cf --- /dev/null +++ b/src/licensedcode/data/licenses/axoniq-osla-1.0.LICENSE @@ -0,0 +1,307 @@ +--- +key: axoniq-osla-1.0 +short_name: AxonIQ Open Source License 1.0 +name: AxonIQ Open Source License Agreement v1.0 +category: Proprietary Free +owner: AxonIQ +homepage_url: https://github.com/AxonIQ/axon-server-plugin-api/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-axoniq-osla-1.0 +ignorable_urls: + - https://axoniq.io/ +ignorable_emails: + - license@axoniq.io + - support@axoniq.io +--- + +AXONIQ OPEN SOURCE LICENSE AGREEMENT – v1.0 + +PLEASE READ CAREFULLY THIS LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH +CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF +ALL OF THE SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("SOFTWARE") +THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION +2 BELOW, THE SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY +INSTALLING OR USING ANY OF THE SOFTWARE GOVERNED BY THIS AGREEMENT, YOU +ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO +NOT AGREE WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE +SOFTWARE GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE +SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU +HAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS +AGREEMENT ON BEHALF OF SUCH ENTITY. + +1. Definitions + +1.1 “AxonIQ” means AxonIQ B.V., Vliegend Hertlaan 43, 3526 KT, Utrecht, + The Netherlands. +1.2 “Affiliate” means, with respect to a party, any entity that controls, is + controlled by, or which is under common control with, such party, where + “control” means ownership of at least 50% of the outstanding voting shares + of the entity. +1.3 “Agreement” means this open core license agreement. 1.4 " Software" means + the AxonIQ Software in Object Code or Source Code in any file containing a + header stating the contents are subject to this License unless a License + file present in the directory subtree declares a different license. +1.5 "Derivative Work of the Software" means, for purposes of this Agreement, + any modification(s) or enhancement(s) to the Software, which represent, as + a whole, an original work of authorship. +1.6 “Documentation” means the user guides and manuals for the installation and + use of the Software, provided in electronic form. +1.7 "License" means a limited, non-exclusive, non-transferable, fully paid up, + royalty free, right and license, without the right to grant or authorize + sublicenses, solely for your internal business operations to + (i) install and use the applicable Software in Object Code, and + (ii) permit your contractors and your Affiliates to use the Software as set + forth in (i) above, provided that such use by contractors must be + solely for your benefit and/or the benefit of your Affiliates, and you + shall be responsible for all acts and omissions of such contractors + and Affiliates in connection with their use of the Software that are + contrary to the terms and conditions of this Agreement. +1.8 "Marks and Notices" means all AxonIQ trademarks, trade names, logos and + notices present on the Documentation as originally provided by AxonIQ. +1.9 "Non-production Environment" means an environment for development, testing + or quality assurance, where software is not used for production purposes. +1.10 "Object Code" means any form resulting from mechanical transformation or + translation of Source Code form, including but not limited to compiled + object code, generated documentation, and conversions to other media types. +1.11 "Source Code" means the preferred form of computer software for making + modifications, including but not limited to software source code, + documentation source, and configuration files. +1.12 “Software” means the computer software programs in object code + (machine-readable) form only for which Licensee is granted a license + hereunder, the Documentation therefor and Updates thereto. +1.13 “Update” means: + (i) supplemental programs, if and when developed and distributed by AxonIQ, + that may contain bug fixes or improved program functions for the + Software; and + (ii) a subsequent release of the Software, if and when developed by AxonIQ, + which AxonIQ makes available for licensees that have an annual software + support agreement. An Update does not include any release, new version, + option, or future product, which AxonIQ licenses separately. + +2. Object Code End User Licenses, Restrictions and Third-Party Open + Source Software + +2.1 Object Code End User License. Subject to the terms and conditions of +Section 2.2 of this Agreement, AxonIQ hereby grants to you, at no charge +and for so long as you are not in breach of any provision of this +Agreement, a License to the Software. + +2.2 Reservation of Rights; Restrictions. As between AxonIQ and you, AxonIQ and its licensors own +all right, title and interest in and to the AxonIQ Software, and except +as expressly set forth in Sections 2.1, and 3.1 of this Agreement, no +other license to the AxonIQ Software is granted to you under this +Agreement, by implication, estoppel or otherwise. You agree not to: + (i) reverse engineer or decompile, decrypt, disassemble or otherwise reduce + any AxonIQ Software provided to you in Object Code, or any portion + thereof, to Source Code, except and only to the extent any such + restriction is prohibited by applicable law, + (ii) except as expressly + permitted in this Agreement, prepare derivative works from, modify, + copy or use the AxonIQ Software Object Code or the Commercial Software + Source Code in any manner; + (iii) except as expressly permitted in + Section 2.1 above, transfer, sell, rent, lease, distribute, sublicense, + loan or otherwise transfer, AxonIQ Software Object Code, in whole or in + part, to any third party; + (iv) use AxonIQ Software Object Code for + providing time-sharing services, any software-as-a-service, service + bureau services or as part of an application services provider or other + service offering (collectively, "SaaS Offering") where obtaining access + to the AxonIQ Software or the features and functions of the AxonIQ + Software is a primary reason or substantial motivation for users of the + SaaS Offering to access and/or use the SaaS Offering ("Prohibited SaaS + Offering"); + (v) circumvent the limitations on use of AxonIQ Software + provided to you in Object Code format that are imposed or preserved by + any License Key, or + (vi) alter or remove any Marks and Notices in the AxonIQ Software. +If you have any question as to whether a specific SaaS +Offering constitutes a Prohibited SaaS Offering, or are interested in +obtaining AxonIQ's permission to engage in commercial or non-commercial +distribution of the AxonIQ Software, please contact license@axoniq.io. + +2.3 Open source software. The Software may contain or be provided with open +source software, which may have applicable license terms as identified or +provided with the documentation. Notwithstanding anything to the contrary +herein, use of the open source software shall be subject to the license terms +and conditions applicable to such open source software, to the extent required +by the applicable licensor. + +Certain components of the Software may be subject to open-source software +licenses ("Open-Source Components"), which means any software license approved +as open-source licenses by the Open Source Initiative or any substantially +similar licenses, including without limitation any license that, as a condition +of distribution of the software licensed under such license, requires that the +distributor make the software available in source code format. The Software +documentation includes an overview including references to the licenses +applicable to the Open-Source Components. + +To the extent there is conflict between the license terms covering the +Open-Source Components and this Agreement, the terms of such licenses will apply +in lieu of the terms of this Agreement. To the extent the terms of the licenses +applicable to Open-Source Components prohibit any of the restrictions in this +Agreement with respect to such Open-Source Component, such restrictions will not +apply to such Open-Source Component. To the extent the terms of the licenses +applicable to Open-Source Components require Licensor to make an offer to +provide source code in connection with the Product, such offer is hereby made, +and you may exercise it by contacting support@axoniq.io. AxonIQ may also +separately provide you with certain open source software that is licensed by +AxonIQ. Your use of such AxonIQ open source software will not be governed by +this Agreement, but by the applicable open source license terms. + +3. Commercial Software Source Code + +3.1 Limited License. Subject to the terms and conditions of Section 3.2 +of this Agreement, AxonIQ hereby grants to you, at no charge and for so +long as you are not in breach of any provision of this Agreement, a +limited, non-exclusive, non-transferable, fully paid up royalty free +right and license to the Commercial Software in Source Code format, +without the right to grant or authorize sublicenses, to prepare +Derivative Works of the Commercial Software, provided you (i) do not +hack the licensing mechanism, or otherwise circumvent the intended +limitations on the use of the Software to enable features you are +entitled to as part of a Subscription, and (ii) use the resulting object +code only for reasonable testing purposes. + +3.2 Restrictions. Nothing in Section 3.1 grants you the right to + (i) use the Commercial Software Source Code other than in accordance with + Section 3.1 above, + (ii) use a Derivative Work of the Commercial Software outside of a + Non-production Environment, in any production capacity, on a temporary + or permanent basis, or + (iii) transfer, sell, rent, lease, distribute, sublicense, loan or otherwise + make available the Commercial Software Source Code, in whole or in + part, to any third party. Notwithstanding the foregoing, you may + maintain a copy of the repository in which the Source Code of the + Commercial Software resides, and that copy may be publicly accessible, + provided that you include this Agreement with your copy of the + repository. + +3.3 High-Risk Use. Unless AxonIQ gives its prior written consent and is +consulted regarding the specific deployment, system set-up and Software support +plan, you have no right to use (and must not use) the Software in any +application or situation where the failure of the Software could lead to death +or serious bodily injury of any person, or to severe physical or environmental +damage (“High Risk Use”). High Risk Use does not include utilization of the +Software for administrative purposes, to store configuration data, engineering +and/or configuration tools, or other applications, the failure of which would +not result in death, personal injury, or severe physical or environmental +damage. You agrees to indemnify and hold harmless AxonIQ from any third-party +claim arising out of your use of the Software in connection with any High-Risk +Use. + +3.4 Ownership. AxonIQ retains all title, copyright and other proprietary rights +in, and ownership of, the Software regardless of the media upon which the +original or any copy may be recorded or fixed. The Software is licensed, not +sold. + +4. Verification/Audit + +At AxonIQ’s written request, not more frequently than annually, you will furnish +AxonIQ with a signed certification verifying that the Software is being used in +accordance with the provisions of this Agreement. AxonIQ may audit your use of +the Software. Any such audit will be conducted during regular business hours +at your facilities and will not unreasonably interfere with your business +activities. + +5. Limited Warranties and Disclaimers + +TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, THE SOFTWARE IS PROVIDED +"AS IS" WITHOUT WARRANTY OF ANY KIND, AND AXONIQ AND ITS LICENSORS MAKE NO +WARRANTIES WHETHER EXPRESSED, IMPLIED OR STATUTORY REGARDING OR RELATING TO THE +SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, AXONIQ AND ITS +LICENSORS SPECIFICALLY DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE +SOFTWARE, AND WITH RESPECT TO THE USE OF THE FOREGOING. FURTHER, AXONIQ DOES NOT +WARRANT RESULTS OF USE OR THAT THE SOFTWARE WILL BE ERROR FREE OR THAT THE USE +OF THE SOFTWARE WILL BE UNINTERRUPTED. + +6. Confidentiality + +The Software, including the Documentation, the terms under this Agreement, and +any other information that may be marked as confidential is the confidential and +proprietary information of AxonIQ (“Confidential Information”). Results of any +benchmark tests on the Software run by you may not be disclosed outside of your +organization without the prior written consent of AxonIQ. Licensee will hold +the Confidential Information in strict confidence during the term of this +Agreement and for a period of five (5) years thereafter. You will take +reasonable steps to ensure that your employees, contractors and agents also +comply with the confidentiality obligations of this Section 6. + +7. Liability Limitations + +7.1 NOTWITHSTANDING ANY PROVISION OF THIS AGREEMENT TO THE CONTRARY, IN NO EVENT +WILL AXONIQ, NOR ANYONE ELSE WHO HAS BEEN INVOLVED IN THE CREATION, PRODUCTION +OR DELIVERY OF THE SOFTWARE, INCLUDING AXONIQ LICENSORS, BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR +DAMAGES FOR LOSS OF PROFITS, BUSINESS, GOODWILL, REVENUE, DATA OR USE, INCURRED +BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF +AXONIQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +8. Third Party Software + +The Software may incorporate, embed or be bundled with software or components +that are owned by third parties. Use of a AxonIQ Licensor’s software or +components is governed by the terms and conditions contained in such AxonIQ +Licensor’s end user license agreement, a copy of which will be provided with +delivery of such AxonIQ Licensor’s software. + +9. General Terms + +9.1 Governing Law and Dispute Resolution. This Agreement will be governed by and +construed in accordance with the laws of the Netherlands, excluding the U.N. +Convention on Contracts for the International Sale of Goods. All disputes, +claims or controversies arising out of or relating to this Agreement that are +not resolved by the parties’ good faith attempt to negotiate a resolution will +be submitted to the exclusive jurisdiction of the courts in Amsterdam, the +Netherlands. + +9.2 Export Restrictions. You agrees to comply fully with +all applicable international and national export laws and regulations, +including the U.S Export Administration Regulations and the Office of +Foreign Asset Control Regulations, as well as end-use and destination +restrictions issued by the U.S and foreign governments to assure that +neither the Software nor any direct product thereof are + (i) exported, directly or indirectly, in violation of export laws; or + (ii) are intended to be used for any purposes prohibited by the export laws. + +9.3 Force Majeure. Neither party will be responsible to the other for any +failure or delay in its performance due to force majeure provided that such +party gives prompt written notice thereof to the other party and uses its +diligent efforts to resume performance. + +9.4 AxonIQ may amend these license terms and conditions at any time giving one +months’ prior notice. In case you do not agree to these modified terms you may +terminate this Agreement and cease using the Software. + +9.5 Severability; Waiver. If a court of competent jurisdiction finds any +provision of this Agreement invalid or unenforceable, that provision of the +Agreement will be amended to achieve as nearly as possible the intent of the +parties, and the remainder of this Agreement will remain in full force and +effect. The waiver by either party of a breach of any provision of this +Agreement in one instance shall not operate or be construed as a waiver of any +subsequent breach of the same provision or any other provision of this +Agreement . + +9.6 Notices. All notices required to be sent hereunder will be in writing and +addressed to the address shown on https://axoniq.io). AxonIQ may give notices +applicable to the Licensed Software or the Support Services by means of a +general notice on the AxonIQ portal for its services, and notices specific to +Licensee by electronic mail to the e-mail address specified in the Software +Schedule. + +9.7 Assignment. You may not assign this Agreement, in whole or in part, without +AxonIQ’s prior written consent. Any attempt to assign this Agreement without +such consent will be null and void. Subject to the foregoing, this Agreement +will bind and inure to the benefit of each party's permitted successors and +assigns. + +9.8 Survival. The Sections of this Agreement that by their nature survive +expiration or termination of the Agreement include but are not limited to the +following Sections, 4, 5, 6, 7, and 9. + +9.9 Entire Agreement. This Agreement constitutes the entire agreement between +the parties and supersedes all prior or contemporaneous agreements, written or +oral, concerning the subject matter of this Agreement. It is expressly agreed +that the terms of this Agreement will supersede the terms in any purchasing +document submitted by you; and the terms of any purchasing document are +expressly rejected to the extent inconsistent with the terms of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ccl-2026.LICENSE b/src/licensedcode/data/licenses/ccl-2026.LICENSE new file mode 100644 index 0000000000..bfba478ad4 --- /dev/null +++ b/src/licensedcode/data/licenses/ccl-2026.LICENSE @@ -0,0 +1,31 @@ +--- +key: ccl-2026 +short_name: Calq Commercial License 2026 +name: Calq Commercial License 2026 +category: Commercial +owner: Calq Framework +homepage_url: https://github.com/calq-framework/flow/blob/main/LICENSES/LicenseRef-CCL.txt +spdx_license_key: LicenseRef-scancode-ccl-2026 +other_urls: + - https://github.com/calq-framework/flow/blob/main/LICENSE.txt +ignorable_copyrights: + - Copyright 2026 Calq Framework +ignorable_holders: + - Calq Framework +--- + +Copyright 2026 Calq Framework + +A non-exclusive, non-transferable license is hereby granted to any person or organization who purchases a copy of this software and accompanying documentation files (the "Software"). This license allows the licensee to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit third parties to whom the Software is furnished to do so, subject to the terms agreed upon at the time of purchase (the "Purchase Terms") and the following conditions: + +The above copyright notice in the Software must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. + +All copies of the Software, in whole or in part, and all derivative works of the Software may not be published, distributed, sublicensed, nor sold to third parties unless such copies or derivative works are part of a work that combines such copies or derivative works with other material (the "Larger Work"), or those third parties already have a valid license to use the Software. + +Third parties may use copies of the Software, in whole or in part, and all derivative works of the Software as an integral part of any Larger Work, but may not use any Larger Work, in whole or in part, in a way that provides substantially the same functionality as the Software, unless those third parties already have a valid license to use the Software. + +The Purchase Terms shall supersede the terms of this license in the event of any conflict. + +Any sublicense granted under this agreement must be subject to the same terms and conditions as this license and the Purchase Terms, and the sublicensee must accept the obligations of this license and the Purchase Terms. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cuffs-dataset-2024.LICENSE b/src/licensedcode/data/licenses/cuffs-dataset-2024.LICENSE new file mode 100644 index 0000000000..0760af156e --- /dev/null +++ b/src/licensedcode/data/licenses/cuffs-dataset-2024.LICENSE @@ -0,0 +1,27 @@ +--- +key: cuffs-dataset-2024 +short_name: CUFFS Dataset License 2024 +name: CUFFS Dataset License 2024 +category: Non-Commercial +owner: Naver Labs +homepage_url: https://huggingface.co/datasets/naver/CUFFS/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-cuffs-dataset-2024 +ignorable_copyrights: + - Copyright (c) 2024 Naver Corporation +ignorable_holders: + - Naver Corporation +--- + +CUFFS Dataset, Copyright (C) 2024 Naver Corporation + +Limited License to CUFFS Dataset (“Dataset”). + +BY EXERCISING ANY RIGHTS TO THE DATASET, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + +Subject to the terms and conditions of this License, You are granted a personal, royalty-free, non-exclusive, non-sublicensable, non-transferable, revocable license to use the Dataset subject to the following conditions: +(1) You may use the Dataset solely for non-commercial research or academic purposes, including any work derived from or based upon the Dataset. The Dataset may not be redistributed in whole or in part. +(2) You are solely responsible for determining the appropriateness of using the Dataset and assume any risks associated with Your exercise of permissions under this License, and if You do use the Dataset You agree to use the Dataset only in accordance with the terms of this License. +(3) This License automatically terminates without notice if You fail to comply with its terms. You may terminate this License by ceasing to use the Dataset, including any work derived from or based upon the Dataset. Licensor reserves the right to modify or terminate this License at any time. Upon termination of this License You agree to delete any and all copies of the Dataset, including any work derived from or based upon the Dataset. +(4) ALL RIGHTS NOT EXPRESSLY GRANTED IN THIS LICENSE ARE RESERVED BY LICENSOR. +(5) THE DATASET IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATASET OR THE USE OR OTHER DEALINGS IN THE DATASET. +(6) You will retain the above copyright notice and license in all copies or substantial portions of the Dataset, including any work derived from or based upon the Dataset. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/datajuggler-2019.LICENSE b/src/licensedcode/data/licenses/datajuggler-2019.LICENSE new file mode 100644 index 0000000000..b0b18be418 --- /dev/null +++ b/src/licensedcode/data/licenses/datajuggler-2019.LICENSE @@ -0,0 +1,37 @@ +--- +key: datajuggler-2019 +short_name: Data Juggler License 2019 +name: Data Juggler License 2019 +category: Proprietary Free +owner: Data Juggler +homepage_url: https://github.com/DataJuggler/PixelDatabase/blob/master/License/License.txt +spdx_license_key: LicenseRef-scancode-datajuggler-2019 +ignorable_copyrights: + - Copyright (c) 2019 - Data Juggler +ignorable_holders: + - Data Juggler +--- + +Copyright (c) 2019 - Data Juggler. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +Some images were purchased by DataJuggler Software for use in my open source projects. +You are allowed to use these images in these projects, but I do not have the right to +grant you rights to use these images outside of these projects. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/engram-quest-plugin-1.0.LICENSE b/src/licensedcode/data/licenses/engram-quest-plugin-1.0.LICENSE new file mode 100644 index 0000000000..35dddebdce --- /dev/null +++ b/src/licensedcode/data/licenses/engram-quest-plugin-1.0.LICENSE @@ -0,0 +1,53 @@ +--- +key: engram-quest-plugin-1.0 +short_name: Engram Quest Plugin License v1.0 +name: Engram Quest Plugin License v1.0 +category: Non-Commercial +owner: bahfahh +homepage_url: https://github.com/bahfahh/engram-quest/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-engram-quest-plugin-1.0 +ignorable_copyrights: + - Copyright 2026 powen +ignorable_holders: + - powen +--- + +# Engram Quest Plugin License + +Version 1.0, April 2026 + +This license ("License") governs the use, copying, modification, and distribution of the Engram Quest Obsidian plugin and its associated source code ("the Software"). + +## 1. Permission and Usage + +Subject to the terms of this License, you are granted a worldwide, non-exclusive, no-charge, royalty-free license to: +- Use the Software for personal or internal business purposes within the Obsidian application. +- View, copy, and modify the source code for personal use or to contribute back to this project. +- Redistribute the Software in its original or modified form, provided that all copies include this License. + +## 2. Non-Compete Restriction (CRITICAL) + +You may **NOT** use the Software, its source code, or any derivative works to create, develop, or distribute a competing Obsidian plugin. A "competing plugin" is defined as any Obsidian plugin that provides substantially similar core functionality, including but not limited to: +- Interactive memory maps or quest-based visualizations of Obsidian vaults. +- Gamified review systems or deck-based macro-review features. +- Any tool designed to directly replace the Software's primary value proposition within the Obsidian ecosystem. + +## 3. Commercial Use + +- Individual and internal business use is permitted. +- You may NOT sell the Software or any derivative works based on the Software. +- Redistribution as part of a commercial service or paid collection requires explicit written permission from the author. + +## 4. No Warranty + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## 5. Intellectual Property + +All trademarks, service marks, and trade names associated with the Software are the property of the author. Nothing in this License grants you any right to use the author's trademarks or trade names. + +## 6. Governing Terms + +If any provision of this License is found to be unenforceable, the remaining provisions will continue in full force and effect. + +Copyright 2026 powen. All rights reserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/exaone-ai-model-1.1-nc.LICENSE b/src/licensedcode/data/licenses/exaone-ai-model-1.1-nc.LICENSE index 415ede5e84..e1ec9fc624 100644 --- a/src/licensedcode/data/licenses/exaone-ai-model-1.1-nc.LICENSE +++ b/src/licensedcode/data/licenses/exaone-ai-model-1.1-nc.LICENSE @@ -3,7 +3,7 @@ key: exaone-ai-model-1.1-nc short_name: EXAONE AI Model 1.1 - NC name: EXAONE AI Model License Agreement 1.1 - NC category: Non-Commercial -owner: HuggingFace +owner: LG AI EXAONE homepage_url: https://huggingface.co/LGAI-EXAONE/EXAONE-Deep-32B/blob/main/LICENSE spdx_license_key: LicenseRef-scancode-exaone-ai-model-1.1-nc --- diff --git a/src/licensedcode/data/licenses/exaone-ai-model-1.2-nc.LICENSE b/src/licensedcode/data/licenses/exaone-ai-model-1.2-nc.LICENSE new file mode 100644 index 0000000000..a3ee18b0d6 --- /dev/null +++ b/src/licensedcode/data/licenses/exaone-ai-model-1.2-nc.LICENSE @@ -0,0 +1,167 @@ +--- +key: exaone-ai-model-1.2-nc +short_name: EXAONE AI Model 1.2 - NC +name: EXAONE AI Model License Agreement 1.2 - NC +category: Non-Commercial +owner: LG AI EXAONE +homepage_url: https://huggingface.co/LGAI-EXAONE/EXAONE-4.0-32B/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-exaone-ai-model-1.2-nc +--- + +EXAONE AI Model License Agreement 1.2 - NC + +This License Agreement (“Agreement”) is entered into between you (“Licensee”) and LG Management Development +Institute Co., Ltd. (“Licensor”), governing the use of the EXAONE AI Model (“Model”). By downloading, +installing, copying, or using the Model, you agree to comply with and be bound by the terms of this Agreement. +If you do not agree to all the terms, you must not download, install, copy, or use the Model. This Agreement +constitutes a binding legal agreement between the Licensee and Licensor. + +1. Definitions + 1.1 Model: The artificial intelligence model provided by Licensor, which includes any software, + algorithms, machine learning models, or related components supplied by Licensor. This definition extends + to encompass all updates, enhancements, improvements, bug fixes, patches, or other modifications that may + be provided by Licensor from time to time, whether automatically or manually implemented. + 1.2 Derivatives: Any modifications, alterations, enhancements, improvements, adaptations, or derivative + works of the Model created by Licensee or any third party. This includes changes made to the Model's + architecture, parameters, data processing methods, or any other aspect of the Model that results in a + modification of its functionality or output. + 1.3 Output: Any data, results, content, predictions, analyses, insights, or other materials generated by + the Model or Derivatives, regardless of whether they are in their original form or have been further + processed or modified by the Licensee. This includes, but is not limited to, textual or numerical produced + directly or indirectly through the use of the Model. + 1.4 Licensor: LG Management Development Institute Co., Ltd., the owner, developer, and provider of the + EXAONE AI Model. The Licensor holds all rights, title, and interest in the Model and is responsible for + granting licenses to use the Model under the terms specified in this Agreement. + 1.5 Licensee: The individual, organization, corporation, academic institution, government agency, or other + entity using or intending to use the Model under the terms and conditions of this Agreement. The Licensee + is responsible for ensuring compliance with the Agreement by all authorized users who access or utilize + the Model on behalf of the Licensee. + +2. License Grant + 2.1 Grant of License: Subject to the terms and conditions outlined in this Agreement, the Licensor hereby + grants the Licensee a limited, non-exclusive, non-transferable, worldwide, and revocable license to: + a. Access, download, install, and use the Model solely for research and educational purposes. This + includes evaluation, testing, academic research, experimentation, learning, teaching, training and + participation in competitions, provided that such participation is in a non-commercial context. + Notwithstanding Section 3.1, the Licensee may only provide the Model or Derivatives for a competition + if no commercial license is granted to the competition organizer or any third party. + b. Publicly disclose research results and findings derived from the use of the Model or Derivatives, + including publishing papers or presentations. + c. Modify the Model and create Derivatives based on the Model, provided that such modifications and + Derivatives are used exclusively for research and educational purposes. The Licensee may conduct + experiments, perform analyses, and apply custom modifications to the Model to explore its capabilities + and performance under various scenarios. If the Model is modified, the modified Model must include + "EXAONE" at the beginning of its name. + d. Distribute the Model and Derivatives in each case with a copy of this Agreement. + 2.2 Scope of License: The license granted herein does not authorize the Licensee to use the Model for any + purpose not explicitly permitted under this Agreement. Any use beyond the scope of this license, including + any commercial application or external distribution, is strictly prohibited unless explicitly agreed upon + in writing by the Licensor. + +3. Restrictions + 3.1 Commercial Use: The Licensee is expressly prohibited from using the Model, Derivatives, or Output for + any commercial purposes, including but not limited to, developing or deploying products, services, or + applications that generate revenue, whether directly or indirectly. Any commercial exploitation of the + Model or its derivatives requires a separate commercial license agreement with the Licensor. Furthermore, + the Licensee shall not use the Model, Derivatives or Output to develop or improve any models that compete + with the Licensor’s models. + 3.2 Reverse Engineering: The Licensee shall not decompile, disassemble, reverse engineer, or attempt to + derive the source code, underlying ideas, algorithms, or structure of the Model, except to the extent that + such activities are expressly permitted by applicable law. Any attempt to bypass or circumvent + technological protection measures applied to the Model is strictly prohibited. + 3.3 Unlawful Use: The Licensee shall not use the Model and Derivatives for any illegal, fraudulent, or + unauthorized activities, nor for any purpose that violates applicable laws or regulations. This includes + but is not limited to the creation, distribution, or dissemination of malicious, deceptive, or unlawful + content. + 3.4 Ethical Use: The Licensee shall ensure that the Model or Derivatives is used in an ethical and + responsible manner, adhering to the following guidelines: + a. The Model and Derivatives shall not be used to generate, propagate, or amplify false, misleading, + or harmful information, including fake news, misinformation, or disinformation. + b. The Model and Derivatives shall not be employed to create, distribute, or promote content that is + discriminatory, harassing, defamatory, abusive, or otherwise offensive to individuals or groups based + on race, gender, sexual orientation, religion, nationality, or other protected characteristics. + c. The Model and Derivatives shall not infringe on the rights of others, including intellectual property + rights, privacy rights, or any other rights recognized by law. The Licensee shall obtain all necessary + permissions and consents before using the Model and Derivatives in a manner that may impact the rights + of third parties. + d. The Model and Derivatives shall not be used in a way that causes harm, whether physical, mental, + emotional, or financial, to individuals, organizations, or communities. The Licensee shall take all + reasonable measures to prevent misuse or abuse of the Model and Derivatives that could result in harm + or injury. + +4. Ownership + 4.1 Intellectual Property: All rights, title, and interest in and to the Model, including any + modifications, Derivatives, and associated documentation, are and shall remain the exclusive property of + the Licensor. The Licensee acknowledges that this Agreement does not transfer any ownership rights to the + Licensee. All trademarks, service marks, and logos associated with the Model are the property of the + Licensor. + 4.2 Output: Licensor claims no rights in Output. Licensee is solely responsible for the Output and its use. + 4.3 Attribution: In any publication or presentation of results obtained using the Model, the Licensee + shall provide appropriate attribution to the Licensor, citing the Model's name and version, along with any + relevant documentation or references specified by the Licensor. + +5. No Warranty + 5.1 “As-Is” Basis: The Model, Derivatives, and Output are provided on an “as-is” and “as-available” basis, + without any warranties or representations of any kind, whether express, implied, or statutory. The Licensor + disclaims all warranties, including but not limited to, implied warranties of merchantability, fitness for + a particular purpose, accuracy, reliability, non-infringement, or any warranty arising from the course of + dealing or usage of trade. + 5.2 Performance and Reliability: The Licensor does not warrant or guarantee that the Model, Derivatives or + Output will meet the Licensee’s requirements, that the operation of the Model, Derivatives or Output will + be uninterrupted or error-free, or that defects in the Model will be corrected. The Licensee acknowledges + that the use of the Model, Derivatives or Output is at its own risk and that the Model, Derivatives or + Output may contain bugs, errors, or other limitations. + 5.3 No Endorsement: The Licensor does not endorse, approve, or certify any results, conclusions, or + recommendations derived from the use of the Model. The Licensee is solely responsible for evaluating the + accuracy, reliability, and suitability of the Model for its intended purposes. + +6. Limitation of Liability + 6.1 No Liability for Damages: To the fullest extent permitted by applicable law, in no event shall the + Licensor be liable for any special, incidental, indirect, consequential, exemplary, or punitive damages, + including but not limited to, damages for loss of business profits, business interruption, loss of business + information, loss of data, or any other pecuniary or non-pecuniary loss arising out of or in connection with + the use or inability to use the Model, Derivatives or any Output, even if the Licensor has been advised of + the possibility of such damages. + 6.2 Indemnification: The Licensee agrees to indemnify, defend, and hold harmless the Licensor, its + affiliates, officers, directors, employees, and agents from and against any claims, liabilities, damages, + losses, costs, or expenses (including reasonable attorneys' fees) arising out of or related to the + Licensee's use of the Model, any Derivatives, or any Output, including any violation of this Agreement or + applicable laws. + +7. Termination + 7.1 Termination by Licensor: The Licensor reserves the right to terminate this Agreement and revoke the + Licensee’s rights to use the Model at any time, with or without cause, and without prior notice if the + Licensee breaches any of the terms or conditions of this Agreement. Termination shall be effective + immediately upon notice. + 7.2 Effect of Termination: Upon termination of this Agreement, the Licensee must immediately cease all use + of the Model and Derivatives and destroy all copies of the Model and Derivatives in its possession or + control, including any backup or archival copies. The Licensee shall certify in writing to the Licensor that + such destruction has been completed. + 7.3 Survival: The provisions of this Agreement that by their nature should survive termination, including + but not limited to, Sections 4 (Ownership), 5 (No Warranty), 6 (Limitation of Liability), and this Section 7 + (Termination), shall continue to apply after termination. + +8. Governing Law + 8.1 Governing Law: This Agreement shall be governed by and construed in accordance with the laws of the + Republic of Korea, without regard to its conflict of laws principles. + 8.2 Arbitration: Any disputes, controversies, or claims arising out of or relating to this Agreement, + including its existence, validity, interpretation, performance, breach, or termination, shall be referred + to and finally resolved by arbitration administered by the Korean Commercial Arbitration Board (KCAB) in + accordance with the International Arbitration Rules of the Korean Commercial Arbitration Board in force at + the time of the commencement of the arbitration. The seat of arbitration shall be Seoul, Republic of Korea. + The tribunal shall consist of one arbitrator. The language of the arbitration shall be English. + +9. Alterations + 9.1 Modifications: The Licensor reserves the right to modify or amend this Agreement at any time, in its + sole discretion. Any modifications will be effective upon posting the updated Agreement on the Licensor’s + website or through other means of communication. The Licensee is responsible for reviewing the Agreement + periodically for changes. Continued use of the Model after any modifications have been made constitutes + acceptance of the revised Agreement. + 9.2 Entire Agreement: This Agreement constitutes the entire agreement between the Licensee and Licensor + concerning the subject matter hereof and supersedes all prior or contemporaneous oral or written agreements, + representations, or understandings. Any terms or conditions of any purchase order or other document + submitted by the Licensee in connection with the Model that are in addition to, different from, or + inconsistent with the terms and conditions of this Agreement are not binding on the Licensor and are void. + +By downloading, installing, or using the EXAONE AI Model, the Licensee acknowledges that it has read, +understood, and agrees to be bound by the terms and conditions of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/flexbyte.LICENSE b/src/licensedcode/data/licenses/flexbyte.LICENSE new file mode 100644 index 0000000000..2a4a580b32 --- /dev/null +++ b/src/licensedcode/data/licenses/flexbyte.LICENSE @@ -0,0 +1,14 @@ +--- +key: flexbyte +short_name: flexbyte license +name: flexbyte license +category: Permissive +owner: flexbyte +homepage_url: https://flexbyte.com/ +spdx_license_key: LicenseRef-scancode-flexbyte +--- + +You may use the source code in any product (freeware, commercial, etc.). +You may modify the source code as you want except +you cannot modify the copyright details at the top of each module. +If you have a web site or blog give a link to our web site, flexbyte.com \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-research-use-2024.LICENSE b/src/licensedcode/data/licenses/intel-research-use-2024.LICENSE new file mode 100644 index 0000000000..34d04f4e29 --- /dev/null +++ b/src/licensedcode/data/licenses/intel-research-use-2024.LICENSE @@ -0,0 +1,34 @@ +--- +key: intel-research-use-2024 +short_name: Intel Research Use License Agreement 2024 +name: Intel Research Use License Agreement 2024 +category: Non-Commercial +owner: Intel Corporation +homepage_url: https://huggingface.co/datasets/IntelLabs/Intel_Robotic_Welding_Multimodal_Dataset/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-intel-research-use-2024 +--- + +Intel Research Use License Agreement + +By using or distributing any portion or element of the Material, You agree to be bound by this Agreement. + +1.Definitions. +“Agreement” means the terms and conditions for use, reproduction and distribution of the Material set forth herein. +“Material” means datasets, model weights or other software Intel makes available to you under this Agreement. +“You” or “Your” means you, or your employer or any other person or entity (if you are entering into this Agreement on such person or entity’s behalf), of the age required under applicable laws, rules or regulations to provide legal consent and that has legal authority to bind your employer or such other person or entity if you are entering in this Agreement on their behalf. + +2. License. Intel grants to You, a limited, non-transferable, non-sublicensable, non-exclusive, worldwide, royalty-free, license under Intel’s copyrights in the Material, to use, reproduce, display, and distribute the Material solely for research purposes. + +2.1 Restrictions. Except as authorized above, You will not: (a) use Material in any other way; (b) reverse engineer, decompile, or disassemble the Material, or (c) use Material to violate or aid in the violation of any international human right. + +2.2 No Implied License. Except for the express license in Section 2, Intel does not grant You any express or implied license under any legal theory. Any other licenses from Intel require additional consideration. Nothing in this Agreement requires Intel to grant any additional license. + +3. Third party programs. Your use of certain third-party software with or within the Material is subject to your compliance with licensing you obtain directly from that third-party. A listing of any such third-party software may accompany the Material. + +4. No Warranty. The Material is provided “as is,” without any express or implied warranty of any kind including warranties of merchantability, non-infringement, title, or fitness for a particular purpose. The Material may be pre-release and may not be fully functional. Intel is not required to maintain, update, or support any Material. You are solely responsible for determining the appropriateness of using or distributing the Material and assume any risks associated with Your use of the Material. + +5. Limitation on Liability. IN NO EVENT WILL INTEL BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY LOST PROFITS OR DAMAGES (INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT, SPECULATIVE, SPECIAL OR CONSEQUENTIAL DAMAGES) WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT (EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES OR DAMAGES). + +6. Term and Termination. The term of this Agreement will commence upon Your acceptance of this Agreement or access to the Material and will continue in full force and effect until terminated in accordance with the terms and conditions herein. Intel may terminate this Agreement if You are in breach of any term or condition of this Agreement. Upon termination of this Agreement, You shall delete and cease use of the Material. Sections 4, 5 and 7 will survive the termination of this Agreement. + +7. Governing Law and Jurisdiction. All disputes will be governed by the laws of the United States of America and the State of Delaware without reference to conflict of law principles and subject to the exclusive jurisdiction of the state or federal courts sitting in the State of Delaware, and each party agrees that it submits to the personal jurisdiction and venue of those courts and waives any objections. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/keychron-sal-2024.LICENSE b/src/licensedcode/data/licenses/keychron-sal-2024.LICENSE new file mode 100644 index 0000000000..da1155ed1f --- /dev/null +++ b/src/licensedcode/data/licenses/keychron-sal-2024.LICENSE @@ -0,0 +1,77 @@ +--- +key: keychron-sal-2024 +short_name: Keychron Source-Available License 2024 +name: Keychron Source-Available License 2024 +category: Non-Commercial +owner: Keychron +homepage_url: https://github.com/Keychron/Keychron-Keyboards-Hardware-Design/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-keychron-sal-2024 +ignorable_copyrights: + - Copyright (c) 2024-present Keychron (Keychron Technology, Inc) +ignorable_holders: + - Keychron (Keychron Technology, Inc) +--- + +Keychron Source-Available License + +Copyright (c) 2024-present Keychron (Keychron Technology, Inc) + +This project is source-available. Commercial use of the design files is limited as described below, except that original compatible accessories and add-ons are not subject to the commercial-use restriction in this license when they follow the accessory conditions below. + +PERMISSIONS — You MAY: + + 1. View, download, and study the design files for personal or + educational purposes. + 2. Modify the files and create derivative works for personal, + non-commercial use (e.g., 3D printing a custom case for yourself). + 3. Share the original, unmodified files with others, provided this + license and copyright notice are included in full. + 4. Reference or cite the files in academic or educational contexts. + 5. Design, manufacture, and sell original accessories or add-ons that + are compatible with Keychron products. Such accessories and add-ons + are not subject to the commercial-use restriction in this license, + provided that: + - the accessory is not a keyboard, mouse, or a substantially similar + copy of a Keychron product; + - the accessory does not copy or reproduce a complete Keychron + keyboard or mouse design from these files; and + - you do not use Keychron trademarks, logos, or branding except for + truthful compatibility statements such as "compatible with + Keychron Q1". + +RESTRICTIONS — You MAY NOT: + + 1. Use the files, or any derivative of them, for commercial purposes. + unless that use is expressly allowed under Permission 5 above. + 2. Sublicense, relicense, or redistribute modified versions of the + files without prior written permission from Keychron. + 3. Remove or alter this license notice, copyright notice, or any + attribution to Keychron. + 4. Represent derivative works as officially endorsed by Keychron. + 5. Manufacture, sell, offer for sale, or distribute keyboards, mice, + or substantially similar products based on these files or their + derivatives. + 6. Use Keychron trademarks, logos, product names, or other branding as + your own branding, in a way that implies source or endorsement, or + in a way that is likely to confuse customers. Compatibility + references must remain descriptive and must not imply official + authorization. + +COMMERCIAL ACCESSORY USE: + +Original compatible accessories and add-ons are not subject to the +commercial-use restriction in this license, provided they comply with +Permission 5 and the restrictions above. + +If you want to manufacture or sell keyboards, mice, or other products +that reproduce Keychron product designs, you must obtain prior written +permission from Keychron. + +DISCLAIMER: + + THE FILES ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED. IN NO EVENT SHALL KEYCHRON BE LIABLE FOR ANY CLAIM, + DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF THESE FILES. + + Keychron reserves the right to modify the terms of this license for + future releases of these design files. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/meralion-pl-2025.LICENSE b/src/licensedcode/data/licenses/meralion-pl-2025.LICENSE new file mode 100644 index 0000000000..f22bec2a50 --- /dev/null +++ b/src/licensedcode/data/licenses/meralion-pl-2025.LICENSE @@ -0,0 +1,65 @@ +--- +key: meralion-pl-2025 +short_name: MERaLiON Public Licence 2025 +name: MERaLiON Public Licence 2025 +category: Permissive +owner: A-STAR +homepage_url: https://huggingface.co/MERaLiON/MERaLiON-SER-v1 +spdx_license_key: LicenseRef-scancode-meralion-pl-2025 +text_urls: + - https://huggingface.co/MERaLiON/MERaLiON-SER-v1/resolve/main/MERaLiON-Public-Licence-SER-V1.pdf +ignorable_authors: + - the Institute for Infocomm Research ("I2R"), a national research institute of the Agency + for Science Technology And Research +ignorable_urls: + - https://opensource.org/license/mit +--- + +MERaLiON Public Licence + +MERaLiON is developed by the Institute for Infocomm Research (“I²R”), a national research +institute of the Agency for Science Technology And Research (“A*STAR”), funded by the +National Research Foundation, Singapore under its National Large Language Models Funding +Initiative. + +MERaLiON (the “Software”) is available for use on the terms set out below. Your use of the +Software is conditional on your agreement to these terms. Please do not proceed if you do +not agree to these terms. + +MERaLiON-SER-v1 +The MIT License +https://opensource.org/license/mit + +Terms of Use +You agree that if you share or otherwise distribute the Software (including in an adapted or +modified form (“Derivative Work”)), you must: +(a) Retain the identity of the creators. +(b) Retain a copyright notice, +(c) Include a disclaimer of warranties, +(d) Indicate if you have modified the Software and retain an indication of the modifications, +and +(e) Indicate that this Software is licensed under these public license terms and include the +text of or a link to these license terms. + +If you share or otherwise distribute Derivative Works, you agree that: +(a) you shall not use or combine the Software with third-party resources with incompatible +terms, +(b) you are responsible for ensuring that you have all necessary rights and permissions to +use the third-party resources, +(c) you shall indemnify and hold harmless the creators for any and all liability, loss, +damage, costs and expense arising from any claims in relation to your use of the +Software and third-party resources in or in generating the Derivative Works, and +(d) the license you apply to the Derivative Works must not prevent recipients of the +Derivative Works from complying with these terms. + +Specific Disclaimer + +The Software has not been specifically aligned for safety and may generate content that is +inappropriate, offensive, or harmful. Developers and users are responsible for performing their +own safety fine-tuning and implementing necessary security measures. The creators shall not +be held liable for any claims, damages, or other liabilities arising from the use of the Software, +weights, or code. + +Out-of-Scope Use + +The Software is not intended for use in math and coding tasks. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/minimax-mit-variant-2025.LICENSE b/src/licensedcode/data/licenses/minimax-mit-variant-2025.LICENSE new file mode 100644 index 0000000000..861c484154 --- /dev/null +++ b/src/licensedcode/data/licenses/minimax-mit-variant-2025.LICENSE @@ -0,0 +1,40 @@ +--- +key: minimax-mit-variant-2025 +short_name: MiniMax MIT Variant 2025 +name: MiniMax MIT Variant 2025 +category: Permissive +owner: MiniMax +homepage_url: https://github.com/MiniMax-AI/MiniMax-M2.7/blob/d7806d867cd39eac2c9226974ea195fd0b1698a6/LICENSE-CODE +spdx_license_key: LicenseRef-scancode-minimax-mit-variant-2025 +ignorable_copyrights: + - Copyright 2025 MiniMax AI. +ignorable_holders: + - MiniMax AI. +--- + +MIT License + +Copyright 2025 MiniMax AI. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Our only modification is that, if the Software (or any derivative works +thereof) is used for any of your commercial products or services, you shall +prominently display "MiniMax M2.7" on the user interface of such product or +service. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/minimax-model-m2.5.LICENSE b/src/licensedcode/data/licenses/minimax-model-m2.5.LICENSE new file mode 100644 index 0000000000..451bfee912 --- /dev/null +++ b/src/licensedcode/data/licenses/minimax-model-m2.5.LICENSE @@ -0,0 +1,70 @@ +--- +key: minimax-model-m2.5 +short_name: MiniMax Model License M2.5 +name: MiniMax Model License M2.5 +category: Proprietary Free +owner: MiniMax +homepage_url: https://github.com/MiniMax-AI/MiniMax-M2.5/blob/main/LICENSE-MODEL +spdx_license_key: LicenseRef-scancode-minimax-model-m2.5 +ignorable_copyrights: + - Copyright (c) MiniMax +ignorable_holders: + - MiniMax +--- + +MINIMAX MODEL LICENSE +MiniMax-M2.5 Version Release Date: 2026-02-13 + +1. Definitions + +"Agreement" means the terms and conditions for use, reproduction, distribution and modification of the Model Materials set forth herein. + +"Licensee" or "you" means you, or your employer or any other person or entity (if you are entering into this Agreement on such person or entity's behalf), of the age required under applicable laws, rules or regulations to provide legal consent and that has legal authority to bind your employer or such other person or entity if you are entering in this Agreement on their behalf. + +"Model" means the foundational large language models and software and algorithms, including machine-learning model code, trained model weights, inference-enabling code, training-enabling code, fine-tuning enabling code and other elements of the foregoing distributed by MiniMax. + +"Model Materials" means, collectively, the Model and any source code, scripts, specifications, manuals and documentation accompanying the Model (and any portion thereof) made available under this Agreement. + +"MiniMax" or "we" means MiniMax AI. + +2. License Rights and Redistribution + +a. Grant of Rights. You are granted a non-exclusive, worldwide and royalty-free limited license under MiniMax's intellectual property or other rights owned by MiniMax embodied in the Model Materials to use, reproduce, distribute, copy, create derivative works of, and make modifications to the Model Materials. + +b. Redistribution and Use. + + i. If you distribute or make available the Model Materials (or any derivative works thereof), or a product or service that uses any of them, including another AI model, you shall provide a copy of this Agreement with any such the Model Materials or derivative works and cause any modified files to carry prominent notices stating that you changed the files. You may add your own copyright statement to your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of your modifications, or for any such derivative works as a whole, provided your use, reproduction, and distribution of the work otherwise complies with the terms and conditions of this Agreement. + + ii. You must retain in all copies of the Model Materials that you distribute the following attribution notice within a "Notice" text file distributed as a part of such copies: "MiniMax AI model is licensed under the MiniMax Model License, Copyright © MiniMax. All Rights Reserved." + + iii. Your use of the Model Materials must comply with applicable laws and regulations (including trade compliance laws and regulations) and adhere to the Prohibited Uses Policy for the Model Materials, which is hereby incorporated by reference into this Agreement. + +3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE MODEL MATERIALS AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, AND MINIMAX DISCLAIMS ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE MODEL MATERIALS AND ASSUME ANY RISKS ASSOCIATED WITH YOUR USE OF THE MODEL MATERIALS AND ANY OUTPUT AND RESULTS. + +4. Limitation of Liability. IN NO EVENT WILL MINIMAX OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT, FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN IF MINIMAX OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING. + +5. Intellectual Property. + +a. No trademark license is granted to use the trade names, trademarks, service marks, or product names of MiniMax, except as required to fulfill notice requirements under this Agreement. + +b. Subject to MiniMax's ownership of the Model Materials and derivatives made by or for MiniMax, with respect to any derivative works and modifications of the Model Materials that are made by you, as between you and MiniMax, you are and will be the owner of such derivative works and modifications. + +c. If you institute litigation or other proceedings against MiniMax or any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Model Materials or outputs or results, or any portion of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or claim is filed or instituted. You will indemnify and hold harmless MiniMax from and against any claim by any third party arising out of or related to your use or distribution of the Model Materials. + +6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access to the Model Materials and will continue in full force and effect until terminated in accordance with the terms and conditions herein. MiniMax may terminate this Agreement if you are in breach of any term or condition of this Agreement. Upon termination of this Agreement, you shall delete and cease use of the Model Materials. Sections 3, 4 and 7 shall survive the termination of this Agreement. + +7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of Singapore without regard to choice of law principles, and the UN Convention on Contracts for the International Sale of Goods does not apply to this Agreement. Any dispute arising out of or in connection with this Agreement, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration administered by the Singapore International Arbitration Centre ("SIAC") in accordance with the Arbitration Rules of the Singapore International Arbitration Centre ("SIAC Rules") for the time being in force, which rules are deemed to be incorporated by reference in this clause. + +Prohibited Uses Policy + +You agree you will not use, or allow others to use, the Models or any derivatives of the Models to: + +1. Violate any applicable federal, state, local, or international law or regulation, or infringe upon the lawful rights or interests of any third party. +2. Assist with, engage in or otherwise support any military purpose. +3. Exploit, harm, or attempt to exploit or harm minors in any way. +4. Generate or disseminate false or misleading information with the intent to cause harm. +5. Generate or disseminate content prohibited by applicable laws or regulations. +6. Generate or disseminate personally identifiable information without proper authorization or for unlawful or unreasonable purposes. +7. Defame, disparage, harass, or cause harm to any individual or entity. +8. Conduct fully automated decision-making that adversely affects an individual's legal rights or creates or modifies a binding, enforceable obligation. +9. Promote discrimination, hate speech, or harmful behavior against individuals or groups based on race or ethnic origin, religion, disability, age, nationality and national origin, veteran status, sexual orientation, gender or gender identity, caste, immigration status, or any other characteristic that is associated with systemic discrimination or marginalization. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/minimax-non-commercial-2026.LICENSE b/src/licensedcode/data/licenses/minimax-non-commercial-2026.LICENSE new file mode 100644 index 0000000000..8bb5759679 --- /dev/null +++ b/src/licensedcode/data/licenses/minimax-non-commercial-2026.LICENSE @@ -0,0 +1,34 @@ +--- +key: minimax-non-commercial-2026 +short_name: MiniMax Non-Commercial License 2026 +name: MiniMax Non-Commercial License 2026 +category: Non-Commercial +owner: MiniMax +homepage_url: https://github.com/MiniMax-AI/MiniMax-M2.7/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-minimax-non-commercial-2026 +ignorable_copyrights: + - Copyright (c) 2026 MiniMax +ignorable_holders: + - MiniMax +ignorable_emails: + - api@minimax.io +--- + +NON-COMMERCIAL LICENSE +Non-commercial use permitted based on MIT-style terms; commercial use requires prior written authorization. +Copyright (c) 2026 MiniMax +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software for non-commercial purposes, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or provide copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +2. If the Software (or any derivative works thereof) is used for any Commercial Use, you shall prominently display "Built with MiniMax M2.7" on a related website, user interface, blogpost, about page or product documentation. +3. Any Commercial Use of the Software or any derivative work thereof is prohibited without obtaining a separate, prior written authorization from MiniMax. To request such authorization, please contact api@minimax.io with the subject line "M2.7 licensing". +4. "Commercial Use" means any use of the Software or any derivative work thereof that is primarily intended for commercial advantage or monetary compensation, which includes, without limitation: (i) offering products or services to third parties for a fee, which utilize, incorporate, or rely on the Software or its derivatives, (ii) the commercial use of APIs provided by or for the Software or its derivatives, including to support or enable commercial products, services, or operations, whether in a cloud-based, hosted, or other similar environment, and (iii) the deployment or provision of the Software or its derivatives that have been subjected to post-training, fine-tuning, instruction-tuning, or any other form of modification, for any commercial purpose. +5. Permitted Free Uses. The following uses are expressly permitted free of charge: (a) personal use, including self-hosted deployment for coding, development of applications, agents, tools, integrations, research, experimentation, or other personal purposes; (b) use by non-profit organizations, academic institutions, and researchers for non-commercial research or educational purposes; (c) modification of the Software solely for the uses described in (a) or (b) above. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Appendix: Prohibited Uses +You agree you will not use, or allow others to use, the Software or any derivatives of the Software to: +1. Generate or disseminate content prohibited by applicable laws or regulations. +2. Assist with, engage in or otherwise support any military purpose. +3. Exploit, harm, or attempt to exploit or harm minors. +4. Generate or disseminate false or misleading information with the intent to cause harm. +5. Promote discrimination, hate speech, or harmful behavior against individuals or groups based on race or ethnic origin, religion, disability, age, nationality and national origin, veteran status, sexual orientation, gender or gender identity, caste, immigration status, or any other characteristic that is associated with systemic discrimination or marginalization. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/moe-speech.LICENSE b/src/licensedcode/data/licenses/moe-speech.LICENSE new file mode 100644 index 0000000000..ce16dcedc6 --- /dev/null +++ b/src/licensedcode/data/licenses/moe-speech.LICENSE @@ -0,0 +1,87 @@ +--- +key: moe-speech +language: ja +short_name: MoeSpeech License +name: MoeSpeech License +category: Proprietary Free +owner: ayousanz +homepage_url: https://huggingface.co/datasets/ayousanz/moe-speech-plus/blob/main/LICENSE.md +spdx_license_key: LicenseRef-scancode-moe-speech +--- + +MoeSpeech LICENSE + +このライセンスは日本語と英語の両方で提供されています。両方のバージョンが法的に有効ですが、解釈に矛盾が生じた場合は日本語版が優先されます。 + +This license is provided in both Japanese and English. Both versions are legally valid, but in the event of any inconsistencies in interpretation, the Japanese version shall take precedence. +日本語版 [Japanese Version] +定義 + +このライセンスで用いる用語の定義は以下の通りです。 + + 公開: ある情報を、利用者以外の第三者(人数は問わない)が取得可能な状態にすること。また、DiscordやXの非公開アカウントへの投稿等、一部のユーザーのみが取得可能な状態にすることも公開とみなします。 + 再配布: このデータセットの全体または一部を公開すること(その際に元のデータから修正・改変した場合も含む)。ただし、このデータセットを用いて機械学習モデルを作成した場合、そのモデルを公開することは再配布とみなしません。 + +利用条件 + +このデータセットは、以下のライセンスに基づいて利用することができます。 + +このデータセット内のデータは、日本の著作権法(昭和45年5月6日法律第48号)第三十条の四による利用のみが可能です(ただし、「当該著作物の種類及び用途並びに当該利用の態様に照らし著作権者の利益を不当に害する」ような利用は禁止されています)。 + +ここで、具体的にどのような利用が可能かについては利用者の判断に委ねられており、このデータセットの提供者はこのデータセットを利用することによって生じたいかなるトラブルや損害に対しても責任を負いません。 + +またこのデータセットを利用することで得られた情報や機械学習モデルや成果物等については、下記の再配布や改変にあたる場合を除き、自由に公開・共有することができ、このデータセットを使用したことへの言及やクレジット表記は必要ありません。ただしこのデータセットへ言及する際には、識別名と声優やキャラクター名や出典元等との対応が明らかにされるのを防ぐため、少数の識別名のみを使用しその特徴が再現されているような共有物については、使用した識別名を公開しないようにしてください。 +禁止行為 + +以下の行為は禁止されています。 + + このデータセットの特定の識別名のデータを享受目的で利用すること。 + このデータセットの特定の識別名のデータについて、その一部または全てを公開すること(特定識別名のデータの再配布)。特に、データセット内の音声ファイルを1つであっても公開することは、特定識別名のデータの再配布とみなされます。 + このデータセットの特別の識別名のデータについて、その音声ファイルを元ゲームのシナリオ順通りに並べようと試みたり、その結果を公開したりすること。 + このデータセットについて、出典元が同じであるようなキャラクター識別名たちを明らかにし、その結果を公開すること。 + このデータセットに含まれる音声データについて、その実際のキャラクター名や声優の名前や出典元を明らかにし公開すること(音声データの識別名やファイル名等に言及しない場合も含む)。 + +その他の重要な条件 + + 利用者は、このデータセットの利用に際して、自身の国または地域の法律に従うこと。 + このデータセットの利用によって発生したいかなるトラブルや損害に対しても、データセットの提供者は責任を負わない。 + +再配布の禁止 + + このデータセットは、改変の有無に関わらず、再配布することはできません。 + +English Version +Definitions + +The definitions of terms used in this license are as follows: + + Publication: Making certain information accessible to third parties other than users, regardless of the number of people. This also includes posts to private accounts on platforms like Discord or X, where the information is accessible only to a limited group of users. + Redistribution: Publishing the entire or a part of this dataset (including modifications or alterations of the original data). However, publishing a machine learning model created using this dataset is not considered redistribution. + +Terms of Use + +This dataset may be used under the following license: + +The data in this dataset can only be used as permitted by Copyright Law of Japan (Law No. 48 of May 6, 1970) Article 30-4. It is permissible to exploit a work, in any way and to the extent considered necessary, in cases where it is not a person's purpose to personally enjoy or cause another person to enjoy the thoughts or sentiments expressed in that work. However, uses that unreasonably prejudice the interests of the copyright owner in light of the nature or purpose of the work or the circumstances of its exploitation are prohibited. + +Here, what constitutes permissible use is left to the discretion of the user, and the provider of this dataset bears no responsibility for any troubles or damages arising from the use of this dataset. + +Furthermore, information, machine learning models, or products obtained through the use of this dataset may be freely published or shared, except in cases of redistribution or modification as described below. There is no need for attribution or credit for using this dataset. However, when referring to this dataset, please do not disclose the specific identification names used, to prevent making clear the correspondence between identification names and voice actors, character names, or sources. +Prohibited Actions + +The following actions are prohibited: + + Using specific identification name data in this dataset for the purpose of personal enjoyment. + Publishing any part or all of the specific identification name data in this dataset (redistribution of specific identification name data). In particular, publishing even a single audio file from the dataset is considered redistribution of specific identification name data. + Attempting to arrange the audio files of this dataset in the order of the original game scenario, or publishing the results. + Revealing and publishing the character identification names from the same source in this dataset. + Disclosing and publishing the actual character names, voice actor names, or sources of the audio data in this dataset (including cases where identification names or file names are not mentioned). + +Other Important Conditions + + Users must comply with the laws of their country or region when using this dataset. + The provider of this dataset bears no responsibility for any troubles or damages arising from its use. + +Redistribution Prohibited + + This dataset may not be redistributed, regardless of whether or not it has been modified. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ncsc-nl-disclaimer.LICENSE b/src/licensedcode/data/licenses/ncsc-nl-disclaimer.LICENSE new file mode 100644 index 0000000000..196a6f6b24 --- /dev/null +++ b/src/licensedcode/data/licenses/ncsc-nl-disclaimer.LICENSE @@ -0,0 +1,11 @@ +--- +key: ncsc-nl-disclaimer +short_name: NCSC-NL Vulnerabilities Disclaimer +name: NCSC-NL Vulnerabilities Disclaimer +category: Permissive +owner: NCSC-NL +homepage_url: https://vulnerabilities.ncsc.nl/vulnerability.html?id=2025/cve-2025-5115#disclaimer +spdx_license_key: LicenseRef-scancode-ncsc-nl-disclaimer +--- + +The Netherlands Cyber Security Center (henceforth: NCSC-NL) maintains this portal to enhance access to its information and vulnerabilities. The use of this information is subject to the following terms and conditions: The vulnerabilities disclosed in this portal are gathered by NCSC-NL from a variety of open sources, which the user can retrieve from other platforms. NCSC-NL makes every reasonable effort to ensure that the content of this portal is kept up to date, and that it is accurate and complete. Nevertheless, NCSC-NL cannot entirely rule out the possibility of errors, and therefore cannot give any warranty in respect of its completeness, accuracy or real-time keeping up-to-date. NCSC-NL does not control nor guarantee the accuracy, relevance, timeliness or completeness of information obtained from these external sources. The vulnerabilities disclosed in this portal are intended solely for the convenience of professional parties to take appropriate measures to manage the risks posed to the cybersecurity. No rights can be derived from the information provided therein. NCSC-NL and the Kingdom of the Netherlands assume no legal liability or responsibility for any damage resulting from either the use or inability of use of the vulnerabilities disclosed in this portal. This includes damage resulting from the inaccuracy of incompleteness of the information contained in it. The information on this page is subject to Dutch law. All disputes related to or arising from the use of this portal regarding the disclosure of vulnerabilities will be submitted to the competent court in The Hague. This choice of means also applies to the court in summary proceedings. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nexar-dataset-2025.LICENSE b/src/licensedcode/data/licenses/nexar-dataset-2025.LICENSE new file mode 100644 index 0000000000..0c5ab9370b --- /dev/null +++ b/src/licensedcode/data/licenses/nexar-dataset-2025.LICENSE @@ -0,0 +1,38 @@ +--- +key: nexar-dataset-2025 +short_name: Nexar Dataset License 2025 +name: Nexar Dataset License 2025 +category: Proprietary Free +owner: Nexar +homepage_url: https://huggingface.co/datasets/nexar-ai/nexar_collision_prediction/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-nexar-dataset-2025 +ignorable_copyrights: + - Copyright (c) 2025 Nexar Inc. +ignorable_holders: + - Nexar Inc. +ignorable_authors: + - consent from Nexar Inc. +ignorable_urls: + - https://huggingface.co/datasets/nexar-ai/nexar_collision_prediction +--- + +Copyright (c) 2025 Nexar Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this dataset (the "Dataset") and associated documentation files (the "Documentation"), to use, copy, modify, and distribute the Dataset, subject to the following conditions: + +Attribution and Redistribution + +* Attribution: Proper attribution must be given to Nexar Inc. when using or sharing the Dataset. Any published work or research using the Dataset must cite its source as follows: +Moura, Daniel C., and Zvitia, Orly. "Nexar Collison Dataset." Hugging Face, 2025, https://huggingface.co/datasets/nexar-ai/nexar_collision_prediction. +* Redistribution: Redistributions of the Dataset must retain the above copyright notice, this list of conditions, and the following disclaimers. +* No Resale: The Dataset may not be sold, sublicensed, or otherwise redistributed for profit without prior written consent from Nexar Inc. + +The Dataset License is limited to applications and uses that do not violate the following ethical use restrictions: +* Malicious Systems: The Dataset may not be used to develop or train systems intended to cause harm, engage in unsafe driving, or simulate unsafe behavior. +* Deepfakes and Misinformation: Users may not use the Dataset to create manipulated media or to spread deceptive or misleading content. +* Privacy Violations: Users may not attempt to reidentify individuals, vehicles, or other entities in the Dataset through cross-referencing or other means. This includes but is not limited to unauthorized surveillance, tracking, or reverse engineering of anonymized data. +* Weaponization: The Dataset may not be used in the development, testing, or deployment of weapon systems or technology intended for combat or armed conflict. +* Exploitative Practices: Users may not exploit accident-prone regions or individuals for predatory financial purposes, such as unethical insurance practices. +* Compliance with Laws: Users must comply with all applicable local, national, and international laws when using the Dataset. + +THE DATASET IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE DATASET OR THE USE OR OTHER DEALINGS IN THE DATASET. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ntuitive-la-2025.LICENSE b/src/licensedcode/data/licenses/ntuitive-la-2025.LICENSE new file mode 100644 index 0000000000..85d069e2f7 --- /dev/null +++ b/src/licensedcode/data/licenses/ntuitive-la-2025.LICENSE @@ -0,0 +1,40 @@ +--- +key: ntuitive-la-2025 +short_name: NTUITIVE-LA 2025 +name: NTUITIVE-LA 2025 +category: Non-Commercial +owner: NTUITIVE +homepage_url: https://huggingface.co/datasets/pengyizhou/FD-Bench-Audio-Input/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-ntuitive-la-2025 +ignorable_urls: + - https://github.com/Shilin-LU/MACE +ignorable_emails: + - shilin002@e.ntu.edu.sg +--- + +NANYANG TECHNOLOGICAL UNIVERSITY - NTUITIVE PTE LTD Dual License Agreement +Non-Commercial Use Only. This NTUITIVE License Agreement, including all exhibits ("NTUITIVE-LA") is a legal agreement between you and NTUITIVE (or “we”) located at 71 Nanyang Drive, #03-01, Innovation Centre, Singapore 638075, a wholly owned subsidiary of Nanyang Technological University (“NTU”) for the software or data identified above, which may include source code, and any associated materials, text or speech files, associated media and "online" or electronic documentation and any updates we provide in our discretion (together, the "Software"). + +By installing, copying, or otherwise using this Software, found at https://github.com/Shilin-LU/MACE, you agree to be bound by the terms of this NTUITIVE-LA. If you do not agree, do not install copy or use the Software. The Software is protected by copyright and other intellectual property laws and is licensed, not sold. If you wish to obtain a commercial royalty bearing license to this software please contact us at shilin002@e.ntu.edu.sg + +SCOPE OF RIGHTS: +You may use, copy, reproduce, and distribute this Software for any non-commercial purpose, subject to the restrictions in this NTUITIVE-LA. Some purposes which can be non-commercial are teaching, academic research, public demonstrations and personal experimentation. You may also distribute this Software with books or other teaching materials, or publish the Software on websites, that are intended to teach the use of the Software for academic or other non-commercial purposes. +You may not use or distribute this Software or any derivative works in any form for commercial purposes. Examples of commercial purposes would be running business operations, licensing, leasing, or selling the Software, distributing the Software for use with commercial products, using the Software in the creation or use of commercial products or any other activity which purpose is to procure a commercial gain to you or others. +If the Software includes source code or data, you may create derivative works of such portions of the Software and distribute the modified Software for non-commercial purposes, as provided herein. +If you distribute the Software or any derivative works of the Software, you will distribute them under the same terms and conditions as in this license, and you will not grant other rights to the Software or derivative works that are different from those provided by this NTUITIVE-LA. +If you have created derivative works of the Software, and distribute such derivative works, you will cause the modified files to carry prominent notices so that recipients know that they are not receiving the original Software. Such notices must state: (i) that you have changed the Software; and (ii) the date of any changes. + +You may not distribute this Software or any derivative works. +In return, we simply require that you agree: +1. That you will not remove any copyright or other notices from the Software. +2. That if any of the Software is in binary format, you will not attempt to modify such portions of the Software, or to reverse engineer or decompile them, except and only to the extent authorized by applicable law. +3. That NTUITIVE is granted back, without any restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable and sub-licensable license, to reproduce, publicly perform or display, install, use, modify, post, distribute, make and have made, sell and transfer your modifications to and/or derivative works of the Software source code or data, for any purpose. +4. That any feedback about the Software provided by you to us is voluntarily given, and NTUITIVE shall be free to use the feedback as it sees fit without obligation or restriction of any kind, even if the feedback is designated by you as confidential. +5. THAT THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES. THIS MEANS NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, any warranty against interference with your enjoyment of the Software OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. There is no warranty that this Software will fulfill any of your particular purposes or needs. ALSO, YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. +6. THAT NEITHER NTUITIVE NOR NTU NOR ANY CONTRIBUTOR TO THE SOFTWARE WILL BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR THIS NTUITIVE-LA, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT IS BASED ON. ALSO, YOU MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. +7. That we have no duty of reasonable care or lack of negligence, and we are not obligated to (and will not) provide technical support for the Software. +8. That if you breach this NTUITIVE-LA or if you sue anyone over patents that you think may apply to or read on the Software or anyone's use of the Software, this NTUITIVE-LA (and your license and rights obtained herein) terminate automatically. Upon any such termination, you shall destroy all of your copies of the Software immediately. Sections 3, 4, 5, 6, 7, 8, 11 and 12 of this NTUITIVE-LA shall survive any termination of this NTUITIVE-LA. +9. That the patent rights, if any, granted to you in this NTUITIVE-LA only apply to the Software, not to any derivative works you make. +10. That the Software may be subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the Software after delivery of the software to you. +11. That all rights not expressly granted to you in this NTUITIVE-LA are reserved. +12. That this NTUITIVE-LA shall be construed and controlled by the laws of the Republic of Singapore without regard to conflicts of law. If any provision of this NTUITIVE-LA shall be deemed unenforceable or contrary to law, the rest of this NTUITIVE-LA shall remain in full effect and interpreted in an enforceable manner that most nearly captures the intent of the original language. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nvidia-1-way-noncommercial.LICENSE b/src/licensedcode/data/licenses/nvidia-1-way-noncommercial.LICENSE new file mode 100644 index 0000000000..aab61f2ec4 --- /dev/null +++ b/src/licensedcode/data/licenses/nvidia-1-way-noncommercial.LICENSE @@ -0,0 +1,45 @@ +--- +key: nvidia-1-way-noncommercial +short_name: NVIDIA OneWay Noncommercial License +name: NVIDIA OneWay Noncommercial License +category: Non-Commercial +owner: NVIDIA +homepage_url: https://huggingface.co/nvidia/LuxDiT/blob/main/LICENSE.md +spdx_license_key: LicenseRef-scancode-nvidia-1-way-noncommercial +--- + +# NVIDIA OneWay Noncommercial License + +## 1. Definitions + +“Licensor” means any person or entity that distributes its Work. +“Work” means (a) the original work of authorship made available under this license, which may include software, documentation, or other files, and (b) any additions to or derivative works thereof that are made available under this license. +The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” have the meaning as provided under U.S. copyright law; provided, however, that for the purposes of this license, derivative works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work. +Works are “made available” under this license by including in or with the Work either (a) a copyright notice referencing the applicability of this license to the Work, or (b) a copy of this license. + +## 2. License Grant + +2.1 Copyright Grant. Subject to the terms and conditions of this license, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free, copyright license to use, reproduce, prepare derivative works of, publicly display, publicly perform, sublicense and distribute its Work and any resulting derivative works in any form. + +## 3. Limitations + +3.1 Redistribution. You may reproduce or distribute the Work only if (a) you do so under this license, (b) you include a complete copy of this license with your distribution, and (c) you retain without modification any copyright, patent, trademark, or attribution notices that are present in the Work. + +3.2 Derivative Works. You may specify that additional or different terms apply to the use, reproduction, and distribution of your derivative works of the Work (“Your Terms”) only if (a) Your Terms provide that the use limitation in Section 3.3 applies to your derivative works, and (b) you identify the specific derivative works that are subject to Your Terms. Notwithstanding Your Terms, this license (including the redistribution requirements in Section 3.1) will continue to apply to the Work itself. + +3.3 Use Limitation. The Work and any derivative works thereof only may be used or intended for use non-commercially. Notwithstanding the foregoing, NVIDIA Corporation and its affiliates may use the Work and any derivative works commercially. As used herein, “non-commercially” means for research or evaluation purposes only. + +3.4 Patent Claims. If you bring or threaten to bring a patent claim against any Licensor (including any claim, cross-claim or counterclaim in a lawsuit) to enforce any patents that you allege are infringed by any Work, then your rights under this license from such Licensor (including the grant in Section 2.1) will terminate immediately. + +3.5 Trademarks. This license does not grant any rights to use any Licensor’s or its affiliates’ names, logos, or trademarks, except as necessary to reproduce the notices described in this license. + +3.6 Termination. If you violate any term of this license, then your rights under this license (including the grant in Section 2.1) will terminate immediately. + +## 4. Disclaimer of Warranty. + +THE WORK IS PROVIDED “AS IS” WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER THIS LICENSE. + +## 5. Limitation of Liability. + +EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nvidia-isaac-ros-2021.LICENSE b/src/licensedcode/data/licenses/nvidia-isaac-ros-2021.LICENSE new file mode 100644 index 0000000000..cdeba4b279 --- /dev/null +++ b/src/licensedcode/data/licenses/nvidia-isaac-ros-2021.LICENSE @@ -0,0 +1,76 @@ +--- +key: nvidia-isaac-ros-2021 +short_name: NVIDIA Isaac Ros Software License 2021 +name: NVIDIA Isaac Ros Software License 2021 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://github.com/NVIDIA-ISAAC-ROS/isaac_ros_nitros/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-nvidia-isaac-ros-2021 +--- + +NVIDIA ISAAC ROS SOFTWARE LICENSE + +This license is a legal agreement between you and NVIDIA Corporation ("NVIDIA") and governs the use of the NVIDIA Isaac ROS software and materials provided hereunder (“SOFTWARE”). + +This license can be accepted only by an adult of legal age of majority in the country in which the SOFTWARE is used. + +If you are entering into this license on behalf of a company or other legal entity, you represent that you have the legal authority to bind the entity to this license, in which case “you” will mean the entity you represent. + +If you don’t have the required age or authority to accept this license, or if you don’t accept all the terms and conditions of this license, do not download, install or use the SOFTWARE. + +You agree to use the SOFTWARE only for purposes that are permitted by (a) this license, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions. + +1. LICENSE. Subject to the terms of this license, NVIDIA hereby grants you a non-exclusive, non-transferable license, without the right to sublicense (except as expressly provided in this license) to: +a. Install and use the SOFTWARE, +b. Modify and create derivative works of sample or reference source code delivered in the SOFTWARE, and +c. Distribute any part of the SOFTWARE (i) as incorporated into a software application that has material additional functionality beyond the included portions of the SOFTWARE, or (ii) unmodified in binary format, in each case subject to the distribution requirements indicated in this license. + +2. DISTRIBUTION REQUIREMENTS. These are the distribution requirements for you to exercise the distribution grant above: + a. The following notice shall be included in modifications and derivative works of source code distributed: “This software contains source code provided by NVIDIA Corporation.” + b. You agree to distribute the SOFTWARE subject to the terms at least as protective as the terms of this license, including (without limitation) terms relating to the license grant, license restrictions and protection of NVIDIA’s intellectual property rights. Additionally, you agree that you will protect the privacy, security and legal rights of your application users. + c. You agree to notify NVIDIA in writing of any known or suspected distribution or use of the SOFTWARE not in compliance with the requirements of this license, and to enforce the terms of your agreements with respect to the distributed portions of the SOFTWARE. +3. AUTHORIZED USERS. You may allow employees and contractors of your entity or of your subsidiary(ies) to access and use the SOFTWARE from your secure network to perform work on your behalf. If you are an academic institution you may allow users enrolled or employed by the academic institution to access and use the SOFTWARE from your secure network. You are responsible for the compliance with the terms of this license by your authorized users. + +4. LIMITATIONS. Your license to use the SOFTWARE is restricted as follows: + a. The SOFTWARE is licensed for you to develop applications only for their use in systems with NVIDIA GPUs. + b. You may not reverse engineer, decompile or disassemble, or remove copyright or other proprietary notices from any portion of the SOFTWARE or copies of the SOFTWARE. + c. Except as expressly stated above in this license, you may not sell, rent, sublicense, transfer, distribute, modify, or create derivative works of any portion of the SOFTWARE. + d. Unless you have an agreement with NVIDIA for this purpose, you may not indicate that an application created with the SOFTWARE is sponsored or endorsed by NVIDIA. + e. You may not bypass, disable, or circumvent any technical limitation, encryption, security, digital rights management or authentication mechanism in the SOFTWARE. + f. You may not use the SOFTWARE in any manner that would cause it to become subject to an open source software license. As examples, licenses that require as a condition of use, modification, and/or distribution that the SOFTWARE be: (i) disclosed or distributed in source code form; (ii) licensed for the purpose of making derivative works; or (iii) redistributable at no charge. + g. You acknowledge that the SOFTWARE as delivered is not tested or certified by NVIDIA for use in connection with the design, construction, maintenance, and/or operation of any system where the use or failure of such system could result in a situation that threatens the safety of human life or results in catastrophic damages (each, a "Critical Application"). Examples of Critical Applications include use in avionics, navigation, autonomous vehicle applications, ai solutions for automotive products, military, medical, life support or other life critical applications. NVIDIA shall not be liable to you or any third party, in whole or in part, for any claims or damages arising from such uses. You are solely responsible for ensuring that any product or service developed with the SOFTWARE as a whole includes sufficient features to comply with all applicable legal and regulatory standards and requirements. + h. You agree to defend, indemnify and hold harmless NVIDIA and its affiliates, and their respective employees, contractors, agents, officers and directors, from and against any and all claims, damages, obligations, losses, liabilities, costs or debt, fines, restitutions and expenses (including but not limited to attorney’s fees and costs incident to establishing the right of indemnification) arising out of or related to your use of goods and/or services that include or utilize the SOFTWARE, or for use of the SOFTWARE outside of the scope of this license or not in compliance with its terms. + +5. UPDATES. NVIDIA may, at its option, make available patches, workarounds or other updates to this SOFTWARE. Unless the updates are provided with their separate governing terms, they are deemed part of the SOFTWARE licensed to you as provided in this license. + +6. PRE-RELEASE VERSIONS. SOFTWARE versions identified as alpha, beta, preview, early access or otherwise as pre-release may not be fully functional, may contain errors or design flaws, and may have reduced or different security, privacy, availability, and reliability standards relative to commercial versions of NVIDIA software and materials. You may use a pre-release SOFTWARE version at your own risk, understanding that these versions are not intended for use in production or business-critical systems. + +7. COMPONENTS UNDER OTHER LICENSES. The SOFTWARE may include NVIDIA or third-party components with separate legal notices or terms as may be described in proprietary notices accompanying the SOFTWARE, such as components governed by open source software licenses. If and to the extent there is a conflict between the terms in this license and the license terms associated with a component, the license terms associated with the component controls only to the extent necessary to resolve the conflict. + +8. OWNERSHIP. + +8.1 NVIDIA reserves all rights, title and interest in and to the SOFTWARE not expressly granted to you under this license. NVIDIA and its suppliers hold all rights, title and interest in and to the SOFTWARE, including their respective intellectual property rights. The SOFTWARE is copyrighted and protected by the laws of the United States and other countries, and international treaty provisions. + +8.2 Subject to the rights of NVIDIA and its suppliers in the SOFTWARE, you hold all rights, title and interest in and to your applications and your derivative works of the sample or reference source code delivered in the SOFTWARE including their respective intellectual property rights. With respect to source code samples or reference source code licensed to you, NVIDIA and its affiliates are free to continue independently developing source code samples and you covenant not to sue NVIDIA, its affiliates or their licensees with respect to later versions of NVIDIA released source code. + +9. FEEDBACK. You may, but are not obligated to, provide to NVIDIA Feedback. “Feedback” means suggestions, fixes, modifications, feature requests or other feedback regarding the SOFTWARE. Feedback, even if designated as confidential by you, shall not create any confidentiality obligation for NVIDIA. NVIDIA and its designees have a perpetual, non-exclusive, worldwide, irrevocable license to use, reproduce, publicly display, modify, create derivative works of, license, sublicense, and otherwise distribute and exploit Feedback as NVIDIA sees fit without payment and without obligation or restriction of any kind on account of intellectual property rights or otherwise. + +10. NO WARRANTIES. THE SOFTWARE IS PROVIDED AS-IS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW NVIDIA AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. NVIDIA DOES NOT WARRANT THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT ALL ERRORS WILL BE CORRECTED. + +11. LIMITATIONS OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW NVIDIA AND ITS AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR FOR ANY LOST PROFITS, PROJECT DELAYS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS LICENSE OR THE USE OR PERFORMANCE OF THE SOFTWARE, WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF LIABILITY, EVEN IF NVIDIA HAS PREVIOUSLY BEEN ADVISED OF, OR COULD REASONABLY HAVE FORESEEN, THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS LICENSE EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS LIMIT. + +12. TERMINATION. Your rights under this license will terminate automatically without notice from NVIDIA if you fail to comply with any term and condition of this license or if you commence or participate in any legal proceeding against NVIDIA with respect to the SOFTWARE. NVIDIA may terminate this license with advance written notice to you, if NVIDIA decides to no longer provide the SOFTWARE in a country or, in NVIDIA’s sole discretion, the continued use of it is no longer commercially viable. Upon any termination of this license, you agree to promptly discontinue use of the SOFTWARE and destroy all copies in your possession or control. Your prior distributions in accordance with this license are not affected by the termination of this license. All provisions of this license will survive termination, except for the license granted to you. + +13. APPLICABLE LAW. This license will be governed in all respects by the laws of the United States and of the State of Delaware, without regard to the conflicts of laws principles. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. You agree to all terms of this license in the English language. The state or federal courts residing in Santa Clara County, California shall have exclusive jurisdiction over any dispute or claim arising out of this license. Notwithstanding this, you agree that NVIDIA shall still be allowed to apply for injunctive remedies or urgent legal relief in any jurisdiction. + +14. NO ASSIGNMENT. This license and your rights and obligations thereunder may not be assigned by you by any means or operation of law without NVIDIA’s permission. Any attempted assignment not approved by NVIDIA in writing shall be void and of no effect. NVIDIA may assign, delegate or transfer this license and its rights and obligations, and if to a non-affiliate you will be notified. + +15. EXPORT. The SOFTWARE is subject to United States export laws and regulations. You agree to comply with all applicable U.S. and international export laws, including the Export Administration Regulations (EAR) administered by the U.S. Department of Commerce and economic sanctions administered by the U.S. Department of Treasury’s Office of Foreign Assets Control (OFAC). These laws include restrictions on destinations, end-users and end-use. By accepting this license, you confirm that you are not currently residing in a country or region currently embargoed by the U.S. and that you are not otherwise prohibited from receiving the SOFTWARE. + +16. GOVERNMENT USE. The SOFTWARE is, and shall be treated as being, “Commercial Items” as that term is defined at 48 CFR § 2.101, consisting of “commercial computer software” and “commercial computer software documentation”, respectively, as such terms are used in, respectively, 48 CFR § 12.212 and 48 CFR §§ 227.7202 & 252.227-7014(a)(1). Use, duplication or disclosure by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions in this license pursuant to 48 CFR § 12.212 or 48 CFR § 227.7202. In no event shall the US Government user acquire rights in the SOFTWARE beyond those specified in 48 C.F.R. 52.227-19(b)(1)-(2). + +17. NOTICES. Please direct your legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California 95051, United States of America, Attention: Legal Department. + +18. ENTIRE AGREEMENT. This license is the final, complete and exclusive agreement between the parties relating to the subject matter of this license and supersedes all prior or contemporaneous understandings and agreements relating to this subject matter, whether oral or written. If any court of competent jurisdiction determines that any provision of this license is illegal, invalid or unenforceable, the remaining provisions will remain in full force and effect. Any amendment or waiver under this license shall be in writing and signed by representatives of both parties. + +(v. November 17, 2021) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nvidia-source-code-nc-2024.LICENSE b/src/licensedcode/data/licenses/nvidia-source-code-nc-2024.LICENSE new file mode 100644 index 0000000000..3c53d94001 --- /dev/null +++ b/src/licensedcode/data/licenses/nvidia-source-code-nc-2024.LICENSE @@ -0,0 +1,71 @@ +--- +key: nvidia-source-code-nc-2024 +short_name: NVIDIA Source Code License NC 2024 +name: NVIDIA Source Code License NC 2024 +category: Non-Commercial +owner: NVIDIA +homepage_url: https://huggingface.co/nvidia/MambaVision-L2-1K/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-nvidia-source-code-nc-2024 +--- + +Nvidia Source Code License-NC + +1. Definitions + +“Licensor” means any person or entity that distributes its Work. + +“Work” means (a) the original work of authorship made available under this license, which may include software, documentation, +or other files, and (b) any additions to or derivative works thereof that are made available under this license. + +The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” have the meaning as provided under U.S. +copyright law; provided, however, that for the purposes of this license, derivative works shall not include works that +remain separable from, or merely link (or bind by name) to the interfaces of, the Work. + +Works are “made available” under this license by including in or with the Work either (a) a copyright notice referencing +the applicability of this license to the Work, or (b) a copy of this license. + +2. License Grant + +2.1 Copyright Grant. Subject to the terms and conditions of this license, each Licensor grants to you a perpetual, +worldwide, non-exclusive, royalty-free, copyright license to use, reproduce, prepare derivative works of, publicly +display, publicly perform, sublicense and distribute its Work and any resulting derivative works in any form. + +3. Limitations + +3.1 Redistribution. You may reproduce or distribute the Work only if (a) you do so under this license, (b) you include a +complete copy of this license with your distribution, and (c) you retain without modification any copyright, patent, +trademark, or attribution notices that are present in the Work. + +3.2 Derivative Works. You may specify that additional or different terms apply to the use, reproduction, and distribution +of your derivative works of the Work (“Your Terms”) only if (a) Your Terms provide that the use limitation in Section 3.3 +applies to your derivative works, and (b) you identify the specific derivative works that are subject to Your Terms. +Notwithstanding Your Terms, this license (including the redistribution requirements in Section 3.1) will continue to apply +to the Work itself. + +3.3 Use Limitation. The Work and any derivative works thereof only may be used or intended for use non-commercially. +Notwithstanding the foregoing, NVIDIA Corporation and its affiliates may use the Work and any derivative works commercially. +As used herein, “non-commercially” means for research or evaluation purposes only. + +3.4 Patent Claims. If you bring or threaten to bring a patent claim against any Licensor (including any claim, cross-claim +or counterclaim in a lawsuit) to enforce any patents that you allege are infringed by any Work, then your rights under +this license from such Licensor (including the grant in Section 2.1) will terminate immediately. + +3.5 Trademarks. This license does not grant any rights to use any Licensor’s or its affiliates’ names, logos, or trademarks, +except as necessary to reproduce the notices described in this license. + +3.6 Termination. If you violate any term of this license, then your rights under this license (including the grant in Section 2.1) +will terminate immediately. + +4. Disclaimer of Warranty. + +THE WORK IS PROVIDED “AS IS” WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES +OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING +ANY ACTIVITIES UNDER THIS LICENSE. + +5. Limitation of Liability. + +EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, +OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, +BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER DAMAGES OR LOSSES), EVEN IF THE LICENSOR +HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ocl-v1.LICENSE b/src/licensedcode/data/licenses/ocl-v1.LICENSE new file mode 100644 index 0000000000..26e414daab --- /dev/null +++ b/src/licensedcode/data/licenses/ocl-v1.LICENSE @@ -0,0 +1,68 @@ +--- +key: ocl-v1 +short_name: Open Community License (OCL v1) +name: Open Community License (OCL v1) +category: Non-Commercial +owner: OpenCommunityLIcence +homepage_url: https://github.com/OpenCommunityLicence/OpenCommunityLicence +spdx_license_key: LicenseRef-scancode-ocl-v1 +other_urls: + - https://all3dp.com/4/prusa-releases-core-one-designs-under-new-license-free-to-tinker-dangerous-to-sell/ +--- + +Open Community License (OCL v1) + +OCL pertains to intellectual property applied in licensor‘s products +and/or its components (hardware and software) which is distributed +under such, including copyright, design, and patent. + +All licensors‘s copyrights, designs, and patents as far as relevant to +products and/or its components under OCL are community open, as the aim +of OCL is to allow open access to community including the essential +right, the right-to-repair, by giving users complete freedom of use, +copy, modification, and hack, while promoting a fair competition by +securing intellectual property rights to prevent vendor locking and +patent trolling. + +NOTE that any part of the product and/or its component provided under a +license incompatible with OCL remains unaffected by OCL. + +As an non-commercial END USER + +YOU MAY use, copy, modify, hack the product and/or its components as +you wish! + +YOU SHOULD support the 3D printing community by sharing your creations +and modifications. + +If you distribute your creations, modifications, or any such derivatives +YOU MUST do so under OCL or any non-commercial, share-alike license +allowing other community members to do everything that YOU MAY. This +does not concern your creations and modifications that are not derived +from the product and/or its components. + +As a commercial BUSINESS USER + +YOU MAY use the product and modify it to your use case solely for your +internal production use. + +YOU MUST NOT modify the product and/or its components for any commercial +purpose other than your internal production use. + +YOU MUST NOT copy or in any way replicate the product and/or its +components for any commercial purpose excluding your internal +right-to-repair without obtaining a separate business license or +repair license. + +------------------------------------------------------------------------------- + +Licensor‘s products and/or its components under OCL MUST NOT BE subject +to any systematic or automated text and/or data mining or other text +and/or data collection activity in relation to the product without +explicit permission. + +To promote ease of understanding of OCL Licensor keeps and updates a +database of products and/or its components licensed under OCL and good +practice at [link to the database]. + +For practical examples of how this license applies, see the examples/ directory. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pcgexelementszonegraph-2026.LICENSE b/src/licensedcode/data/licenses/pcgexelementszonegraph-2026.LICENSE new file mode 100644 index 0000000000..3aeb2ac6f1 --- /dev/null +++ b/src/licensedcode/data/licenses/pcgexelementszonegraph-2026.LICENSE @@ -0,0 +1,97 @@ +--- +key: pcgexelementszonegraph-2026 +short_name: PCGExElementsZoneGraph SAL 2026 +name: PCGExElementsZoneGraph Source-Available License 2026 +category: Non-Commercial +owner: PCGEx +homepage_url: https://github.com/PCGEx/PCGExElementsZoneGraph/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-pcgexelementszonegraph-2026 +ignorable_copyrights: + - Copyright (c) 2026 Timothe Lapetite +ignorable_holders: + - Timothe Lapetite +--- + +PCGExElementsZoneGraph - Source-Available License + +Copyright (c) 2026 Timothé Lapetite + +TERMS AND CONDITIONS + +1. DEFINITIONS + + "Software" refers to PCGExElementsZoneGraph and all associated source code, + documentation, and assets contained in this repository. + + "Personal Use" means use by an individual person for non-commercial purposes, + including learning, experimentation, hobby projects, and personal game + development that does not generate revenue. + + "Studio/Professional Use" means any use by a company, studio, organization, + or individual for commercial purposes, including but not limited to: + development of commercial products, use within a revenue-generating entity, + or integration into products or services intended for sale or commercial + distribution. + +2. SOURCE AVAILABILITY + + The source code of this Software is made publicly available for transparency, + review, and Personal Use. Public availability of the source code does NOT + constitute a grant of unrestricted rights. This is NOT an open-source license. + +3. PERSONAL USE + + Permission is hereby granted, free of charge, to any individual obtaining a + copy of this Software, to use, copy, and modify the Software for Personal Use, + subject to the following conditions: + + a. This license notice shall be included in all copies or substantial + portions of the Software. + + b. You may not sublicense, sell, or redistribute the Software or derivative + works for commercial purposes. + + c. You may not remove or alter any copyright notices, license texts, or + attribution information contained in the Software. + +4. STUDIO / PROFESSIONAL USE + + Studio and professional use of this Software requires a paid license, + available through the FAB marketplace (fab.com) under the applicable + Professional pricing tier. + + By acquiring the Software through FAB, your use is governed by the + Fab End User License Agreement (EULA) in addition to the terms stated herein. + +5. CUSTOM LICENSING + + Alternative licensing arrangements are available and are not bound to the + FAB platform. If you require a license that differs from the Personal or + FAB Professional terms described above — including but not limited to + enterprise agreements, OEM licensing, or educational institution licenses — + please contact the author directly to discuss terms. + +6. CONTRIBUTIONS + + By submitting a contribution (pull request, patch, or any other form) to this + repository, you agree that your contribution is provided under the same terms + as this license, and you grant the copyright holder a perpetual, irrevocable, + worldwide, royalty-free right to use, modify, and redistribute your + contribution as part of the Software under any license the copyright holder + sees fit. + +7. NO WARRANTY + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +8. TERMINATION + + This license is automatically terminated if you fail to comply with any of its + terms. Upon termination, you must cease all use of the Software and destroy + all copies in your possession. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pi-lab-1.0.LICENSE b/src/licensedcode/data/licenses/pi-lab-1.0.LICENSE new file mode 100644 index 0000000000..f1f1e3c283 --- /dev/null +++ b/src/licensedcode/data/licenses/pi-lab-1.0.LICENSE @@ -0,0 +1,41 @@ +--- +key: pi-lab-1.0 +short_name: Pi-Lab License 1.0 +name: Pi-Lab License 1.0 +category: Non-Commercial +owner: Pi-Lab +homepage_url: https://huggingface.co/datasets/acceptee/NKUSR8K/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-pi-lab-1.0 +--- + +Pi-Lab License 1.0 + +Redistribution and use for non-commercial purpose in source and +binary forms, with or without modification, are permitted provided +that the following conditions are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +In the event that redistribution and/or use for commercial purpose in +source or binary forms, with or without modification is required, +please contact the contributor(s) of the work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/poke-wiggle-proprietary-2026.LICENSE b/src/licensedcode/data/licenses/poke-wiggle-proprietary-2026.LICENSE new file mode 100644 index 0000000000..af1469da49 --- /dev/null +++ b/src/licensedcode/data/licenses/poke-wiggle-proprietary-2026.LICENSE @@ -0,0 +1,55 @@ +--- +key: poke-wiggle-proprietary-2026 +short_name: Poke & Wiggle Proprietary License 2026 +name: Poke & Wiggle Proprietary License 2026 +category: Commercial +owner: Poke & Wiggle +homepage_url: https://huggingface.co/datasets/pokeandwiggle/export_117/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-poke-wiggle-proprietary-2026 +ignorable_copyrights: + - Copyright (c) 2026 Poke & Wiggle GmbH. +ignorable_holders: + - Poke & Wiggle GmbH. +ignorable_emails: + - licensing@pokeandwiggle.com +--- + +Poke & Wiggle Proprietary License +-------------------------------- + +Copyright (c) 2026 Poke & Wiggle GmbH. +All rights reserved. + +NO LICENSE GRANTED + +No license or other rights are granted under this agreement. Any use of the +materials in this repository is strictly prohibited unless and until a separate +written agreement has been executed with Poke & Wiggle GmbH. + +PROHIBITED USES + +Without limitation, the following actions are prohibited unless expressly +authorized in a signed agreement with Poke & Wiggle GmbH: + +- Accessing or using the materials for any purpose +- Downloading, copying, or storing any part of the materials +- Training, fine-tuning, or evaluating any models using the materials +- Creating derivative works +- Distributing, sublicensing, or making the materials available to third parties +- Using the materials for commercial or non-commercial purposes + +NO IMPLIED RIGHTS + +The availability of the materials in this repository does not grant any rights +by implication, estoppel, or otherwise. + +CONTACT + +To obtain a commercial or other license, please contact: + +licensing@pokeandwiggle.com + +ENFORCEMENT + +Any unauthorized use may violate applicable laws and will be enforced to the +maximum extent permitted. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/resume-summarization-2025.LICENSE b/src/licensedcode/data/licenses/resume-summarization-2025.LICENSE new file mode 100644 index 0000000000..692ab550bf --- /dev/null +++ b/src/licensedcode/data/licenses/resume-summarization-2025.LICENSE @@ -0,0 +1,19 @@ +--- +key: resume-summarization-2025 +short_name: resume-summarization-dataset license 2025 +name: resume-summarization-dataset license 2025 +category: Non-Commercial +owner: Juan Ignacio Beiroa +homepage_url: https://huggingface.co/datasets/jbeiroa/resume-summarization-dataset/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-resume-summarization-2025 +--- + +## License + +This dataset aggregates content from multiple public sources. + +- Portions of the data are licensed under CC0 1.0 and MIT (see below). +- Other portions are from publicly accessible datasets with no explicit license; as such, redistribution may be restricted. +- Therefore, this dataset is made available **for research and non-commercial use only**. + +If you are the owner of any portion of this dataset and wish for it to be removed or credited differently, please contact the maintainers. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rexgradient-nc.LICENSE b/src/licensedcode/data/licenses/rexgradient-nc.LICENSE new file mode 100644 index 0000000000..fab37d4426 --- /dev/null +++ b/src/licensedcode/data/licenses/rexgradient-nc.LICENSE @@ -0,0 +1,94 @@ +--- +key: rexgradient-nc +short_name: ReXGradient-160K Non-Commercial Data Access +name: ReXGradient-160K Non-Commercial Data Access and Use Agreement +category: Non-Commercial +owner: Rajpurkar Lab +homepage_url: https://huggingface.co/datasets/rajpurkarlab/ReXGradient-160K/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-rexgradient-nc +ignorable_emails: + - MAIDA_Support@hms.harvard.edu +--- + +## ReXGradient-160K Non-Commercial Data Access and Use Agreement + +By accessing the ReXGradient-160K Data Repository, as hosted by President and Fellows of Harvard College on behalf of Harvard Medical School ("Harvard"), you ("YOU" or "YOUR") agree to the following terms of this agreement ("Agreement"): + +1. Acceptance of this Agreement + +By downloading or otherwise accessing the data available from the ReXGradient-160K Data Repository ("Data"), which Data is available for non-commercial research and non-clinical purposes only, YOU (i) accept and agree to the terms of this Agreement, and (ii) further acknowledge that YOU may have an obligation to confirm that YOUR use of the Data under these terms is consistent with YOUR obligations to YOUR institution. + +2. Attribution + +Data made available via the ReXGradient-160K Data Repository was provided to Harvard by Gradient Health. YOU agree to recognize (i) the ReXGradient-160K Data Repository and (ii) the contribution of Gradient Health as the source of the Data in all written, visual, or oral public disclosures concerning YOUR research using the Data, as appropriate in accordance with scholarly standards. + +3. Use of the Data + +Use of the Data is subject to YOUR compliance with all of the terms and conditions of this Agreement. No commercial use of the Data is permitted. + +Representations and Covenants: + +A. YOU represent and covenant that: + +1. YOU are not bound by any pre-existing legal obligations or other applicable laws that prevent YOU from downloading or using the Data; +2. YOU will access and use the Data in compliance with all applicable laws, rules, and regulations, as well as all professional and ethical standards applicable to scientific research and YOUR research project, including without limitation, all applicable requirements pertaining to human subjects research and animal research; +3. YOU agree not to use the Data in connection with the diagnosis or treatment of human subjects. +4. YOU agree to establish appropriate administrative, technical, and physical safeguards to prevent unauthorized use of or access to the Data and comply with any other requirements relating to safeguarding of the Data that the ReXGradient-160K Data Repository may require from time to time; +5. YOU will only use and download that portion of the Data that is necessary for use in YOUR research project; downloading of the entire ReXGradient-160K Data Repository or portions beyond what is needed for YOUR research project is strictly prohibited. YOU will only share the Data with those authorized employees, fellows, students and agents who have a need to access such Data for purposes of working on YOUR research project, and whose obligations of use are consistent with the terms of this Agreement. +6. YOU will retain control over the Data YOU access and download. +7. YOU will not, and will not permit any third party to, at any time, directly or indirectly: (i) disclose, distribute, release, sublicense, sell, rent, lease, loan, or otherwise grant access to the Data to any third party, except other users expressly authorized by Harvard to access and use the Data; (ii) publish or display any compilation or directory of the Data; or (iii) knowingly use the Data in any manner or for any purpose that infringes, misappropriates, or otherwise violates any intellectual property right or other right of any person, or that violates any applicable law. +8. YOU will use the Data only for scientific research purposes and shall not use the Data for any commercial or clinical activities; +9. YOU will regularly check the ReXGradient-160K Data Repository for any updates to Data pertinent to YOUR research project, and will only use the updated version of such Data, and will promptly destroy all outdated Data in YOUR possession; and +10. YOU shall not use the Data except as authorized under this Agreement. + +B. YOU further covenant that YOU will not: + +1. obtain information from the Data that results in YOU or any third party(ies) directly or indirectly identifying any research subjects with the aid of other information acquired elsewhere; +2. produce connections or links among the information included in Harvard's datasets (including information in the Data), or between the information included in Harvard's datasets (including information in the Data) and other third-party information that could be used to identify any individuals or organizations, not limited to research subjects; +3. extract information from the Data that could aid YOU in gaining knowledge about or obtaining any means of contacting any subjects already known to YOU; or +4. use the Data, either alone or in concert with any other information, to make any effort to identify or contact individuals who are or may be the sources of Data. + +4. Disclaimer +THE DATA IS PROVIDED "AS IS" AND "AS AVAILABLE" AND WITH ALL FAULTS AND DEFECTS. HARVARD MAKES NO, AND HEREBY DISCLAIMS ALL, REPRESENTATIONS AND WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR THAT THE USE OF THE DATA WILL NOT INFRINGE OR VIOLATE ANY PATENT, COPYRIGHT, TRADEMARK OR OTHER THIRD PARTY RIGHT, AND ANY WARRANTIES IMPLIED BY ANY COURSE OF PERFORMANCE OR DEALING. + +WITHOUT LIMITING THE FOREGOING, HARVARD MAKES NO WARRANTY AS TO THE ACCURACY, COMPLETENESS, RELIABILITY, ORIGINALITY, AVAILABILITY, OR SECURITY OF THE DATA, THAT THE DATA WILL MEET YOUR REQUIREMENTS OR PROVIDE PARTICULAR BENEFITS, OR THAT THE DATA AND ANY RELATED FILES WILL BE FREE FROM DEFECTS, ERRORS, VIRUSES OR OTHER HARMFUL COMPONENTS. YOUR USE OF THE DATA IS SOLELY AT YOUR OWN RISK. + +5. Limitation of Liability + +IN NO EVENT SHALL HARVARD BE LIABLE UNDER CONTRACT, TORT, STRICT LIABILITY, NEGLIGENCE OR ANY OTHER LEGAL THEORY WITH RESPECT TO THE DATA (I) FOR ANY DIRECT DAMAGES, OR (II) FOR ANY LOST PROFITS OR SPECIAL, INDIRECT, INCIDENTAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES OF ANY KIND WHATSOEVER. + +6. Liability + +Except to the extent prohibited by law, YOU assume all liability for damages which may arise from YOUR use, storage, download, disclosure, or disposal of the Data. Harvard will not be liable to YOU or any other person or entity for any loss, claim, liability, or demand made by YOU, or made against YOU by any other party, or otherwise relating to or arising in connection with the use of the Data by YOU, except to the extent permitted by law when caused by the gross negligence or willful misconduct of Harvard. No indemnification for any loss, claim, damage, or liability is intended or provided by either party under this Agreement. + +7. Governing Law; Venue + +This Agreement shall be governed by and interpreted in accordance with the laws of the Commonwealth of Massachusetts (excluding the conflict of laws and rules thereof). All disputes under this Agreement will be resolved in the applicable state or federal courts of Massachusetts. YOU consent to the jurisdiction of such courts and waive any jurisdictional or venue defenses otherwise available. + +8. Integration and Severability + +This Agreement represents the entire agreement between YOU and Harvard with respect to the subject matter hereof, and supersedes all prior or contemporaneous representations or understandings (whether oral, written or electronic) between YOU and Harvard with respect to the subject matter hereof. If any provision of this Agreement is or becomes invalid or is ruled invalid by any court of competent jurisdiction or is deemed unenforceable, it is the intention of the parties that the remainder of this Agreement shall not be affected. + +9. Reporting Requirement + +Should YOU (i) inadvertently receive identifiable information or otherwise identify a subject, or (ii) become aware of any use or disclosure of the Data not provided for or permitted by this Agreement, YOU shall immediately notify Harvard via email to [MAIDA_Support@hms.harvard.edu](mailto:MAIDA_Support@hms.harvard.edu) with **"ReXGradient-160K" in the subject line**, and follow Harvard's reasonable written instructions, which may include return or destruction of Data. + +10. Ownership +Harvard shall retain ownership of any rights it may have in the Data, and YOU do not obtain any rights in the Data other than as set forth in this Agreement. + +11. Use of Harvard Name +Except as expressly provided in this Agreement, YOU shall not use or register Harvard's name (alone or as part of another name) or any logos, seals, insignia or other words, names, symbols or devices that identify Harvard, including any Harvard school, unit, division or affiliate ("Harvard Names") for any purpose in connection with this Agreement except with the prior written approval of, and in accordance with restrictions required by, Harvard. The foregoing notwithstanding, YOU may respond to legitimate business inquiries with factual information regarding the existence and purpose of the relationship that is the subject of this Agreement, without written permission from Harvard. Without limiting the foregoing, YOU shall cease all use of Harvard Names permitted under this Agreement on the termination or expiration of this Agreement except as otherwise approved by Harvard. + +Except as expressly provided in Section II. Attribution of this Agreement, YOU shall not use Gradient Health's name, trademarks, or other logos in any publicity, advertising, or news release without the prior written approval of an authorized representative of Gradient Health. + +12. Term and Termination +YOU may use the Data for the duration of YOUR research project as allowed under the permitted uses in Article III of this Agreement. Either party may terminate this agreement for any reason at any time, however, YOUR obligations that by their nature are intended to persist following termination shall remain in effect even after termination. Upon termination, YOU shall immediately cease use of the Data and destroy Data in YOUR possession and, if requested by Harvard, certify to Harvard as to its destruction. + +Harvard may limit, suspend or terminate YOUR access to Data at any time if Harvard believes YOU have violated the terms of this Agreement or otherwise acted negligently with respect to the Data or that continued use of or access to the Data by YOU presents significant risk to the individuals who are the subjects in the Data. + +13. Miscellaneous +YOU may not assign, transfer or delegate any of YOUR rights and obligations hereunder without consent of the other party. No agency, partnership, joint venture, or employment relationship is created as a result of the Agreement. Neither Party shall have authority to make any statements, representations or commitments of any kind on behalf of the other Party, or to take any action which shall be binding on the other Party. + +No modification or waiver of any provision of this Agreement shall be valid unless in writing and executed by duly-authorized representatives of both parties. A failure by one of the parties to this Agreement to assert its rights hereunder shall not be deemed a waiver of such rights. No such failure or waiver in writing by any one of the parties hereto with respect to any rights shall extend to or affect any subsequent breach or impair any right consequent thereon. + +ReXGradient-160K Non-Commercial Data Access and Use Agreement v.1, April 7, 2025 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/roofsuit-2025.LICENSE b/src/licensedcode/data/licenses/roofsuit-2025.LICENSE new file mode 100644 index 0000000000..a9c62bc477 --- /dev/null +++ b/src/licensedcode/data/licenses/roofsuit-2025.LICENSE @@ -0,0 +1,37 @@ +--- +key: roofsuit-2025 +short_name: Roofsuit License 2025 +name: Roofsuit License 2025 +category: Non-Commercial +owner: Elementum Publishing +homepage_url: https://huggingface.co/datasets/ElementumPublishing/Roofsuit/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-roofsuit-2025 +ignorable_copyrights: + - Copyright (c) 2025 Elementum Publishing +ignorable_holders: + - Elementum Publishing +ignorable_emails: + - elementum_publishing@proton.me +--- + +White-Label GTP Process Framework – Demo Dataset + +Copyright (c) 2025 Elementum Publishing + +--------------------------------------------------------------- +ENGLISH VERSION + +This demo dataset is provided for evaluation, research, and educational purposes only. +- Commercial use, resale, redistribution, or integration in other products is NOT permitted without a separate, written license agreement. +- For commercial licensing, custom integration, or exclusive/full access, please contact: elementum_publishing@proton.me + +All rights reserved. + +--------------------------------------------------------------- +DEUTSCHE VERSION + +Dieses Demo-Dataset darf ausschließlich für Evaluierung, Forschung und Bildungszwecke verwendet werden. +- Kommerzielle Nutzung, Weiterverkauf, Verbreitung oder Integration in andere Produkte ist NICHT gestattet ohne separate, schriftliche Lizenzvereinbarung. +- Für kommerzielle Lizenzen, individuelle Integrationen oder exklusiven Zugriff kontaktieren Sie bitte: elementum_publishing@proton.me + +Alle Rechte vorbehalten. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rosetta-software-nc-2026.LICENSE b/src/licensedcode/data/licenses/rosetta-software-nc-2026.LICENSE new file mode 100644 index 0000000000..78644dd256 --- /dev/null +++ b/src/licensedcode/data/licenses/rosetta-software-nc-2026.LICENSE @@ -0,0 +1,61 @@ +--- +key: rosetta-software-nc-2026 +short_name: Rosetta Software Non-Commercial License 2026 +name: Rosetta Software Non-Commercial License Agreement 2026 +category: Non-Commercial +owner: RosettaCommons +homepage_url: https://huggingface.co/datasets/RosettaCommons/ProteinMPNN/blob/main/LICENSE.md +spdx_license_key: LicenseRef-scancode-rosetta-software-nc-2026 +standard_notice: | + Rosetta Software + ================ + 0. Preamble + -------------- + _This preamble is explanatory in nature, and is not part of the license + agreement._ + a. While the Rosetta source code is published on GitHub, it is not "Open + Source" (according to the OSI definition). Use of Rosetta is governed by + the license agreement -- either the one below or a separate commercial + agreement obtained through University of Washington CoMotion) + b. Use for commercial purposes is not permitted under the following + license. To obtain a commercial/for-profit license (or for questions about + whether your use is considered commercial), please contact University of + Washington CoMotion (license@uw.edu). If you and your organization have a + commercial license or an Institution Participation Agreement for Rosetta + from UW CoMotion, the terms of that license supersede the ones below. + c. All forks of the Rosetta code must maintain the current licensing + restrictions. + d. Modifications and improvements to the Rosetta code are encouraged. + Please see CONTRIBUTING.md for more details. +ignorable_urls: + - http://www.rosettacommons.org/ +ignorable_emails: + - license@uw.edu +--- + +Rosetta Software Non-Commercial License Agreement +-------------------------- + +The Rosetta software ("Software") has been developed by the contributing researchers and institutions of the Rosetta Commons ("Developers") and made available through the University of Washington ("UW") for noncommercial, non-profit use. For more information about the Rosetta Commons, please see www.rosettacommons.org. If you wish to use the Software for any commercial purposes, including fee-based service projects, you will need to execute a separate licensing agreement with the UW and pay a fee. In that case, please contact: license@uw.edu. + +The Software was developed through support of a variety of funding sources, including the National Institutes of Health, Human Frontier Science Program Grant, National Science Foundation, Office of Naval Research, Packard Foundation, the Damon Runyon Cancer Research Foundation, Jane Coffin Childs Foundation, Los Alamos National Lab, Alfred P. Sloan Foundation, European Research Council, Israel Science Foundation, Bill & Melinda Gates Foundation and the Howard Hughes Medical Institute (HHMI). + +“Non-Commercial User” means 1) employees of not-for-profit research institutions, government laboratories, and universities conducting research excluding (a) commercial service; or (b) contract research or services for a for profit company where the intellectual property resulting from such research or service is owned by the for-profit company , and 2) individuals excluding (a) any use by, for, or on behalf of an entity organized for profit; or (b) any use intended for or directed toward commercial advantage or monetary compensation. + +“Software” includes both source and executable copies of the Rosetta software as distributed by the Rosetta Commons. + +UW and the Developers grant Non-Commercial Users the rights to perform, display, reproduce and modify the Software solely for internal Non-Commercial purposes, on the following conditions: + +1. You shall not distribute the Software or any modifications to the Software. As an exception, you may fork official Rosetta Commons repositories and make modifications to the source code in such forks on the same version control platform on which those official repositories are hosted. + +2. You retain in Software and any modifications to Software, all copyright, trademark, or other notices pertaining to Software as provided by UW and Developers. + +3. If you institute litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Software or any part of the Software constitutes direct or contributory patent infringement, then any license granted to you herein shall terminate as of the date such litigation is filed. + +4. You acknowledge that the Developers, UW and its licensees may develop modifications to Software that may be substantially similar to your modifications of Software, and that the Developers, UW and its licensees shall not be constrained in any way by you in Developer's, UW's or its licensees' use or management of such modifications. You acknowledge the right of the Developers and UW to prepare and publish modifications to Software that may be substantially similar or functionally equivalent to your modifications and improvements, and if you obtain patent protection for any modification or improvement to Software you agree not to allege or enjoin infringement of your patent by the Developers, UW or by any of UW's licensees obtaining modifications or improvements to Software from the UW or the Developers. + +5. You agree to acknowledge the contribution of the Developers and the Software make to your research, and cite appropriate references about the Software in your publications (see CITING_ROSETTA.md). + +6. Any risk associated with using the Software is with you and/or your institution. Software is experimental in nature and is made available as a research courtesy "AS IS," without obligation by UW or Developers to provide accompanying services or support. + +7. UW AND THE DEVELOPERS EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES REGARDING THE SOFTWARE, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES PERTAINING TO NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE UW OR DEVELOPERS 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. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sat-uk-choral-ai-1.0.LICENSE b/src/licensedcode/data/licenses/sat-uk-choral-ai-1.0.LICENSE new file mode 100644 index 0000000000..d53e400364 --- /dev/null +++ b/src/licensedcode/data/licenses/sat-uk-choral-ai-1.0.LICENSE @@ -0,0 +1,86 @@ +--- +key: sat-uk-choral-ai-1.0 +short_name: SAT UK Choral AI 1.0 +name: Serpentine Arts Technologies UK Choral AI Dataset Licence v1.0 +category: Non-Commercial +owner: Serpentine +homepage_url: https://huggingface.co/datasets/serpentineartstech/uk-choral-ai-preview-ogg/resolve/main/LICENSE.md +spdx_license_key: LicenseRef-scancode-sat-uk-choral-ai-1.0 +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en +ignorable_authors: + - The Serpentine Trust +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en +--- + +# Serpentine Arts Technologies UK Choral AI Dataset Licence (sat-uk-choral-ai-1.0) +Version 1.0, January 2025 + +## INTRODUCTION +This licence agreement (“Agreement”) sets out the terms upon which we licence you to use one or more datasets of choral recordings (“Datasets”), including in relation to the training of machine learning models. + +The Datasets that are subject to this Agreement, along with the period of the licence (“Licence Period”), shall be agreed by you and us in writing. + +For the purposes of the following provisions of this Agreement, “Datasets” shall include datasets that incorporate the Datasets in whole or part, whether created by you or a third party. Machine learning models trained in whole or in part using the Datasets are referred to in this Agreement as the “AI Models”. + + +## LICENCE +We grant to you a worldwide, non-exclusive, non-transferable and revocable licence, during the Licence Period, to: +- do the Permitted Acts; +- for the Permitted Purposes only; and +- subject to the Conditions and Prohibitions, + +as specified below. + +You may not sub-license these rights except to your technical services providers, for use in the course of their provision of service to you, or with our prior written consent and then, in each case, only for the Permitted Purposes and subject to the Conditions and Prohibitions. + +You must, in particular, ensure that the provisions of any technical services provider contracts and licences are consistent with this Agreement. + + +## PERMITTED ACTS +The “Permitted Acts” are: +- storing and copying the Datasets; +- combining the Datasets, in whole or part, with other datasets to create derivative Datasets; and +- using the Datasets to generate AI Models, + +during the Licence Period only. + + +## PERMITTED PURPOSES +The “Permitted Purposes” are training, testing, validating and using AI Models for your own non-commercial: +- artistic purposes; +- educational, academic or research purposes; or +- private and domestic purposes. + +If you wish to use the Datasets for any other purpose (including for any commercial purpose), you must send to us a written request seeking permission, including details of that purpose and of the persons that will be involved. We may either grant or withhold such permission, and we may apply conditions to any grant of permission. + + +## CONDITIONS +The licence we grant to you is subject to these conditions (the “Conditions”): +- you must store, access and use the Datasets securely; +- you must ensure that the Datasets are not stored in, or transferred to, any location outside: (a) the UK; or (b) another jurisdiction that benefits from an adequacy determination under UK data protection laws; +- you must comply with, and only use the Datasets and AI Models in accordance with, the code of conduct developed by The Serpentine Trust, a copy of which is available at [URL]; +- you must include in all public uses of the Datasets an attribution, in the form specified in the code of conduct or in such alternative form(s) as we may have agreed with you in writing; and +- you must make any AI Model that you publish or distribute available to all recipients under a Creative Commons ATTRIBUTION-NONCOMMERCIAL-SHAREALIKE 4.0 International licence (as specified at: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en). + + +## PROHIBITIONS +The licence we grant to you is subject to these prohibitions (the “Prohibitions”): +- you must not publish, redistribute or share the Datasets, except sharing with permitted sub-licensees; +- you must not extract individual soloist recordings from the Datasets, or use such recordings independently from the Datasets; and +- you must not use the Datasets or any AI Model in any way that is unlawful or illegal, for any unlawful or illegal purpose, or in connection with any unlawful or illegal purpose or activity. + + +## TERM AND TERMINATION +This Agreement shall automatically terminate at the end of the Licence Period. + +This Agreement shall automatically terminate if: (a) we cease to have a right to grant you the rights licensed herein; or (b) you breach any provision of this Agreement or any related contract. + +Upon the termination of this Agreement: (a) the licences herein (and any sub-licences you have granted) shall be automatically and immediately revoked; and (b) you must immediately and irreversibly delete all copies of the Datasets licensed under this Agreement. + + +## GENERAL +This Agreement shall not impose conditions on or otherwise limit any use of the Datasets or AI Models that could lawfully be made without permission under this Agreement. + +This Agreement shall be governed by and construed in accordance with English law, and any disputes relating to this Agreement shall be subject to the exclusive jurisdiction of the courts of England. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/saxs-synthetic-commercial-1.0.LICENSE b/src/licensedcode/data/licenses/saxs-synthetic-commercial-1.0.LICENSE new file mode 100644 index 0000000000..a17d1d330c --- /dev/null +++ b/src/licensedcode/data/licenses/saxs-synthetic-commercial-1.0.LICENSE @@ -0,0 +1,132 @@ +--- +key: saxs-synthetic-commercial-1.0 +short_name: SAXS Synthetic Dataset Commercial License 1.0 +name: SAXS Synthetic Dataset Commercial Restricted License v1.0 +category: Commercial +owner: Esteban Thevenon +homepage_url: https://huggingface.co/datasets/Venon28/SAXS/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-saxs-synthetic-commercial-1.0 +other_urls: + - esteban28010[at]gmail.com +ignorable_copyrights: + - Copyright (c) 2026 Esteban THEVENON. +ignorable_holders: + - Esteban THEVENON. +ignorable_urls: + - https://huggingface.co/datasets/Venon28/SAXS +--- + +SAXS SYNTHETIC DATASET — COMMERCIAL RESTRICTED LICENSE +Version 1.0 — 2026 +Copyright (c) 2026 Esteban THEVENON. All rights reserved. + +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +1. DEFINITIONS + +"Dataset" refers to all files, curves, metadata, labels, and +documentation distributed under this license, including any +.h5, .npy, .csv, or other format files containing SAXS +intensity curves generated by the Licensor. + +"Licensor" means Esteban THEVENON, the original creator and +sole owner of the Dataset. + +"Licensee" means any individual or entity that has obtained +the Dataset under one of the terms defined below. + +"Commercial Use" means use of the Dataset, in whole or in part, +directly or indirectly, for the purpose of financial gain, +including but not limited to: integration into a commercial +product or service, use in a paid consulting engagement, use +to train models that are sold or licensed to third parties, +or use within a for-profit company's internal systems. + +"Non-Commercial Use" means use strictly limited to personal +research, academic study, or open-source non-monetized projects. + + +2. FREE TIER (Sample — Hugging Face) + +The free sample distributed on Hugging Face is granted under the following terms: + + ✓ Permitted: academic research, personal projects, benchmarking, + scientific publication (with attribution), open-source projects. + + ✗ Prohibited: redistribution of the sample as a standalone + product, commercial use of any kind, removal of attribution. + +Attribution required in any publication or derivative work: + + "SAXS Synthetic Dataset by Esteban THEVENON (2026). + Available at: https://huggingface.co/datasets/Venon28/SAXS" + + +3. PAID LICENSE + +Upon purchase of any paid tier via Gumroad, the Licensee is +granted a non-exclusive, non-transferable, worldwide license to: + + ✓ Use the Dataset for both Non-Commercial and Commercial purposes. + ✓ Train machine learning models using the Dataset. + ✓ Use trained models in commercial products and services. + ✓ Reference the Dataset in academic and commercial publications + (with attribution, see Section 2). + +The following restrictions apply regardless of tier: + + ✗ The Licensee may NOT redistribute, resell, sublicense, or + share the Dataset files with any third party, whether for + free or for payment. + + ✗ The Licensee may NOT claim authorship or ownership of the + Dataset or any unmodified subset thereof. + + ✗ The Licensee may NOT use the Dataset to build a competing + dataset product or data marketplace listing. + + ✗ A single license is granted per purchasing entity (individual + or company). Team or enterprise use by multiple organizations + requires separate licenses. + + +4. CUSTOM LICENSE + +For use cases not covered by the above tiers — including but not +limited to: redistribution rights, white-labeling, OEM integration, +or unlimited organizational use — contact the Licensor directly to +negotiate a custom agreement. + + Contact: esteban28010[at]gmail.com + + +5. NO WARRANTY + +THE DATASET IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED. THE LICENSOR MAKES NO WARRANTY THAT THE +DATASET IS ERROR-FREE, COMPLETE, OR FIT FOR ANY PARTICULAR PURPOSE. + +The Licensee uses the Dataset at their own risk. The Licensor +shall not be liable for any damages arising from the use of +the Dataset, including but not limited to loss of data, loss +of profit, or any indirect or consequential damages. + + +6. GOVERNING LAW + +This license is governed by the laws of France. Any dispute +arising from this license shall be subject to the exclusive +jurisdiction of the courts of France. + + +7. TERMINATION + +Any breach of the terms of this license automatically terminates +the Licensee's rights under this license. Upon termination, the +Licensee must destroy all copies of the Dataset in their possession. + + +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +For questions, custom licensing, or bulk orders: + esteban28010[at]gmail.com +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scsl-2.8.LICENSE b/src/licensedcode/data/licenses/scsl-2.8.LICENSE index cce27b1fb6..3feb516ab5 100644 --- a/src/licensedcode/data/licenses/scsl-2.8.LICENSE +++ b/src/licensedcode/data/licenses/scsl-2.8.LICENSE @@ -2,7 +2,7 @@ key: scsl-2.8 short_name: Sun Community Source License 2.8 name: Sun Community Source License 2.8 -category: Copyleft Limited +category: Non-Commercial owner: Oracle (Sun) homepage_url: https://www.oracle.com/technetwork/java/scsl-1-1-149938.txt spdx_license_key: LicenseRef-scancode-scsl-2.8 diff --git a/src/licensedcode/data/licenses/scsl-3.0.LICENSE b/src/licensedcode/data/licenses/scsl-3.0.LICENSE index 487780781d..7bc4afbc77 100644 --- a/src/licensedcode/data/licenses/scsl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/scsl-3.0.LICENSE @@ -2,7 +2,7 @@ key: scsl-3.0 short_name: Sun Community Source License 3.0 name: Sun Community Source License 3.0 -category: Copyleft Limited +category: Non-Commercial owner: Oracle (Sun) spdx_license_key: LicenseRef-scancode-scsl-3.0 other_urls: diff --git a/src/licensedcode/data/licenses/seamless-2023.LICENSE b/src/licensedcode/data/licenses/seamless-2023.LICENSE new file mode 100644 index 0000000000..ec54718189 --- /dev/null +++ b/src/licensedcode/data/licenses/seamless-2023.LICENSE @@ -0,0 +1,67 @@ +--- +key: seamless-2023 +short_name: Seamless Licensing Agreement 2023 +name: Seamless Licensing Agreement 2023 +category: Non-Commercial +owner: Facebook +homepage_url: https://ai.meta.com/resources/models-and-libraries/seamless-license/ +spdx_license_key: LicenseRef-scancode-seamless-2023 +other_urls: + - https://huggingface.co/facebook/seamless-expressive +ignorable_copyrights: + - Copyright (c) Meta Platforms, Inc. +ignorable_holders: + - Meta Platforms, Inc. +ignorable_urls: + - https://ai.meta.com/resources/models-and-libraries/seamless-downloads + - https://ai.meta.com/resources/models-and-libraries/seamless-license + - https://ai.meta.com/resources/models-and-libraries/seamless-use-policy +--- + +Seamless Licensing Agreement + +Seamless Version Release Date: November 30, 2023 + +Updated: December 18, 2023 + +“Agreement” means this “Seamless Licensing Agreement”, including, the terms and conditions for use, reproduction, distribution and modification of the Seamless Materials set forth herein. + +“Documentation” means the specifications, manuals and documentation accompanying Seamless distributed by Meta at https://ai.meta.com/resources/models-and-libraries/seamless-downloads. + +“Licensee” or “you” means you, or your employer or any other person or entity (if you are entering into this Agreement on such person or entity’s behalf), of the age required under applicable laws, rules or regulations to provide legal consent and that has legal authority to bind your employer or such other person or entity if you are entering in this Agreement on their behalf. + +“Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or, if you are an entity, your principal place of business is in the EEA or Switzerland) and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland). + +“Noncommercial Research Uses” means noncommercial research use cases related to research, development, education, processing, or analysis in each case with no direct or indirect commercial gain to you or others. + +“Seamless” means the foundational translation and transcription models and software and algorithms, including machine-learning model code, trained model weights, inference-enabling code, training-enabling code, fine-tuning enabling code, demonstration materials and other elements of the foregoing distributed by Meta at https://ai.meta.com/resources/models-and-libraries/seamless-downloads. + +“Seamless Materials” means, collectively, Meta’s proprietary Seamless and Documentation (and any portion thereof) made available under this Agreement. + +“Trade Control Laws” means any applicable U.S. and non-U.S. export control and trade sanctions laws and regulations. + +By clicking “I Accept” below or by using or distributing any portion or element of the Seamless Materials, you agree to be bound by this Agreement. + + License Rights and Redistribution. + Grant of Rights. You are granted a non-exclusive, worldwide, non-transferable and royalty-free limited license under Meta’s intellectual property or other rights owned by Meta embodied in the Seamless Materials to use, reproduce, distribute, copy, create derivative works of, translate speech and text, and make modifications to the Seamless Materials solely for Noncommercial Research Uses. + Redistribution and Use. + Distribution of Seamless Materials, and any derivative works thereof, are subject to the terms of this Agreement. If you distribute or make the Seamless Materials, or any derivative works thereof, available to a third party, you may only do so under this Agreement. You shall also provide a copy of this Agreement to such third party. + If you submit for publication the results of research you perform on, using, or otherwise in connection with Seamless Materials, you must acknowledge the use of Seamless Materials in your publication as follows (or an equivalent acknowledgement of your choosing): “This material is based on work supported by the Seamless Licensing Agreement, Copyright © Meta Platforms, Inc. All Rights Reserved.” + You must retain in all copies of the Seamless Materials that you distribute the following attribution notice within a “Notice” text file distributed as a part of such copies: “Seamless is licensed under the Seamless Licensing Agreement, Copyright © Meta Platforms, Inc. All Rights Reserved.” + Your use of the Seamless Materials must comply with applicable laws and regulations (including Trade Control Laws)) and adhere to the Acceptable Use Policy for the Seamless Materials (https://ai.meta.com/resources/models-and-libraries/seamless-use-policy) which is hereby incorporated by reference into this Agreement. + Restrictions. You will not, and will not permit, assist or cause any third party to: + use the Seamless Materials or any outputs or results of the Seamless Materials in connection with any commercial uses or for any uses other than Noncommercial Research Uses; + utilize any equipment, device, software, or other means to circumvent or remove any security or protection used by Meta in connection with the Seamless Materials, or to circumvent or remove any usage restrictions, or to enable functionality disabled by Meta; + disguise your or their location through IP proxying or other methods; + use or download Seamless if you or they are: (a) located in a comprehensively sanctioned jurisdiction, (b) currently listed on any U.S. or non-U.S. restricted parties list, or (c) for any purpose prohibited by Trade Control Laws; or + directly or indirectly export, re-export, provide, or otherwise transfer Seamless Materials: (a) to any individual, entity, or country prohibited by Trade Control Laws; (b) to anyone on U.S. or non-U.S. government restricted parties lists; or (c) for any purpose prohibited by Trade Control Laws, including nuclear, chemical or biological weapons, or missile technology applications. + User Support. Your Noncommercial Research Use of the Seamless Materials is done at your own discretion; Meta does not process any information nor provide any service in relation to such use. Meta is under no obligation to provide any support services for the Seamless Materials. Any support provided is “as is”, “with all faults”, and without warranty of any kind. + Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE SEAMLESS MATERIALS AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE SEAMLESS MATERIALS AND ASSUME ANY RISKS ASSOCIATED WITH YOUR USE OF THE SEAMLESS MATERIALS AND ANY OUTPUT AND RESULTS. + Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT, FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING. + Intellectual Property. + No trademark licenses are granted under this Agreement, and in connection with the Seamless Materials, neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates, except as required for reasonable and customary use in describing and redistributing the Seamless Materials. + Subject to Meta’s ownership of Seamless Materials and derivatives made by or for Meta, with respect to any derivative works and modifications of the Seamless Materials that are made by you, as between you and Meta, you are and will be the owner of such derivative works and modifications. + If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Seamless Materials or Seamless outputs or results, or any portion of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable by you, then any licenses and rights granted to you under this Agreement shall terminate as of the date such litigation or claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third party arising out of or related to your use or distribution of the Seamless Materials. + Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access to the Seamless Materials and will continue in full force and effect until terminated in accordance with the terms and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this Agreement. Upon termination of this Agreement, you shall delete and cease use of the Seamless Materials. Sections 3, 4, 5, 6(c), 7, 8 and 9 shall survive the termination of this Agreement. + Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of California without regard to choice of law principles, and the UN Convention on Contracts for the International Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of any dispute arising out of this Agreement. + Modifications and Amendments. Meta may modify this Agreement from time to time by posting a revised version at https://ai.meta.com/resources/models-and-libraries/seamless-license/; provided that they are similar in spirit to the current version of the Agreement, but may differ in detail to address new problems or concerns. All such changes will be effective immediately. Your continued use of the Seamless Materials after any modification to this Agreement constitutes your agreement to such modification. Except as provided in this Agreement, no modification or addition to any provision of this Agreement will be binding unless it is in writing and signed by an authorized representative of both you and Meta. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/snap-nc-2025.LICENSE b/src/licensedcode/data/licenses/snap-nc-2025.LICENSE new file mode 100644 index 0000000000..7dbddcdb5b --- /dev/null +++ b/src/licensedcode/data/licenses/snap-nc-2025.LICENSE @@ -0,0 +1,21 @@ +--- +key: snap-nc-2025 +short_name: Snap Non-Commercial License 2025 +name: Snap Non-Commercial License 2025 +category: Non-Commercial +owner: Snap Inc. +homepage_url: https://huggingface.co/datasets/Ericguo5513/SnapMoGen/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-snap-nc-2025 +--- + +Snap Inc. Non-Commercial License + +This dataset is made available by Snap Inc. for non-commercial, research purposes only. + +Non-commercial means not intended for or directed towards commercial advantage or monetary compensation. Research purposes mean solely for academic study, instruction, or non-commercial research, testing or validation. + +No commercial license, whether implied or otherwise, is granted in or to this dataset, unless you have entered into a separate agreement with Snap Inc. for such rights. + +This dataset is provided as-is, without warranty of any kind, express or implied, including any warranties of merchantability, title, fitness for a particular purpose, non-infringement, or that the data is free of defects or errors. In no event will Snap Inc. be liable for any damages or losses of any kind arising from this dataset or your use thereof. + +Any redistribution of this dataset must retain or reproduce this license text including all copyright notices, conditions and disclaimers. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/snofs-1.1.LICENSE b/src/licensedcode/data/licenses/snofs-1.1.LICENSE new file mode 100644 index 0000000000..7202dab8cc --- /dev/null +++ b/src/licensedcode/data/licenses/snofs-1.1.LICENSE @@ -0,0 +1,101 @@ +--- +key: snofs-1.1 +short_name: SNOFS License v1.1 +name: Model Personal Use License (No Service, No Derivatives, No Redistribution) v1.1 +category: Non-Commercial +owner: Ashen3 +homepage_url: https://huggingface.co/Ashen3/SNOFS/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-snofs-1.1 +ignorable_urls: + - https://forms.gle/SogDdcgqLAc6Fp2d9 +--- + +Model Personal Use License (No Service, No Derivatives, No Redistribution) v1.1 + +PLAIN-ENGLISH SUMMARY (this is not a substitute for the full license text): +- ✅ You may use this Model locally to generate images. +- ✅ You may publish and SELL the images you generate (prints, commissions, client work, stock listings, etc.). +- ❌ You may NOT run this Model as a public or commercial image-generation service (web/app/API/bot) without a paid license. +- ❌ You may NOT merge, fine-tune, extract weights, distill, or otherwise use it to create other models/adapters without a paid license. +- ❌ You may NOT redistribute the Model weights. + +1) Definitions +1.1 "Model" means the weights, adapters (including LoRA/LoKR), configuration, and any files provided with this license. +1.2 "Licensor" means the Civitai user "Ashen3", the distributor of this Model. +1.3 "You" means the individual or entity exercising rights under this license. +1.4 "Output" means images or other media generated by running the Model. +1.5 "Commercial Service Use" means making the Model (or its functionality) available to any third party, directly or indirectly, + through a product or service, including but not limited to: a website, application, API, bot, hosted workflow, subscription, + paywall, ad-supported offering, or any "generate on behalf of others" feature—whether or not money changes hands. +1.6 "Derivative Model" means any model artifact created using the Model, in whole or in part, including (without limitation): + merges, fine-tunes, continued training, distillation, parameter extraction, adapter fusion, or any method intended to + incorporate, transform, or transfer the Model’s learned parameters or capabilities into another model or weights file. + +2) Grant of Rights (Local Use) +Subject to full compliance with this license, Licensor grants You a non-exclusive, non-transferable, revocable license to: +2.1 Use the Model locally (on hardware You control) to generate Outputs. +2.2 Use, publish, share, and sell Outputs, as described in Section 5. + +3) Prohibited Uses Without a Separate Commercial License +Unless You have a separate written commercial license from Licensor, You may NOT: + +3.1 Commercial Service Use +- Perform any Commercial Service Use of the Model. +- Enable third parties to access the Model or generate with it (including via "free" demos, Discord bots, public notebooks, + or ad-supported sites). + +3.2 No Derivative Models / No Training / No Merging +- Create, train, fine-tune, merge, distill, extract, or otherwise create any Derivative Model from the Model. +- Use the Model (or Outputs) as training data or supervision to reproduce the Model’s style/capabilities in another model or adapter. + +3.3 No Redistribution of the Model +- Redistribute, upload, publish, sell, sublicense, share, or otherwise make the Model available to any third party, whether in + original or modified form. +- Private sharing (e.g., sending the weights to a friend, client, or contractor) is also prohibited. + +3.4 No Circumvention +- Attempt to bypass these restrictions through intermediaries, contractors, affiliates, or "we're not charging money" structuring. + +4) Commercial Licensing (How to Contact) +Commercial licenses may be available for (a) Commercial Service Use, (b) Derivative Models, (c) redistribution, or other expanded rights. + +To request a commercial license, contact Licensor using ONE of the following: +- Civitai direct message to: Ashen3 +- Google Form (licensing/contact): https://forms.gle/SogDdcgqLAc6Fp2d9 + +If these contact methods are unavailable, Licensor may publish an updated contact method on the Model’s distribution page. + +5) Outputs (Selling Outputs Is Allowed) +5.1 Allowed commercial use of Outputs. +Subject to Section 3, You own the Outputs You generate using the Model and may use, publish, share, and SELL those Outputs for +any purpose, including commercial purposes (for example: prints, commissions, client deliverables, monetized social media, +advertising/marketing materials, and stock listings). + +5.2 What this does NOT allow. +Permission to sell Outputs does NOT grant permission to: +(a) use the Model for Commercial Service Use, +(b) create any Derivative Model, or +(c) redistribute the Model weights, +unless You have a separate written commercial license from Licensor. + +6) Attribution / Endorsement +6.1 Attribution is appreciated but not required for Outputs. +6.2 You must not misrepresent authorship of the Model or imply endorsement by Licensor. + +7) Termination +Any violation of this license automatically terminates Your rights to use the Model. Upon termination, You must promptly delete +all copies of the Model in Your possession or control. + +8) Disclaimer of Warranty +THE MODEL IS PROVIDED "AS IS" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, OR NON-INFRINGEMENT. YOU ASSUME ALL RISK ARISING FROM +USE OF THE MODEL AND OUTPUTS. + +9) Limitation of Liability +TO THE MAXIMUM EXTENT PERMITTED BY LAW, LICENSOR SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR +PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS, DATA, OR GOODWILL, ARISING OUT OF OR RELATED TO THIS LICENSE OR THE MODEL, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. LICENSOR’S TOTAL LIABILITY SHALL NOT EXCEED USD $100. + +10) Miscellaneous +10.1 If any provision is held unenforceable, the remaining provisions remain in effect. +10.2 This license is the entire agreement regarding the Model unless superseded by a separate written commercial license. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/socigy-nc-2026.LICENSE b/src/licensedcode/data/licenses/socigy-nc-2026.LICENSE new file mode 100644 index 0000000000..7da920034b --- /dev/null +++ b/src/licensedcode/data/licenses/socigy-nc-2026.LICENSE @@ -0,0 +1,34 @@ +--- +key: socigy-nc-2026 +short_name: Socigy Non-Commercial Database License 2026 +name: Socigy Non-Commercial Database License 2026 +category: Non-Commercial +owner: Socigy s.r.o. +homepage_url: https://github.com/Socigy-org/Socigy.OpenSource.DB/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-socigy-nc-2026 +--- + +MIT License with Non-Commercial and Graphic Attribution Clauses + +Copyright (c) Socigy.OpenSource.DB + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, and distribute copies of the Software, +subject to the following conditions: + +1. Non-Commercial Use: The Software, whether modified or unmodified, may not + be sold for money, monetary gain, or used for any commercial purposes. +2. Attribution: Any modified versions or distributions of the Software must + include clear attribution to the original project (Socigy.OpenSource.DB). + This attribution must be displayed alongside all graphics included with + or derived from the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sonar-sal-1.0.1.LICENSE b/src/licensedcode/data/licenses/sonar-sal-1.0.1.LICENSE new file mode 100644 index 0000000000..c0c57d8640 --- /dev/null +++ b/src/licensedcode/data/licenses/sonar-sal-1.0.1.LICENSE @@ -0,0 +1,98 @@ +--- +key: sonar-sal-1.0.1 +short_name: Sonar Source-Available License v1.0.1 +name: Sonar Source-Available License v1.0.1 +category: Source-available +owner: Sonar +homepage_url: https://www.sonarsource.com/license/ssal/ +spdx_license_key: LicenseRef-scancode-sonar-sal-1.0.1 +ignorable_copyrights: + - (c) employing, using, or engaging artificial intelligence technology +ignorable_holders: + - employing, using, or engaging artificial intelligence technology +--- + +SONAR Source-Available License v1.0.1 +Last Updated November 20th, 2025 + +1. Definitions + +“Agreement” means this Sonar Source-Available License v1.0.1 + +“Competing” means marketing a product or service as a substitute for the functionality or value of SonarQube. A product or service may compete regardless of how it is designed or deployed. For example, a product or service may compete even if it provides its functionality via any kind of interface (including services, libraries, or plug-ins), even if it is ported to a different platform or programming language, and even if it is provided free of charge. + +“Contribution” means: + +a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution “originates” from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works. + +“Contributor” means any person or entity that Distributes the Program. + +“Derivative Works” shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. + +“Distribute” means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy. + +“Licensed Patents” mean patent claims licensable by a Contributor that are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +“Modified Works” shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity, any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof. + +“Non-competitive Purpose” means any purpose except for (a) providing to others any product or service that includes or offers the same or substantially similar functionality as SonarQube, (b) Competing with SonarQube, and/or (c) employing, using, or engaging artificial intelligence technology that is not part of the Program to ingest, interpret, analyze, train on, or interact with the data provided by the Program, or to engage with the Program in any manner. + +“Notices” means any legal statements or attributions included with the Program, including, without limitation, statements concerning copyright, patent, trademark, disclaimers of warranty, or limitations of liability + +“Program” means the Contributions Distributed in accordance with this Agreement. + +“Recipient” means anyone who receives the Program under this Agreement, including Contributors. + +“SonarQube” means an open-source or commercial edition of software offered by SonarSource that is branded “SonarQube”. + +“SonarSource” means SonarSource SàrL, a Swiss company. + +“Source Code” means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files. + +2. Grant of Rights + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license, for any Non-competitive Purpose, to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works. + +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents, for any Non-competitive Purpose, to make, use, sell, offer to sell, import, and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations that include the Contribution. + +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third-party patent license is required to allow Recipient to Distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + +3. Requirements + +3.1 If a Contributor Distributes the Program in any form, then the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and inform Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and + +3.2 When the Program is Distributed as Source Code: + +a) it must be made available under this Agreement, and + +b) a copy of this Agreement must be included with each copy of the Program. + +3.3 Contributors may not remove or alter any Notices contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate Notices. + +4. No Warranty + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +5. Disclaimer of Liability + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +6. General + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient’s patent(s), then such Recipient’s rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient’s rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient’s rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient’s obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel, or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tabpfn-2.6-v1.0.LICENSE b/src/licensedcode/data/licenses/tabpfn-2.6-v1.0.LICENSE new file mode 100644 index 0000000000..7bbf8a61b1 --- /dev/null +++ b/src/licensedcode/data/licenses/tabpfn-2.6-v1.0.LICENSE @@ -0,0 +1,81 @@ +--- +key: tabpfn-2.6-v1.0 +short_name: TABPFN-2.6 License v1.0 +name: TABPFN-2.6 License v1.0 +category: Non-Commercial +owner: Prior Labs +homepage_url: https://huggingface.co/Prior-Labs/tabpfn_2_6/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-tabpfn-2.6-v1.0 +ignorable_copyrights: + - (c) 2026 Prior Labs GmbH. + - Copyright (c) Prior Labs GmbH 2026 +ignorable_holders: + - Prior Labs GmbH + - Prior Labs GmbH. +ignorable_emails: + - sales@priorlabs.ai +--- + +TABPFN-2.6 License v1.0 +Last Revised: March 24, 2026 +Prior Labs GmbH + +Prior Labs GmbH (“we” or “our” or “Company”) is pleased to make available the weights, parameters and inference code for the TABPFN-2.6 Model (as defined below) freely available for your non-commercial and non-production use as set forth in this TABPFN-2.6 Non-Commercial License (“License”). The “TABPFN-2.6 Model” means the TABPFN-2.6 AI models and models denoted as TABPFN-2.6 and their elements which includes algorithms, software, checkpoints, parameters, source code (inference code, evaluation code, and if applicable, fine-tuning code) and any other materials associated with the TABPFN-2.6 AI models made available by Company under this License, including, if any, the technical documentation, manuals and instructions for the use and operation thereof (collectively, “TABPFN-2.6 Model”). Note that we may also make available certain elements of what is included in the definition of “TABPFN-2.6 Model” under a separate license and nothing in this License will be deemed to restrict or limit any other licenses granted by us in such elements. +By downloading, accessing, using, Distributing (as defined below), or creating a Derivative (as defined below) of the TABPFN-2.6 Model, you agree to the terms of this License. If you do not agree to this License, then you do not have any rights to access, use, Distribute or create a Derivative of the TABPFN-2.6 Model and you must immediately cease using the TABPFN-2.6 Model. If you are agreeing to be bound by the terms of this License on behalf of your employer or other entity, you represent and warrant to us that you have full legal authority to bind your employer or such entity to this License. If you do not have the requisite authority, you may not accept the License or access the TABPFN-2.6 Model on behalf of your employer or other entity. +This License applies only to customers who download the TABPFN-2.6 Model. For customers accessing the TABPFN-2.6 Model through our API, only our General Terms and Conditions apply. +This License is not available to consumers within the meaning of Section 13 of the German Civil Code (BGB). By agreeing to the terms of this License, you confirm that you are acting for professional purposes in terms of Section 14 BGB. We may request proof of your commercial status at any time, and failure to provide such proof may result in immediate termination of this License. Such proof may be provided through submission of the business registration, extract from the commercial register, or VAT ID number. + +1. Definitions. +a. “Derivative” means any (i) modified version of the TABPFN-2.6 Model (including but not limited to any customized, fine-tuned, retrained, or otherwise adapted version thereof), (ii) work based on the TABPFN-2.6 Model, or (iii) any other derivative work thereof. For the avoidance of doubt, Outputs are not considered Derivatives under this License. +b. “Distribution,” “Distribute,” or “Distributing” means providing or making available, by any means, a copy of the TABPFN-2.6 Model and/or the Derivatives as the case may be. +c. “Non-Commercial Purpose” means use for testing, evaluation, or research not tied to commercial gain, production deployment, or revenue generation. This includes internal benchmarking, academic research, and experimentation on private or public datasets as well as Data Science Competitions as defined below, provided the results are not used in commercial decision-making, client deliverables, or paid products/services. For clarity, use (a) for any revenue-generating activity, (b) in direct or indirect interactions with end users or production systems, or (c) to train, fine-tune, or distill other models for commercial use, in each case is not a Non-Commercial Purpose. A Data Science Competitions in the meaning of this Agreement is a publicly accessible contest hosted on established platforms (such as Kaggle, DrivenData, or ChallengeData) or by academic/non-profit institutions where participants compete to develop predictive models for specified datasets. +d. “Outputs” means predictions, scores, probabilities, recommendations, explanations, or other results generated by operation of the TABPFN-2.6 Model or any Derivative from datasets or other inputs supplied by a user. For the avoidance of doubt, Outputs do not include any components of the TABPFN-2.6 Model, such as any fine-tuned versions of the TABPFN-2.6 Model, the weights, or parameters. +e. “you” or “your” means the individual or entity entering into this License with Company. + +2. License Grant. +a. License. Subject to your compliance with this License, Company grants you a non-exclusive, worldwide, non-transferable, non-sublicensable, revocable, royalty-free and limited license to access, use, create Derivatives of, and Distribute the TABPFN-2.6 Model and Derivatives solely for your Non-Commercial Purposes. The foregoing license is personal to you, and you may not assign or sublicense this License or any other rights or obligations under this License without Company’s prior written consent; any such assignment or sublicense will be void and will automatically and immediately terminate this License. Any restrictions set forth herein regarding the TABPFN-2.6 Model also apply to any Derivative you create or that are created on your behalf. +b. Non-Commercial Use Only. You may only access, use, Distribute, or create Derivatives of the TABPFN-2.6 Model or Derivatives for Non-Commercial Purposes. If you want to use the TABPFN-2.6 Model or a Derivative for any purpose that is not expressly authorized under this License, such as for a commercial or production activity, you must obtain a commercial license from Company, which Company may grant in its sole discretion and which additional use may be subject to a fee, royalty or other revenue share. Please contact sales@priorlabs.ai for a commercial license. +c. Reserved Rights. The grant of rights expressly set forth in this License are the complete grant of rights to you in the TABPFN-2.6 Model, and no other licenses are granted, whether by waiver, estoppel, implication, equity or otherwise. Company and its licensors reserve all rights not expressly granted by this License. +d. Outputs. We claim no ownership rights in and to the Outputs. You are solely responsible for the Outputs you generate and their subsequent uses in accordance with this License. Outputs may be used only for Non-Commercial Purposes. Any use of Outputs in production systems, business processes, commercial research services, client deliverables, or revenue-generating activities requires a separate commercial license. You may not use Outputs to train, fine-tune, or distill a model that is competitive with the TABPFN-2.6 Model. +e. Compliance and Safeguards. You must ensure that any use of the TABPFN-2.6 Model, Derivatives, and Outputs complies with applicable data protection, privacy, export control, and AI regulations (including, where applicable, GDPR and the EU Artificial Intelligence Act), and that you implement reasonable technical and organizational measures appropriate to the data and risks involved. + +3. Distribution. +Subject to this License, you may Distribute copies of the TABPFN-2.6 Model and/or Derivatives made by you, under the following conditions: +a. You must make available a copy of this License to third-party recipients of the TABPFN-2.6 Model and/or Derivatives you Distribute, and specify that any rights to use the TABPFN-2.6 Model and/or Derivatives shall be directly granted by Company to said third-party recipients pursuant to this License; +b. You must prominently display the following notice alongside the Distribution of the TABPFN-2.6 Model or Derivative (such as via a “NOTICE” text file distributed as part of such TABPFN-2.6 Model or Derivative) (the “Attribution Notice”): +The TABPFN-2.6 Model is licensed by Prior Labs GmbH under the TABPFN-2.6 Non-Commercial License. +Copyright © Prior Labs GmbH 2026. + THE SERVICES ARE PROVIDED FREE OF CHARGE: COMPANY SHALL NOT BE LIABLE FOR DAMAGES RESULTING FROM SLIGHT NEGLIGENCE. LIABILITY FOR GROSS NEGLIGENCE AND INTENTIONAL MISCONDUCT REMAINS UNAFFECTED. +c. In the case of Distribution of Derivatives made by you: (i) you must also include in the Attribution Notice a statement that you have modified the applicable TABPFN-2.6 Model; (ii) any terms and conditions you impose on any third-party recipients relating to Derivatives made by or for you shall neither limit such third-party recipients’ use of the TABPFN-2.6 Model or any Derivatives made by or for Company in accordance with this License nor conflict with any of its terms and conditions and must include disclaimer of warranties and limitation of liability provisions that are at least as protective of Company as those set forth herein; and (iii) you must not misrepresent or imply, through any means, that the Derivatives made by or for you and/or any modified version of the TABPFN-2.6 Model you Distribute under your name and responsibility is an official product of the Company or has been endorsed, approved or validated by the Company, unless you are authorized by Company to do so in writing. +d. No Hosted Service. You may not Distribute, host, or make available the TABPFN-2.6 Model or any Derivative as part of a hosted, managed, API, or SaaS service (whether paid or free) without a separate commercial license from Company. + +4. Restrictions. +You will not, and will not permit, assist or cause any third party to: +a. use, modify, copy, reproduce, create Derivatives of, or Distribute the TABPFN-2.6 Model (or any Derivative thereof, or any data produced by the TABPFN-2.6 Model), in whole or in part, (i) for any commercial or production purposes, (ii) military purposes, (iii) purposes of surveillance, including any research or development relating to surveillance, (iv) biometric processing, (v) in any manner that infringes, misappropriates, or otherwise violates (or is likely to infringe, misappropriate, or otherwise violate) any third party’s legal rights (including privacy, data protection, or publicity rights), (vi) in any unlawful, fraudulent, defamatory, or abusive activity, or (vii) in any manner that violates applicable law (including the General Data Protection Regulation (Regulation (EU) 2016/679) and the EU Artificial Intelligence Act (Regulation (EU) 2024/1689), as well as all amendments and successor laws to any of the foregoing); +b. alter or remove copyright and other proprietary notices which appear on or in any portion of the TABPFN-2.6 Model; +c. utilize any equipment, device, software, or other means to circumvent or remove any security or protection used by Company in connection with the TABPFN-2.6 Model, or to circumvent or remove any usage restrictions, or to enable functionality disabled by the TABPFN-2.6 Model; +d. offer or impose any terms on the TABPFN-2.6 Model that alter, restrict, or are inconsistent with the terms of this License; +e. violate any applicable U.S., EU, or other export control and trade sanctions laws (“Export Laws”) in connection with your use or Distribution of any TABPFN-2.6 Model; +f. directly or indirectly Distribute, export, or otherwise transfer the TABPFN-2.6 Model (i) to any individual, entity, or country prohibited by Export Laws; (ii) to anyone on government restricted parties lists; (iii) for any purpose prohibited by Export Laws, including nuclear, chemical or biological weapons, or missile technology applications; (iv) use or download the TABPFN-2.6 Model if you or they are (a) located in a comprehensively sanctioned jurisdiction, (b) currently listed on any restricted parties list, or (c) for any purpose prohibited by Export Laws; or (v) disguise your location through IP proxying or other methods. + +5. Limitation of Liability. +Because We provide the TABPFN-2.6 Model to free of charge, We shall be liable only in cases of intent, gross negligence, or if We have fraudulently concealed a possible material or legal defect. Liability for damages resulting from injury to life, body or health shall remain unaffected. Any further liability, in particular for slight negligence, is excluded. + +6. Indemnification. +You will indemnify, defend and hold harmless Company and our subsidiaries and affiliates, (collectively, the “Company Parties”) from and against any losses, liabilities, damages, fines, penalties, and expenses (including reasonable attorneys’ fees) incurred by any Company Party in connection with any claim, demand, allegation, lawsuit, proceeding, or investigation (collectively, “Claims”) arising out of or related to (a) your access to or use of the TABPFN-2.6 Model (including in connection with any Output, results or data generated from such access or use), including any High-Risk Use; (b) your violation of this License; or (c) your violation, misappropriation or infringement of any rights of another (including intellectual property or other proprietary rights and privacy rights). You will promptly notify the Company Parties of any such Claims, and cooperate with Company Parties in defending such Claims. You will also grant the Company Parties sole control of the defense or settlement, at Company’s sole option, of any Claims. You are entitled to engage counsel of your choice at your own expense to conduct the defense. You may not make any admissions or enter into settlements without the prior written consent of the Company Parties This indemnity is in addition to, and not in lieu of, any other indemnities or remedies set forth in a written agreement between you and Company or the other Company Parties. + +7. Termination; Survival. +a. This License will automatically terminate upon any breach by you of the terms of this License. +b. We may terminate this License, in whole or in part, at any time upon notice (including electronic) to you. +c. If you initiate any legal action or proceedings against Company or any other entity (including a cross-claim or counterclaim in a lawsuit), alleging that the TABPFN-2.6 Model or any Derivative, or any part thereof, infringes upon intellectual property or other rights owned or licensable by you, then any licenses granted to you under this License will immediately terminate as of the date such legal action or claim is filed or initiated. +d. Upon termination of this License, you must cease all use, access or Distribution of the TABPFN-2.6 Model and any Derivatives and delete all copies in your possession or control, except as required by law or legitimate institutional archiving policies. The following sections survive termination of this License: 2(c), 2(d), 3–10. + +8. Third-Party Materials. +The TABPFN-2.6 Model may contain third-party software or other components (including free and open source software) (all of the foregoing, “Third-Party Materials”), which are subject to the license terms of the respective third-party licensors. Your dealings or correspondence with third parties and your use of or interaction with any Third-Party Materials are solely between you and the third party. Company does not control or endorse, and makes no representations or warranties regarding, any Third-Party Materials, and your access to and use of such Third-Party Materials are at your own risk. + +9. Trademarks. +You have not been granted any trademark license as part of this License and may not use any name, logo or trademark associated with Company without the prior written permission of Company, except to the extent necessary to make the reference required in the Attribution Notice as specified above or as is reasonably necessary in describing the TABPFN-2.6 Model and its creators. +10. Governing Law; General. +This License will be governed by and construed under the laws of Germany, without regard to conflicts of law provisions. Any dispute arising out of or in connection with this License shall be subject to the exclusive jurisdiction of the courts of Berlin, Germany. If any provision or part of a provision of this License is unlawful, void or unenforceable, that provision or part of the provision is deemed severed from this License, and will not affect the validity and enforceability of any remaining provisions. The failure of Company to exercise or enforce any right or provision of this License will not operate as a waiver of such right or provision. This License does not confer any third-party beneficiary rights upon any other person or entity. This License, together with the documentation, contains the entire understanding between you and Company regarding the subject matter of this License, and supersedes all other written or oral agreements and understandings between you and Company regarding such subject matter. +Commercial inquiries: sales@priorlabs.ai +© 2026 Prior Labs GmbH. All rights reserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tigerdataset-nc-2025.LICENSE b/src/licensedcode/data/licenses/tigerdataset-nc-2025.LICENSE new file mode 100644 index 0000000000..d0ba73c81f --- /dev/null +++ b/src/licensedcode/data/licenses/tigerdataset-nc-2025.LICENSE @@ -0,0 +1,17 @@ +--- +key: tigerdataset-nc-2025 +short_name: tigerdataset non-commercial license 2025 +name: tigerdataset non-commercial license 2025 +category: Non-Commercial +owner: XianpanZhou +homepage_url: https://huggingface.co/datasets/tinytigerpan/tigerdataset/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-tigerdataset-nc-2025 +--- + +This dataset and code is made available by xianpanzhou for non-commercial, research purposes only. +Non-commercial means not primarily intended for or directed towards commercial advantage or monetary compensation. +Research purposes mean solely for study, instruction, or non-commercial research, testing or validation. +No commercial license, whether implied or otherwise, is granted in or to this dataset and code. +This dataset and code is provided as-is, without warranty of any kind, express or implied, including any warranties of merchantability, title, fitness for a particular purpose, non-infringement, or that the code is free of defects, errors or viruses. +In no event we will be liable for any damages or losses of any kind arising from this dataset and code or your use thereof. +Any redistribution of this dataset and code must retain or reproduce the above copyright notice, conditions and disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/writer-open-model-2024-05-31.LICENSE b/src/licensedcode/data/licenses/writer-open-model-2024-05-31.LICENSE new file mode 100644 index 0000000000..8e841f4119 --- /dev/null +++ b/src/licensedcode/data/licenses/writer-open-model-2024-05-31.LICENSE @@ -0,0 +1,77 @@ +--- +key: writer-open-model-2024-05-31 +short_name: Writer Open Model License 2024-05-31 +name: Writer Open Model License 2024-05-31 +category: Non-Commercial +owner: Writer +homepage_url: https://writer.com/legal/open-model-license/ +spdx_license_key: LicenseRef-scancode-writer-open-model-2024-05-31 +other_urls: + - https://huggingface.co/Writer/Palmyra-Med-70B +--- + +Open model license + +Version Release Date: May 31, 2024 + +By using, reproducing, modifying, distributing, performing, or displaying any portion or element of the Writer Materials, you agree to be bound by this Writer Open Model License (the “Agreement”). + +1. Definitions + +“Contribution” shall mean any work of authorship, including any modification or addition to the Writer Materials or derivative works thereof, that is intentionally submitted to Writer for inclusion in the Writer Materials by the copyright owner or by an individual or legal entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to Writer or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, Writer for the purpose of discussing and improving the Writer Materials, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” + +“Documentation” means the specifications, manuals, and documentation accompanying the Writer Materials provided by Writer or as otherwise distributed by Writer at dev.writer.com. + +“Licensee,” “you,” or “your” means the individual or legal entity exercising the permissions granted by this Agreement. + +“Commercial” means primarily intended for or directed towards commercial advantage or monetary compensation. + +“Writer Model” means the foundational large language model and software and algorithms, including machine-learning model code, trained model weights, inference-enabling code, training-enabling code, fine-tuning enabling code, and other elements of the foregoing distributed by Writer under this Agreement. + +“Writer Materials” shall mean the applicable Writer Model and related Documentation made available under this Agreement. + +“Writer” or “we” means Writer, Inc. + +2. License Rights & Conditions + +Subject to the terms of this Agreement, Writer grants to you a non-exclusive, worldwide, non-transferable, and royalty-free limited license to use, reproduce, distribute, copy, modify, and create derivative works of the Writer Materials for non-Commercial purposes (the “License”). + +3. Redistribution + +If you distribute or make the Writer Materials, or any derivative works thereof, available to a third party, you must: (i) provide a copy of this Agreement to such third party; (ii) cause any modified files to carry prominent notices stating that you changed the files; (iii) retain in all copies of the Writer Materials that you distribute the following attribution notice within a “Notice” text file distributed as a part of such copies: “Copyright Writer, Inc. All Rights Reserved. The Writer Materials are provided under and subject to the Writer Open Model License”; and (iv) ensure that your use of the Writer Materials complies with applicable laws and regulations (including trade compliance laws and regulations) and Writer’s Acceptable Use Policy. + +You may add your own intellectual property statement to your modifications of the Writer Materials and, except as set forth in this Section, may provide additional or different terms and conditions for use, reproduction, or distribution of the Writer Materials or derivative works thereof as a whole, provided your use, reproduction, modification, distribution, performance, and display of the Writer Materials or derivative works thereof otherwise complies with the terms and conditions of this Agreement. Any additional or different terms and conditions you impose must not conflict with the terms of this Agreement and in the event of a conflict, the terms and conditions of this Agreement shall govern over any such additional or different terms and conditions. + +4. Non-Commercial Use + +The License granted to you under this Agreement is for non-Commercial purposes only. For any use of the Writer Materials for Commercial purposes, you must request a license from Writer, which Writer may grant to you in its sole discretion, and you are not authorized to exercise any of the rights under this Agreement unless or until Writer otherwise expressly grants you such rights. + +If you receive the Writer Materials or any derivative works thereof from a direct or indirect licensee as part of an integrated end-user product, then this Section 4 and any non-Commercial limitation to the License granted under this Agreement will not apply to you. + +5. Contributions + +Unless you explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Writer Materials by you to Writer shall be under the terms and conditions of this Agreement, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Writer regarding such Contributions. + +6. Warranty Disclaimer + +UNLESS REQUIRED BY APPLICABLE LAW, THE WRITER MATERIALS AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND WRITER DISCLAIMS ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE WRITER MATERIALS AND ASSUME ANY RISKS ASSOCIATED WITH YOUR USE OF THE WRITER MATERIALS AND ANY OUTPUT AND RESULTS. + +7. Limitation of Liability + +IN NO EVENT WILL WRITER OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCT LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT, FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN IF WRITER OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING. + +8. IP Rights + +This Agreement does not grant permission to use the trade names, trademarks, service marks, or product names of Writer, except as required for reasonable and customary use in describing the origin of the Writer Materials and reproducing the content of the NOTICE file. + +Subject to Writer’s ownership of Writer Materials and any derivative works thereof, with respect to any derivative works and modifications of the Writer Materials that are made by you, as between you and Writer, you are and will be the owner of such derivative works and modifications. + +If you institute litigation or other proceedings against Writer or any entity (including a crossclaim or counterclaim in a lawsuit) alleging that the Writer Materials, or any portion thereof, infringes the intellectual property or other rights owned or licensable by you, then the License and any other rights granted to you under this Agreement shall terminate as of the date such litigation or claim is filed or instituted. You will indemnify and hold harmless Writer from and against any claim by any third party arising out of or related to your use or distribution of the Writer Materials. + +9. Term & Termination + +The term of this Agreement will commence upon your access to the Writer Materials and will continue in full force and effect until terminated in accordance with the terms and conditions herein. Writer may terminate this Agreement if you are in breach of any term or condition of this Agreement. Upon termination of this Agreement, you shall delete and cease use of the Writer Materials. Sections 6, 7, 8, and 10 shall survive the termination of this Agreement. + +10. Governing Law + +This Agreement will be governed and construed under the laws of the State of California without regard to choice of law principles, and the UN Convention on Contracts for the International Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of any dispute arising out of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/xai-cla-2025.LICENSE b/src/licensedcode/data/licenses/xai-cla-2025.LICENSE new file mode 100644 index 0000000000..d2b9af2f82 --- /dev/null +++ b/src/licensedcode/data/licenses/xai-cla-2025.LICENSE @@ -0,0 +1,53 @@ +--- +key: xai-cla-2025 +short_name: xAI Community License Agreement 2025 +name: xAI Community License Agreement 2025 +category: Proprietary Free +owner: xAI +homepage_url: https://huggingface.co/xai-org/grok-2/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-xai-cla-2025 +other_urls: + - https://huggingface.co/datasets?license=license%3Agrok2-community +ignorable_urls: + - https://x.ai/legal/acceptable-use-policy +--- + +xAI Community License Agreement +Last Updated: November 4, 2025 + +1. Background and Definitions +By downloading, accessing, displaying, publishing, modifying, or using the materials provided by X.AI LLC (“xAI”) that xAI designates are subject to this xAI Community License Agreement (“Materials”), you (“Licensee” or “you”) agree to the terms of this agreement (“Agreement”). If you accept this Agreement for or on behalf of an entity, you represent that you have the authority to bind that entity. xAI designates that Materials for Grok 2 consists of: (1) one or more machine learning models (including architecture and parameters); and (2) related artifacts (including associated data, documentation, and software) that are provided to you hereunder. + +2. License Grant & Scope +a. Permitted Uses: xAI grants you a non-exclusive, worldwide, revocable license to use, reproduce, distribute, and modify the Materials: + • For non-commercial and research purposes; and + • For commercial use solely if you and your affiliates abide by all of the guardrails provided in xAI's Acceptable Use Policy (https://x.ai/legal/acceptable-use-policy), including 1. Comply with the law, 2. Do not harm people or property, and 3. Respect guardrails and don't mislead. +b. Restrictions: + • You may not use the Materials, derivatives, or outputs (including generated data) to train, create, or improve any foundational, large language, or general-purpose AI models, except for modifications or fine-tuning of xAI Materials permitted under and in accordance with the terms of this Agreement. + • No right to use xAI’s trademarks is granted, except as required for attribution (see below). + +3. Distribution & Attribution +If you distribute the Materials, derivatives, or products/services incorporating them: + • Include this Agreement and a notice stating: “This product includes materials licensed under the xAI Community License. All rights reserved. Copyright © xAI [applicable year].” + • Prominently display “Powered by xAI” in related materials or interfaces. + +4. Ownership & Outputs +xAI retains all rights in the Materials. This Agreement does not impose any restrictions or obligations with respect to any use, modification, or sharing of any outputs generated by using applicable model related Materials. If you provide feedback, suggestions, or ideas, you grant xAI a perpetual, worldwide, irrevocable, royalty-free license to use and incorporate that feedback without restriction. + +5. Acceptable Use +You are responsible for implementing appropriate safety measures, including filters and human oversight, suitable for your use case. You must comply with xAI’s Acceptable Use Policy (AUP), as well as all applicable laws. You may not use the Materials for illegal, unlawful, harmful, or abusive activities. + +6. Warranty Disclaimer & Limitation of Liability +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NONINFRINGEMENT, ACCURACY, OR THE ABSENCE OF LATENT OR OTHER DEFECTS OR ERRORS, WHETHER OR NOT DISCOVERABLE, ALL TO THE GREATEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW. +YOU ARE SOLELY RESPONSIBLE FOR (1) CLEARING RIGHTS OF OTHER PERSONS THAT MAY APPLY TO THE MATERIALS OR ANY USE THEREOF, INCLUDING WITHOUT LIMITATION ANY PERSON'S COPYRIGHTS OR OTHER RIGHTS INCLUDED OR EMBODIED IN THE MATERIALS; (2) OBTAINING ANY NECESSARY CONSENTS, PERMISSIONS OR OTHER RIGHTS REQUIRED FOR ANY USE OF THE MATERIALS; OR (3) PERFORMING ANY DUE DILIGENCE OR UNDERTAKING ANY OTHER INVESTIGATIONS INTO THE MATERIALS OR ANYTHING INCORPORATED OR EMBODIED THEREIN. +IN NO EVENT SHALL XAI BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE MATERIALS, THE USE THEREOF, OR OTHER DEALINGS THEREIN. TO THE MAXIMUM EXTENT PERMITTED BY LAW, XAI WILL NOT BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR FOR AGGREGATE LIABILITY EXCEEDING $100, REGARDLESS OF THE LEGAL THEORY. + +7. Termination +This license terminates immediately upon your breach or if you at any point exceed the permitted uses. Upon termination, you must cease all use and delete all copies of the Materials and derivatives. +Additionally, if you file, maintain, or voluntarily participate in a lawsuit against any person or entity alleging that the Materials, or any part thereof, directly or indirectly infringe any patent or copyright or violate any intellectual property, then your license under this Agreement shall immediately terminate. This does not apply to a lawsuit brought in response to a corresponding lawsuit first filed against you. + +8. Governing Law +The laws of Texas govern this Agreement, and any dispute shall be resolved exclusively in the courts located in Tarrant County, Texas. + +9. Miscellaneous +This Agreement is the entire agreement between the parties on this subject. Failure to enforce any provision is not a waiver. If any provision is unenforceable, the remainder remains in effect. xAI may assign this Agreement, including in connection with a merger or acquisition. Licensee may not assign this Agreement without xAI’s prior written consent. This Agreement creates no third-party beneficiaries. You must comply with all applicable export control, trade compliance, and sanctions laws. \ No newline at end of file