diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4c5b04fb1e3..8463937b6b7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -91,15 +91,6 @@ jobs: venv/bin/pytest -vvs --test-suite=plugins \ tests/licensedcode/test_additional_license.py - - template: etc/ci/azure-posix.yml - parameters: - job_name: ubuntu18_cpython - image_name: ubuntu-18.04 - python_versions: ['3.8', '3.9', '3.10', '3.11'] - python_architecture: x64 - test_suites: - all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2 - - template: etc/ci/azure-posix.yml parameters: job_name: ubuntu20_cpython @@ -147,9 +138,9 @@ jobs: - template: etc/ci/azure-win.yml parameters: - job_name: win2019_cpython_2 - image_name: windows-2019 - python_versions: ['3.9', '3.10', '3.11'] + job_name: win2022_cpython + image_name: windows-2022 + python_versions: ['3.8', '3.9', '3.10', '3.11'] python_architecture: x64 test_suites: all: venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py --reruns 2 @@ -206,14 +197,6 @@ jobs: test_suites: all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py - - template: etc/ci/azure-posix.yml - parameters: - job_name: ubuntu18_cpython_latest_from_pip - image_name: ubuntu-18.04 - python_versions: ['3.8', '3.9', '3.10', '3.11'] - test_suites: - all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py - - template: etc/ci/azure-posix.yml parameters: job_name: ubuntu20_cpython_latest_from_pip diff --git a/configure b/configure index 2cc05be0252..d74550b054f 100755 --- a/configure +++ b/configure @@ -159,7 +159,7 @@ PROD_REQUIREMENTS="scancode_toolkit*.whl" VIRTUALENV_DIR=venv # Cleanable files and directories to delete with the --clean option -CLEANABLE="build venv" +CLEANABLE="build dist venv .cache .eggs" # extra arguments passed to pip PIP_EXTRA_ARGS=" " @@ -175,6 +175,13 @@ CFG_ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" CFG_BIN_DIR=$CFG_ROOT_DIR/$VIRTUALENV_DIR/bin +################################ +# Install with or without and index. With "--no-index" this is using only local wheels +# This is an offline mode with no index and no network operations +# NO_INDEX="--no-index " +NO_INDEX="" + + ################################ # Thirdparty package locations and index handling # Find packages from the local thirdparty directory if present @@ -308,6 +315,7 @@ while getopts :-: optchar; do esac done + PIP_EXTRA_ARGS="$PIP_EXTRA_ARGS" find_python diff --git a/configure.bat b/configure.bat index 744ca4c96c8..22c849e1591 100644 --- a/configure.bat +++ b/configure.bat @@ -35,7 +35,7 @@ set "REL_REQUIREMENTS=--requirement etc/scripts/requirements.txt" set "VIRTUALENV_DIR=venv" @rem # Cleanable files and directories to delete with the --clean option -set "CLEANABLE=build venv" +set "CLEANABLE=build dist venv .cache .eggs" @rem # extra arguments passed to pip set "PIP_EXTRA_ARGS= " diff --git a/docs/source/conf.py b/docs/source/conf.py index f02f9f6d9fb..6eee921779e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ -'sphinx.ext.intersphinx', + "sphinx.ext.intersphinx", ] # This points to aboutcode.readthedocs.io @@ -36,8 +36,8 @@ # Link was created at commit - https://github.com/nexB/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83 intersphinx_mapping = { - 'aboutcode': ('https://aboutcode.readthedocs.io/en/latest/', None), - 'scancode-workbench': ('https://scancode-workbench.readthedocs.io/en/develop/', None), + "aboutcode": ("https://aboutcode.readthedocs.io/en/latest/", None), + "scancode-workbench": ("https://scancode-workbench.readthedocs.io/en/develop/", None), } @@ -62,7 +62,7 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] -master_doc = 'index' +master_doc = "index" html_context = { "display_github": True, @@ -72,9 +72,7 @@ "conf_py_path": "/docs/source/", # path in the checkout to the docs root } -html_css_files = [ - '_static/theme_overrides.css' - ] +html_css_files = ["_static/theme_overrides.css"] # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. diff --git a/etc/scripts/README.rst b/etc/scripts/README.rst index edf82e44824..5e54a2ccbe9 100755 --- a/etc/scripts/README.rst +++ b/etc/scripts/README.rst @@ -21,7 +21,7 @@ Pre-requisites virtualenv or in the the main configured development virtualenv. These requireements need to be installed:: - pip install --requirement etc/release/requirements.txt + pip install --requirement etc/scripts/requirements.txt TODO: we need to pin the versions of these tools @@ -34,7 +34,7 @@ Scripts ~~~~~~~ **gen_requirements.py**: create/update requirements files from currently - installed requirements. + installed requirements. **gen_requirements_dev.py** does the same but can subtract the main requirements to get extra requirements used in only development. @@ -50,7 +50,7 @@ The sequence of commands to run are: ./configure --clean ./configure - python etc/release/gen_requirements.py --site-packages-dir + python etc/scripts/gen_requirements.py --site-packages-dir * You can optionally install or update extra main requirements after the ./configure step such that these are included in the generated main requirements. @@ -59,7 +59,7 @@ The sequence of commands to run are: ./configure --clean ./configure --dev - python etc/release/gen_requirements_dev.py --site-packages-dir + python etc/scripts/gen_requirements_dev.py --site-packages-dir * You can optionally install or update extra dev requirements after the ./configure step such that these are included in the generated dev diff --git a/sample.json b/sample.json deleted file mode 100644 index 4c1f04f3e0b..00000000000 --- a/sample.json +++ /dev/null @@ -1,4673 +0,0 @@ -{ - "headers": [ - { - "tool_name": "scancode-toolkit", - "tool_version": "v32.0.0rc3-3-g30be519b6e", - "options": { - "input": [ - "samples" - ], - "--classify": true, - "--copyright": true, - "--email": true, - "--info": true, - "--json-pp": "sample.json", - "--license": true, - "--license-diagnostics": true, - "--license-references": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--package": true, - "--processes": "4", - "--summary": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "start_timestamp": "2023-03-30T130842.186839", - "end_timestamp": "2023-03-30T130848.977001", - "output_format_version": "3.0.0", - "duration": 6.7901740074157715, - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.14.0-1059-oem-x86_64-with-glibc2.29", - "platform_version": "#67-Ubuntu SMP Mon Mar 13 14:22:10 UTC 2023", - "python_version": "3.8.10 (default, Mar 13 2023, 10:26:41) \n[GCC 9.4.0]" - }, - "spdx_license_list_version": "3.20", - "files_count": 33 - } - } - ], - "summary": { - "declared_license_expression": null, - "license_clarity_score": { - "score": 0, - "declared_license": false, - "identification_precision": false, - "has_license_text": false, - "declared_copyrights": false, - "conflicting_license_categories": true, - "ambiguous_compound_licensing": true - }, - "declared_holder": "", - "primary_language": "C", - "other_license_expressions": [ - { - "value": "zlib", - "count": 9 - }, - { - "value": "boost-1.0", - "count": 3 - }, - { - "value": "lgpl-2.1-plus", - "count": 3 - }, - { - "value": "lgpl-2.1", - "count": 2 - }, - { - "value": "apache-1.1", - "count": 1 - }, - { - "value": "apache-2.0", - "count": 1 - }, - { - "value": "cc-by-2.5", - "count": 1 - }, - { - "value": "cpl-1.0", - "count": 1 - }, - { - "value": "gpl-2.0-plus WITH ada-linking-exception", - "count": 1 - }, - { - "value": "jboss-eula", - "count": 1 - }, - { - "value": "mit", - "count": 1 - }, - { - "value": "mit-old-style", - "count": 1 - }, - { - "value": "public-domain AND public-domain-disclaimer", - "count": 1 - } - ], - "other_holders": [ - { - "value": null, - "count": 10 - }, - { - "value": "Free Software Foundation", - "count": 4 - }, - { - "value": "Henrik Ravn", - "count": 3 - }, - { - "value": "Jean-loup Gailly", - "count": 3 - }, - { - "value": "Jean-loup Gailly and Mark Adler", - "count": 3 - }, - { - "value": "Mark Adler", - "count": 3 - }, - { - "value": "Brian Goetz and Tim Peierls", - "count": 1 - }, - { - "value": "Christian Michelsen Research AS Advanced Computing", - "count": 1 - }, - { - "value": "Dmitriy Anisimkov", - "count": 1 - }, - { - "value": "JBoss Inc., and individual contributors", - "count": 1 - }, - { - "value": "Jean-loup Gailly, Brian Raiter and Gilles Vollant", - "count": 1 - }, - { - "value": "Red Hat", - "count": 1 - }, - { - "value": "Red Hat Middleware LLC, and individual contributors", - "count": 1 - }, - { - "value": "Red Hat, Inc. and individual contributors", - "count": 1 - }, - { - "value": "The Apache Software Foundation", - "count": 1 - }, - { - "value": "The Legion Of The Bouncy Castle", - "count": 1 - } - ], - "other_languages": [ - { - "value": "Java", - "count": 7 - }, - { - "value": "C#", - "count": 2 - }, - { - "value": "C++", - "count": 1 - }, - { - "value": "GAS", - "count": 1 - }, - { - "value": "verilog", - "count": 1 - } - ] - }, - "packages": [], - "dependencies": [], - "license_detections": [ - { - "identifier": "jboss_eula-7d18bfd6-7597-7ba3-c7dc-7bbe6d2af58e", - "license_expression": "jboss-eula", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "lgpl_2_1-64dbac63-7b61-7151-023f-321235aeef62", - "license_expression": "lgpl-2.1", - "detection_count": 2, - "detection_log": [] - }, - { - "identifier": "apache_1_1-43463ac7-69b6-151e-d9a8-597dc4212b7f", - "license_expression": "apache-1.1", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d", - "license_expression": "apache-2.0", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "mit-cacd5c0c-204a-85c2-affc-e4c125b2492a", - "license_expression": "mit", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "cpl_1_0-4a106c12-fe39-7e45-d054-148472167ea3", - "license_expression": "cpl-1.0", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "lgpl_2_1_plus-3fe3e5e6-cb18-c0a1-f831-f08fab3612c1", - "license_expression": "lgpl-2.1-plus", - "detection_count": 3, - "detection_log": [] - }, - { - "identifier": "cc_by_2_5-2664cdba-0ee6-a527-2588-8a3a1be3ecae", - "license_expression": "cc-by-2.5", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77", - "license_expression": "public-domain", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "public_domain_disclaimer-5765d0b6-4dea-c655-1767-e7e398a296d3", - "license_expression": "public-domain-disclaimer", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "zlib-27de81f4-f6ce-2bf5-ab37-9a4c71f4b296", - "license_expression": "zlib", - "detection_count": 7, - "detection_log": [] - }, - { - "identifier": "zlib-53b5e6f7-901a-4da6-f42e-e1c8e52100e9", - "license_expression": "zlib", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "zlib-b04102d0-a663-78b5-de18-9677ee48ce9c", - "license_expression": "zlib", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "gpl_2_0_plus_with_ada_linking_exception-ca27fab9-344b-58b2-3c05-f3ca150dad7e", - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "boost_1_0-7d91c102-4b73-b55e-398c-cca7ae1e7bf5", - "license_expression": "boost-1.0", - "detection_count": 2, - "detection_log": [] - }, - { - "identifier": "boost_1_0-dcd1a22a-7766-abc4-a96d-eefedae4fbf2", - "license_expression": "boost-1.0", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "unknown_license_reference-c71ec522-4de4-71aa-3fcb-2c07e2581ca2", - "license_expression": "unknown-license-reference", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "zlib-f32ae987-c66a-44ce-bd13-c90e0c59aab8", - "license_expression": "zlib", - "detection_count": 1, - "detection_log": [] - }, - { - "identifier": "mit_old_style-578ee504-a9b5-6c26-1bb4-fd7b80a664f0", - "license_expression": "mit-old-style", - "detection_count": 1, - "detection_log": [] - } - ], - "license_references": [ - { - "key": "ada-linking-exception", - "language": "en", - "short_name": "Ada linking exception to GPL 2.0 or later", - "name": "Ada linking exception to GPL 2.0 or later", - "category": "Copyleft Limited", - "owner": "Dmitriy Anisimkov", - "homepage_url": null, - "notes": null, - "is_builtin": true, - "is_exception": true, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "GNAT-exception", - "other_spdx_license_keys": [ - "LicenseRef-scancode-ada-linking-exception" - ], - "osi_license_key": null, - "text_urls": [], - "osi_url": null, - "faq_url": null, - "other_urls": [ - "http://zlib-ada.sourceforge.net/", - "http://ada-ru.org/", - "https://github.com/AdaCore/florist/blob/master/libsrc/posix-configurable_file_limits.adb" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": "---------------------------------------------------------------------------\n---\n-- This library is free software; you can redistribute it and/or modify --\n-- it under the terms of the GNU General Public License as published by --\n-- the Free Software Foundation; either version 2 of the License, or (at --\n-- your option) any later version. --\n-- --\n-- This library is distributed in the hope that it will be useful, but --\n-- WITHOUT ANY WARRANTY; without even the implied warranty of --\n-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --\n-- General Public License for more details. --\n-- --\n-- You should have received a copy of the GNU General Public License --\n-- along with this library; if not, write to the Free Software Foundation,\n--\n-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --\n-- --\n-- As a special exception, if other files instantiate generics from this --\n-- unit, or you link this unit with other files to produce an executable,\n--\n-- this unit does not by itself cause the resulting executable to be --\n-- covered by the GNU General Public License. This exception does not --\n-- however invalidate any other reasons why the executable file might be --\n-- covered by the GNU Public License. --\n---------------------------------------------------------------------------\n---\n", - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "As a special exception, if other files instantiate generics from this \nunit, or you link this unit with other files to produce an executable, \nthis unit does not by itself cause the resulting executable to be \ncovered by the GNU General Public License. This exception does not \nhowever invalidate any other reasons why the executable file might be \ncovered by the GNU Public License.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/ada-linking-exception.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/ada-linking-exception", - "spdx_url": "https://spdx.org/licenses/GNAT-exception" - }, - { - "key": "apache-1.1", - "language": "en", - "short_name": "Apache 1.1", - "name": "Apache License 1.1", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "notes": "Per SPDX.org, this license is OSI certified. This license has been\nsuperseded by Apache 2.0\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "Apache-1.1", - "other_spdx_license_keys": [], - "osi_license_key": "Apache-1.1", - "text_urls": [ - "http://apache.org/licenses/LICENSE-1.1" - ], - "osi_url": null, - "faq_url": "http://www.apache.org/foundation/license-faq.html", - "other_urls": [ - "http://opensource.org/licenses/Apache-1.1", - "https://opensource.org/licenses/Apache-1.1" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [ - "Copyright (c) 2000 The Apache Software Foundation" - ], - "ignorable_holders": [ - "The Apache Software Foundation" - ], - "ignorable_authors": [ - "the Apache Software Foundation (http://www.apache.org/)" - ], - "ignorable_urls": [ - "http://www.apache.org/" - ], - "ignorable_emails": [ - "apache@apache.org" - ], - "text": "The Apache Software License, Version 1.1\n\nCopyright (c) 2000 The Apache Software Foundation. All rights\nreserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by the\n Apache Software Foundation (http://www.apache.org/).\"\n Alternately, this acknowledgment may appear in the software itself,\n if and wherever such third-party acknowledgments normally appear.\n\n4. The names \"Apache\" and \"Apache Software Foundation\" must\n not be used to endorse or promote products derived from this\n software without prior written permission. For written\n permission, please contact apache@apache.org.\n\n5. Products derived from this software may not be called \"Apache\",\n nor may \"Apache\" appear in their name, without prior written\n permission of the Apache Software Foundation.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-1.1.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1" - }, - { - "key": "apache-2.0", - "language": "en", - "short_name": "Apache 2.0", - "name": "Apache License 2.0", - "category": "Permissive", - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "notes": "Per SPDX.org, this version was released January 2004 This license is OSI\ncertified\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "Apache-2.0", - "other_spdx_license_keys": [ - "LicenseRef-Apache", - "LicenseRef-Apache-2.0" - ], - "osi_license_key": "Apache-2.0", - "text_urls": [ - "http://www.apache.org/licenses/LICENSE-2.0" - ], - "osi_url": "http://opensource.org/licenses/apache2.0.php", - "faq_url": "http://www.apache.org/foundation/licence-FAQ.html", - "other_urls": [ - "http://www.opensource.org/licenses/Apache-2.0", - "https://opensource.org/licenses/Apache-2.0", - "https://www.apache.org/licenses/LICENSE-2.0" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.apache.org/licenses/", - "http://www.apache.org/licenses/LICENSE-2.0" - ], - "ignorable_emails": [], - "text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/apache-2.0", - "spdx_url": "https://spdx.org/licenses/Apache-2.0" - }, - { - "key": "boost-1.0", - "language": "en", - "short_name": "Boost 1.0", - "name": "Boost Software License 1.0", - "category": "Permissive", - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "notes": "Per SPDX.org, this version was released 17 August 2003 This license is OSI\ncertifified.\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "BSL-1.0", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://www.boost.org/LICENSE_1_0.txt" - ], - "osi_url": "http://www.opensource.org/licenses/bsl1.0.html", - "faq_url": null, - "other_urls": [ - "http://www.boost.org/users/license.html", - "http://www.opensource.org/licenses/BSL-1.0", - "https://opensource.org/licenses/BSL-1.0" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/boost-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0" - }, - { - "key": "cc-by-2.5", - "language": "en", - "short_name": "CC-BY-2.5", - "name": "Creative Commons Attribution License 2.5", - "category": "Permissive", - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "notes": null, - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "CC-BY-2.5", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://creativecommons.org/licenses/by/2.5/legalcode" - ], - "osi_url": null, - "faq_url": null, - "other_urls": [ - "https://creativecommons.org/licenses/by/2.5/legalcode" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://creativecommons.org/" - ], - "ignorable_emails": [], - "text": "Attribution 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(b), as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-2.5.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/cc-by-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5" - }, - { - "key": "cpl-1.0", - "language": "en", - "short_name": "CPL 1.0", - "name": "Common Public License 1.0", - "category": "Copyleft Limited", - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "notes": "Per SPDX.org, this license was superseded by Eclipse Public License", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "CPL-1.0", - "other_spdx_license_keys": [], - "osi_license_key": "CPL-1.0", - "text_urls": [ - "http://www.eclipse.org/legal/cpl-v10.html" - ], - "osi_url": "http://www.opensource.org/licenses/cpl1.0.php", - "faq_url": "http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html", - "other_urls": [ - "http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/", - "http://opensource.org/licenses/CPL-1.0", - "http://www.ibm.com/developerworks/library/os-cpl.html", - "http://www.ibm.com/developerworks/library/os-cplfaq.html", - "http://www.padsproj.org/License.html", - "https://opensource.org/licenses/CPL-1.0" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Common Public License - v 1.0\n\nUpdated 16 Apr 2009\n\nAs of 25 Feb 2009, IBM has assigned the Agreement Steward role for the CPL to the Eclipse Foundation. Eclipse has designated the Eclipse Public License (EPL) as the follow-on version of the CPL.\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and\nb) in the case of each subsequent Contributor:\ni)\t changes to the Program, and\nii)\t additions to the Program;\nwhere 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 additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n\n2. GRANT OF RIGHTS\n\na)\tSubject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\nb) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code 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 which include the Contribution. No hardware per se is licensed hereunder.\nc)\tRecipient 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.\nd)\tEach 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.\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\na)\tit complies with the terms and conditions of this Agreement; and\nb)\tits license agreement:\ni)\teffectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\nii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\niii)\tstates that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\niv)\tstates that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\nWhen the Program is made available in source code form:\n\na)\tit must be made available under this Agreement; and\nb)\ta copy of this Agreement must be included with each copy of the Program.\n\nContributors may not remove or alter any copyright notices contained within the Program.\n\n\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, 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.\n\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, 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.\n\n\n7. GENERAL\n\nIf 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.\n\n\nIf Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, 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.\n\n\nAll 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.\n\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. 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.\n\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cpl-1.0.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/cpl-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0" - }, - { - "key": "gpl-2.0-plus", - "language": "en", - "short_name": "GPL 2.0 or later", - "name": "GNU General Public License 2.0 or later", - "category": "Copyleft", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", - "notes": "Per SPDX.org, this license was released June 1991 This license is OSI\ncertified.\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "GPL-2.0-or-later", - "other_spdx_license_keys": [ - "GPL-2.0+", - "GPL 2.0+" - ], - "osi_license_key": null, - "text_urls": [ - "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html" - ], - "osi_url": null, - "faq_url": null, - "other_urls": [ - "http://www.opensource.org/licenses/GPL-2.0", - "https://opensource.org/licenses/GPL-2.0", - "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html" - ], - "key_aliases": [], - "minimum_coverage": 99, - "standard_notice": null, - "ignorable_copyrights": [ - "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", - "copyrighted by the Free Software Foundation" - ], - "ignorable_holders": [ - "Free Software Foundation, Inc.", - "the Free Software Foundation" - ], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This program is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program; if not, write to the Free Software Foundation, Inc., 51 Franklin\nStreet, Fifth Floor, Boston, MA 02110-1301, USA.\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n , 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs. If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/gpl-2.0-plus", - "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later" - }, - { - "key": "jboss-eula", - "language": "en", - "short_name": "JBoss EULA", - "name": "JBoss EULA", - "category": "Proprietary Free", - "owner": "JBoss Community", - "homepage_url": null, - "notes": null, - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "LicenseRef-scancode-jboss-eula", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://repository.jboss.org/licenses/jbossorg-eula.txt" - ], - "osi_url": null, - "faq_url": null, - "other_urls": [], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [ - "Copyright 2006 Red Hat, Inc." - ], - "ignorable_holders": [ - "Red Hat, Inc." - ], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.jboss.com/company/logos", - "http://www.jboss.org/", - "http://www.opensource.org/licenses/index.php", - "http://www.redhat.com/about/corporate/trademark", - "http://www.redhat.com/licenses" - ], - "ignorable_emails": [], - "text": "LICENSE AGREEMENT\nJBOSS(r)\n\nThis License Agreement governs the use of the Software Packages and any updates to the Software \nPackages, regardless of the delivery mechanism. Each Software Package is a collective work \nunder U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. (\"Red Hat\") grants to \nthe user (\"Client\") a license to the applicable collective work(s) pursuant to the \nGNU Lesser General Public License v. 2.1 except for the following Software Packages: \n(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the \nGNU General Public License v.2; \n\n(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;\n\n(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the \n(open source) Sleepycat License (if Client does not wish to use the open source version of this database, \nit may purchase a license from Sleepycat Software); \n\nand (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1, \nand, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various \nroyalty-free patent licenses. \n\nEach of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.\n\n1. The Software. \"Software Packages\" refer to the various software modules that are created and made available \nfor distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages \nmay be comprised of hundreds of software components. The end user license agreement for each component is located in \nthe component's source code. With the exception of certain image files identified in Section 2 below, \nthe license terms for the components permit Client to copy, modify, and redistribute the component, \nin both source code and binary code forms. This agreement does not limit Client's rights under, \nor grant Client rights that supersede, the license terms of any particular component.\n\n2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright \nand other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall \nremain with the aforementioned, subject to the applicable license. The \"JBoss\" trademark, \"Red Hat\" trademark, the \nindividual Software Package trademarks, and the \"Shadowman\" logo are registered trademarks of Red Hat and its affiliates \nin the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages \nusing the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's \ntrademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by \nthese trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified. \nIf Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at \nhttp://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted. \nMerely deleting the files containing the Red Hat trademarks may corrupt the Software Packages. \n\n3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular \ncomponent, to the maximum extent permitted under applicable law, the Software Packages and the \ncomponents are provided and licensed \"as is\" without warranty of any kind, expressed or implied, \nincluding the implied warranties of merchantability, non-infringement or fitness for a particular purpose. \nRed Hat warrants that the media on which Software Packages may be furnished will be free from defects in \nmaterials and manufacture under normal use for a period of 30 days from the date of delivery to Client. \nRed Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements \nor that the operation of the Software Packages will be entirely error free or appear precisely as described \nin the accompanying documentation. This warranty extends only to the party that purchases the Services \npertaining to the Software Packages from Red Hat or a Red Hat authorized distributor. \n\n4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies \ndescribed below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's \nexclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of \ndelivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or \nrefund the money paid by Client for the Software. To the maximum extent permitted by applicable law, \nRed Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential \ndamages, including lost profits or lost savings arising out of the use or inability to use the Software, \neven if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall \nRed Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this \nAgreement during the twelve months preceding the action.\n\n5. Export Control. As required by U.S. law, Client represents and warrants that it: \n(a) understands that the Software Packages are subject to export controls under the \nU.S. Commerce Department's Export Administration Regulations (\"EAR\"); \n\n(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations \n(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); \n\n(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity, \nor individual without the necessary export license(s) or authorizations(s) from the U.S. Government; \n\n(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or \nbiological weapons, or missile technology end-uses unless authorized by the U.S. Government by \nregulation or specific license; \n\n(e) understands and agrees that if it is in the United States and exports or transfers the Software \nPackages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual \nreports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and \naddress (including country) of each transferee; \n\nand (f) understands that countries other than the United States may restrict the import, use, or \nexport of encryption products and that it shall be solely responsible for compliance with any such \nimport, use, or export restrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages \nthat are not part of the Software Packages and which Client must install separately. These third party \nprograms are subject to their own license terms. The license terms either accompany the programs or \ncan be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable \nlicense terms for such programs, then Client may not install them. If Client wishes to install the programs \non more than one system or transfer the programs to another party, then Client must contact the licensor \nof the programs.\n\n7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the \nenforceability of the remaining provisions. This License Agreement shall be governed by the laws of the \nState of North Carolina and of the United States, without regard to any conflict of laws provisions, \nexcept that the United Nations Convention on the International Sale of Goods shall not apply.\n\nCopyright 2006 Red Hat, Inc. All rights reserved. \n\"JBoss\" and the JBoss logo are registered trademarks of Red Hat, Inc. \nAll other trademarks are the property of their respective owners. \n\n Page 1 of 1 18 October 2006", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/jboss-eula", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE" - }, - { - "key": "lgpl-2.1", - "language": "en", - "short_name": "LGPL 2.1", - "name": "GNU Lesser General Public License 2.1", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", - "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "LGPL-2.1-only", - "other_spdx_license_keys": [ - "LGPL-2.1", - "LicenseRef-LGPL-2.1" - ], - "osi_license_key": "LGPL-2.1", - "text_urls": [ - "http://www.gnu.org/licenses/lgpl-2.1.txt" - ], - "osi_url": "http://opensource.org/licenses/lgpl-2.1.php", - "faq_url": null, - "other_urls": [ - "http://creativecommons.org/choose/cc-lgpl", - "http://creativecommons.org/images/public/cc-LGPL-a.png", - "http://creativecommons.org/licenses/LGPL/2.1/", - "http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt", - "http://i.creativecommons.org/l/LGPL/2.1/88x62.png", - "http://www.gnu.org/copyleft/lesser.html", - "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "http://www.opensource.org/licenses/LGPL-2.1", - "https://opensource.org/licenses/LGPL-2.1", - "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", - "copyrighted by the Free Software Foundation" - ], - "ignorable_holders": [ - "Free Software Foundation, Inc.", - "the Free Software Foundation" - ], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only" - }, - { - "key": "lgpl-2.1-plus", - "language": "en", - "short_name": "LGPL 2.1 or later", - "name": "GNU Lesser General Public License 2.1 or later", - "category": "Copyleft Limited", - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "LGPL-2.1-or-later", - "other_spdx_license_keys": [ - "LGPL-2.1+" - ], - "osi_license_key": null, - "text_urls": [ - "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - ], - "osi_url": null, - "faq_url": null, - "other_urls": [ - "http://www.gnu.org/copyleft/lesser.html", - "http://www.opensource.org/licenses/LGPL-2.1", - "https://opensource.org/licenses/LGPL-2.1", - "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - ], - "key_aliases": [], - "minimum_coverage": 99, - "standard_notice": null, - "ignorable_copyrights": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", - "copyrighted by the Free Software Foundation" - ], - "ignorable_holders": [ - "Free Software Foundation, Inc.", - "the Free Software Foundation" - ], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 2.1 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1-plus", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later" - }, - { - "key": "mit", - "language": "en", - "short_name": "MIT License", - "name": "MIT License", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "notes": "Per SPDX.org, this license is OSI certified.", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "MIT", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://opensource.org/licenses/mit-license.php" - ], - "osi_url": "http://www.opensource.org/licenses/MIT", - "faq_url": "https://ieeexplore.ieee.org/document/9263265", - "other_urls": [ - "https://opensource.com/article/18/3/patent-grant-mit-license", - "https://opensource.com/article/19/4/history-mit-license", - "https://opensource.org/licenses/MIT" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/mit", - "spdx_url": "https://spdx.org/licenses/MIT" - }, - { - "key": "mit-old-style", - "language": "en", - "short_name": "MIT Old Style", - "name": "MIT Old Style", - "category": "Permissive", - "owner": "MIT", - "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style", - "notes": null, - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "LicenseRef-scancode-mit-old-style", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style" - ], - "osi_url": null, - "faq_url": null, - "other_urls": [], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Permission to use, copy, modify, distribute, and sell this software and\nits documentation for any purpose is hereby granted without fee, provided that\nthe above copyright notice appear in all copies and that both that\ncopyright notice and this permission notice appear in supporting\ndocumentation. No representations are made about the suitability of this\nsoftware for any purpose. It is provided \"as is\" without express or\nimplied warranty.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit-old-style.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/mit-old-style", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit-old-style.LICENSE" - }, - { - "key": "public-domain", - "language": "en", - "short_name": "Public Domain", - "name": "Public Domain", - "category": "Public Domain", - "owner": "Unspecified", - "homepage_url": "http://www.linfo.org/publicdomain.html", - "notes": null, - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": true, - "spdx_license_key": "LicenseRef-scancode-public-domain", - "other_spdx_license_keys": [ - "LicenseRef-PublicDomain" - ], - "osi_license_key": null, - "text_urls": [], - "osi_url": null, - "faq_url": "http://www.linfo.org/publicdomain.html", - "other_urls": [ - "http://creativecommons.org/licenses/publicdomain/", - "http://en.wikipedia.org/wiki/Public_domain", - "http://www.linfo.org/publicdomain.html" - ], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/public-domain", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain.LICENSE" - }, - { - "key": "public-domain-disclaimer", - "language": "en", - "short_name": "Public Domain Disclaimer", - "name": "Public Domain Disclaimer", - "category": "Public Domain", - "owner": "Unspecified", - "homepage_url": null, - "notes": "this is used also as a placeholder for similar public domain dedications texts and notices that come with an additional warranty disclaimer", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": true, - "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [], - "osi_url": null, - "faq_url": null, - "other_urls": [], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/public-domain-disclaimer", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE" - }, - { - "key": "unknown-license-reference", - "language": "en", - "short_name": "Unknown License reference", - "name": "Unknown License file reference", - "category": "Unstated License", - "owner": "Unspecified", - "homepage_url": null, - "notes": "This applies to the case of a file with no clear license, which may be referenced via URL or text such as \"See license in...\" or \"This file is licensed under...\", but where the reference cannot be resolved to a specific named, public license.", - "is_builtin": true, - "is_exception": false, - "is_unknown": true, - "is_generic": false, - "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [], - "osi_url": null, - "faq_url": null, - "other_urls": [], - "key_aliases": [], - "minimum_coverage": 0, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/unknown-license-reference", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.LICENSE" - }, - { - "key": "zlib", - "language": "en", - "short_name": "ZLIB License", - "name": "ZLIB License", - "category": "Permissive", - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "notes": "Per SPDX.org, this is OSI certified", - "is_builtin": true, - "is_exception": false, - "is_unknown": false, - "is_generic": false, - "spdx_license_key": "Zlib", - "other_spdx_license_keys": [], - "osi_license_key": null, - "text_urls": [ - "http://www.gzip.org/zlib/zlib_license.html" - ], - "osi_url": "http://www.opensource.org/licenses/zlib-license.php", - "faq_url": "http://www.gzip.org/zlib/zlib-faq.html", - "other_urls": [ - "http://www.opensource.org/licenses/Zlib", - "http://www.zlib.net/zlib_license.html", - "https://opensource.org/licenses/Zlib" - ], - "key_aliases": [], - "minimum_coverage": 50, - "standard_notice": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This software is provided 'as-is', without any express or implied warranty. In no\nevent will the authors be held liable for any damages arising from the use of this\nsoftware.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim that\n you wrote the original software. If you use this software in a product, an\n acknowledgment in the product documentation would be appreciated but is not\n required.\n\n2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "licensedb_url": "https://scancode-licensedb.aboutcode.org/zlib", - "spdx_url": "https://spdx.org/licenses/Zlib" - } - ], - "license_rule_references": [ - { - "license_expression": "apache-1.1", - "identifier": "apache-1.1_71.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-1.1_71.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 361, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [ - "Copyright (c) 2000 The Apache Software Foundation" - ], - "ignorable_holders": [ - "The Apache Software Foundation" - ], - "ignorable_authors": [ - "the Apache Software Foundation (http://www.apache.org/)" - ], - "ignorable_urls": [ - "http://www.apache.org/" - ], - "ignorable_emails": [ - "apache@apache.org" - ], - "text": "/* ====================================================================\n * The Apache Software License, Version 1.1\n *\n * Copyright (c) 2000 The Apache Software Foundation. All rights\n * reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in\n * the documentation and/or other materials provided with the\n * distribution.\n *\n * 3. The end-user documentation included with the redistribution,\n * if any, must include the following acknowledgment:\n * \"This product includes software developed by the\n * Apache Software Foundation (http://www.apache.org/).\"\n * Alternately, this acknowledgment may appear in the software itself,\n * if and wherever such third-party acknowledgments normally appear.\n *\n * 4. The names \"Apache\" and \"Apache Software Foundation\" must\n * not be used to endorse or promote products derived from this\n * software without prior written permission. For written\n * permission, please contact apache@apache.org.\n *\n * 5. Products derived from this software may not be called \"Apache\",\n * nor may \"Apache\" appear in their name, without prior written\n * permission of the Apache Software Foundation.\n *\n * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\n * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR\n * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\n * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .\n *\n * Portions of this software are based upon public domain software\n * originally written at the National Center for Supercomputing Applications,\n * University of Illinois, Urbana-Champaign." - }, - { - "license_expression": "apache-2.0", - "identifier": "apache-2.0.LICENSE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": true, - "is_synthetic": false, - "length": 1584, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.apache.org/licenses/", - "http://www.apache.org/licenses/LICENSE-2.0" - ], - "ignorable_emails": [], - "text": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction,\nand distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by\nthe copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all\nother entities that control, are controlled by, or are under common\ncontrol with that entity. For the purposes of this definition,\n\"control\" means (i) the power, direct or indirect, to cause the\ndirection or management of such entity, whether by contract or\notherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity\nexercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications,\nincluding but not limited to software source code, documentation\nsource, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical\ntransformation or translation of a Source form, including but\nnot limited to compiled object code, generated documentation,\nand conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or\nObject form, made available under the License, as indicated by a\ncopyright notice that is included in or attached to the work\n(an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object\nform, that is based on (or derived from) the Work and for which the\neditorial revisions, annotations, elaborations, or other modifications\nrepresent, as a whole, an original work of authorship. For the purposes\nof this License, Derivative Works shall not include works that remain\nseparable from, or merely link (or bind by name) to the interfaces of,\nthe Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including\nthe original version of the Work and any modifications or additions\nto that Work or Derivative Works thereof, that is intentionally\nsubmitted to Licensor for inclusion in the Work by the copyright owner\nor by an individual or Legal Entity authorized to submit on behalf of\nthe copyright owner. For the purposes of this definition, \"submitted\"\nmeans any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems,\nand issue tracking systems that are managed by, or on behalf of, the\nLicensor for the purpose of discussing and improving the Work, but\nexcluding communication that is conspicuously marked or otherwise\ndesignated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity\non behalf of whom a Contribution has been received by Licensor and\nsubsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\nthis License, each Contributor hereby grants to You a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable\ncopyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the\nWork and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\nthis License, each Contributor hereby grants to You a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable\n(except as stated in this section) patent license to make, have made,\nuse, offer to sell, sell, import, and otherwise transfer the Work,\nwhere such license applies only to those patent claims licensable\nby such Contributor that are necessarily infringed by their\nContribution(s) alone or by combination of their Contribution(s)\nwith the Work to which such Contribution(s) was submitted. If You\ninstitute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work\nor a Contribution incorporated within the Work constitutes direct\nor contributory patent infringement, then any patent licenses\ngranted to You under this License for that Work shall terminate\nas of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\nWork or Derivative Works thereof in any medium, with or without\nmodifications, and in Source or Object form, provided that You\nmeet the following conditions:\n\n(a) You must give any other recipients of the Work or\nDerivative Works a copy of this License; and\n\n(b) You must cause any modified files to carry prominent notices\nstating that You changed the files; and\n\n(c) You must retain, in the Source form of any Derivative Works\nthat You distribute, all copyright, patent, trademark, and\nattribution notices from the Source form of the Work,\nexcluding those notices that do not pertain to any part of\nthe Derivative Works; and\n\n(d) If the Work includes a \"NOTICE\" text file as part of its\ndistribution, then any Derivative Works that You distribute must\ninclude a readable copy of the attribution notices contained\nwithin such NOTICE file, excluding those notices that do not\npertain to any part of the Derivative Works, in at least one\nof the following places: within a NOTICE text file distributed\nas part of the Derivative Works; within the Source form or\ndocumentation, if provided along with the Derivative Works; or,\nwithin a display generated by the Derivative Works, if and\nwherever such third-party notices normally appear. The contents\nof the NOTICE file are for informational purposes only and\ndo not modify the License. You may add Your own attribution\nnotices within Derivative Works that You distribute, alongside\nor as an addendum to the NOTICE text from the Work, provided\nthat such additional attribution notices cannot be construed\nas modifying the License.\n\nYou may add Your own copyright statement to Your modifications and\nmay provide additional or different license terms and conditions\nfor use, reproduction, or distribution of Your modifications, or\nfor any such Derivative Works as a whole, provided Your use,\nreproduction, and distribution of the Work otherwise complies with\nthe conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\nany Contribution intentionally submitted for inclusion in the Work\nby You to the Licensor shall be under the terms and conditions of\nthis License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify\nthe terms of any separate license agreement you may have executed\nwith Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\nnames, trademarks, service marks, or product names of the Licensor,\nexcept as required for reasonable and customary use in describing the\norigin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\nagreed to in writing, Licensor provides the Work (and each\nContributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied, including, without limitation, any warranties or conditions\nof TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\nPARTICULAR PURPOSE. You are solely responsible for determining the\nappropriateness of using or redistributing the Work and assume any\nrisks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\nwhether in tort (including negligence), contract, or otherwise,\nunless required by applicable law (such as deliberate and grossly\nnegligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special,\nincidental, or consequential damages of any character arising as a\nresult of this License or out of the use or inability to use the\nWork (including but not limited to damages for loss of goodwill,\nwork stoppage, computer failure or malfunction, or any and all\nother commercial damages or losses), even if such Contributor\nhas been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\nthe Work or Derivative Works thereof, You may choose to offer,\nand charge a fee for, acceptance of support, warranty, indemnity,\nor other liability obligations and/or rights consistent with this\nLicense. However, in accepting such obligations, You may act only\non Your own behalf and on Your sole responsibility, not on behalf\nof any other Contributor, and only if You agree to indemnify,\ndefend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason\nof your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following\nboilerplate notice, with the fields enclosed by brackets \"[]\"\nreplaced with your own identifying information. (Don't include\nthe brackets!) The text should be enclosed in the appropriate\ncomment syntax for the file format. We also recommend that a\nfile or class name and description of purpose be included on the\nsame \"printed page\" as the copyright notice for easier\nidentification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License." - }, - { - "license_expression": "boost-1.0", - "identifier": "boost-1.0.LICENSE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": true, - "is_synthetic": false, - "length": 211, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE." - }, - { - "license_expression": "boost-1.0", - "identifier": "boost-1.0_21.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_21.RULE", - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 32, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [ - "LICENSE_1_0.txt" - ], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.boost.org/LICENSE_1_0.txt" - ], - "ignorable_emails": [], - "text": "Use, modification and distribution are subject to the Boost Software License, Version 1.0.\n(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)" - }, - { - "license_expression": "cc-by-2.5", - "identifier": "cc-by-2.5_4.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-2.5_4.RULE", - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 14, - "relevance": 100, - "minimum_coverage": 50, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://creativecommons.org/licenses/by/2.5" - ], - "ignorable_emails": [], - "text": "* Released under the Creative Commons Attribution License\n * (http://creativecommons.org/licenses/by/2.5)" - }, - { - "license_expression": "cpl-1.0", - "identifier": "cpl-1.0.SPDX.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 1721, - "relevance": 100, - "minimum_coverage": 10, - "referenced_filenames": [], - "notes": "license text as published by SPDX", - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Common Public License Version 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC\nLICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of the initial Contributor, the initial code and\ndocumentation distributed under this Agreement, and\n\nb) in the case of each subsequent Contributor:\n\ni) changes to the Program, and\n\nii) additions to the Program;\n\nwhere such changes and/or additions to the Program originate from and are\ndistributed by that particular Contributor. A Contribution 'originates' from a\nContributor if it was added to the Program by such Contributor itself or anyone\nacting on such Contributor's behalf. Contributions do not include additions to\nthe Program which: (i) are separate modules of software distributed in\nconjunction with the Program under their own license agreement, and (ii) are not\nderivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are\nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all Contributors.\n\n2. GRANT OF RIGHTS\n\na) Subject to the terms of this Agreement, each Contributor hereby grants\nRecipient a non-exclusive, worldwide, royalty-free copyright license to\nreproduce, prepare derivative works of, publicly display, publicly perform,\ndistribute and sublicense the Contribution of such Contributor, if any, and such\nderivative works, in source code and object code form.\n\nb) Subject to the terms of this Agreement, each Contributor hereby grants\nRecipient a non-exclusive, worldwide, royalty-free patent license under Licensed\nPatents to make, use, sell, offer to sell, import and otherwise transfer the\nContribution of such Contributor, if any, in source code and object code form.\nThis patent license shall apply to the combination of the Contribution and the\nProgram if, at the time the Contribution is added by the Contributor, such\naddition of the Contribution causes such combination to be covered by the\nLicensed Patents. The patent license shall not apply to any other combinations\nwhich include the Contribution. No hardware per se is licensed hereunder.\n\nc) Recipient understands that although each Contributor grants the licenses\nto its Contributions set forth herein, no assurances are provided by any\nContributor that the Program does not infringe the patent or other intellectual\nproperty rights of any other entity. Each Contributor disclaims any liability to\nRecipient for claims brought by any other entity based on infringement of\nintellectual property rights or otherwise. As a condition to exercising the\nrights and licenses granted hereunder, each Recipient hereby assumes sole\nresponsibility to secure any other intellectual property rights needed, if any.\nFor example, if a third party patent license is required to allow Recipient to\ndistribute the Program, it is Recipient's responsibility to acquire that license\nbefore distributing the Program.\n\nd) Each Contributor represents that to its knowledge it has sufficient\ncopyright rights in its Contribution, if any, to grant the copyright license set\nforth in this Agreement.\n\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its\nown license agreement, provided that:\n\na) it complies with the terms and conditions of this Agreement; and\n\nb) its license agreement:\n\ni) effectively disclaims on behalf of all Contributors all warranties and\nconditions, express and implied, including warranties or conditions of title and\nnon-infringement, and implied warranties or conditions of merchantability and\nfitness for a particular purpose;\n\nii) effectively excludes on behalf of all Contributors all liability for\ndamages, including direct, indirect, special, incidental and consequential\ndamages, such as lost profits;\n\niii) states that any provisions which differ from this Agreement are offered\nby that Contributor alone and not by any other party; and\n\niv) states that source code for the Program is available from such\nContributor, and informs licensees how to obtain it in a reasonable manner on or\nthrough a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\na) it must be made available under this Agreement; and\n\nb) a copy of this Agreement must be included with each copy of the Program.\n\nContributors may not remove or alter any copyright notices contained within the\nProgram.\n\nEach Contributor must identify itself as the originator of its Contribution, if\nany, in a manner that reasonably allows subsequent Recipients to identify the\noriginator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with\nrespect to end users, business partners and the like. While this license is\nintended to facilitate the commercial use of the Program, the Contributor who\nincludes the Program in a commercial product offering should do so in a manner\nwhich does not create potential liability for other Contributors. Therefore, if\na Contributor includes the Program in a commercial product offering, such\nContributor (\"Commercial Contributor\") hereby agrees to defend and indemnify\nevery other Contributor (\"Indemnified Contributor\") against any losses, damages\nand costs (collectively \"Losses\") arising from claims, lawsuits and other legal\nactions brought by a third party against the Indemnified Contributor to the\nextent caused by the acts or omissions of such Commercial Contributor in\nconnection with its distribution of the Program in a commercial product\noffering. The obligations in this section do not apply to any claims or Losses\nrelating to any actual or alleged intellectual property infringement. In order\nto qualify, an Indemnified Contributor must: a) promptly notify the Commercial\nContributor in writing of such claim, and b) allow the Commercial Contributor to\ncontrol, and cooperate with the Commercial Contributor in, the defense and any\nrelated settlement negotiations. The Indemnified Contributor may participate in\nany such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial product\noffering, Product X. That Contributor is then a Commercial Contributor. If that\nCommercial Contributor then makes performance claims, or offers warranties\nrelated to Product X, those performance claims and warranties are such\nCommercial Contributor's responsibility alone. Under this section, the\nCommercial Contributor would have to defend claims against the other\nContributors related to those performance claims and warranties, and if a court\nrequires any other Contributor to pay any damages as a result, the Commercial\nContributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining the appropriateness of using and\ndistributing the Program and assumes all risks associated with its exercise of\nrights under this Agreement, including but not limited to the risks and costs of\nprogram errors, compliance with applicable laws, damage to or loss of data,\nprograms or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable\nlaw, it shall not affect the validity or enforceability of the remainder of the\nterms of this Agreement, and without further action by the parties hereto, such\nprovision shall be reformed to the minimum extent necessary to make such\nprovision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to\na patent applicable to software (including a cross-claim or counterclaim in a\nlawsuit), then any patent licenses granted by that Contributor to such Recipient\nunder this Agreement shall terminate as of the date such litigation is filed. In\naddition, if Recipient institutes patent litigation against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that the Program\nitself (excluding combinations of the Program with other software or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted under\nSection 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to\ncomply with any of the material terms or conditions of this Agreement and does\nnot cure such failure in a reasonable period of time after becoming aware of\nsuch noncompliance. If all Recipient's rights under this Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient relating to the Program shall continue and\nsurvive.\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in\norder to avoid inconsistency the Agreement is copyrighted and may only be\nmodified in the following manner. The Agreement Steward reserves the right to\npublish new versions (including revisions) of this Agreement from time to time.\nNo one other than the Agreement Steward has the right to modify this Agreement.\nIBM is the initial Agreement Steward. IBM may assign the responsibility to serve\nas the Agreement Steward to a suitable separate entity. Each new version of the\nAgreement will be given a distinguishing version number. The Program (including\nContributions) may always be distributed subject to the version of the Agreement\nunder which it was received. In addition, after a new version of the Agreement\nis published, Contributor may elect to distribute the Program (including its\nContributions) under the new version. Except as expressly stated in Sections\n2(a) and 2(b) above, Recipient receives no rights or licenses to the\nintellectual property of any Contributor under this Agreement, whether\nexpressly, by implication, estoppel or otherwise. All rights in the Program not\nexpressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the\nintellectual property laws of the United States of America. No party to this\nAgreement will bring a legal action under this Agreement more than one year\nafter the cause of action arose. Each party waives its rights to a jury trial in\nany resulting litigation." - }, - { - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "identifier": "gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 176, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This library is free software; you can redistribute it and/or modify \nit under the terms of the GNU General Public License as published by \nthe Free Software Foundation; either version 2 of the License, or (at \nyour option) any later version. \n \nThis library is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n \nYou should have received a copy of the GNU General Public License \nalong with this library; if not, write to the Free Software Foundation\nInc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \n \nAs a special exception, if other files instantiate generics from this \nunit, or you link this unit with other files to produce an executable,\nthis unit does not by itself cause the resulting executable to be \ncovered by the GNU General Public License. This exception does not \nhowever invalidate any other reasons why the executable file might be\ncovered by the GNU Public License." - }, - { - "license_expression": "jboss-eula", - "identifier": "jboss-eula.LICENSE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": true, - "is_synthetic": false, - "length": 1285, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [ - "Copyright 2006 Red Hat, Inc." - ], - "ignorable_holders": [ - "Red Hat, Inc." - ], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.jboss.com/company/logos", - "http://www.jboss.org/", - "http://www.opensource.org/licenses/index.php", - "http://www.redhat.com/about/corporate/trademark", - "http://www.redhat.com/licenses" - ], - "ignorable_emails": [], - "text": "LICENSE AGREEMENT\nJBOSS(r)\n\nThis License Agreement governs the use of the Software Packages and any updates to the Software\nPackages, regardless of the delivery mechanism. Each Software Package is a collective work\nunder U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. (\"Red Hat\") grants to\nthe user (\"Client\") a license to the applicable collective work(s) pursuant to the\nGNU Lesser General Public License v. 2.1 except for the following Software Packages:\n(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the\nGNU General Public License v.2;\n\n(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;\n\n(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the\n(open source) Sleepycat License (if Client does not wish to use the open source version of this database,\nit may purchase a license from Sleepycat Software);\n\nand (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1,\nand, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various\nroyalty-free patent licenses.\n\nEach of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.\n\n1. The Software. \"Software Packages\" refer to the various software modules that are created and made available\nfor distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages\nmay be comprised of hundreds of software components. The end user license agreement for each component is located in\nthe component's source code. With the exception of certain image files identified in Section 2 below,\nthe license terms for the components permit Client to copy, modify, and redistribute the component,\nin both source code and binary code forms. This agreement does not limit Client's rights under,\nor grant Client rights that supersede, the license terms of any particular component.\n\n2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright\nand other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall\nremain with the aforementioned, subject to the applicable license. The \"JBoss\" trademark, \"Red Hat\" trademark, the\nindividual Software Package trademarks, and the \"Shadowman\" logo are registered trademarks of Red Hat and its affiliates\nin the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages\nusing the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's\ntrademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by\nthese trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified.\nIf Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at\nhttp://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted.\nMerely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.\n\n3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular\ncomponent, to the maximum extent permitted under applicable law, the Software Packages and the\ncomponents are provided and licensed \"as is\" without warranty of any kind, expressed or implied,\nincluding the implied warranties of merchantability, non-infringement or fitness for a particular purpose.\nRed Hat warrants that the media on which Software Packages may be furnished will be free from defects in\nmaterials and manufacture under normal use for a period of 30 days from the date of delivery to Client.\nRed Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements\nor that the operation of the Software Packages will be entirely error free or appear precisely as described\nin the accompanying documentation. This warranty extends only to the party that purchases the Services\npertaining to the Software Packages from Red Hat or a Red Hat authorized distributor.\n\n4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies\ndescribed below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's\nexclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of\ndelivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or\nrefund the money paid by Client for the Software. To the maximum extent permitted by applicable law,\nRed Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential\ndamages, including lost profits or lost savings arising out of the use or inability to use the Software,\neven if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall\nRed Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this\nAgreement during the twelve months preceding the action.\n\n5. Export Control. As required by U.S. law, Client represents and warrants that it:\n(a) understands that the Software Packages are subject to export controls under the\nU.S. Commerce Department's Export Administration Regulations (\"EAR\");\n\n(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations\n(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria);\n\n(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity,\nor individual without the necessary export license(s) or authorizations(s) from the U.S. Government;\n\n(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or\nbiological weapons, or missile technology end-uses unless authorized by the U.S. Government by\nregulation or specific license;\n\n(e) understands and agrees that if it is in the United States and exports or transfers the Software\nPackages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual\nreports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and\naddress (including country) of each transferee;\n\nand (f) understands that countries other than the United States may restrict the import, use, or\nexport of encryption products and that it shall be solely responsible for compliance with any such\nimport, use, or export restrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages\nthat are not part of the Software Packages and which Client must install separately. These third party\nprograms are subject to their own license terms. The license terms either accompany the programs or\ncan be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable\nlicense terms for such programs, then Client may not install them. If Client wishes to install the programs\non more than one system or transfer the programs to another party, then Client must contact the licensor\nof the programs.\n\n7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the\nenforceability of the remaining provisions. This License Agreement shall be governed by the laws of the\nState of North Carolina and of the United States, without regard to any conflict of laws provisions,\nexcept that the United Nations Convention on the International Sale of Goods shall not apply.\n\nCopyright 2006 Red Hat, Inc. All rights reserved.\n\"JBoss\" and the JBoss logo are registered trademarks of Red Hat, Inc.\nAll other trademarks are the property of their respective owners.\n\nPage 1 of 1 18 October 2006" - }, - { - "license_expression": "lgpl-2.1-plus", - "identifier": "lgpl-2.1-plus_59.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE", - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 125, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [ - "http://www.fsf.org/" - ], - "ignorable_emails": [], - "text": "This is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n\n This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this software; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n 02110-1301 USA, or see the FSF site: http://www.fsf.org." - }, - { - "license_expression": "lgpl-2.1", - "identifier": "lgpl-2.1_101.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_101.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 4288, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": "in this variant the address has changed to 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA", - "ignorable_copyrights": [ - "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", - "copyrighted by the Free Software Foundation" - ], - "ignorable_holders": [ - "Free Software Foundation, Inc.", - "the Free Software Foundation" - ], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "GNU LESSER GENERAL PUBLIC LICENSE\n\t\t Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n\t\t\t Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\f\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\f\n\t\t GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\f\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\f\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n\t\t\t NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n\t\t END OF TERMS AND CONDITIONS\n\f\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!" - }, - { - "license_expression": "mit-old-style", - "identifier": "mit-old-style_cmr-no_1.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 71, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Permission to use, copy, modify, distribute and sell this software\nand its documentation for any purpose is hereby granted without fee,\nprovided that the above copyright notice appear in all copies and\nthat both that copyright notice and this permission notice appear\nin supporting documentation. Christian Michelsen Research AS\nmakes no representations about the suitability of this software for\nany purpose. It is provided \"as is\" without express or implied warranty." - }, - { - "license_expression": "mit", - "identifier": "mit.LICENSE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": true, - "is_synthetic": false, - "length": 161, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - }, - { - "license_expression": "public-domain-disclaimer", - "identifier": "public-domain-disclaimer_77.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 30, - "relevance": 100, - "minimum_coverage": 0, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "I am placing this code in the Public Domain. Do with it as you will. This software comes with no guarantees or warranties but with plenty of well-wishing instead!" - }, - { - "license_expression": "public-domain", - "identifier": "public-domain_bare_words.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE", - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": true, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 2, - "relevance": 70, - "minimum_coverage": 100, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "Public Domain" - }, - { - "license_expression": "unknown-license-reference", - "identifier": "unknown-license-reference_225.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_225.RULE", - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 6, - "relevance": 100, - "minimum_coverage": 80, - "referenced_filenames": [ - "LICENSE_1_0.txt" - ], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "LICENSE_1_0.txt - License file." - }, - { - "license_expression": "zlib", - "identifier": "zlib.LICENSE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": true, - "is_synthetic": false, - "length": 132, - "relevance": 100, - "minimum_coverage": 50, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "This software is provided 'as-is', without any express or implied warranty. In no\nevent will the authors be held liable for any damages arising from the use of this\nsoftware.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim that\nyou wrote the original software. If you use this software in a product, an\nacknowledgment in the product documentation would be appreciated but is not\nrequired.\n\n2. Altered source versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution." - }, - { - "license_expression": "zlib", - "identifier": "zlib_17.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 144, - "relevance": 100, - "minimum_coverage": 100, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [ - "jloup@gzip.org", - "madler@alumni.caltech.edu" - ], - "text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - }, - { - "license_expression": "zlib", - "identifier": "zlib_21.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_21.RULE", - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 28, - "relevance": 100, - "minimum_coverage": 90, - "referenced_filenames": [], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "A Pos is an index in the character window. We use short instead of int to\nsave space in the various tables. IPos is used only for parameter passing." - }, - { - "license_expression": "zlib", - "identifier": "zlib_5.RULE", - "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "is_continuous": false, - "is_builtin": true, - "is_from_license": false, - "is_synthetic": false, - "length": 12, - "relevance": 100, - "minimum_coverage": 99, - "referenced_filenames": [ - "zlib.h" - ], - "notes": null, - "ignorable_copyrights": [], - "ignorable_holders": [], - "ignorable_authors": [], - "ignorable_urls": [], - "ignorable_emails": [], - "text": "For conditions of distribution and use, see copyright notice in zlib.h" - } - ], - "files": [ - { - "path": "samples", - "type": "directory", - "name": "samples", - "base_name": "samples", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": true, - "is_key_file": false, - "files_count": 33, - "dirs_count": 10, - "size_count": 1161083, - "scan_errors": [] - }, - { - "path": "samples/README", - "type": "file", - "name": "README", - "base_name": "README", - "extension": "", - "size": 236, - "date": "2022-04-20", - "sha1": "2e07e32c52d607204fad196052d70e3d18fb8636", - "md5": "effc6856ef85a9250fb1a470792b3f38", - "sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://zlib.net/zlib-1.2.8.tar.gz", - "start_line": 3, - "end_line": 3 - }, - { - "url": "http://master.dl.sourceforge.net/project/javagroups/JGroups/2.10.0.GA/JGroups-2.10.0.GA.src.zip", - "start_line": 4, - "end_line": 4 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": true, - "is_top_level": true, - "is_key_file": true, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/screenshot.png", - "type": "file", - "name": "screenshot.png", - "base_name": "screenshot", - "extension": ".png", - "size": 622754, - "date": "2022-04-20", - "sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4", - "md5": "b6ef5a90777147423c98b42a6a25e57a", - "sha256": "a1c9905b77a8ff7e72c93abc85d32d9e43353996710b83c5bfa581c5f2af60ad", - "mime_type": "image/png", - "file_type": "PNG image data, 2880 x 1666, 8-bit/color RGB, non-interlaced", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": false, - "is_media": true, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": true, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/arch", - "type": "directory", - "name": "arch", - "base_name": "arch", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": true, - "is_key_file": false, - "files_count": 1, - "dirs_count": 0, - "size_count": 28103, - "scan_errors": [] - }, - { - "path": "samples/arch/zlib.tar.gz", - "type": "file", - "name": "zlib.tar.gz", - "base_name": "zlib", - "extension": ".tar.gz", - "size": 28103, - "date": "2022-04-20", - "sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd", - "md5": "20b2370751abfc08bb3556c1d8114b5a", - "sha256": "e6bb199f3b59fffac4092542a516a46b7f922e607d754c21ef5b27334b1f3ba6", - "mime_type": "application/gzip", - "file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix, original size modulo 2^32 103424", - "programming_language": null, - "is_binary": true, - "is_text": false, - "is_archive": true, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups", - "type": "directory", - "name": "JGroups", - "base_name": "JGroups", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": true, - "is_key_file": false, - "files_count": 14, - "dirs_count": 2, - "size_count": 241228, - "scan_errors": [] - }, - { - "path": "samples/JGroups/EULA", - "type": "file", - "name": "EULA", - "base_name": "EULA", - "extension": "", - "size": 8156, - "date": "2022-04-20", - "sha1": "eb232aa0424eca9c4136904e6143b72aaa9cf4de", - "md5": "0be0aceb8296727efff0ac0bf8e6bdb3", - "sha256": "6ef829995515206ba682183a68f971f00ee91b6bd1b4427f76a6bf364969c1ae", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "verilog", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "jboss-eula", - "detected_license_expression_spdx": "LicenseRef-scancode-jboss-eula", - "license_detections": [ - { - "license_expression": "jboss-eula", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 108, - "matched_length": 1285, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "jboss-eula", - "rule_identifier": "jboss-eula.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE", - "matched_text": "LICENSE AGREEMENT\nJBOSS(r)\n\nThis License Agreement governs the use of the Software Packages and any updates to the Software \nPackages, regardless of the delivery mechanism. Each Software Package is a collective work \nunder U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. (\"Red Hat\") grants to \nthe user (\"Client\") a license to the applicable collective work(s) pursuant to the \nGNU Lesser General Public License v. 2.1 except for the following Software Packages: \n(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the \nGNU General Public License v.2; \n\n(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;\n\n(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the \n(open source) Sleepycat License (if Client does not wish to use the open source version of this database, \nit may purchase a license from Sleepycat Software); \n\nand (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1, \nand, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various \nroyalty-free patent licenses. \n\nEach of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.\n\n1. The Software. \"Software Packages\" refer to the various software modules that are created and made available \nfor distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages \nmay be comprised of hundreds of software components. The end user license agreement for each component is located in \nthe component's source code. With the exception of certain image files identified in Section 2 below, \nthe license terms for the components permit Client to copy, modify, and redistribute the component, \nin both source code and binary code forms. This agreement does not limit Client's rights under, \nor grant Client rights that supersede, the license terms of any particular component.\n\n2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright \nand other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall \nremain with the aforementioned, subject to the applicable license. The \"JBoss\" trademark, \"Red Hat\" trademark, the \nindividual Software Package trademarks, and the \"Shadowman\" logo are registered trademarks of Red Hat and its affiliates \nin the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages \nusing the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's \ntrademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by \nthese trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified. \nIf Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at \nhttp://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted. \nMerely deleting the files containing the Red Hat trademarks may corrupt the Software Packages. \n\n3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular \ncomponent, to the maximum extent permitted under applicable law, the Software Packages and the \ncomponents are provided and licensed \"as is\" without warranty of any kind, expressed or implied, \nincluding the implied warranties of merchantability, non-infringement or fitness for a particular purpose. \nRed Hat warrants that the media on which Software Packages may be furnished will be free from defects in \nmaterials and manufacture under normal use for a period of 30 days from the date of delivery to Client. \nRed Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements \nor that the operation of the Software Packages will be entirely error free or appear precisely as described \nin the accompanying documentation. This warranty extends only to the party that purchases the Services \npertaining to the Software Packages from Red Hat or a Red Hat authorized distributor. \n\n4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies \ndescribed below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's \nexclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of \ndelivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or \nrefund the money paid by Client for the Software. To the maximum extent permitted by applicable law, \nRed Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential \ndamages, including lost profits or lost savings arising out of the use or inability to use the Software, \neven if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall \nRed Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this \nAgreement during the twelve months preceding the action.\n\n5. Export Control. As required by U.S. law, Client represents and warrants that it: \n(a) understands that the Software Packages are subject to export controls under the \nU.S. Commerce Department's Export Administration Regulations (\"EAR\"); \n\n(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations \n(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); \n\n(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity, \nor individual without the necessary export license(s) or authorizations(s) from the U.S. Government; \n\n(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or \nbiological weapons, or missile technology end-uses unless authorized by the U.S. Government by \nregulation or specific license; \n\n(e) understands and agrees that if it is in the United States and exports or transfers the Software \nPackages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual \nreports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and \naddress (including country) of each transferee; \n\nand (f) understands that countries other than the United States may restrict the import, use, or \nexport of encryption products and that it shall be solely responsible for compliance with any such \nimport, use, or export restrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages \nthat are not part of the Software Packages and which Client must install separately. These third party \nprograms are subject to their own license terms. The license terms either accompany the programs or \ncan be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable \nlicense terms for such programs, then Client may not install them. If Client wishes to install the programs \non more than one system or transfer the programs to another party, then Client must contact the licensor \nof the programs.\n\n7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the \nenforceability of the remaining provisions. This License Agreement shall be governed by the laws of the \nState of North Carolina and of the United States, without regard to any conflict of laws provisions, \nexcept that the United Nations Convention on the International Sale of Goods shall not apply.\n\nCopyright 2006 Red Hat, Inc. All rights reserved. \n\"JBoss\" and the JBoss logo are registered trademarks of Red Hat, Inc. \nAll other trademarks are the property of their respective owners. \n\n\tPage 1 of 1\t18 October 2006" - } - ], - "detection_log": [], - "identifier": "jboss_eula-7d18bfd6-7597-7ba3-c7dc-7bbe6d2af58e" - } - ], - "license_clues": [], - "percentage_of_license_text": 99.0, - "copyrights": [ - { - "copyright": "Copyright 2006 Red Hat, Inc.", - "start_line": 104, - "end_line": 104 - } - ], - "holders": [ - { - "holder": "Red Hat, Inc.", - "start_line": 104, - "end_line": 104 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.opensource.org/licenses/index.php", - "start_line": 24, - "end_line": 24 - }, - { - "url": "http://www.jboss.org/", - "start_line": 27, - "end_line": 27 - }, - { - "url": "http://www.redhat.com/about/corporate/trademark", - "start_line": 40, - "end_line": 40 - }, - { - "url": "http://www.jboss.com/company/logos", - "start_line": 43, - "end_line": 43 - }, - { - "url": "http://www.redhat.com/licenses", - "start_line": 94, - "end_line": 94 - } - ], - "is_legal": true, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/LICENSE", - "type": "file", - "name": "LICENSE", - "base_name": "LICENSE", - "extension": "", - "size": 26430, - "date": "2022-04-20", - "sha1": "e60c2e780886f95df9c9ee36992b8edabec00bcc", - "md5": "7fbc338309ac38fefcd64b04bb903e34", - "sha256": "a190dc9c8043755d90f8b0a75fa66b9e42d4af4c980bf5ddc633f0124db3cee7", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "lgpl-2.1", - "detected_license_expression_spdx": "LGPL-2.1-only", - "license_detections": [ - { - "license_expression": "lgpl-2.1", - "matches": [ - { - "score": 100.0, - "start_line": 1, - "end_line": 502, - "matched_length": 4288, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1", - "rule_identifier": "lgpl-2.1_101.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_101.RULE", - "matched_text": "GNU LESSER GENERAL PUBLIC LICENSE\n\t\t Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n\t\t\t Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\f\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\f\n\t\t GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\f\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\f\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n\t\t\t NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n\t\t END OF TERMS AND CONDITIONS\n\f\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!" - } - ], - "detection_log": [], - "identifier": "lgpl_2_1-64dbac63-7b61-7151-023f-321235aeef62" - } - ], - "license_clues": [], - "percentage_of_license_text": 100.0, - "copyrights": [ - { - "copyright": "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", - "start_line": 4, - "end_line": 4 - }, - { - "copyright": "copyrighted by the Free Software Foundation", - "start_line": 429, - "end_line": 429 - } - ], - "holders": [ - { - "holder": "Free Software Foundation, Inc.", - "start_line": 4, - "end_line": 4 - }, - { - "holder": "the Free Software Foundation", - "start_line": 429, - "end_line": 429 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": true, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses", - "type": "directory", - "name": "licenses", - "base_name": "licenses", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 5, - "dirs_count": 0, - "size_count": 54552, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-1.1.txt", - "type": "file", - "name": "apache-1.1.txt", - "base_name": "apache-1.1", - "extension": ".txt", - "size": 2885, - "date": "2022-04-20", - "sha1": "6b5608d35c3e304532af43db8bbfc5947bef46a6", - "md5": "276982197c941f4cbf3d218546e17ae2", - "sha256": "b03079c80bc3657f4b9d838f02f036e4611693a0e42b043d5d71b45ac6c5040d", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "apache-1.1", - "detected_license_expression_spdx": "Apache-1.1", - "license_detections": [ - { - "license_expression": "apache-1.1", - "matches": [ - { - "score": 100.0, - "start_line": 2, - "end_line": 56, - "matched_length": 361, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "apache-1.1", - "rule_identifier": "apache-1.1_71.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-1.1_71.RULE", - "matched_text": "The Apache Software License, Version 1.1\r\n *\r\n * Copyright (c) 2000 The Apache Software Foundation. All rights\r\n * reserved.\r\n *\r\n * Redistribution and use in source and binary forms, with or without\r\n * modification, are permitted provided that the following conditions\r\n * are met:\r\n *\r\n * 1. Redistributions of source code must retain the above copyright\r\n * notice, this list of conditions and the following disclaimer.\r\n *\r\n * 2. Redistributions in binary form must reproduce the above copyright\r\n * notice, this list of conditions and the following disclaimer in\r\n * the documentation and/or other materials provided with the\r\n * distribution.\r\n *\r\n * 3. The end-user documentation included with the redistribution,\r\n * if any, must include the following acknowledgment:\r\n * \"This product includes software developed by the\r\n * Apache Software Foundation (http://www.apache.org/).\"\r\n * Alternately, this acknowledgment may appear in the software itself,\r\n * if and wherever such third-party acknowledgments normally appear.\r\n *\r\n * 4. The names \"Apache\" and \"Apache Software Foundation\" must\r\n * not be used to endorse or promote products derived from this\r\n * software without prior written permission. For written\r\n * permission, please contact apache@apache.org.\r\n *\r\n * 5. Products derived from this software may not be called \"Apache\",\r\n * nor may \"Apache\" appear in their name, without prior written\r\n * permission of the Apache Software Foundation.\r\n *\r\n * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\r\n * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\n * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR\r\n * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\r\n * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\r\n * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r\n * SUCH DAMAGE.\r\n * ====================================================================\r\n *\r\n * This software consists of voluntary contributions made by many\r\n * individuals on behalf of the Apache Software Foundation. For more\r\n * information on the Apache Software Foundation, please see\r\n * .\r\n *\r\n * Portions of this software are based upon public domain software\r\n * originally written at the National Center for Supercomputing Applications,\r\n * University of Illinois, Urbana-Champaign." - } - ], - "detection_log": [], - "identifier": "apache_1_1-43463ac7-69b6-151e-d9a8-597dc4212b7f" - } - ], - "license_clues": [], - "percentage_of_license_text": 100.0, - "copyrights": [ - { - "copyright": "Copyright (c) 2000 The Apache Software Foundation", - "start_line": 4, - "end_line": 4 - } - ], - "holders": [ - { - "holder": "The Apache Software Foundation", - "start_line": 4, - "end_line": 4 - } - ], - "authors": [ - { - "author": "the Apache Software Foundation (http://www.apache.org/)", - "start_line": 21, - "end_line": 22 - } - ], - "emails": [ - { - "email": "apache@apache.org", - "start_line": 29, - "end_line": 29 - } - ], - "urls": [ - { - "url": "http://www.apache.org/", - "start_line": 22, - "end_line": 22 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/apache-2.0.txt", - "type": "file", - "name": "apache-2.0.txt", - "base_name": "apache-2.0", - "extension": ".txt", - "size": 11560, - "date": "2022-04-20", - "sha1": "47b573e3824cd5e02a1a3ae99e2735b49e0256e4", - "md5": "d273d63619c9aeaf15cdaf76422c4f87", - "sha256": "3ddf9be5c28fe27dad143a5dc76eea25222ad1dd68934a047064e56ed2fa40c5", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "apache-2.0", - "detected_license_expression_spdx": "Apache-2.0", - "license_detections": [ - { - "license_expression": "apache-2.0", - "matches": [ - { - "score": 100.0, - "start_line": 2, - "end_line": 202, - "matched_length": 1584, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "apache-2.0", - "rule_identifier": "apache-2.0.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "matched_text": "Apache License\r\n Version 2.0, January 2004\r\n http://www.apache.org/licenses/\r\n\r\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n 1. Definitions.\r\n\r\n \"License\" shall mean the terms and conditions for use, reproduction,\r\n and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n \"Licensor\" shall mean the copyright owner or entity authorized by\r\n the copyright owner that is granting the License.\r\n\r\n \"Legal Entity\" shall mean the union of the acting entity and all\r\n other entities that control, are controlled by, or are under common\r\n control with that entity. For the purposes of this definition,\r\n \"control\" means (i) the power, direct or indirect, to cause the\r\n direction or management of such entity, whether by contract or\r\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\r\n outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\r\n exercising permissions granted by this License.\r\n\r\n \"Source\" form shall mean the preferred form for making modifications,\r\n including but not limited to software source code, documentation\r\n source, and configuration files.\r\n\r\n \"Object\" form shall mean any form resulting from mechanical\r\n transformation or translation of a Source form, including but\r\n not limited to compiled object code, generated documentation,\r\n and conversions to other media types.\r\n\r\n \"Work\" shall mean the work of authorship, whether in Source or\r\n Object form, made available under the License, as indicated by a\r\n copyright notice that is included in or attached to the work\r\n (an example is provided in the Appendix below).\r\n\r\n \"Derivative Works\" shall mean any work, whether in Source or Object\r\n form, that is based on (or derived from) the Work and for which the\r\n editorial revisions, annotations, elaborations, or other modifications\r\n represent, as a whole, an original work of authorship. For the purposes\r\n of this License, Derivative Works shall not include works that remain\r\n separable from, or merely link (or bind by name) to the interfaces of,\r\n the Work and Derivative Works thereof.\r\n\r\n \"Contribution\" shall mean any work of authorship, including\r\n the original version of the Work and any modifications or additions\r\n to that Work or Derivative Works thereof, that is intentionally\r\n submitted to Licensor for inclusion in the Work by the copyright owner\r\n or by an individual or Legal Entity authorized to submit on behalf of\r\n the copyright owner. For the purposes of this definition, \"submitted\"\r\n means any form of electronic, verbal, or written communication sent\r\n to the Licensor or its representatives, including but not limited to\r\n communication on electronic mailing lists, source code control systems,\r\n and issue tracking systems that are managed by, or on behalf of, the\r\n Licensor for the purpose of discussing and improving the Work, but\r\n excluding communication that is conspicuously marked or otherwise\r\n designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\r\n on behalf of whom a Contribution has been received by Licensor and\r\n subsequently incorporated within the Work.\r\n\r\n 2. Grant of Copyright License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n copyright license to reproduce, prepare Derivative Works of,\r\n publicly display, publicly perform, sublicense, and distribute the\r\n Work and such Derivative Works in Source or Object form.\r\n\r\n 3. Grant of Patent License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n (except as stated in this section) patent license to make, have made,\r\n use, offer to sell, sell, import, and otherwise transfer the Work,\r\n where such license applies only to those patent claims licensable\r\n by such Contributor that are necessarily infringed by their\r\n Contribution(s) alone or by combination of their Contribution(s)\r\n with the Work to which such Contribution(s) was submitted. If You\r\n institute patent litigation against any entity (including a\r\n cross-claim or counterclaim in a lawsuit) alleging that the Work\r\n or a Contribution incorporated within the Work constitutes direct\r\n or contributory patent infringement, then any patent licenses\r\n granted to You under this License for that Work shall terminate\r\n as of the date such litigation is filed.\r\n\r\n 4. Redistribution. You may reproduce and distribute copies of the\r\n Work or Derivative Works thereof in any medium, with or without\r\n modifications, and in Source or Object form, provided that You\r\n meet the following conditions:\r\n\r\n (a) You must give any other recipients of the Work or\r\n Derivative Works a copy of this License; and\r\n\r\n (b) You must cause any modified files to carry prominent notices\r\n stating that You changed the files; and\r\n\r\n (c) You must retain, in the Source form of any Derivative Works\r\n that You distribute, all copyright, patent, trademark, and\r\n attribution notices from the Source form of the Work,\r\n excluding those notices that do not pertain to any part of\r\n the Derivative Works; and\r\n\r\n (d) If the Work includes a \"NOTICE\" text file as part of its\r\n distribution, then any Derivative Works that You distribute must\r\n include a readable copy of the attribution notices contained\r\n within such NOTICE file, excluding those notices that do not\r\n pertain to any part of the Derivative Works, in at least one\r\n of the following places: within a NOTICE text file distributed\r\n as part of the Derivative Works; within the Source form or\r\n documentation, if provided along with the Derivative Works; or,\r\n within a display generated by the Derivative Works, if and\r\n wherever such third-party notices normally appear. The contents\r\n of the NOTICE file are for informational purposes only and\r\n do not modify the License. You may add Your own attribution\r\n notices within Derivative Works that You distribute, alongside\r\n or as an addendum to the NOTICE text from the Work, provided\r\n that such additional attribution notices cannot be construed\r\n as modifying the License.\r\n\r\n You may add Your own copyright statement to Your modifications and\r\n may provide additional or different license terms and conditions\r\n for use, reproduction, or distribution of Your modifications, or\r\n for any such Derivative Works as a whole, provided Your use,\r\n reproduction, and distribution of the Work otherwise complies with\r\n the conditions stated in this License.\r\n\r\n 5. Submission of Contributions. Unless You explicitly state otherwise,\r\n any Contribution intentionally submitted for inclusion in the Work\r\n by You to the Licensor shall be under the terms and conditions of\r\n this License, without any additional terms or conditions.\r\n Notwithstanding the above, nothing herein shall supersede or modify\r\n the terms of any separate license agreement you may have executed\r\n with Licensor regarding such Contributions.\r\n\r\n 6. Trademarks. This License does not grant permission to use the trade\r\n names, trademarks, service marks, or product names of the Licensor,\r\n except as required for reasonable and customary use in describing the\r\n origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n 7. Disclaimer of Warranty. Unless required by applicable law or\r\n agreed to in writing, Licensor provides the Work (and each\r\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n implied, including, without limitation, any warranties or conditions\r\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r\n PARTICULAR PURPOSE. You are solely responsible for determining the\r\n appropriateness of using or redistributing the Work and assume any\r\n risks associated with Your exercise of permissions under this License.\r\n\r\n 8. Limitation of Liability. In no event and under no legal theory,\r\n whether in tort (including negligence), contract, or otherwise,\r\n unless required by applicable law (such as deliberate and grossly\r\n negligent acts) or agreed to in writing, shall any Contributor be\r\n liable to You for damages, including any direct, indirect, special,\r\n incidental, or consequential damages of any character arising as a\r\n result of this License or out of the use or inability to use the\r\n Work (including but not limited to damages for loss of goodwill,\r\n work stoppage, computer failure or malfunction, or any and all\r\n other commercial damages or losses), even if such Contributor\r\n has been advised of the possibility of such damages.\r\n\r\n 9. Accepting Warranty or Additional Liability. While redistributing\r\n the Work or Derivative Works thereof, You may choose to offer,\r\n and charge a fee for, acceptance of support, warranty, indemnity,\r\n or other liability obligations and/or rights consistent with this\r\n License. However, in accepting such obligations, You may act only\r\n on Your own behalf and on Your sole responsibility, not on behalf\r\n of any other Contributor, and only if You agree to indemnify,\r\n defend, and hold each Contributor harmless for any liability\r\n incurred by, or claims asserted against, such Contributor by reason\r\n of your accepting any such warranty or additional liability.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n APPENDIX: How to apply the Apache License to your work.\r\n\r\n To apply the Apache License to your work, attach the following\r\n boilerplate notice, with the fields enclosed by brackets \"[]\"\r\n replaced with your own identifying information. (Don't include\r\n the brackets!) The text should be enclosed in the appropriate\r\n comment syntax for the file format. We also recommend that a\r\n file or class name and description of purpose be included on the\r\n same \"printed page\" as the copyright notice for easier\r\n identification within third-party archives.\r\n\r\n Copyright [yyyy] [name of copyright owner]\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License." - } - ], - "detection_log": [], - "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d" - } - ], - "license_clues": [], - "percentage_of_license_text": 100.0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.apache.org/licenses/", - "start_line": 4, - "end_line": 4 - }, - { - "url": "http://www.apache.org/licenses/LICENSE-2.0", - "start_line": 196, - "end_line": 196 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/bouncycastle.txt", - "type": "file", - "name": "bouncycastle.txt", - "base_name": "bouncycastle", - "extension": ".txt", - "size": 1186, - "date": "2022-04-20", - "sha1": "74facb0e9a734479f9cd893b5be3fe1bf651b760", - "md5": "9fffd8de865a5705969f62b128381f85", - "sha256": "3d469c451a2a0e97380b90143d979281fadd39be55432b903e6bd18b1b9915d4", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "mit", - "detected_license_expression_spdx": "MIT", - "license_detections": [ - { - "license_expression": "mit", - "matches": [ - { - "score": 100.0, - "start_line": 7, - "end_line": 18, - "matched_length": 161, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "mit", - "rule_identifier": "mit.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "matched_text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions\nof the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - } - ], - "detection_log": [], - "identifier": "mit-cacd5c0c-204a-85c2-affc-e4c125b2492a" - } - ], - "license_clues": [], - "percentage_of_license_text": 84.74, - "copyrights": [ - { - "copyright": "Copyright (c) 2000 - 2006 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)", - "start_line": 5, - "end_line": 5 - } - ], - "holders": [ - { - "holder": "The Legion Of The Bouncy Castle", - "start_line": 5, - "end_line": 5 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.bouncycastle.org/", - "start_line": 5, - "end_line": 5 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/cpl-1.0.txt", - "type": "file", - "name": "cpl-1.0.txt", - "base_name": "cpl-1.0", - "extension": ".txt", - "size": 11987, - "date": "2022-04-20", - "sha1": "681cf776bcd79752543d42490ec7ed22a29fd888", - "md5": "9a6d2c9ae73d59eb3dd38e3909750d14", - "sha256": "d9a768a23056b25ab4b0b48381003ce55f0d32514da5a4e017fa0765b3a887aa", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "cpl-1.0", - "detected_license_expression_spdx": "CPL-1.0", - "license_detections": [ - { - "license_expression": "cpl-1.0", - "matches": [ - { - "score": 99.94, - "start_line": 1, - "end_line": 212, - "matched_length": 1720, - "match_coverage": 99.94, - "matcher": "3-seq", - "license_expression": "cpl-1.0", - "rule_identifier": "cpl-1.0.SPDX.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE", - "matched_text": "Common Public License Version 1.0\r\n\r\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC\r\nLICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\r\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\r\n\r\n1. DEFINITIONS\r\n\r\n\"Contribution\" means:\r\n\r\n a) in the case of the initial Contributor, the initial code and documentation\r\n distributed under this Agreement, and\r\n\r\n b) in the case of each subsequent Contributor:\r\n\r\n i) changes to the Program, and\r\n\r\n ii) additions to the Program;\r\n\r\n where such changes and/or additions to the Program originate from and are\r\n distributed by that particular Contributor. A Contribution 'originates' from\r\n a Contributor if it was added to the Program by such Contributor itself or\r\n anyone acting on such Contributor's behalf. Contributions do not include\r\n additions to the Program which: (i) are separate modules of software\r\n distributed in conjunction with the Program under their own license\r\n agreement, and (ii) are not derivative works of the Program.\r\n\r\n\"Contributor\" means any person or entity that distributes the Program.\r\n\r\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are\r\nnecessarily infringed by the use or sale of its Contribution alone or when\r\ncombined with the Program.\r\n\r\n\"Program\" means the Contributions distributed in accordance with this Agreement.\r\n\r\n\"Recipient\" means anyone who receives the Program under this Agreement, including\r\nall Contributors.\r\n\r\n2. GRANT OF RIGHTS\r\n\r\n a) Subject to the terms of this Agreement, each Contributor hereby grants\r\n Recipient a non-exclusive, worldwide, royalty-free copyright license to\r\n reproduce, prepare derivative works of, publicly display, publicly perform,\r\n distribute and sublicense the Contribution of such Contributor, if any, and\r\n such derivative works, in source code and object code form.\r\n\r\n b) Subject to the terms of this Agreement, each Contributor hereby grants\r\n Recipient a non-exclusive, worldwide, royalty-free patent license under\r\n Licensed Patents to make, use, sell, offer to sell, import and otherwise\r\n transfer the Contribution of such Contributor, if any, in source code and\r\n object code form. This patent license shall apply to the combination of the\r\n Contribution and the Program if, at the time the Contribution is added by\r\n the Contributor, such addition of the Contribution causes such combination\r\n to be covered by the Licensed Patents. The patent license shall not apply to\r\n any other combinations which include the Contribution. No hardware per se is\r\n licensed hereunder.\r\n\r\n c) Recipient understands that although each Contributor grants the licenses\r\n to its Contributions set forth herein, no assurances are provided by any\r\n Contributor that the Program does not infringe the patent or other\r\n intellectual property rights of any other entity. Each Contributor disclaims\r\n any liability to Recipient for claims brought by any other entity based on\r\n infringement of intellectual property rights or otherwise. As a condition to\r\n exercising the rights and licenses granted hereunder, each Recipient hereby\r\n assumes sole responsibility to secure any other intellectual property rights\r\n needed, if any. For example, if a third party patent license is required to\r\n allow Recipient to distribute the Program, it is Recipient's responsibility\r\n to acquire that license before distributing the Program.\r\n\r\n d) Each Contributor represents that to its knowledge it has sufficient\r\n copyright rights in its Contribution, if any, to grant the copyright license\r\n set forth in this Agreement.\r\n\r\n3. REQUIREMENTS\r\n\r\nA Contributor may choose to distribute the Program in object code form under its\r\nown license agreement, provided that:\r\n\r\n a) it complies with the terms and conditions of this Agreement; and\r\n\r\n b) its license agreement:\r\n\r\n i) effectively disclaims on behalf of all Contributors all warranties and\r\n conditions, express and implied, including warranties or conditions of title\r\n and non-infringement, and implied warranties or conditions of merchantability\r\n and fitness for a particular purpose;\r\n\r\n ii) effectively excludes on behalf of all Contributors all liability for\r\n damages, including direct, indirect, special, incidental and consequential\r\n damages, such as lost profits;\r\n\r\n iii) states that any provisions which differ from this Agreement are offered\r\n by that Contributor alone and not by any other party; and\r\n\r\n iv) states that source code for the Program is available from such Contributor,\r\n and informs licensees how to obtain it in a reasonable manner on or through\r\n a medium customarily used for software exchange. \r\n\r\nWhen the Program is made available in source code form:\r\n\r\n a) it must be made available under this Agreement; and\r\n\r\n b) a copy of this Agreement must be included with each copy of the Program. \r\n\r\nContributors may not remove or alter any copyright notices contained within the Program.\r\n\r\nEach Contributor must identify itself as the originator of its Contribution, if\r\nany, in a manner that reasonably allows subsequent Recipients to identify the\r\noriginator of the Contribution.\r\n\r\n4. COMMERCIAL DISTRIBUTION\r\n\r\nCommercial distributors of software may accept certain responsibilities with\r\nrespect to end users, business partners and the like. While this license is\r\nintended to facilitate the commercial use of the Program, the Contributor who\r\nincludes the Program in a commercial product offering should do so in a manner\r\nwhich does not create potential liability for other Contributors. Therefore, if\r\na Contributor includes the Program in a commercial product offering, such\r\nContributor (\"Commercial Contributor\") hereby agrees to defend and indemnify\r\nevery other Contributor (\"Indemnified Contributor\") against any losses, damages\r\nand costs (collectively \"Losses\") arising from claims, lawsuits and other legal\r\nactions brought by a third party against the Indemnified Contributor to the\r\nextent caused by the acts or omissions of such Commercial Contributor in\r\nconnection with its distribution of the Program in a commercial product offering.\r\nThe obligations in this section do not apply to any claims or Losses relating to\r\nany actual or alleged intellectual property infringement. In order to qualify,\r\nan Indemnified Contributor must: a) promptly notify the Commercial Contributor \r\n[n] writing of such claim, and b) allow the Commercial Contributor to control,\r\nand cooperate with the Commercial Contributor in, the defense and any related\r\nsettlement negotiations. The Indemnified Contributor may participate in any such\r\nclaim at its own expense.\r\n\r\nFor example, a Contributor might include the Program in a commercial product\r\noffering, Product X. That Contributor is then a Commercial Contributor. If that\r\nCommercial Contributor then makes performance claims, or offers warranties\r\nrelated to Product X, those performance claims and warranties are such Commercial\r\nContributor's responsibility alone. Under this section, the Commercial\r\nContributor would have to defend claims against the other Contributors related\r\nto those performance claims and warranties, and if a court requires any other\r\nContributor to pay any damages as a result, the Commercial Contributor must pay\r\nthose damages.\r\n\r\n5. NO WARRANTY\r\n\r\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\r\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\r\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\r\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\r\nRecipient is solely responsible for determining the appropriateness of using\r\nand distributing the Program and assumes all risks associated with its exercise\r\nof rights under this Agreement, including but not limited to the risks and costs\r\nof program errors, compliance with applicable laws, damage to or loss of data,\r\nprograms or equipment, and unavailability or interruption of operations.\r\n\r\n6. DISCLAIMER OF LIABILITY\r\n\r\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY\r\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\r\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY\r\nWAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\r\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r\n\r\n7. GENERAL\r\n\r\nIf any provision of this Agreement is invalid or unenforceable under applicable\r\nlaw, it shall not affect the validity or enforceability of the remainder of the\r\nterms of this Agreement, and without further action by the parties hereto, such\r\nprovision shall be reformed to the minimum extent necessary to make such\r\nprovision valid and enforceable.\r\n\r\nIf Recipient institutes patent litigation against a Contributor with respect to\r\na patent applicable to software (including a cross-claim or counterclaim in a\r\nlawsuit), then any patent licenses granted by that Contributor to such Recipient\r\nunder this Agreement shall terminate as of the date such litigation is filed.\r\nIn addition, if Recipient institutes patent litigation against any entity\r\n(including a cross-claim or counterclaim in a lawsuit) alleging that the Program\r\nitself (excluding combinations of the Program with other software or hardware)\r\ninfringes such Recipient's patent(s), then such Recipient's rights granted under\r\nSection 2(b) shall terminate as of the date such litigation is filed.\r\n\r\nAll Recipient's rights under this Agreement shall terminate if it fails to comply\r\nwith any of the material terms or conditions of this Agreement and does not cure\r\nsuch failure in a reasonable period of time after becoming aware of such\r\nnoncompliance. If all Recipient's rights under this Agreement terminate, Recipient\r\nagrees to cease use and distribution of the Program as soon as reasonably\r\npracticable. However, Recipient's obligations under this Agreement and any\r\nlicenses granted by Recipient relating to the Program shall continue and survive.\r\n\r\nEveryone is permitted to copy and distribute copies of this Agreement, but in\r\norder to avoid inconsistency the Agreement is copyrighted and may only be modified\r\nin the following manner. The Agreement Steward reserves the right to publish new\r\nversions (including revisions) of this Agreement from time to time. No one other\r\nthan the Agreement Steward has the right to modify this Agreement. IBM is the\r\ninitial Agreement Steward. IBM may assign the responsibility to serve as the\r\nAgreement Steward to a suitable separate entity. Each new version of the Agreement\r\nwill be given a distinguishing version number. The Program (including Contributions)\r\nmay always be distributed subject to the version of the Agreement under which it\r\nwas received. In addition, after a new version of the Agreement is published,\r\nContributor may elect to distribute the Program (including its Contributions)\r\nunder the new version. Except as expressly stated in Sections 2(a) and 2(b) above,\r\nRecipient receives no rights or licenses to the intellectual property of any\r\nContributor under this Agreement, whether expressly, by implication, estoppel or\r\notherwise. All rights in the Program not expressly granted under this Agreement\r\nare reserved.\r\n\r\nThis Agreement is governed by the laws of the State of New York and the\r\nintellectual property laws of the United States of America. No party to this\r\nAgreement will bring a legal action under this Agreement more than one year after\r\nthe cause of action arose. Each party waives its rights to a jury trial in any\r\nresulting litigation." - } - ], - "detection_log": [], - "identifier": "cpl_1_0-4a106c12-fe39-7e45-d054-148472167ea3" - } - ], - "license_clues": [], - "percentage_of_license_text": 99.94, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/licenses/lgpl.txt", - "type": "file", - "name": "lgpl.txt", - "base_name": "lgpl", - "extension": ".txt", - "size": 26934, - "date": "2022-04-20", - "sha1": "8f1a637d2e2ed1bdb9eb01a7dccb5c12cc0557e1", - "md5": "f14599a2f089f6ff8c97e2baa4e3d575", - "sha256": "885a03f54b157961236f46843e79972abfcd6890b6cbb368bc7eca328ff95a12", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "lgpl-2.1", - "detected_license_expression_spdx": "LGPL-2.1-only", - "license_detections": [ - { - "license_expression": "lgpl-2.1", - "matches": [ - { - "score": 100.0, - "start_line": 1, - "end_line": 502, - "matched_length": 4288, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1", - "rule_identifier": "lgpl-2.1_101.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_101.RULE", - "matched_text": "GNU LESSER GENERAL PUBLIC LICENSE\r\n\t\t Version 2.1, February 1999\r\n\r\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\r\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r\n Everyone is permitted to copy and distribute verbatim copies\r\n of this license document, but changing it is not allowed.\r\n\r\n[This is the first released version of the Lesser GPL. It also counts\r\n as the successor of the GNU Library Public License, version 2, hence\r\n the version number 2.1.]\r\n\r\n\t\t\t Preamble\r\n\r\n The licenses for most software are designed to take away your\r\nfreedom to share and change it. By contrast, the GNU General Public\r\nLicenses are intended to guarantee your freedom to share and change\r\nfree software--to make sure the software is free for all its users.\r\n\r\n This license, the Lesser General Public License, applies to some\r\nspecially designated software packages--typically libraries--of the\r\nFree Software Foundation and other authors who decide to use it. You\r\ncan use it too, but we suggest you first think carefully about whether\r\nthis license or the ordinary General Public License is the better\r\nstrategy to use in any particular case, based on the explanations below.\r\n\r\n When we speak of free software, we are referring to freedom of use,\r\nnot price. Our General Public Licenses are designed to make sure that\r\nyou have the freedom to distribute copies of free software (and charge\r\nfor this service if you wish); that you receive source code or can get\r\nit if you want it; that you can change the software and use pieces of\r\nit in new free programs; and that you are informed that you can do\r\nthese things.\r\n\r\n To protect your rights, we need to make restrictions that forbid\r\ndistributors to deny you these rights or to ask you to surrender these\r\nrights. These restrictions translate to certain responsibilities for\r\nyou if you distribute copies of the library or if you modify it.\r\n\r\n For example, if you distribute copies of the library, whether gratis\r\nor for a fee, you must give the recipients all the rights that we gave\r\nyou. You must make sure that they, too, receive or can get the source\r\ncode. If you link other code with the library, you must provide\r\ncomplete object files to the recipients, so that they can relink them\r\nwith the library after making changes to the library and recompiling\r\nit. And you must show them these terms so they know their rights.\r\n\r\n We protect your rights with a two-step method: (1) we copyright the\r\nlibrary, and (2) we offer you this license, which gives you legal\r\npermission to copy, distribute and/or modify the library.\r\n\r\n To protect each distributor, we want to make it very clear that\r\nthere is no warranty for the free library. Also, if the library is\r\nmodified by someone else and passed on, the recipients should know\r\nthat what they have is not the original version, so that the original\r\nauthor's reputation will not be affected by problems that might be\r\nintroduced by others.\r\n\f\r\n Finally, software patents pose a constant threat to the existence of\r\nany free program. We wish to make sure that a company cannot\r\neffectively restrict the users of a free program by obtaining a\r\nrestrictive license from a patent holder. Therefore, we insist that\r\nany patent license obtained for a version of the library must be\r\nconsistent with the full freedom of use specified in this license.\r\n\r\n Most GNU software, including some libraries, is covered by the\r\nordinary GNU General Public License. This license, the GNU Lesser\r\nGeneral Public License, applies to certain designated libraries, and\r\nis quite different from the ordinary General Public License. We use\r\nthis license for certain libraries in order to permit linking those\r\nlibraries into non-free programs.\r\n\r\n When a program is linked with a library, whether statically or using\r\na shared library, the combination of the two is legally speaking a\r\ncombined work, a derivative of the original library. The ordinary\r\nGeneral Public License therefore permits such linking only if the\r\nentire combination fits its criteria of freedom. The Lesser General\r\nPublic License permits more lax criteria for linking other code with\r\nthe library.\r\n\r\n We call this license the \"Lesser\" General Public License because it\r\ndoes Less to protect the user's freedom than the ordinary General\r\nPublic License. It also provides other free software developers Less\r\nof an advantage over competing non-free programs. These disadvantages\r\nare the reason we use the ordinary General Public License for many\r\nlibraries. However, the Lesser license provides advantages in certain\r\nspecial circumstances.\r\n\r\n For example, on rare occasions, there may be a special need to\r\nencourage the widest possible use of a certain library, so that it becomes\r\na de-facto standard. To achieve this, non-free programs must be\r\nallowed to use the library. A more frequent case is that a free\r\nlibrary does the same job as widely used non-free libraries. In this\r\ncase, there is little to gain by limiting the free library to free\r\nsoftware only, so we use the Lesser General Public License.\r\n\r\n In other cases, permission to use a particular library in non-free\r\nprograms enables a greater number of people to use a large body of\r\nfree software. For example, permission to use the GNU C Library in\r\nnon-free programs enables many more people to use the whole GNU\r\noperating system, as well as its variant, the GNU/Linux operating\r\nsystem.\r\n\r\n Although the Lesser General Public License is Less protective of the\r\nusers' freedom, it does ensure that the user of a program that is\r\nlinked with the Library has the freedom and the wherewithal to run\r\nthat program using a modified version of the Library.\r\n\r\n The precise terms and conditions for copying, distribution and\r\nmodification follow. Pay close attention to the difference between a\r\n\"work based on the library\" and a \"work that uses the library\". The\r\nformer contains code derived from the library, whereas the latter must\r\nbe combined with the library in order to run.\r\n\f\r\n\t\t GNU LESSER GENERAL PUBLIC LICENSE\r\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\r\n\r\n 0. This License Agreement applies to any software library or other\r\nprogram which contains a notice placed by the copyright holder or\r\nother authorized party saying it may be distributed under the terms of\r\nthis Lesser General Public License (also called \"this License\").\r\nEach licensee is addressed as \"you\".\r\n\r\n A \"library\" means a collection of software functions and/or data\r\nprepared so as to be conveniently linked with application programs\r\n(which use some of those functions and data) to form executables.\r\n\r\n The \"Library\", below, refers to any such software library or work\r\nwhich has been distributed under these terms. A \"work based on the\r\nLibrary\" means either the Library or any derivative work under\r\ncopyright law: that is to say, a work containing the Library or a\r\nportion of it, either verbatim or with modifications and/or translated\r\nstraightforwardly into another language. (Hereinafter, translation is\r\nincluded without limitation in the term \"modification\".)\r\n\r\n \"Source code\" for a work means the preferred form of the work for\r\nmaking modifications to it. For a library, complete source code means\r\nall the source code for all modules it contains, plus any associated\r\ninterface definition files, plus the scripts used to control compilation\r\nand installation of the library.\r\n\r\n Activities other than copying, distribution and modification are not\r\ncovered by this License; they are outside its scope. The act of\r\nrunning a program using the Library is not restricted, and output from\r\nsuch a program is covered only if its contents constitute a work based\r\non the Library (independent of the use of the Library in a tool for\r\nwriting it). Whether that is true depends on what the Library does\r\nand what the program that uses the Library does.\r\n \r\n 1. You may copy and distribute verbatim copies of the Library's\r\ncomplete source code as you receive it, in any medium, provided that\r\nyou conspicuously and appropriately publish on each copy an\r\nappropriate copyright notice and disclaimer of warranty; keep intact\r\nall the notices that refer to this License and to the absence of any\r\nwarranty; and distribute a copy of this License along with the\r\nLibrary.\r\n\r\n You may charge a fee for the physical act of transferring a copy,\r\nand you may at your option offer warranty protection in exchange for a\r\nfee.\r\n\f\r\n 2. You may modify your copy or copies of the Library or any portion\r\nof it, thus forming a work based on the Library, and copy and\r\ndistribute such modifications or work under the terms of Section 1\r\nabove, provided that you also meet all of these conditions:\r\n\r\n a) The modified work must itself be a software library.\r\n\r\n b) You must cause the files modified to carry prominent notices\r\n stating that you changed the files and the date of any change.\r\n\r\n c) You must cause the whole of the work to be licensed at no\r\n charge to all third parties under the terms of this License.\r\n\r\n d) If a facility in the modified Library refers to a function or a\r\n table of data to be supplied by an application program that uses\r\n the facility, other than as an argument passed when the facility\r\n is invoked, then you must make a good faith effort to ensure that,\r\n in the event an application does not supply such function or\r\n table, the facility still operates, and performs whatever part of\r\n its purpose remains meaningful.\r\n\r\n (For example, a function in a library to compute square roots has\r\n a purpose that is entirely well-defined independent of the\r\n application. Therefore, Subsection 2d requires that any\r\n application-supplied function or table used by this function must\r\n be optional: if the application does not supply it, the square\r\n root function must still compute square roots.)\r\n\r\nThese requirements apply to the modified work as a whole. If\r\nidentifiable sections of that work are not derived from the Library,\r\nand can be reasonably considered independent and separate works in\r\nthemselves, then this License, and its terms, do not apply to those\r\nsections when you distribute them as separate works. But when you\r\ndistribute the same sections as part of a whole which is a work based\r\non the Library, the distribution of the whole must be on the terms of\r\nthis License, whose permissions for other licensees extend to the\r\nentire whole, and thus to each and every part regardless of who wrote\r\nit.\r\n\r\nThus, it is not the intent of this section to claim rights or contest\r\nyour rights to work written entirely by you; rather, the intent is to\r\nexercise the right to control the distribution of derivative or\r\ncollective works based on the Library.\r\n\r\nIn addition, mere aggregation of another work not based on the Library\r\nwith the Library (or with a work based on the Library) on a volume of\r\na storage or distribution medium does not bring the other work under\r\nthe scope of this License.\r\n\r\n 3. You may opt to apply the terms of the ordinary GNU General Public\r\nLicense instead of this License to a given copy of the Library. To do\r\nthis, you must alter all the notices that refer to this License, so\r\nthat they refer to the ordinary GNU General Public License, version 2,\r\ninstead of to this License. (If a newer version than version 2 of the\r\nordinary GNU General Public License has appeared, then you can specify\r\nthat version instead if you wish.) Do not make any other change in\r\nthese notices.\r\n\f\r\n Once this change is made in a given copy, it is irreversible for\r\nthat copy, so the ordinary GNU General Public License applies to all\r\nsubsequent copies and derivative works made from that copy.\r\n\r\n This option is useful when you wish to copy part of the code of\r\nthe Library into a program that is not a library.\r\n\r\n 4. You may copy and distribute the Library (or a portion or\r\nderivative of it, under Section 2) in object code or executable form\r\nunder the terms of Sections 1 and 2 above provided that you accompany\r\nit with the complete corresponding machine-readable source code, which\r\nmust be distributed under the terms of Sections 1 and 2 above on a\r\nmedium customarily used for software interchange.\r\n\r\n If distribution of object code is made by offering access to copy\r\nfrom a designated place, then offering equivalent access to copy the\r\nsource code from the same place satisfies the requirement to\r\ndistribute the source code, even though third parties are not\r\ncompelled to copy the source along with the object code.\r\n\r\n 5. A program that contains no derivative of any portion of the\r\nLibrary, but is designed to work with the Library by being compiled or\r\nlinked with it, is called a \"work that uses the Library\". Such a\r\nwork, in isolation, is not a derivative work of the Library, and\r\ntherefore falls outside the scope of this License.\r\n\r\n However, linking a \"work that uses the Library\" with the Library\r\ncreates an executable that is a derivative of the Library (because it\r\ncontains portions of the Library), rather than a \"work that uses the\r\nlibrary\". The executable is therefore covered by this License.\r\nSection 6 states terms for distribution of such executables.\r\n\r\n When a \"work that uses the Library\" uses material from a header file\r\nthat is part of the Library, the object code for the work may be a\r\nderivative work of the Library even though the source code is not.\r\nWhether this is true is especially significant if the work can be\r\nlinked without the Library, or if the work is itself a library. The\r\nthreshold for this to be true is not precisely defined by law.\r\n\r\n If such an object file uses only numerical parameters, data\r\nstructure layouts and accessors, and small macros and small inline\r\nfunctions (ten lines or less in length), then the use of the object\r\nfile is unrestricted, regardless of whether it is legally a derivative\r\nwork. (Executables containing this object code plus portions of the\r\nLibrary will still fall under Section 6.)\r\n\r\n Otherwise, if the work is a derivative of the Library, you may\r\ndistribute the object code for the work under the terms of Section 6.\r\nAny executables containing that work also fall under Section 6,\r\nwhether or not they are linked directly with the Library itself.\r\n\f\r\n 6. As an exception to the Sections above, you may also combine or\r\nlink a \"work that uses the Library\" with the Library to produce a\r\nwork containing portions of the Library, and distribute that work\r\nunder terms of your choice, provided that the terms permit\r\nmodification of the work for the customer's own use and reverse\r\nengineering for debugging such modifications.\r\n\r\n You must give prominent notice with each copy of the work that the\r\nLibrary is used in it and that the Library and its use are covered by\r\nthis License. You must supply a copy of this License. If the work\r\nduring execution displays copyright notices, you must include the\r\ncopyright notice for the Library among them, as well as a reference\r\ndirecting the user to the copy of this License. Also, you must do one\r\nof these things:\r\n\r\n a) Accompany the work with the complete corresponding\r\n machine-readable source code for the Library including whatever\r\n changes were used in the work (which must be distributed under\r\n Sections 1 and 2 above); and, if the work is an executable linked\r\n with the Library, with the complete machine-readable \"work that\r\n uses the Library\", as object code and/or source code, so that the\r\n user can modify the Library and then relink to produce a modified\r\n executable containing the modified Library. (It is understood\r\n that the user who changes the contents of definitions files in the\r\n Library will not necessarily be able to recompile the application\r\n to use the modified definitions.)\r\n\r\n b) Use a suitable shared library mechanism for linking with the\r\n Library. A suitable mechanism is one that (1) uses at run time a\r\n copy of the library already present on the user's computer system,\r\n rather than copying library functions into the executable, and (2)\r\n will operate properly with a modified version of the library, if\r\n the user installs one, as long as the modified version is\r\n interface-compatible with the version that the work was made with.\r\n\r\n c) Accompany the work with a written offer, valid for at\r\n least three years, to give the same user the materials\r\n specified in Subsection 6a, above, for a charge no more\r\n than the cost of performing this distribution.\r\n\r\n d) If distribution of the work is made by offering access to copy\r\n from a designated place, offer equivalent access to copy the above\r\n specified materials from the same place.\r\n\r\n e) Verify that the user has already received a copy of these\r\n materials or that you have already sent this user a copy.\r\n\r\n For an executable, the required form of the \"work that uses the\r\nLibrary\" must include any data and utility programs needed for\r\nreproducing the executable from it. However, as a special exception,\r\nthe materials to be distributed need not include anything that is\r\nnormally distributed (in either source or binary form) with the major\r\ncomponents (compiler, kernel, and so on) of the operating system on\r\nwhich the executable runs, unless that component itself accompanies\r\nthe executable.\r\n\r\n It may happen that this requirement contradicts the license\r\nrestrictions of other proprietary libraries that do not normally\r\naccompany the operating system. Such a contradiction means you cannot\r\nuse both them and the Library together in an executable that you\r\ndistribute.\r\n\f\r\n 7. You may place library facilities that are a work based on the\r\nLibrary side-by-side in a single library together with other library\r\nfacilities not covered by this License, and distribute such a combined\r\nlibrary, provided that the separate distribution of the work based on\r\nthe Library and of the other library facilities is otherwise\r\npermitted, and provided that you do these two things:\r\n\r\n a) Accompany the combined library with a copy of the same work\r\n based on the Library, uncombined with any other library\r\n facilities. This must be distributed under the terms of the\r\n Sections above.\r\n\r\n b) Give prominent notice with the combined library of the fact\r\n that part of it is a work based on the Library, and explaining\r\n where to find the accompanying uncombined form of the same work.\r\n\r\n 8. You may not copy, modify, sublicense, link with, or distribute\r\nthe Library except as expressly provided under this License. Any\r\nattempt otherwise to copy, modify, sublicense, link with, or\r\ndistribute the Library is void, and will automatically terminate your\r\nrights under this License. However, parties who have received copies,\r\nor rights, from you under this License will not have their licenses\r\nterminated so long as such parties remain in full compliance.\r\n\r\n 9. You are not required to accept this License, since you have not\r\nsigned it. However, nothing else grants you permission to modify or\r\ndistribute the Library or its derivative works. These actions are\r\nprohibited by law if you do not accept this License. Therefore, by\r\nmodifying or distributing the Library (or any work based on the\r\nLibrary), you indicate your acceptance of this License to do so, and\r\nall its terms and conditions for copying, distributing or modifying\r\nthe Library or works based on it.\r\n\r\n 10. Each time you redistribute the Library (or any work based on the\r\nLibrary), the recipient automatically receives a license from the\r\noriginal licensor to copy, distribute, link with or modify the Library\r\nsubject to these terms and conditions. You may not impose any further\r\nrestrictions on the recipients' exercise of the rights granted herein.\r\nYou are not responsible for enforcing compliance by third parties with\r\nthis License.\r\n\f\r\n 11. If, as a consequence of a court judgment or allegation of patent\r\ninfringement or for any other reason (not limited to patent issues),\r\nconditions are imposed on you (whether by court order, agreement or\r\notherwise) that contradict the conditions of this License, they do not\r\nexcuse you from the conditions of this License. If you cannot\r\ndistribute so as to satisfy simultaneously your obligations under this\r\nLicense and any other pertinent obligations, then as a consequence you\r\nmay not distribute the Library at all. For example, if a patent\r\nlicense would not permit royalty-free redistribution of the Library by\r\nall those who receive copies directly or indirectly through you, then\r\nthe only way you could satisfy both it and this License would be to\r\nrefrain entirely from distribution of the Library.\r\n\r\nIf any portion of this section is held invalid or unenforceable under any\r\nparticular circumstance, the balance of the section is intended to apply,\r\nand the section as a whole is intended to apply in other circumstances.\r\n\r\nIt is not the purpose of this section to induce you to infringe any\r\npatents or other property right claims or to contest validity of any\r\nsuch claims; this section has the sole purpose of protecting the\r\nintegrity of the free software distribution system which is\r\nimplemented by public license practices. Many people have made\r\ngenerous contributions to the wide range of software distributed\r\nthrough that system in reliance on consistent application of that\r\nsystem; it is up to the author/donor to decide if he or she is willing\r\nto distribute software through any other system and a licensee cannot\r\nimpose that choice.\r\n\r\nThis section is intended to make thoroughly clear what is believed to\r\nbe a consequence of the rest of this License.\r\n\r\n 12. If the distribution and/or use of the Library is restricted in\r\ncertain countries either by patents or by copyrighted interfaces, the\r\noriginal copyright holder who places the Library under this License may add\r\nan explicit geographical distribution limitation excluding those countries,\r\nso that distribution is permitted only in or among countries not thus\r\nexcluded. In such case, this License incorporates the limitation as if\r\nwritten in the body of this License.\r\n\r\n 13. The Free Software Foundation may publish revised and/or new\r\nversions of the Lesser General Public License from time to time.\r\nSuch new versions will be similar in spirit to the present version,\r\nbut may differ in detail to address new problems or concerns.\r\n\r\nEach version is given a distinguishing version number. If the Library\r\nspecifies a version number of this License which applies to it and\r\n\"any later version\", you have the option of following the terms and\r\nconditions either of that version or of any later version published by\r\nthe Free Software Foundation. If the Library does not specify a\r\nlicense version number, you may choose any version ever published by\r\nthe Free Software Foundation.\r\n\f\r\n 14. If you wish to incorporate parts of the Library into other free\r\nprograms whose distribution conditions are incompatible with these,\r\nwrite to the author to ask for permission. For software which is\r\ncopyrighted by the Free Software Foundation, write to the Free\r\nSoftware Foundation; we sometimes make exceptions for this. Our\r\ndecision will be guided by the two goals of preserving the free status\r\nof all derivatives of our free software and of promoting the sharing\r\nand reuse of software generally.\r\n\r\n\t\t\t NO WARRANTY\r\n\r\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\r\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\r\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\r\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\r\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\r\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\r\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\r\n\r\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\r\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\r\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\r\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\r\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\r\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\r\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\r\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\r\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\r\nDAMAGES.\r\n\r\n\t\t END OF TERMS AND CONDITIONS\r\n\f\r\n How to Apply These Terms to Your New Libraries\r\n\r\n If you develop a new library, and you want it to be of the greatest\r\npossible use to the public, we recommend making it free software that\r\neveryone can redistribute and change. You can do so by permitting\r\nredistribution under these terms (or, alternatively, under the terms of the\r\nordinary General Public License).\r\n\r\n To apply these terms, attach the following notices to the library. It is\r\nsafest to attach them to the start of each source file to most effectively\r\nconvey the exclusion of warranty; and each file should have at least the\r\n\"copyright\" line and a pointer to where the full notice is found.\r\n\r\n \r\n Copyright (C) \r\n\r\n This library is free software; you can redistribute it and/or\r\n modify it under the terms of the GNU Lesser General Public\r\n License as published by the Free Software Foundation; either\r\n version 2.1 of the License, or (at your option) any later version.\r\n\r\n This library is distributed in the hope that it will be useful,\r\n but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n Lesser General Public License for more details.\r\n\r\n You should have received a copy of the GNU Lesser General Public\r\n License along with this library; if not, write to the Free Software\r\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r\n\r\nAlso add information on how to contact you by electronic and paper mail.\r\n\r\nYou should also get your employer (if you work as a programmer) or your\r\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\r\nnecessary. Here is a sample; alter the names:\r\n\r\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\r\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\r\n\r\n , 1 April 1990\r\n Ty Coon, President of Vice\r\n\r\nThat's all there is to it!" - } - ], - "detection_log": [], - "identifier": "lgpl_2_1-64dbac63-7b61-7151-023f-321235aeef62" - } - ], - "license_clues": [], - "percentage_of_license_text": 100.0, - "copyrights": [ - { - "copyright": "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", - "start_line": 4, - "end_line": 4 - }, - { - "copyright": "copyrighted by the Free Software Foundation", - "start_line": 429, - "end_line": 429 - } - ], - "holders": [ - { - "holder": "Free Software Foundation, Inc.", - "start_line": 4, - "end_line": 4 - }, - { - "holder": "the Free Software Foundation", - "start_line": 429, - "end_line": 429 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src", - "type": "directory", - "name": "src", - "base_name": "src", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 7, - "dirs_count": 0, - "size_count": 152090, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/FixedMembershipToken.java", - "type": "file", - "name": "FixedMembershipToken.java", - "base_name": "FixedMembershipToken", - "extension": ".java", - "size": 5144, - "date": "2022-04-20", - "sha1": "5901f73dcc78155a1a2c7b5663a3a11fba400b19", - "md5": "aca9640ec8beee21b098bcf8ecc91442", - "sha256": "aac525060867f5004c7343690f1c197c9a678b334d402e0e9fd117c8b2df73f2", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "lgpl-2.1-plus", - "detected_license_expression_spdx": "LGPL-2.1-or-later", - "license_detections": [ - { - "license_expression": "lgpl-2.1-plus", - "matches": [ - { - "score": 100.0, - "start_line": 7, - "end_line": 20, - "matched_length": 125, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "lgpl-2.1-plus", - "rule_identifier": "lgpl-2.1-plus_59.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE", - "matched_text": "This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org." - } - ], - "detection_log": [], - "identifier": "lgpl_2_1_plus-3fe3e5e6-cb18-c0a1-f831-f08fab3612c1" - } - ], - "license_clues": [], - "percentage_of_license_text": 23.41, - "copyrights": [ - { - "copyright": "Copyright 2005, JBoss Inc., and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "holders": [ - { - "holder": "JBoss Inc., and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "authors": [ - { - "author": "Chris Mills (millsy@jboss.com)", - "start_line": 51, - "end_line": 51 - } - ], - "emails": [ - { - "email": "millsy@jboss.com", - "start_line": 51, - "end_line": 51 - } - ], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/GuardedBy.java", - "type": "file", - "name": "GuardedBy.java", - "base_name": "GuardedBy", - "extension": ".java", - "size": 813, - "date": "2022-04-20", - "sha1": "981d67087e65e9a44957c026d4b10817cf77d966", - "md5": "c5064400f759d3e81771005051d17dc1", - "sha256": "7c3e384429f27692534184e1511f70416c04c3f0b30be632710101840996695a", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "cc-by-2.5", - "detected_license_expression_spdx": "CC-BY-2.5", - "license_detections": [ - { - "license_expression": "cc-by-2.5", - "matches": [ - { - "score": 100.0, - "start_line": 10, - "end_line": 11, - "matched_length": 14, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "cc-by-2.5", - "rule_identifier": "cc-by-2.5_4.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-2.5_4.RULE", - "matched_text": "Released under the Creative Commons Attribution License\n * (http://creativecommons.org/licenses/by/2.5)" - } - ], - "detection_log": [], - "identifier": "cc_by_2_5-2664cdba-0ee6-a527-2588-8a3a1be3ecae" - } - ], - "license_clues": [], - "percentage_of_license_text": 12.96, - "copyrights": [ - { - "copyright": "Copyright (c) 2005 Brian Goetz and Tim Peierls", - "start_line": 9, - "end_line": 9 - } - ], - "holders": [ - { - "holder": "Brian Goetz and Tim Peierls", - "start_line": 9, - "end_line": 9 - } - ], - "authors": [ - { - "author": "Bela Ban", - "start_line": 16, - "end_line": 16 - } - ], - "emails": [], - "urls": [ - { - "url": "http://creativecommons.org/licenses/by/2.5", - "start_line": 11, - "end_line": 11 - }, - { - "url": "http://www.jcip.net/", - "start_line": 12, - "end_line": 12 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/ImmutableReference.java", - "type": "file", - "name": "ImmutableReference.java", - "base_name": "ImmutableReference", - "extension": ".java", - "size": 1838, - "date": "2022-04-20", - "sha1": "30f56b876d5576d9869e2c5c509b08db57110592", - "md5": "48ca3c72fb9a65c771a321222f118b88", - "sha256": "8a3fb390d4932a92c56e7b999b63b8e5ab55cbe81f65b27439296f279d160bd1", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "lgpl-2.1-plus", - "detected_license_expression_spdx": "LGPL-2.1-or-later", - "license_detections": [ - { - "license_expression": "lgpl-2.1-plus", - "matches": [ - { - "score": 100.0, - "start_line": 7, - "end_line": 20, - "matched_length": 125, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "lgpl-2.1-plus", - "rule_identifier": "lgpl-2.1-plus_59.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE", - "matched_text": "This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org." - } - ], - "detection_log": [], - "identifier": "lgpl_2_1_plus-3fe3e5e6-cb18-c0a1-f831-f08fab3612c1" - } - ], - "license_clues": [], - "percentage_of_license_text": 48.83, - "copyrights": [ - { - "copyright": "Copyright 2010, Red Hat, Inc. and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "holders": [ - { - "holder": "Red Hat, Inc. and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "authors": [ - { - "author": "Brian Stansberry", - "start_line": 29, - "end_line": 29 - } - ], - "emails": [], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RATE_LIMITER.java", - "type": "file", - "name": "RATE_LIMITER.java", - "base_name": "RATE_LIMITER", - "extension": ".java", - "size": 3692, - "date": "2022-04-20", - "sha1": "a8087e5d50da3273536ebda9b87b77aa4ff55deb", - "md5": "4626bdbc48871b55513e1a12991c61a8", - "sha256": "80709043c6c1f4fbd6e7a43c9381da034ab9b67e2e6fee80973a0d4fd33664e0", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [ - { - "author": "Bela Ban", - "start_line": 16, - "end_line": 16 - } - ], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStub.java", - "type": "file", - "name": "RouterStub.java", - "base_name": "RouterStub", - "extension": ".java", - "size": 9913, - "date": "2022-04-20", - "sha1": "c1f6818f8ee7bddcc9f444bc94c099729d716d52", - "md5": "eecfe23494acbcd8088c93bc1e83c7f2", - "sha256": "f212de138e8cb0b7eb13521d8ed2620bc41af55093b857da753d7753b1d3438d", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [ - { - "author": "Bela Ban", - "start_line": 23, - "end_line": 23 - } - ], - "emails": [], - "urls": [ - { - "url": "https://jira.jboss.org/jira/browse/JGRP-1151", - "start_line": 232, - "end_line": 232 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/RouterStubManager.java", - "type": "file", - "name": "RouterStubManager.java", - "base_name": "RouterStubManager", - "extension": ".java", - "size": 8162, - "date": "2022-04-20", - "sha1": "eb419dc94cfe11ca318a3e743a7f9f080e70c751", - "md5": "20bee9631b7c82a45c250e095352aec7", - "sha256": "c39a40d4057256a8fe70f2b69e5f940edcaf8b377b546d537e799ecff3f58b81", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "lgpl-2.1-plus", - "detected_license_expression_spdx": "LGPL-2.1-or-later", - "license_detections": [ - { - "license_expression": "lgpl-2.1-plus", - "matches": [ - { - "score": 100.0, - "start_line": 7, - "end_line": 20, - "matched_length": 125, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "lgpl-2.1-plus", - "rule_identifier": "lgpl-2.1-plus_59.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE", - "matched_text": "This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org." - } - ], - "detection_log": [], - "identifier": "lgpl_2_1_plus-3fe3e5e6-cb18-c0a1-f831-f08fab3612c1" - } - ], - "license_clues": [], - "percentage_of_license_text": 17.03, - "copyrights": [ - { - "copyright": "Copyright 2009, Red Hat Middleware LLC, and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "holders": [ - { - "holder": "Red Hat Middleware LLC, and individual contributors", - "start_line": 3, - "end_line": 3 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/JGroups/src/S3_PING.java", - "type": "file", - "name": "S3_PING.java", - "base_name": "S3_PING", - "extension": ".java", - "size": 122528, - "date": "2022-04-20", - "sha1": "08dba9986f69719970ead3592dc565465164df0d", - "md5": "83d8324f37d0e3f120bc89865cf0bd39", - "sha256": "c4d59a8837c6320788c74496201e3ecc0ff2100525ebb727bcae6d855b34c548", - "mime_type": "text/x-java", - "file_type": "Java source, ASCII text", - "programming_language": "Java", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "public-domain AND public-domain-disclaimer", - "detected_license_expression_spdx": "LicenseRef-scancode-public-domain AND LicenseRef-scancode-public-domain-disclaimer", - "license_detections": [ - { - "license_expression": "public-domain", - "matches": [ - { - "score": 70.0, - "start_line": 1649, - "end_line": 1649, - "matched_length": 2, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "public-domain", - "rule_identifier": "public-domain_bare_words.RULE", - "rule_relevance": 70, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE", - "matched_text": "public domain" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77" - }, - { - "license_expression": "public-domain-disclaimer", - "matches": [ - { - "score": 100.0, - "start_line": 1692, - "end_line": 1694, - "matched_length": 30, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "public-domain-disclaimer", - "rule_identifier": "public-domain-disclaimer_77.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE", - "matched_text": "I am placing this code in the Public Domain. Do with it as you will.\n * This software comes with no guarantees or warranties but with\n * plenty of well-wishing instead!" - } - ], - "detection_log": [], - "identifier": "public_domain_disclaimer-5765d0b6-4dea-c655-1767-e7e398a296d3" - } - ], - "license_clues": [], - "percentage_of_license_text": 0.27, - "copyrights": [], - "holders": [], - "authors": [ - { - "author": "Bela Ban", - "start_line": 37, - "end_line": 37 - }, - { - "author": "Robert Harder", - "start_line": 1698, - "end_line": 1698 - }, - { - "author": "rob@iharder.net", - "start_line": 1699, - "end_line": 1699 - } - ], - "emails": [ - { - "email": "rob@iharder.net", - "start_line": 1699, - "end_line": 1699 - } - ], - "urls": [ - { - "url": "http://iharder.sourceforge.net/current/java/base64/", - "start_line": 1652, - "end_line": 1652 - }, - { - "url": "http://iharder.net/base64", - "start_line": 1695, - "end_line": 1695 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib", - "type": "directory", - "name": "zlib", - "base_name": "zlib", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": true, - "is_key_file": false, - "files_count": 16, - "dirs_count": 5, - "size_count": 268762, - "scan_errors": [] - }, - { - "path": "samples/zlib/adler32.c", - "type": "file", - "name": "adler32.c", - "base_name": "adler32", - "extension": ".c", - "size": 4968, - "date": "2022-04-20", - "sha1": "0cff4808476ce0b5f6f0ebbc69ee2ab2a0eebe43", - "md5": "ae3bbb54820e1d49fb90cbba222e973f", - "sha256": "341d49ae2703037d2d10c8486f1a1ca3b65e0f10cc9e5fead6bfbbc0b34564ba", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - }, - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "zlib-663c0d51-510f-fca6-b163-671ecb188ff9" - } - ], - "license_clues": [], - "percentage_of_license_text": 2.06, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2011 Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.c", - "type": "file", - "name": "deflate.c", - "base_name": "deflate", - "extension": ".c", - "size": 71476, - "date": "2022-04-20", - "sha1": "7b4ace6d698c5dbbfb9a8f047f63228ca54d2e77", - "md5": "cd7826278ce9d9d9ed5abdefef50c3e2", - "sha256": "565e68ddfff5af8efd55f71e122b860ad11527a7d9de40a76af2b16afef24cc0", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - }, - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "zlib-663c0d51-510f-fca6-b163-671ecb188ff9" - } - ], - "license_clues": [], - "percentage_of_license_text": 0.13, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler", - "start_line": 2, - "end_line": 2 - }, - { - "copyright": "Copyright 1995-2013 Jean-loup Gailly and Mark Adler", - "start_line": 55, - "end_line": 55 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly and Mark Adler", - "start_line": 2, - "end_line": 2 - }, - { - "holder": "Jean-loup Gailly and Mark Adler", - "start_line": 55, - "end_line": 55 - } - ], - "authors": [ - { - "author": "Leonid Broukhis", - "start_line": 34, - "end_line": 34 - } - ], - "emails": [], - "urls": [ - { - "url": "http://tools.ietf.org/html/rfc1951", - "start_line": 40, - "end_line": 40 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/deflate.h", - "type": "file", - "name": "deflate.h", - "base_name": "deflate", - "extension": ".h", - "size": 12774, - "date": "2022-04-20", - "sha1": "29ed3b8ca3927576e5889dea5880ca0052942c7d", - "md5": "7ceae74a13201f14c91623116af169c3", - "sha256": "80570c8052491bdc7583600da28a8f1cb32c27ab1cec107ec12c83255d426cf7", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - }, - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "zlib-663c0d51-510f-fca6-b163-671ecb188ff9" - }, - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 93, - "end_line": 94, - "matched_length": 28, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_21.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_21.RULE", - "matched_text": "Pos is an index in the character window. We use short instead of int to\n * save space in the various tables. IPos is used only for parameter passing." - } - ], - "detection_log": [], - "identifier": "zlib-53b5e6f7-901a-4da6-f42e-e1c8e52100e9" - } - ], - "license_clues": [], - "percentage_of_license_text": 2.14, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2012 Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zlib.h", - "type": "file", - "name": "zlib.h", - "base_name": "zlib", - "extension": ".h", - "size": 87883, - "date": "2022-04-20", - "sha1": "400d35465f179a4acacb5fe749e6ce20a0bbdb84", - "md5": "64d8a5180bd54ff5452886e4cbb21e14", - "sha256": "726b0569915917b967f87f3f08a1eec039101bf9dcc29d61c0b2b0b8f271b58d", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [], - "identifier": "zlib-b04102d0-a663-78b5-de18-9677ee48ce9c" - } - ], - "license_clues": [], - "percentage_of_license_text": 1.06, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler", - "start_line": 4, - "end_line": 4 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly and Mark Adler", - "start_line": 4, - "end_line": 4 - } - ], - "authors": [], - "emails": [ - { - "email": "jloup@gzip.org", - "start_line": 23, - "end_line": 23 - }, - { - "email": "madler@alumni.caltech.edu", - "start_line": 23, - "end_line": 23 - } - ], - "urls": [ - { - "url": "http://tools.ietf.org/html/rfc1950", - "start_line": 27, - "end_line": 27 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.c", - "type": "file", - "name": "zutil.c", - "base_name": "zutil", - "extension": ".c", - "size": 7414, - "date": "2022-04-20", - "sha1": "e1af709bff21ae0d4331119a7fc4c19f82932043", - "md5": "fff257bc1656eb60fc585a7dc35f963d", - "sha256": "c5e9927d5a1a1dec514ccdcedfa1e0f01664c58bb33166b4997b50b8001f1d6c", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - }, - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "zlib-663c0d51-510f-fca6-b163-671ecb188ff9" - } - ], - "license_clues": [], - "percentage_of_license_text": 1.19, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/zutil.h", - "type": "file", - "name": "zutil.h", - "base_name": "zutil", - "extension": ".h", - "size": 6766, - "date": "2022-04-20", - "sha1": "b909d27ef9ce51639f76b7ea6b62721e7d1b6bf7", - "md5": "04fcfbb961591c9452c4d0fd1525ffdf", - "sha256": "91cce8e78e83bcdb8c6acb98d4f0686dbdc81ca97d4a36a60c0b48f7ef78f1af", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - }, - { - "score": 100.0, - "start_line": 6, - "end_line": 23, - "matched_length": 144, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_17.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_17.RULE", - "matched_text": "This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu" - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "zlib-663c0d51-510f-fca6-b163-671ecb188ff9" - } - ], - "license_clues": [], - "percentage_of_license_text": 1.25, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2013 Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada", - "type": "directory", - "name": "ada", - "base_name": "ada", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 1, - "dirs_count": 0, - "size_count": 13594, - "scan_errors": [] - }, - { - "path": "samples/zlib/ada/zlib.ads", - "type": "file", - "name": "zlib.ads", - "base_name": "zlib", - "extension": ".ads", - "size": 13594, - "date": "2022-04-20", - "sha1": "0245a91806d804bf9f0907a3a001a141e9adb61b", - "md5": "71de2670f2e588b51c62e7f6a9046399", - "sha256": "02634bec0d5e4c69d8d2859124380074a57de8d8bd928398379bfacc514236d2", - "mime_type": "text/plain", - "file_type": "ASCII text", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "detected_license_expression_spdx": "GPL-2.0-or-later WITH GNAT-exception", - "license_detections": [ - { - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "matches": [ - { - "score": 100.0, - "start_line": 6, - "end_line": 25, - "matched_length": 176, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "rule_identifier": "gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "matched_text": "This library is free software; you can redistribute it and/or modify --\n-- it under the terms of the GNU General Public License as published by --\n-- the Free Software Foundation; either version 2 of the License, or (at --\n-- your option) any later version. --\n-- --\n-- This library is distributed in the hope that it will be useful, but --\n-- WITHOUT ANY WARRANTY; without even the implied warranty of --\n-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --\n-- General Public License for more details. --\n-- --\n-- You should have received a copy of the GNU General Public License --\n-- along with this library; if not, write to the Free Software Foundation, --\n-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --\n-- --\n-- As a special exception, if other files instantiate generics from this --\n-- unit, or you link this unit with other files to produce an executable, --\n-- this unit does not by itself cause the resulting executable to be --\n-- covered by the GNU General Public License. This exception does not --\n-- however invalidate any other reasons why the executable file might be --\n-- covered by the GNU Public License. --" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus_with_ada_linking_exception-ca27fab9-344b-58b2-3c05-f3ca150dad7e" - } - ], - "license_clues": [], - "percentage_of_license_text": 10.46, - "copyrights": [ - { - "copyright": "Copyright (c) 2002-2004 Dmitriy Anisimkov", - "start_line": 4, - "end_line": 4 - } - ], - "holders": [ - { - "holder": "Dmitriy Anisimkov", - "start_line": 4, - "end_line": 4 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib", - "type": "directory", - "name": "dotzlib", - "base_name": "dotzlib", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 4, - "dirs_count": 0, - "size_count": 14257, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/AssemblyInfo.cs", - "type": "file", - "name": "AssemblyInfo.cs", - "base_name": "AssemblyInfo", - "extension": ".cs", - "size": 2500, - "date": "2022-04-20", - "sha1": "9f1db1177b2e9a014f72bb3cd80be17133e06d16", - "md5": "23d0d7c18846fc31655b6aa89b7c8038", - "sha256": "314afcfb339ea95f5431047b7ab24631b11c3532c7ce5dc2094ed0cf80a7c16d", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [ - { - "copyright": "Copyright (c) 2004 by Henrik Ravn", - "start_line": 14, - "end_line": 14 - } - ], - "holders": [ - { - "holder": "Henrik Ravn", - "start_line": 14, - "end_line": 14 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/ChecksumImpl.cs", - "type": "file", - "name": "ChecksumImpl.cs", - "base_name": "ChecksumImpl", - "extension": ".cs", - "size": 8040, - "date": "2022-04-20", - "sha1": "3807a0e24a57b92ea301559cab7307b8eab52c51", - "md5": "d01b3cb2e75da9b15f05b92b42f6bd33", - "sha256": "e7c047a2c3bcf88d3d002ee3d2d05af414acf53cb4451efacc0f2e95a474ea0f", - "mime_type": "text/x-c++", - "file_type": "C++ source, ISO-8859 text, with CRLF line terminators", - "programming_language": "C#", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "boost-1.0", - "detected_license_expression_spdx": "BSL-1.0", - "license_detections": [ - { - "license_expression": "boost-1.0", - "matches": [ - { - "score": 100.0, - "start_line": 4, - "end_line": 5, - "matched_length": 32, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0_21.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_21.RULE", - "matched_text": "Use, modification and distribution are subject to the Boost Software License, Version 1.0.\r\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)" - }, - { - "score": 100.0, - "start_line": 1, - "end_line": 23, - "matched_length": 211, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "matched_text": "Boost Software License - Version 1.0 - August 17th, 2003\r\n\r\nPermission is hereby granted, free of charge, to any person or organization\r\nobtaining a copy of the software and accompanying documentation covered by\r\nthis license (the \"Software\") to use, reproduce, display, distribute,\r\nexecute, and transmit the Software, and to prepare derivative works of the\r\nSoftware, and to permit third-parties to whom the Software is furnished to\r\ndo so, all subject to the following:\r\n\r\nThe copyright notices in the Software and this entire statement, including\r\nthe above license grant, this restriction and the following disclaimer,\r\nmust be included in all copies of the Software, in whole or in part, and\r\nall derivative works of the Software, unless such copies or derivative\r\nworks are solely in the form of machine-executable object code generated by\r\na source language processor.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\r\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\r\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\r\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\r\nDEALINGS IN THE SOFTWARE." - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "boost-1.0-d2497bb7-4937-90c9-b38e-63d81d1b1d13" - } - ], - "license_clues": [], - "percentage_of_license_text": 3.85, - "copyrights": [ - { - "copyright": "(c) Copyright Henrik Ravn 2004", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Henrik Ravn", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.boost.org/LICENSE_1_0.txt", - "start_line": 5, - "end_line": 5 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/LICENSE_1_0.txt", - "type": "file", - "name": "LICENSE_1_0.txt", - "base_name": "LICENSE_1_0", - "extension": ".txt", - "size": 1359, - "date": "2022-04-20", - "sha1": "892b34f7865d90a6f949f50d95e49625a10bc7f0", - "md5": "81543b22c36f10d20ac9712f8d80ef8d", - "sha256": "36266a8fd073568394cb81cdb2b124f7fdae2c64c1a7ed09db34b4d22efa2951", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "boost-1.0", - "detected_license_expression_spdx": "BSL-1.0", - "license_detections": [ - { - "license_expression": "boost-1.0", - "matches": [ - { - "score": 100.0, - "start_line": 1, - "end_line": 23, - "matched_length": 211, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "matched_text": "Boost Software License - Version 1.0 - August 17th, 2003\r\n\r\nPermission is hereby granted, free of charge, to any person or organization\r\nobtaining a copy of the software and accompanying documentation covered by\r\nthis license (the \"Software\") to use, reproduce, display, distribute,\r\nexecute, and transmit the Software, and to prepare derivative works of the\r\nSoftware, and to permit third-parties to whom the Software is furnished to\r\ndo so, all subject to the following:\r\n\r\nThe copyright notices in the Software and this entire statement, including\r\nthe above license grant, this restriction and the following disclaimer,\r\nmust be included in all copies of the Software, in whole or in part, and\r\nall derivative works of the Software, unless such copies or derivative\r\nworks are solely in the form of machine-executable object code generated by\r\na source language processor.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\r\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\r\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\r\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\r\nDEALINGS IN THE SOFTWARE." - } - ], - "detection_log": [], - "identifier": "boost_1_0-dcd1a22a-7766-abc4-a96d-eefedae4fbf2" - } - ], - "license_clues": [], - "percentage_of_license_text": 100.0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": true, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/dotzlib/readme.txt", - "type": "file", - "name": "readme.txt", - "base_name": "readme", - "extension": ".txt", - "size": 2358, - "date": "2022-04-20", - "sha1": "b1229b826f0096808628474538cea8fec2922a9b", - "md5": "1f20f3168ee63d90de033edac2ce383c", - "sha256": "d04972a91b1563fb4b7acab4b9ff2b84e57368953cc0596d5f5ea17d97315fd0", - "mime_type": "text/plain", - "file_type": "ASCII text, with CRLF line terminators", - "programming_language": null, - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "boost-1.0", - "detected_license_expression_spdx": "BSL-1.0", - "license_detections": [ - { - "license_expression": "boost-1.0", - "matches": [ - { - "score": 100.0, - "start_line": 10, - "end_line": 10, - "matched_length": 6, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "unknown-license-reference", - "rule_identifier": "unknown-license-reference_225.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_225.RULE", - "matched_text": "LICENSE_1_0.txt - License file." - }, - { - "score": 100.0, - "start_line": 1, - "end_line": 23, - "matched_length": 211, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "matched_text": "Boost Software License - Version 1.0 - August 17th, 2003\r\n\r\nPermission is hereby granted, free of charge, to any person or organization\r\nobtaining a copy of the software and accompanying documentation covered by\r\nthis license (the \"Software\") to use, reproduce, display, distribute,\r\nexecute, and transmit the Software, and to prepare derivative works of the\r\nSoftware, and to permit third-parties to whom the Software is furnished to\r\ndo so, all subject to the following:\r\n\r\nThe copyright notices in the Software and this entire statement, including\r\nthe above license grant, this restriction and the following disclaimer,\r\nmust be included in all copies of the Software, in whole or in part, and\r\nall derivative works of the Software, unless such copies or derivative\r\nworks are solely in the form of machine-executable object code generated by\r\na source language processor.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\r\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\r\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\r\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\r\nDEALINGS IN THE SOFTWARE." - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "boost-1.0-5cff8c89-be8c-7d4a-7989-c20725314b4c" - }, - { - "license_expression": "boost-1.0", - "matches": [ - { - "score": 100.0, - "start_line": 57, - "end_line": 58, - "matched_length": 32, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0_21.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_21.RULE", - "matched_text": "Use, modification and distribution are subject to the Boost Software License, Version 1.0.\r\n(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)" - }, - { - "score": 100.0, - "start_line": 1, - "end_line": 23, - "matched_length": 211, - "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "rule_identifier": "boost-1.0.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "matched_text": "Boost Software License - Version 1.0 - August 17th, 2003\r\n\r\nPermission is hereby granted, free of charge, to any person or organization\r\nobtaining a copy of the software and accompanying documentation covered by\r\nthis license (the \"Software\") to use, reproduce, display, distribute,\r\nexecute, and transmit the Software, and to prepare derivative works of the\r\nSoftware, and to permit third-parties to whom the Software is furnished to\r\ndo so, all subject to the following:\r\n\r\nThe copyright notices in the Software and this entire statement, including\r\nthe above license grant, this restriction and the following disclaimer,\r\nmust be included in all copies of the Software, in whole or in part, and\r\nall derivative works of the Software, unless such copies or derivative\r\nworks are solely in the form of machine-executable object code generated by\r\na source language processor.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\r\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\r\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\r\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\r\nDEALINGS IN THE SOFTWARE." - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "boost-1.0-d2497bb7-4937-90c9-b38e-63d81d1b1d13" - } - ], - "license_clues": [], - "percentage_of_license_text": 11.18, - "copyrights": [ - { - "copyright": "Copyright (c) Henrik Ravn 2004", - "start_line": 55, - "end_line": 55 - } - ], - "holders": [ - { - "holder": "Henrik Ravn", - "start_line": 55, - "end_line": 55 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.boost.org/LICENSE_1_0.txt", - "start_line": 58, - "end_line": 58 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": true, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64", - "type": "directory", - "name": "gcc_gvmat64", - "base_name": "gcc_gvmat64", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 1, - "dirs_count": 0, - "size_count": 16413, - "scan_errors": [] - }, - { - "path": "samples/zlib/gcc_gvmat64/gvmat64.S", - "type": "file", - "name": "gvmat64.S", - "base_name": "gvmat64", - "extension": ".S", - "size": 16413, - "date": "2022-04-20", - "sha1": "742603cba1af98a1432cc02efb019b1a5760adf2", - "md5": "5e772d7302475e5473d0c4c57b9861e8", - "sha256": "22ff411b8b1d1b04aeaa8418b68245400267dc43c6f44104f6ccd37f0daee89f", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text, with CRLF line terminators", - "programming_language": "GAS", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 17, - "end_line": 31, - "matched_length": 132, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib.LICENSE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "matched_text": "This software is provided 'as-is', without any express or implied\r\n; warranty. In no event will the authors be held liable for any damages\r\n; arising from the use of this software.\r\n;\r\n; Permission is granted to anyone to use this software for any purpose,\r\n; including commercial applications, and to alter it and redistribute it\r\n; freely, subject to the following restrictions:\r\n;\r\n; 1. The origin of this software must not be misrepresented; you must not\r\n; claim that you wrote the original software. If you use this software\r\n; in a product, an acknowledgment in the product documentation would be\r\n; appreciated but is not required.\r\n; 2. Altered source versions must be plainly marked as such, and must not be\r\n; misrepresented as being the original software\r\n; 3. This notice may not be removed or altered from any source distribution." - } - ], - "detection_log": [], - "identifier": "zlib-f32ae987-c66a-44ce-bd13-c90e0c59aab8" - } - ], - "license_clues": [], - "percentage_of_license_text": 5.88, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2010 Jean-loup Gailly, Brian Raiter and Gilles Vollant", - "start_line": 10, - "end_line": 10 - } - ], - "holders": [ - { - "holder": "Jean-loup Gailly, Brian Raiter and Gilles Vollant", - "start_line": 10, - "end_line": 10 - } - ], - "authors": [ - { - "author": "Gilles Vollant", - "start_line": 12, - "end_line": 12 - } - ], - "emails": [], - "urls": [ - { - "url": "http://www.zlib.net/", - "start_line": 33, - "end_line": 33 - }, - { - "url": "http://www.winimage.com/zLibDll", - "start_line": 34, - "end_line": 34 - }, - { - "url": "http://www.muppetlabs.com/~breadbox/software/assembly.html", - "start_line": 35, - "end_line": 35 - }, - { - "url": "http://weblogs.asp.net/oldnewthing/archive/2004/01/14/58579.aspx", - "start_line": 172, - "end_line": 172 - }, - { - "url": "http://msdn.microsoft.com/library/en-us/kmarch/hh/kmarch/64bitAMD_8e951dd2-ee77-4728-8702-55ce4b5dd24a.xml.asp", - "start_line": 173, - "end_line": 173 - }, - { - "url": "http://www.x86-64.org/documentation/abi-0.99.pdf", - "start_line": 180, - "end_line": 180 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9", - "type": "directory", - "name": "infback9", - "base_name": "infback9", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 2, - "dirs_count": 0, - "size_count": 23223, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.c", - "type": "file", - "name": "infback9.c", - "base_name": "infback9", - "extension": ".c", - "size": 21629, - "date": "2022-04-20", - "sha1": "17fb362c03755b12f2dda5b12a68cf38162674bd", - "md5": "23ff5edec0817da303cb1294c1e4205c", - "sha256": "0a715c85a1ce3bb8b5a18d60941ffabc0186a886bcc66ba2ee0c4115a8e274e9", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - } - ], - "detection_log": [], - "identifier": "zlib-27de81f4-f6ce-2bf5-ab37-9a4c71f4b296" - } - ], - "license_clues": [], - "percentage_of_license_text": 0.53, - "copyrights": [ - { - "copyright": "Copyright (c) 1995-2008 Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/infback9/infback9.h", - "type": "file", - "name": "infback9.h", - "base_name": "infback9", - "extension": ".h", - "size": 1594, - "date": "2022-04-20", - "sha1": "d0486a32b558dcaceded5f0746fad62e680a4734", - "md5": "52b1ed99960d3ed7ed60cd20295e64a8", - "sha256": "dda2302f28157fe43a6143f84802af1740393572c2766559593996fd7a5a3245", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "zlib", - "detected_license_expression_spdx": "Zlib", - "license_detections": [ - { - "license_expression": "zlib", - "matches": [ - { - "score": 100.0, - "start_line": 3, - "end_line": 3, - "matched_length": 12, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "zlib", - "rule_identifier": "zlib_5.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/zlib_5.RULE", - "matched_text": "For conditions of distribution and use, see copyright notice in zlib.h" - } - ], - "detection_log": [], - "identifier": "zlib-27de81f4-f6ce-2bf5-ab37-9a4c71f4b296" - } - ], - "license_clues": [], - "percentage_of_license_text": 5.74, - "copyrights": [ - { - "copyright": "Copyright (c) 2003 Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "holders": [ - { - "holder": "Mark Adler", - "start_line": 2, - "end_line": 2 - } - ], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2", - "type": "directory", - "name": "iostream2", - "base_name": "iostream2", - "extension": "", - "size": 0, - "date": null, - "sha1": null, - "md5": null, - "sha256": null, - "mime_type": null, - "file_type": null, - "programming_language": null, - "is_binary": false, - "is_text": false, - "is_archive": false, - "is_media": false, - "is_source": false, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 2, - "dirs_count": 0, - "size_count": 9994, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream.h", - "type": "file", - "name": "zstream.h", - "base_name": "zstream", - "extension": ".h", - "size": 9283, - "date": "2022-04-20", - "sha1": "fca4540d490fff36bb90fd801cf9cd8fc695bb17", - "md5": "a980b61c1e8be68d5cdb1236ba6b43e7", - "sha256": "d0343e0c57ff58008b6f29643d289c72713aa2d653fe3dcd2e939fc77e7e20b6", - "mime_type": "text/x-c++", - "file_type": "C++ source, ASCII text", - "programming_language": "C", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": "mit-old-style", - "detected_license_expression_spdx": "LicenseRef-scancode-mit-old-style", - "license_detections": [ - { - "license_expression": "mit-old-style", - "matches": [ - { - "score": 100.0, - "start_line": 9, - "end_line": 15, - "matched_length": 71, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "mit-old-style", - "rule_identifier": "mit-old-style_cmr-no_1.RULE", - "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE", - "matched_text": "Permission to use, copy, modify, distribute and sell this software\n * and its documentation for any purpose is hereby granted without fee,\n * provided that the above copyright notice appear in all copies and\n * that both that copyright notice and this permission notice appear\n * in supporting documentation. Christian Michelsen Research AS makes no\n * representations about the suitability of this software for any\n * purpose. It is provided \"as is\" without express or implied warranty." - } - ], - "detection_log": [], - "identifier": "mit_old_style-578ee504-a9b5-6c26-1bb4-fd7b80a664f0" - } - ], - "license_clues": [], - "percentage_of_license_text": 5.81, - "copyrights": [ - { - "copyright": "Copyright (c) 1997 Christian Michelsen Research AS Advanced Computing", - "start_line": 3, - "end_line": 5 - } - ], - "holders": [ - { - "holder": "Christian Michelsen Research AS Advanced Computing", - "start_line": 4, - "end_line": 5 - } - ], - "authors": [], - "emails": [], - "urls": [ - { - "url": "http://www.cmr.no/", - "start_line": 7, - "end_line": 7 - } - ], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - }, - { - "path": "samples/zlib/iostream2/zstream_test.cpp", - "type": "file", - "name": "zstream_test.cpp", - "base_name": "zstream_test", - "extension": ".cpp", - "size": 711, - "date": "2022-04-20", - "sha1": "e18a6d55cbbd8b832f8d795530553467e5c74fcf", - "md5": "d32476bde4e6d5f889092fdff6f8cdb0", - "sha256": "f789df183cc58b78751985466380c656308490a9036eb48a7ef79704c3d3f229", - "mime_type": "text/x-c", - "file_type": "C source, ASCII text", - "programming_language": "C++", - "is_binary": false, - "is_text": true, - "is_archive": false, - "is_media": false, - "is_source": true, - "is_script": false, - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "emails": [], - "urls": [], - "is_legal": false, - "is_manifest": false, - "is_readme": false, - "is_top_level": false, - "is_key_file": false, - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - } - ] -} \ No newline at end of file